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

    :root {
      --navy: #0B2D6E;
      --navy-deep: #071D4A;
      --blue: #1A4DA2;
      --blue-mid: #2E6FD8;
      --blue-light: #CADCFC;
      --pale: #E8F0FB;
      --gold: #C8A84B;
      --gold-light: #E8C96A;
      --white: #FFFFFF;
      --text-dark: #0D1F3C;
      --text-mid: #4A5568;
      --text-light: #8FA4C8;
      --gray-bg: #F4F7FC;
    }

    html { scroll-behavior: smooth; }

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

    /* ── NAVBAR ── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 4rem;
      height: 72px;
      background: rgba(7, 29, 74, 0.95);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(200, 168, 75, 0.2);
      transition: all 0.3s ease;
    }
    .nav-logo {
      font-family: 'Playfair Display', serif;
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--white);
      letter-spacing: 0.02em;
    }
    .nav-logo span { color: var(--gold); }
    .nav-links {
      display: flex;
      gap: 2.5rem;
      list-style: none;
    }
    .nav-links a {
      color: var(--blue-light);
      text-decoration: none;
      font-size: 0.85rem;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--gold); }
    .nav-cta {
      background: var(--gold);
      color: var(--navy-deep) !important;
      padding: 0.5rem 1.4rem;
      border-radius: 2px;
      font-weight: 600 !important;
    }
    .nav-cta:hover { background: var(--gold-light); color: var(--navy-deep) !important; }

    /* ── HERO ── */
    #hero {
      min-height: 100vh;
      background: var(--navy-deep);
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      position: relative;
      overflow: hidden;
      padding-top: 72px;
    }
    .hero-bg-decor {
      position: absolute;
      inset: 0;
      pointer-events: none;
    }
    .hero-bg-decor .circle1 {
      position: absolute;
      width: 600px; height: 600px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(46,111,216,0.18) 0%, transparent 70%);
      top: -100px; right: -100px;
    }
    .hero-bg-decor .circle2 {
      position: absolute;
      width: 400px; height: 400px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(200,168,75,0.10) 0%, transparent 70%);
      bottom: -80px; left: 200px;
    }
    .hero-bg-decor .vline {
      position: absolute;
      left: 0; top: 0; bottom: 0;
      width: 6px;
      background: var(--gold);
    }
    .hero-bg-decor .grid-lines {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(46,111,216,0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(46,111,216,0.06) 1px, transparent 1px);
      background-size: 60px 60px;
    }

    .hero-left {
      padding: 6rem 4rem 6rem 6rem;
      position: relative;
      z-index: 2;
    }
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: rgba(200,168,75,0.12);
      border: 1px solid rgba(200,168,75,0.3);
      color: var(--gold);
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 0.4rem 1rem;
      border-radius: 2px;
      margin-bottom: 2rem;
      animation: fadeUp 0.6s ease both;
    }
    .hero-badge::before {
      content: '';
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--gold);
      animation: pulse 2s infinite;
    }
    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.5; transform: scale(0.7); }
    }
    .hero-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(3rem, 5vw, 4.8rem);
      font-weight: 900;
      line-height: 1.05;
      color: var(--white);
      margin-bottom: 0.4rem;
      animation: fadeUp 0.6s 0.1s ease both;
    }
    .hero-title .gold { color: var(--gold); }
    .hero-sub {
      font-size: 1.1rem;
      color: var(--blue-light);
      margin: 1.5rem 0 2.5rem;
      line-height: 1.7;
      max-width: 480px;
      font-style: italic;
      animation: fadeUp 0.6s 0.2s ease both;
    }
    .hero-sectors {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      margin-bottom: 3rem;
      animation: fadeUp 0.6s 0.3s ease both;
    }
    .hero-sector-pill {
      font-size: 0.72rem;
      font-weight: 500;
      color: var(--text-light);
      border: 1px solid rgba(202,220,252,0.2);
      padding: 0.3rem 0.8rem;
      border-radius: 2px;
      letter-spacing: 0.05em;
    }
    .hero-cta-group {
      display: flex;
      gap: 1rem;
      animation: fadeUp 0.6s 0.4s ease both;
    }
    .btn-primary {
      background: var(--gold);
      color: var(--navy-deep);
      font-weight: 700;
      font-size: 0.85rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      padding: 0.9rem 2rem;
      border: none;
      cursor: pointer;
      text-decoration: none;
      display: inline-block;
      transition: all 0.2s;
    }
    .btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
    .btn-outline {
      background: transparent;
      color: var(--white);
      font-weight: 500;
      font-size: 0.85rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      padding: 0.9rem 2rem;
      border: 1px solid rgba(255,255,255,0.25);
      cursor: pointer;
      text-decoration: none;
      display: inline-block;
      transition: all 0.2s;
    }
    .btn-outline:hover { border-color: var(--gold); color: var(--gold); }

    .hero-right {
      position: relative;
      z-index: 2;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 4rem;
    }
    .hero-card-stack {
      position: relative;
      width: 360px;
      height: 360px;
    }
    .years-badge {
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      width: 200px; height: 200px;
      border-radius: 50%;
      background: var(--gold);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      z-index: 3;
      box-shadow: 0 0 80px rgba(200,168,75,0.3);
      animation: fadeScale 0.8s 0.3s ease both;
    }
    .years-badge .num {
      font-family: 'Playfair Display', serif;
      font-size: 5rem;
      font-weight: 900;
      color: var(--navy-deep);
      line-height: 1;
    }
    .years-badge .label {
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 0.18em;
      color: var(--navy-deep);
      text-transform: uppercase;
    }
    .years-badge .sublabel {
      font-size: 0.55rem;
      letter-spacing: 0.1em;
      color: rgba(11,45,110,0.65);
      text-transform: uppercase;
    }
    .orbit-ring {
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      border-radius: 50%;
      border: 1px dashed rgba(200,168,75,0.25);
    }
    .orbit-ring.r1 { width: 260px; height: 260px; animation: spin 20s linear infinite; }
    .orbit-ring.r2 { width: 340px; height: 340px; animation: spin 30s linear infinite reverse; }
    .orbit-dot {
      position: absolute;
      width: 8px; height: 8px;
      border-radius: 50%;
      background: var(--gold);
      top: -4px; left: 50%;
      transform: translateX(-50%);
    }
    .orbit-dot2 {
      position: absolute;
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--blue-mid);
      bottom: -3px; left: 50%;
      transform: translateX(-50%);
    }
    @keyframes spin { from { transform: translate(-50%,-50%) rotate(0deg); } to { transform: translate(-50%,-50%) rotate(360deg); } }
    @keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
    @keyframes fadeScale { from { opacity: 0; transform: translate(-50%,-50%) scale(0.8); } to { opacity: 1; transform: translate(-50%,-50%) scale(1); } }

    .stats-strip {
      background: var(--navy);
      border-top: 1px solid rgba(200,168,75,0.2);
      border-bottom: 3px solid var(--gold);
      display: grid;
      grid-template-columns: repeat(4, 1fr);
    }
    .stat-item {
      padding: 2.5rem 2rem;
      text-align: center;
      border-right: 1px solid rgba(202,220,252,0.1);
      transition: background 0.3s;
    }
    .stat-item:last-child { border-right: none; }
    .stat-item:hover { background: rgba(46,111,216,0.08); }
    .stat-num {
      font-family: 'Playfair Display', serif;
      font-size: 2.8rem;
      font-weight: 700;
      color: var(--gold);
      line-height: 1;
    }
    .stat-label {
      font-size: 0.8rem;
      color: var(--blue-light);
      margin-top: 0.4rem;
      letter-spacing: 0.05em;
    }

    /* ── SECTIONS COMMON ── */
    section { position: relative; }
    .section-header {
      text-align: center;
      margin-bottom: 4rem;
    }
    .section-tag {
      display: inline-block;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1rem;
    }
    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 3.5vw, 2.8rem);
      font-weight: 700;
      color: var(--navy);
      line-height: 1.15;
    }
    .section-title.light { color: var(--white); }
    .section-divider {
      width: 48px; height: 3px;
      background: var(--gold);
      margin: 1.2rem auto 0;
    }
    .section-sub {
      font-size: 1rem;
      color: var(--text-mid);
      margin-top: 1rem;
      font-style: italic;
    }
    .section-sub.light { color: var(--blue-light); }

    /* ── WHO WE ARE ── */
    #about {
      padding: 8rem 6rem;
      background: var(--white);
    }
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 6rem;
      align-items: center;
    }
    .about-text p {
      font-size: 1rem;
      color: var(--text-mid);
      line-height: 1.85;
      margin-bottom: 1.2rem;
    }
    .about-text p strong { color: var(--navy); }
    .about-visual {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.2rem;
    }
    .about-card {
      background: var(--pale);
      border-left: 4px solid var(--navy);
      padding: 1.8rem 1.5rem;
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .about-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(11,45,110,0.12); }
    .about-card.gold-border { border-left-color: var(--gold); }
    .about-card .card-num {
      font-family: 'Playfair Display', serif;
      font-size: 2.4rem;
      font-weight: 700;
      color: var(--navy);
      line-height: 1;
    }
    .about-card.gold-border .card-num { color: var(--gold); }
    .about-card .card-label {
      font-size: 0.82rem;
      color: var(--text-mid);
      margin-top: 0.3rem;
      font-weight: 500;
    }

    /* ── SECTORS ── */
    #sectors {
      padding: 8rem 6rem;
      background: var(--navy-deep);
    }
    .sectors-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }
    .sector-card {
      background: rgba(26,77,162,0.3);
      border: 1px solid rgba(202,220,252,0.1);
      padding: 2.5rem 2rem;
      position: relative;
      overflow: hidden;
      transition: all 0.35s ease;
      cursor: default;
    }
    .sector-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 4px; height: 100%;
      background: var(--gold);
      transform: scaleY(0);
      transform-origin: top;
      transition: transform 0.35s ease;
    }
    .sector-card:hover { background: rgba(46,111,216,0.25); border-color: rgba(200,168,75,0.3); transform: translateY(-6px); }
    .sector-card:hover::before { transform: scaleY(1); }
    .sector-icon {
      width: 44px; height: 44px;
      margin-bottom: 1.4rem;
      display: block;
      color: var(--blue-light);
      transition: color 0.3s;
    }
    .sector-card:hover .sector-icon { color: var(--gold); }
    .sector-icon svg { width: 44px; height: 44px; stroke: currentColor; fill: none; }
    .sector-name {
      font-family: 'Playfair Display', serif;
      font-size: 1.2rem;
      font-weight: 600;
      color: var(--white);
      margin-bottom: 0.8rem;
    }
    .sector-desc {
      font-size: 0.88rem;
      color: var(--text-light);
      line-height: 1.7;
    }
    .sector-roles {
      margin-top: 1.2rem;
      padding-top: 1.2rem;
      border-top: 1px solid rgba(202,220,252,0.1);
      font-size: 0.78rem;
      color: var(--gold);
      line-height: 1.6;
    }

    /* ── WHY US ── */
    #why {
      padding: 8rem 6rem;
      background: var(--gray-bg);
    }
    .why-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
    }
    .why-card {
      background: var(--white);
      padding: 2.5rem 2rem;
      border-bottom: 3px solid transparent;
      box-shadow: 0 4px 24px rgba(11,45,110,0.06);
      transition: all 0.3s;
    }
    .why-card:hover { border-bottom-color: var(--gold); transform: translateY(-5px); box-shadow: 0 12px 40px rgba(11,45,110,0.1); }
    .why-icon-wrap {
      width: 52px; height: 52px;
      background: var(--pale);
      border-radius: 2px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.5rem;
      transition: background 0.3s;
      color: var(--navy);
    }
    .why-card:hover .why-icon-wrap { background: var(--navy); color: var(--gold); }
    .why-icon-wrap svg { width: 24px; height: 24px; stroke: currentColor; fill: none; }
    .why-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 0.7rem;
    }
    .why-desc {
      font-size: 0.88rem;
      color: var(--text-mid);
      line-height: 1.7;
    }

    /* ── PROCESS ── */
    #process {
      padding: 8rem 6rem;
      background: var(--navy);
    }
    .process-steps {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 0;
      position: relative;
      margin-top: 1rem;
    }
    .process-steps::before {
      content: '';
      position: absolute;
      top: 40px;
      left: 10%;
      right: 10%;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--gold), var(--gold), transparent);
      opacity: 0.4;
      z-index: 0;
    }
    .process-step {
      text-align: center;
      padding: 0 1rem;
      position: relative;
      z-index: 1;
    }
    .step-num-wrap {
      width: 80px; height: 80px;
      border-radius: 50%;
      background: rgba(46,111,216,0.2);
      border: 2px solid rgba(200,168,75,0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.5rem;
      transition: all 0.3s;
    }
    .process-step:hover .step-num-wrap {
      background: var(--gold);
      border-color: var(--gold);
    }
    .step-num {
      font-family: 'Playfair Display', serif;
      font-size: 1.8rem;
      font-weight: 700;
      color: var(--gold);
      transition: color 0.3s;
    }
    .process-step:hover .step-num { color: var(--navy-deep); }
    .step-title {
      font-family: 'Playfair Display', serif;
      font-size: 1rem;
      font-weight: 600;
      color: var(--white);
      margin-bottom: 0.7rem;
    }
    .step-desc {
      font-size: 0.82rem;
      color: var(--text-light);
      line-height: 1.65;
    }

    /* ── COMMITMENT ── */
    #commitment {
      padding: 8rem 6rem;
      background: var(--white);
    }
    .commitment-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 6rem;
      align-items: start;
    }
    .commitment-quote {
      background: var(--navy);
      padding: 3.5rem;
      position: relative;
    }
    .commitment-quote::before {
      content: '"';
      position: absolute;
      top: -1rem; left: 2rem;
      font-family: 'Playfair Display', serif;
      font-size: 8rem;
      color: var(--gold);
      line-height: 1;
      opacity: 0.5;
    }
    .commitment-quote p {
      font-family: 'Playfair Display', serif;
      font-size: 1.15rem;
      font-style: italic;
      color: var(--white);
      line-height: 1.8;
      position: relative;
      z-index: 1;
    }
    .checklist { list-style: none; margin-top: 0; }
    .checklist li {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      padding: 0.9rem 0;
      border-bottom: 1px solid var(--pale);
      font-size: 0.92rem;
      color: var(--text-mid);
    }
    .checklist li:last-child { border-bottom: none; }
    .check-icon {
      width: 22px; height: 22px;
      border-radius: 50%;
      background: var(--pale);
      border: 2px solid var(--blue-mid);
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: 1px;
      color: var(--blue-mid);
    }
    .check-icon svg { width: 12px; height: 12px; stroke: currentColor; fill: none; }
    .metrics-row {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      background: var(--navy);
      margin-top: 5rem;
      border-top: 3px solid var(--gold);
    }
    .metric-box {
      padding: 2.5rem 1.5rem;
      text-align: center;
      border-right: 1px solid rgba(202,220,252,0.1);
    }
    .metric-box:last-child { border-right: none; }
    .metric-val {
      font-family: 'Playfair Display', serif;
      font-size: 2.2rem;
      font-weight: 700;
      color: var(--gold);
    }
    .metric-lbl {
      font-size: 0.78rem;
      color: var(--blue-light);
      margin-top: 0.4rem;
    }

    /* ── TESTIMONIALS ── */
    #testimonials {
      padding: 8rem 6rem;
      background: var(--navy-deep);
    }
    .testi-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
    }
    .testi-card {
      background: rgba(26,77,162,0.25);
      border: 1px solid rgba(202,220,252,0.1);
      padding: 2.5rem;
      position: relative;
      transition: all 0.3s;
    }
    .testi-card:hover { background: rgba(26,77,162,0.4); border-color: rgba(200,168,75,0.3); }
    .testi-card::before {
      content: '"';
      position: absolute;
      top: 1rem; left: 1.5rem;
      font-family: 'Playfair Display', serif;
      font-size: 4rem;
      color: var(--gold);
      opacity: 0.35;
      line-height: 1;
    }
    .testi-text {
      font-style: italic;
      font-size: 0.92rem;
      color: var(--blue-light);
      line-height: 1.8;
      margin-top: 1.5rem;
    }
    .testi-divider {
      width: 40px; height: 2px;
      background: var(--gold);
      margin: 1.5rem 0 1rem;
    }
    .testi-name {
      font-weight: 600;
      color: var(--gold);
      font-size: 0.9rem;
    }
    .testi-company {
      font-size: 0.8rem;
      color: var(--text-light);
      margin-top: 0.2rem;
    }

    /* ── CONTACT ── */
    #contact {
      padding: 8rem 6rem;
      background: var(--navy-deep);
      border-top: 1px solid rgba(200,168,75,0.2);
    }
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 6rem;
      align-items: start;
    }
    .contact-tagline {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.8rem, 3vw, 2.4rem);
      font-weight: 700;
      color: var(--white);
      line-height: 1.2;
      margin-bottom: 1.2rem;
    }
    .contact-tagline span { color: var(--gold); }
    .contact-sub {
      font-size: 0.95rem;
      color: var(--blue-light);
      line-height: 1.7;
      margin-bottom: 2.5rem;
    }
    .contact-info-item {
      display: flex;
      align-items: center;
      gap: 1.2rem;
      margin-bottom: 1.2rem;
    }
    .contact-icon {
      width: 44px; height: 44px;
      border-radius: 2px;
      background: rgba(200,168,75,0.1);
      border: 1px solid rgba(200,168,75,0.25);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      color: var(--gold);
    }
    .contact-icon svg { width: 20px; height: 20px; stroke: currentColor; fill: none; }
    .contact-info-text {
      font-size: 0.95rem;
      color: var(--white);
    }
    .contact-services {
      background: rgba(26,77,162,0.2);
      border: 1px solid rgba(202,220,252,0.1);
      padding: 2.5rem;
    }
    .contact-services h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.1rem;
      color: var(--gold);
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin-bottom: 1.5rem;
      padding-bottom: 0.8rem;
      border-bottom: 1px solid rgba(200,168,75,0.2);
    }
    .service-item {
      display: flex;
      align-items: center;
      gap: 0.8rem;
      padding: 0.7rem 0;
      font-size: 0.92rem;
      color: var(--blue-light);
      border-bottom: 1px solid rgba(202,220,252,0.07);
    }
    .service-item:last-child { border-bottom: none; }
    .service-check {
      color: var(--gold);
      font-weight: 700;
      font-size: 1rem;
      flex-shrink: 0;
      display: flex;
      align-items: center;
    }
    .service-check svg { width: 18px; height: 18px; stroke: currentColor; fill: none; }

    /* ── FOOTER ── */
    footer {
      background: #040F26;
      padding: 1.8rem 6rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-top: 1px solid rgba(200,168,75,0.15);
    }
    .footer-logo {
      font-family: 'Playfair Display', serif;
      font-weight: 700;
      color: var(--white);
      font-size: 1rem;
    }
    .footer-logo span { color: var(--gold); }
    .footer-note {
      font-size: 0.78rem;
      color: var(--text-light);
    }

    /* ── SCROLL REVEAL ── */
    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }
    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }
    .reveal-delay-5 { transition-delay: 0.5s; }

    /* ── RESPONSIVE ── */
    @media (max-width: 1024px) {
      nav { padding: 0 2rem; }
      nav .nav-links { display: none; }
      #hero { grid-template-columns: 1fr; }
      .hero-right { display: none; }
      .hero-left { padding: 4rem 2rem; }
      #about, #sectors, #why, #process, #commitment, #testimonials, #contact { padding: 5rem 2rem; }
      .about-grid, .commitment-grid, .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
      .sectors-grid, .why-grid, .testi-grid { grid-template-columns: 1fr 1fr; }
      .process-steps { grid-template-columns: 1fr 1fr; gap: 2rem; }
      .process-steps::before { display: none; }
      .stats-strip, .metrics-row { grid-template-columns: repeat(2, 1fr); }
      footer { flex-direction: column; gap: 0.5rem; text-align: center; padding: 1.5rem 2rem; }
    }
    @media (max-width: 640px) {
      .sectors-grid, .why-grid, .testi-grid { grid-template-columns: 1fr; }
      .hero-cta-group { flex-direction: column; }
      .hero-title { font-size: 2.4rem; }
    }
    

form {
  border-radius: 5px;
  background-color: #f2f2f2;
  padding: 20px;
}

label {display: block;}

input[type=text], select {
  width: 100%;
  padding: 12px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

input[type=submit] {
  width: 100%;
  background-color: #4CAF50;
  color: white;
  padding: 14px;
  margin: 8px 0;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

input[type=submit]:hover {
  background-color: #45a049;
}




    
    