  :root {
    --blue-dark: #1a1f6e;
    --blue-mid: #2d35a8;
    --blue-bright: #3d4fd6;
    --blue-accent: #4f63ff;
    --green: #22c993;
    --green-dark: #15a87a;
    --white: #ffffff;
    --off-white: #f4f6fb;
    --gray-light: #e8ecf5;
    --gray-mid: #8892b0;
    --dark: #0d1035;
    --text-dark: #1a1f3c;
    --text-mid: #4a5280;
    --shadow-card: 0 4px 32px rgba(26,31,110,0.10);
    --shadow-hover: 0 12px 48px rgba(26,31,110,0.18);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;
    --radius-xl: 40px;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.65;
  }

  /* TOPBAR */
  .topbar {
    background: var(--blue-dark);
    padding: 9px 0;
    text-align: center;
    font-size: 13px;
    color: rgba(255,255,255,0.8);
    letter-spacing: 0.01em;
  }
  .topbar a { color: var(--green); text-decoration: none; }
  .topbar span { margin: 0 20px; }

  /* NAVBAR */
  nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gray-light);
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
    transition: box-shadow 0.3s;
  }
  nav.scrolled { box-shadow: 0 4px 24px rgba(26,31,110,0.08); }

  .logo {
    font-family: 'Poppins', sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: var(--blue-dark);
    letter-spacing: -0.5px;
    text-decoration: none;
  }
  .logo span { color: var(--blue-accent); }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
  }
  .nav-links a {
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-mid);
    transition: color 0.2s;
    position: relative;
  }
  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0; right: 0;
    height: 2px;
    background: var(--blue-accent);
    transform: scaleX(0);
    transition: transform 0.25s;
    border-radius: 2px;
  }
  .nav-links a:hover { color: var(--blue-accent); }
  .nav-links a:hover::after { transform: scaleX(1); }

  .btn-primary {
    background: var(--blue-accent);
    color: white;
    padding: 11px 26px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    display: inline-block;
  }
  .btn-primary:hover {
    background: var(--blue-mid);
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(79,99,255,0.35);
  }

  .btn-secondary {
    background: transparent;
    color: var(--blue-accent);
    border: 1.5px solid var(--blue-accent);
    padding: 11px 26px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-block;
  }
  .btn-secondary:hover {
    background: var(--blue-accent);
    color: white;
    transform: translateY(-1px);
  }

  /* HERO */
  .hero {
    background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-mid) 55%, #3547c8 100%);
    padding: 100px 5% 90px;
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute;
    top: -120px; right: -120px;
    width: 550px; height: 550px;
    border-radius: 50%;
    background: rgba(79,99,255,0.18);
    animation: pulse 6s ease-in-out infinite;
  }
  .hero::after {
    content: '';
    position: absolute;
    bottom: -80px; left: 30%;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: rgba(34,201,147,0.12);
    animation: pulse 8s ease-in-out infinite 2s;
  }
  @keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.08); opacity: 0.7; }
  }

  .hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(34,201,147,0.15);
    border: 1px solid rgba(34,201,147,0.3);
    color: var(--green);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 24px;
    letter-spacing: 0.02em;
  }
  .hero-badge::before {
    content: '';
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--green);
    animation: blink 2s infinite;
  }
  @keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
  }

  .hero h1 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(38px, 4.5vw, 58px);
    font-weight: 800;
    color: white;
    line-height: 1.1;
    margin-bottom: 22px;
    letter-spacing: -1px;
  }
  .hero h1 em {
    font-style: normal;
    color: var(--green);
  }

  .hero p {
    font-size: 17px;
    color: rgba(255,255,255,0.75);
    max-width: 500px;
    margin-bottom: 36px;
    font-weight: 300;
    line-height: 1.7;
  }

  .hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
  }
  .hero-ctas .btn-primary {
    background: var(--green);
    padding: 14px 32px;
    font-size: 15px;
  }
  .hero-ctas .btn-primary:hover { background: var(--green-dark); }
  .hero-ctas .btn-ghost {
    background: rgba(255,255,255,0.1);
    color: white;
    border: 1px solid rgba(255,255,255,0.25);
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
  }
  .hero-ctas .btn-ghost:hover { background: rgba(255,255,255,0.2); }

  .hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 52px;
    padding-top: 36px;
    border-top: 1px solid rgba(255,255,255,0.12);
  }
  .hero-stat-num {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: white;
    line-height: 1;
  }
  .hero-stat-label {
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    margin-top: 4px;
    font-weight: 300;
  }

  .hero-visual {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .hero-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    backdrop-filter: blur(8px);
    transition: transform 0.3s, background 0.3s;
  }
  .hero-card:hover {
    transform: translateX(6px);
    background: rgba(255,255,255,0.12);
  }
  .hero-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
  }
  .hero-card-icon {
    width: 38px; height: 38px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
  }
  .icon-green { background: rgba(34,201,147,0.2); }
  .icon-blue { background: rgba(79,99,255,0.2); }
  .icon-orange { background: rgba(255,165,50,0.2); }
  .hero-card-title {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: white;
  }
  .hero-card-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    font-weight: 300;
  }

  /* LOGOS */
  .logos-section {
    background: var(--off-white);
    padding: 40px 5%;
    overflow: hidden;
  }
  .logos-label {
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-mid);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 28px;
  }
  .logos-track {
    display: flex;
    gap: 0;
    animation: scroll-logos 30s linear infinite;
    width: max-content;
  }
  @keyframes scroll-logos {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
  .logos-track img, .logo-item {
    height: 36px;
    filter: grayscale(1) opacity(0.5);
    transition: filter 0.3s;
    padding: 0 32px;
    display: flex;
    align-items: center;
  }
  .logo-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--gray-mid);
    white-space: nowrap;
    padding: 0 32px;
    opacity: 0.5;
  }

  /* SECTION COMMONS */
  section { padding: 90px 5%; }
  .section-inner { max-width: 1200px; margin: 0 auto; }
  .section-tag {
    display: inline-block;
    background: rgba(79,99,255,0.08);
    color: var(--blue-accent);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 14px;
  }
  .section-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.15;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
  }
  .section-sub {
    font-size: 17px;
    color: var(--text-mid);
    font-weight: 300;
    max-width: 560px;
    line-height: 1.7;
  }

  /* WHO WE ARE */
  .about-section { background: white; }
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
  }
  .about-values {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 36px;
  }
  .value-item {
    display: flex;
    gap: 16px;
    padding: 18px 20px;
    background: var(--off-white);
    border-radius: var(--radius-md);
    align-items: flex-start;
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: default;
  }
  .value-item:hover {
    transform: translateX(6px);
    box-shadow: var(--shadow-card);
  }
  .value-icon {
    width: 42px; height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
  }
  .v-green { background: rgba(34,201,147,0.12); }
  .v-blue { background: rgba(79,99,255,0.1); }
  .v-orange { background: rgba(255,140,50,0.1); }
  .value-title {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
  }
  .value-desc { font-size: 14px; color: var(--text-mid); font-weight: 300; line-height: 1.6; }

  .about-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .about-stat-card {
    background: var(--blue-dark);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    text-align: center;
    transition: transform 0.25s;
  }
  .about-stat-card:hover { transform: translateY(-4px); }
  .about-stat-card.accent { background: var(--green); }
  .about-stat-card.accent2 { background: var(--blue-accent); }
  .about-stat-card.light {
    background: var(--off-white);
    grid-column: span 2;
  }
  .stat-big {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 6px;
  }
  .about-stat-card.light .stat-big { color: var(--blue-dark); }
  .stat-label { font-size: 13px; color: rgba(255,255,255,0.7); font-weight: 300; }
  .about-stat-card.light .stat-label { color: var(--text-mid); }

  /* SERVICES */
  .services-section { background: var(--off-white); }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 24px;
    margin-top: 52px;
  }
  .service-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    box-shadow: var(--shadow-card);
    transition: transform 0.25s, box-shadow 0.25s;
    position: relative;
    overflow: hidden;
  }
  .service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--blue-accent);
    transform: scaleX(0);
    transition: transform 0.3s;
    transform-origin: left;
  }
  .service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
  .service-card:hover::before { transform: scaleX(1); }
  .service-card.featured { background: var(--blue-dark); }
  .service-card.featured::before { background: var(--green); transform: scaleX(1); }
  .service-icon {
    width: 56px; height: 56px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 20px;
  }
  .si-blue { background: rgba(79,99,255,0.1); }
  .si-green { background: rgba(34,201,147,0.12); }
  .si-purple { background: rgba(140,90,250,0.1); }
  .si-orange { background: rgba(255,140,50,0.1); }
  .si-white { background: rgba(255,255,255,0.12); }
  .service-title {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
  }
  .service-card.featured .service-title { color: white; }
  .service-desc { font-size: 14px; color: var(--text-mid); font-weight: 300; line-height: 1.7; margin-bottom: 18px; }
  .service-card.featured .service-desc { color: rgba(255,255,255,0.65); }
  .service-features { list-style: none; }
  .service-features li {
    font-size: 13px;
    color: var(--text-mid);
    padding: 5px 0;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .service-card.featured .service-features li { color: rgba(255,255,255,0.7); }
  .service-features li::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--green);
    flex-shrink: 0;
  }

  /* METHODOLOGY */
  .method-section { background: var(--blue-dark); overflow: hidden; position: relative; }
  .method-section::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: rgba(79,99,255,0.12);
  }
  .method-section .section-title { color: white; }
  .method-section .section-sub { color: rgba(255,255,255,0.6); }
  .method-section .section-tag { background: rgba(34,201,147,0.15); color: var(--green); }
  .steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 60px;
    position: relative;
  }
  .steps-grid::before {
    content: '';
    position: absolute;
    top: 35px;
    left: 12.5%; right: 12.5%;
    height: 2px;
    background: rgba(255,255,255,0.1);
  }
  .step-item { text-align: center; padding: 0 20px; position: relative; }
  .step-num {
    width: 70px; height: 70px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--green);
    position: relative;
    z-index: 1;
    transition: background 0.3s, border-color 0.3s;
  }
  .step-item:hover .step-num {
    background: rgba(34,201,147,0.15);
    border-color: var(--green);
  }
  .step-title {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
  }
  .step-desc { font-size: 13px; color: rgba(255,255,255,0.5); font-weight: 300; line-height: 1.7; }
  .step-duration {
    display: inline-block;
    background: rgba(34,201,147,0.15);
    color: var(--green);
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 50px;
    margin-top: 10px;
    letter-spacing: 0.05em;
  }

  /* WHY US */
  .why-section { background: white; }
  .why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
  }
  .why-points {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 36px;
  }
  .why-point {
    display: flex;
    gap: 18px;
    align-items: flex-start;
  }
  .why-point-num {
    width: 36px; height: 36px;
    background: var(--blue-accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
    margin-top: 2px;
  }
  .why-point-title {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
  }
  .why-point-desc { font-size: 14px; color: var(--text-mid); font-weight: 300; line-height: 1.65; }
  .why-highlight {
    background: linear-gradient(135deg, var(--blue-dark), var(--blue-accent));
    border-radius: var(--radius-xl);
    padding: 50px 42px;
    color: white;
    position: relative;
    overflow: hidden;
  }
  .why-highlight::before {
    content: '"';
    position: absolute;
    top: -20px; left: 28px;
    font-family: 'Poppins', sans-serif;
    font-size: 180px;
    font-weight: 800;
    color: rgba(255,255,255,0.05);
    line-height: 1;
  }
  .quote-text {
    font-size: 20px;
    font-style: italic;
    line-height: 1.6;
    color: rgba(255,255,255,0.9);
    margin-bottom: 28px;
    font-weight: 300;
    position: relative;
  }
  .quote-author {
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .author-avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 16px;
  }
  .author-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 15px;
  }
  .author-role { font-size: 13px; color: rgba(255,255,255,0.6); font-weight: 300; }

  /* TESTIMONIALS */
  .testimonials-section { background: var(--off-white); }
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 52px;
  }
  .testimonial-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 30px 26px;
    box-shadow: var(--shadow-card);
    transition: transform 0.25s;
  }
  .testimonial-card:hover { transform: translateY(-4px); }
  .testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 18px;
  }
  .star { color: #ffc542; font-size: 16px; }
  .testimonial-text {
    font-size: 14px;
    color: var(--text-mid);
    font-weight: 300;
    line-height: 1.75;
    margin-bottom: 20px;
    font-style: italic;
  }
  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--gray-light);
  }
  .t-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--blue-dark);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
  }
  .t-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--text-dark);
  }
  .t-role { font-size: 12px; color: var(--gray-mid); font-weight: 300; }

  /* CTA SECTION */
  .cta-section {
    background: linear-gradient(135deg, var(--blue-dark) 0%, #2d35a8 100%);
    padding: 100px 5%;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .cta-section::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 700px; height: 700px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.05);
    pointer-events: none;
  }
  .cta-section::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 450px; height: 450px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.08);
    pointer-events: none;
  }
  .cta-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(30px, 3.5vw, 48px);
    font-weight: 800;
    color: white;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
  }
  .cta-section p {
    font-size: 17px;
    color: rgba(255,255,255,0.65);
    font-weight: 300;
    max-width: 520px;
    margin: 0 auto 40px;
    position: relative;
    z-index: 1;
  }
  .cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
  }
  .cta-buttons .btn-primary {
    background: var(--green);
    padding: 15px 36px;
    font-size: 15px;
  }
  .cta-buttons .btn-primary:hover { background: var(--green-dark); }
  .cta-buttons .btn-outline {
    background: transparent;
    color: white;
    border: 1.5px solid rgba(255,255,255,0.4);
    padding: 15px 36px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
  }
  .cta-buttons .btn-outline:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); }

  /* CONTACT */
  .contact-section { background: white; }
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 72px;
    align-items: start;
  }
  .contact-info-block {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 32px;
  }
  .contact-info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
  }
  .ci-icon {
    width: 44px; height: 44px;
    background: rgba(79,99,255,0.08);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
  }
  .ci-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-mid);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 3px;
  }
  .ci-value {
    font-size: 15px;
    color: var(--text-dark);
    font-weight: 500;
  }
  .contact-form {
    background: var(--off-white);
    border-radius: var(--radius-xl);
    padding: 42px;
  }
  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .form-group { margin-bottom: 18px; }
  .form-group label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-mid);
    margin-bottom: 7px;
  }
  .form-group input,
  .form-group textarea,
  .form-group select {
    width: 100%;
    padding: 12px 16px;
    background: white;
    border: 1.5px solid var(--gray-light);
    border-radius: var(--radius-md);
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: var(--text-dark);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
  }
  .form-group input:focus,
  .form-group textarea:focus {
    border-color: var(--blue-accent);
    box-shadow: 0 0 0 3px rgba(79,99,255,0.1);
  }
  .form-group textarea { min-height: 120px; resize: vertical; }
  .form-submit {
    width: 100%;
    background: var(--blue-accent);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 50px;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    letter-spacing: 0.02em;
  }
  .form-submit:hover { background: var(--blue-mid); transform: translateY(-1px); }

  /* FOOTER */
  footer {
    background: var(--dark);
    padding: 70px 5% 32px;
    color: rgba(255,255,255,0.6);
  }
  .footer-inner {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 52px;
  }
  .footer-logo {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: white;
    margin-bottom: 14px;
    display: block;
    text-decoration: none;
  }
  .footer-logo span { color: var(--green); }
  .footer-tagline { font-size: 14px; font-weight: 300; line-height: 1.7; max-width: 260px; }
  .footer-social {
    display: flex;
    gap: 10px;
    margin-top: 22px;
  }
  .social-btn {
    width: 36px; height: 36px;
    background: rgba(255,255,255,0.06);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    transition: background 0.2s;
    text-decoration: none;
    color: rgba(255,255,255,0.7);
  }
  .social-btn:hover { background: rgba(79,99,255,0.3); color: white; }
  .footer-col-title {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: white;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }
  .footer-links { list-style: none; }
  .footer-links li { margin-bottom: 10px; }
  .footer-links a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 14px;
    font-weight: 300;
    transition: color 0.2s;
  }
  .footer-links a:hover { color: white; }
  .footer-contact-item {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
    font-weight: 300;
  }
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    font-weight: 300;
  }
  .footer-bottom-links a {
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    margin-left: 24px;
    transition: color 0.2s;
  }
  .footer-bottom-links a:hover { color: white; }

  /* ANIMATIONS */
  .fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
  }
  .fade-up.visible { opacity: 1; transform: translateY(0); }

  /* RESPONSIVE */
  @media (max-width: 900px) {
    .hero-inner, .about-grid, .why-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .steps-grid { grid-template-columns: 1fr 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .nav-links { display: none; }
    .hero-stats { flex-wrap: wrap; }
    .about-visual { display: none; }
  }
  @media (max-width: 600px) {
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr; }
    .steps-grid::before { display: none; }
  }

