:root {
  /* Brand Colors */
  --primary-blue: #2e2f8a;
  --primary-dark: #1a1b4b;
  --turquoise: #2dbdb7;
  --turquoise-light: #5edfd8;
  --turquoise-dark: #1f8f8a;

  /* Neutral Colors */
  --text-main: #1a1a2e;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --bg-white: #ffffff;
  --bg-light: #f8f9fa;
  --bg-off-white: #f1f5f9;
  --bg-cream: #fdfcf9;

  /* Gradients */
  --gradient-hero: linear-gradient(
    135deg,
    var(--primary-dark) 0%,
    var(--primary-blue) 100%
  );
  --gradient-accent: linear-gradient(
    135deg,
    var(--turquoise) 0%,
    var(--turquoise-light) 100%
  );
  --gradient-dark: linear-gradient(
    180deg,
    var(--primary-dark) 0%,
    #0f0f2d 100%
  );

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md:
    0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
  --shadow-lg:
    0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
  --shadow-xl:
    0 25px 50px -12px rgba(0, 0, 0, 0.15);
  --shadow-glow: 0 0 60px rgba(45, 189, 183, 0.15);

  /* Layout */
  --header-height: 80px;
  --max-width: 1280px;
  --border-radius: 16px;
  --border-radius-lg: 24px;
}


/* Reset & Base */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    sans-serif;
  color: var(--text-main);
  background-color: var(--bg-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.1; /* Tighter for display */
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(3rem, 6vw, 5rem); /* Larger, more impactful */
  letter-spacing: -0.03em;
}
h2 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  letter-spacing: -0.02em;
}
h3 {
  font-size: 1.75rem;
}

p {
  margin-bottom: 1.5rem;
  color: var(--text-muted);
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul {
  list-style: none;
}

/* Utility Classes */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.text-center {
  text-align: center;
}
.text-primary {
  color: var(--primary-blue);
}
.text-turquoise {
  color: var(--turquoise);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem; /* Larger touch target */
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
  gap: 0.5rem;
}

.btn-primary {
  background: var(--turquoise);
  color: white;
  box-shadow: 0 4px 14px rgba(45, 189, 183, 0.4);
}

.btn-primary:hover {
  background: var(--turquoise-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(45, 189, 183, 0.6);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1); /* Glassy dark mode style if on dark bg */
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* Glassmorphism Card */
.glass-card {
  background: rgba(255, 255, 255, 0.7);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.nav-container {
  height: 100%;
  display: flex; /* Flexbox for alignment */
  justify-content: space-between;
  align-items: center; /* Vertical center alignment */
}

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo img {
  height: 40px; /* Explicit height */
  width: auto;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center; /* Align links vertically */
  margin: 0;
}

.nav-link {
  font-weight: 500;
  color: var(--text-main);
  position: relative;
  font-size: 0.95rem; /* Slightly smaller for elegance */
  letter-spacing: 0.01em;
}

.nav-link:hover {
  color: var(--primary-blue);
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--turquoise);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Mobile Menu Button - Hidden on desktop */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  color: var(--text-main);
}

/* Mobile Navigation */
@media (max-width: 768px) {
  .mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: white;
    flex-direction: column;
    padding: 6rem 2rem 2rem;
    gap: 1.5rem;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    align-items: flex-start;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links .nav-link {
    display: block;
    padding: 0.75rem 0;
    font-size: 1.1rem;
    border-bottom: 1px solid var(--bg-off-white);
  }

  .nav-links .btn {
    width: 100%;
    text-align: center;
    margin-top: 1rem;
  }

  /* Overlay when menu is open */
  body.menu-open::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
  }
}

/* Hero Section - Editorial / Dashboard Style */
.hero {
    padding-top: calc(var(--header-height) + 2rem);
    min-height: 100vh; /* Changed from fixed height to min-height */
    background: var(--bg-off-white);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    color: var(--text-main); /* Reset color */
}

/* Remove old hero backgrounds */
.hero::before,
.hero::after {
    display: none;
}

.hero-editorial-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    max-width: 100%;
    z-index: 2;
}