/* DIRIGEANTS CARDS */
.dirigeant-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s;
}
.dirigeant-card:hover { transform: translateY(-6px); }
.dirigeant-icon {
  width: 54px; height: 54px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; margin-bottom: 20px;
}
.dirigeant-title {
  font-family: 'Poppins', sans-serif;
  font-size: 18px; font-weight: 700;
  color: var(--text-dark); margin-bottom: 10px;
}
.dirigeant-desc {
  font-size: 14px; color: var(--text-mid);
  font-weight: 300; line-height: 1.75;
}
.dirigeant-cta-card {
  background: var(--blue-dark);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s;
}
.dirigeant-cta-card:hover { transform: translateY(-6px); }
.dirigeant-cta-title {
  font-family: 'Poppins', sans-serif;
  font-size: 20px; font-weight: 700;
  color: white; margin-bottom: 12px; line-height: 1.4;
}
.dirigeant-cta-desc {
  font-size: 14px; color: rgba(255,255,255,0.6);
  font-weight: 300; margin-bottom: 24px;
}

/* NAV TOGGLE MOBILE */
.nav-toggle {
  display: none;
  background: none; border: none;
  font-size: 22px; cursor: pointer;
  color: var(--text-dark);
}
@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav-links.open { display: flex !important; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: white; padding: 20px; box-shadow: 0 8px 24px rgba(0,0,0,0.1); z-index: 99; }
  .dirigeant-card, .dirigeant-cta-card { grid-column: span 1; }
  section[style*="grid-template-columns: repeat(3"] { grid-template-columns: 1fr !important; }
}

/* Contact Form 7 override */
.wpcf7-form input,
.wpcf7-form textarea,
.wpcf7-form select {
  width: 100%; padding: 12px 16px;
  background: white; border: 1.5px solid var(--gray-light);
  border-radius: var(--radius-md);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px; color: var(--text-dark);
  transition: border-color 0.2s; outline: none; margin-bottom: 16px;
}
.wpcf7-form input:focus,
.wpcf7-form textarea:focus { border-color: var(--blue-accent); }
.wpcf7-submit {
  width: 100%; background: var(--blue-accent);
  color: white; border: none; padding: 15px;
  border-radius: 50px; font-size: 15px;
  font-weight: 600; cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: background 0.2s;
}
.wpcf7-submit:hover { background: var(--blue-mid); }