.hero-content h1 {
    color: var(--primary-blue); /* Restore original color */
    font-size: clamp(3rem, 5vw, 4.5rem);
    line-height: 1.05;
}

.hero-content p {
    color: var(--text-muted); /* Restore color */
    font-size: 1.25rem;
    font-weight: 400;
}

/* Hero Visuals - Bento Composition */
.hero-visual-bento {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(12, 1fr);
    height: 600px;
    position: relative;
}

.bento-item {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    position: relative;
    transition: transform 0.4s ease;
}

.bento-item:hover {
    transform: translateY(-5px);
}

.bento-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Main Visual: Network Map (Control) */
.bento-main {
    grid-column: 3 / 13;
    grid-row: 1 / 11;
    z-index: 1;
}

/* Inset Visual: Lounge (Comfort) */
.bento-inset {
    grid-column: 1 / 6;
    grid-row: 7 / 13;
    z-index: 2;
    border: 4px solid var(--bg-off-white);
}

/* Data Card (Proof) */
.bento-data {
    grid-column: 9 / 13;
    grid-row: 9 / 13;
    z-index: 3;
    background: white;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid rgba(0,0,0,0.05);
}

.data-stat {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--turquoise);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.data-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-blue);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Live Status Ticker */
.status-ticker {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    padding: 1rem 1.5rem;
    background: white;
    border-radius: 100px;
    box-shadow: var(--shadow-sm);
    display: inline-flex;
    align-items: center;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
}

.dot.processing {
    background: #eab308;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-editorial-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-visual-bento {
        height: 400px; /* Shorter on tablet */
        width: 100%;
    }
    
    .bento-main {
        grid-column: 1 / 13; 
    }
}

/* Sections */
.section-padding {
  padding: 8rem 0;
}

.section-padding-sm {
  padding: 4rem 0;
}

.border-bottom {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.bg-light {
  background-color: var(--bg-light);
}

.bg-off-white {
  background-color: var(--bg-off-white);
}

/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-item h3 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.stat-item p {
  margin: 0;
  font-weight: 500;
}

/* Bento/Value Grid */
.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem auto;
}

.section-label {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.bento-card-content {
  padding: 3rem;
}

.bento-icon {
  margin-bottom: 1.5rem;
  width: 48px;
  height: 48px;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.service-number {
  background: var(--bg-off-white);
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.service-number span {
  font-weight: 700;
  color: var(--primary-blue);
}

/* Footer */
.footer {
  background: var(--primary-dark);
  color: white;
  padding: 4rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  width: 100px; /* Reduced from 150px as requested */
  max-width: 100px;
  filter: brightness(0) invert(1);
  margin-bottom: 1rem;
  display: block;
}

.footer-text {
  color: rgba(255, 255, 255, 0.7);
}

.footer h4 {
  color: white;
  margin-bottom: 1rem;
}

.footer-links li {
  line-height: 2;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover {
  color: var(--turquoise);
}

.footer-contact {
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact a {
  color: var(--turquoise); 
  font-weight: 600;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
}

/* Page Specific */
.about-hero {
  padding: 8rem 0 4rem;
  background: var(--bg-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-visual {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.contact-page {
  padding: 8rem 0;
  background: var(--bg-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
}

.form-input {
  width: 100%;
  padding: 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-family: inherit;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

/* Responsive Overrides */
@media (max-width: 900px) {
  .contact-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }
}

/* ------------------------------------------------------------------ */
/* NEW SECTIONS STYLES (Restored) */
/* ------------------------------------------------------------------ */

/* Partner Logo Ticker */
.partners-section {
    padding: 3rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    background: white;
    overflow: hidden;
}

.partners-track {
    display: flex;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.partners-slide {
    display: flex;
    gap: 5rem;
    padding-right: 5rem; /* Ensure seamless gap between slides */
    animation: scroll 30s linear infinite;
    width: max-content;
    align-items: center;
}

/* Pause on hover */
.partners-section:hover .partners-slide {
    animation-play-state: paused;
}

.partners-slide img {
    height: 32px;
    width: auto;
    opacity: 0.5;
    transition: opacity 0.3s ease;
    filter: grayscale(100%);
}

.partners-slide img:hover {
    opacity: 1;
    filter: none;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* Philosophy Section */
.philosophy-section {
    padding: 8rem 0;
    background: var(--bg-white);
}

.philosophy-content {
    max-width: 900px;
    margin: 0 auto;
}

.quote-large {
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.1;
    color: var(--primary-blue);
    font-weight: 700;
    margin-bottom: 2rem;
}

/* Detailed Solutions Grid */
.solutions-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.solutions-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--turquoise);
}

.solution-icon {
    width: 48px;
    height: 48px;
    background: var(--bg-off-white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary-blue);
}

/* FAQ Accordion */
.faq-section {
    padding: 8rem 0;
    background: var(--bg-light);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.faq-item {
    background: white;
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.03);
}

.faq-question {
    padding: 1.5rem;
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    color: var(--primary-blue);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-muted);
    display: none;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-question {
    color: var(--turquoise);
}

/* Blog/Insights */
.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.insight-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.insight-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.insight-image {
    height: 240px;
    background: var(--bg-off-white);
    position: relative;
    overflow: hidden;
}

.insight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.insight-card:hover .insight-image img {
    transform: scale(1.05);
}

.insight-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.insight-tag {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--turquoise);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    display: block;
}

.insight-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--primary-blue);
    line-height: 1.3;
}

.insight-content a {
    margin-top: auto;
    display: inline-block;
}

/* CTA Section */
.cta-section {
    padding: 8rem 0;
    background: var(--primary-dark);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.cta-section h2 {
    color: white;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(255,255,255,0.7);
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
}

/* Responsive tweaks for new sections */
@media (max-width: 900px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .partners-track {
        gap: 2rem;
    }

    .quote-large {
        font-size: 2rem;
    }

    .status-ticker {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        border-radius: 20px;
    }
}

/* ------------------------------------------------------------------ */
/* PREMIUM REDESIGN STYLES */
/* ------------------------------------------------------------------ */

/* Dark Hero Variant */
.hero-dark {
    background: var(--gradient-dark);
    color: white;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.hero-dark .hero-content h1 {
    color: white;
}

.hero-dark .hero-content p {
    color: rgba(255, 255, 255, 0.7);
}

/* Animated gradient orbs */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float 20s ease-in-out infinite;
}

.hero-orb-1 {
    width: 600px;
    height: 600px;
    background: var(--turquoise);
    top: -200px;
    right: -100px;
    animation-delay: 0s;
}

.hero-orb-2 {
    width: 400px;
    height: 400px;
    background: var(--primary-blue);
    bottom: -100px;
    left: -100px;
    animation-delay: -10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

/* Large Display Text */
.display-xl {
    font-size: clamp(3.5rem, 8vw, 6rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
    margin-bottom: 1.5rem;
}

.display-lg {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

/* Highlight text with gradient */
.text-gradient {
    background: linear-gradient(135deg, var(--turquoise) 0%, var(--turquoise-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Premium Card Styles */
.premium-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.premium-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.premium-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.premium-card:hover::before {
    opacity: 1;
}

/* Feature Grid - Large */
.feature-grid-lg {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (max-width: 900px) {
    .feature-grid-lg {
        grid-template-columns: 1fr;
    }
}

.feature-card-lg {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.feature-card-lg:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.feature-icon-lg {
    width: 64px;
    height: 64px;
    min-width: 64px;
    background: var(--bg-off-white);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon-lg img {
    width: 32px;
    height: 32px;
}

.feature-card-lg h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.feature-card-lg p {
    margin-bottom: 0;
    color: var(--text-muted);
}

/* Testimonial Section */
.testimonial-section {
    padding: 8rem 0;
    background: var(--bg-cream);
    position: relative;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 1024px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}

.testimonial-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    font-size: 6rem;
    font-weight: 800;
    color: var(--turquoise);
    opacity: 0.1;
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    line-height: 1;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-main);
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
}

.testimonial-info h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--primary-blue);
}

.testimonial-info p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0;
}

/* Process/How It Works Section */
.process-section {
    padding: 8rem 0;
    background: white;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}

.process-grid::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--turquoise), var(--turquoise), transparent);
    z-index: 0;
}

@media (max-width: 900px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .process-grid::before {
        display: none;
    }
}

@media (max-width: 600px) {
    .process-grid {
        grid-template-columns: 1fr;
    }
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.process-number {
    width: 80px;
    height: 80px;
    background: white;
    border: 3px solid var(--turquoise);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--turquoise);
    transition: all 0.3s ease;
}

.process-step:hover .process-number {
    background: var(--turquoise);
    color: white;
    transform: scale(1.1);
}

.process-step h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.process-step p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin: 0;
}

/* Split Section */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

@media (max-width: 900px) {
    .split-section {
        grid-template-columns: 1fr;
    }
}

.split-content {
    padding: 6rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-image {
    position: relative;
    overflow: hidden;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Metric/Number Highlights */
.metrics-row {
    display: flex;
    gap: 4rem;
    justify-content: center;
    flex-wrap: wrap;
    padding: 4rem 0;
}

.metric-item {
    text-align: center;
}

.metric-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--turquoise);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Dark Section */
.section-dark {
    background: var(--primary-dark);
    color: white;
    padding: 8rem 0;
}

.section-dark h2,
.section-dark h3 {
    color: white;
}

.section-dark p {
    color: rgba(255, 255, 255, 0.7);
}

/* Value Proposition Strip */
.value-strip {
    background: var(--turquoise);
    padding: 1.5rem 0;
    overflow: hidden;
}

.value-strip-content {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.value-strip-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
}

.value-strip-item svg {
    width: 20px;
    height: 20px;
}

/* Animated underline for links */
.link-underline {
    position: relative;
    display: inline-block;
}

.link-underline::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--turquoise);
    transition: width 0.3s ease;
}

.link-underline:hover::after {
    width: 100%;
}

/* Logo Grid for Clients */
.client-logos {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 3rem;
    align-items: center;
    justify-items: center;
    padding: 3rem 0;
}

@media (max-width: 768px) {
    .client-logos {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

.client-logos img {
    max-width: 120px;
    height: auto;
    opacity: 0.5;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.client-logos img:hover {
    opacity: 1;
    filter: none;
}

/* Page Header for inner pages */
.page-header {
    padding: 10rem 0 5rem;
    background: var(--gradient-dark);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.page-header h1 {
    color: white;
    margin-bottom: 1rem;
    position: relative;
}

.page-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

/* Form Improvements */
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (max-width: 600px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
}

.form-input {
    width: 100%;
    padding: 1.25rem 1.5rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-input:focus {
    outline: none;
    border-color: var(--turquoise);
    box-shadow: 0 0 0 4px rgba(45, 189, 183, 0.1);
}

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: var(--text-main);
}

/* Smooth reveal animations */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }

/* Animation keyframes */
@keyframes fade-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-up {
    animation: fade-up 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* List with checkmarks */
.check-list {
    list-style: none;
    padding: 0;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.check-list li::before {
    content: '';
    width: 24px;
    height: 24px;
    min-width: 24px;
    background: var(--turquoise);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}

/* Divider with text */
.divider-text {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin: 4rem 0;
}

.divider-text::before,
.divider-text::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
}

.divider-text span {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    font-weight: 600;
}
