*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --border: rgba(0,0,0,0.1);
    --serif: 'Playfair Display', Georgia, serif;
    --sans: 'DM Sans', system-ui, sans-serif;
   --ink: #121c3c;
   --ink-soft: #3f5378;
   --ink-muted: #7f8db1;
    --cream: #eef4fb;
    --white: #ffffff;
    --gold: #2476b5;
    --gold-light: rgba(36,118,181,0.12);
    --gold-dark: #1f2ba8;
    --nav-h: 80px;
  }

  html { scroll-behavior: smooth; }
  body {
    font-family: var(--sans);
    background: var(--cream);
    color: var(--ink);
    min-height: 100vh;
    overflow-x: hidden;
    font-size: clamp(16px, 1.6vw, 20px);
    line-height: 1.6;
  }

 /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    height: var(--nav-h);
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 4rem;
    background: rgba(248,245,240,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow var(--transition);
  }
  nav.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.07); }
  .logo {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    font-family: var(--serif);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.02em;
    cursor: pointer;
    user-select: none;
    line-height: 1;
  }
  .logo-img {
    display: block;
    height: 11rem;
    width: auto;
    max-width: 15rem;
    object-fit: contain;
  }
  .logo span { color: var(--gold); }
  .nav-links {
    display: flex; gap: 0; list-style: none;
  }
  @media (max-width: 1200px) {
    .logo-img {
      height: 2.6rem;
      max-width: 7rem;
    }
  }
  @media (max-width: 900px) {
    nav {
      padding: 0 1.5rem;
    }
    .logo {
      font-size: 1.1rem;
      gap: 0.7rem;
    }
    .logo-img {
      height: 2.2rem;
      max-width: 6rem;
    }
  }
  @media (max-width: 650px) {
    .logo-img {
      height: 1.8rem;
      max-width: 5rem;
    }
  }
  .nav-links li a {
    display: block;
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--ink-soft);
    text-decoration: none;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    position: relative;
    transition: color var(--transition);
  }
  .nav-links li a::after {
    content: '';
    position: absolute; bottom: -2px; left: 1.25rem; right: 1.25rem;
    height: 1px; background: var(--gold);
    transform: scaleX(0); transform-origin: left;
    transition: transform var(--transition);
  }
  .nav-links li a:hover, .nav-links li a.active { color: var(--ink); }
  .nav-links li a:hover::after, .nav-links li a.active::after { transform: scaleX(1); }
  .nav-cta {
    background: var(--ink);
    color: var(--cream) !important;
    padding: 0.6rem 1.5rem !important;
    border-radius: 2px;
    letter-spacing: 0.06em !important;
    transition: background var(--transition), color var(--transition) !important;
  }
  .nav-cta::after { display: none !important; }
  .nav-cta:hover { background: var(--gold) !important; color: var(--white) !important; }
  .hero {
    min-height: calc(100vh - var(--nav-h));
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    overflow: hidden;
  }
  .hero-left {
    padding: 8rem 4rem 8rem 4rem;
    display: flex; flex-direction: column; justify-content: center;
  }
  .hero-eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 1.5rem;
    display: flex; align-items: center; gap: 0.75rem;
  }
  .hero-eyebrow::before {
    content: '';
    display: block; width: 32px; height: 1px;
    background: var(--gold);
  }
  .hero h1 {
    font-family: var(--serif);
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
    color: var(--ink);
  }
  .hero h1 em {
    font-style: italic;
    color: var(--gold);
  }
  .hero-body {
    font-size: 1.05rem;
    color: var(--ink-soft);
    line-height: 1.75;
    max-width: 480px;
    margin-bottom: 3rem;
    font-weight: 300;
  }
  .btn-group { display: flex; gap: 1rem; align-items: center; }
  .btn-primary {
    background: var(--ink);
    color: var(--cream);
    border: none;
    padding: 0.9rem 2.25rem;
    font-family: var(--sans);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 2px;
    transition: background var(--transition);
  }
  .btn-primary:hover { background: var(--gold); }
  .btn-ghost {
    background: transparent;
    color: var(--ink);
    border: 1px solid var(--border);
    padding: 0.9rem 2.25rem;
    font-family: var(--sans);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 2px;
    transition: border-color var(--transition), color var(--transition);
  }
  .btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
  .hero-right {
    background: var(--ink);
    position: relative;
    overflow: hidden;
    display: flex; align-items: center; justify-content: center;
  }
  .hero-pattern {
    position: absolute; inset: 0;
    background-image: radial-gradient(circle at 30% 50%, rgba(184,151,74,0.15) 0%, transparent 60%),
      radial-gradient(circle at 80% 20%, rgba(184,151,74,0.08) 0%, transparent 50%);
  }
  .hero-grid {
    position: absolute; inset: 0;
    background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 48px 48px;
  }
  .hero-stat-stack {
    position: relative; z-index: 1;
    display: flex; flex-direction: column; gap: 2rem;
    padding: 3rem;
  }
  .hero-stat {
    border-left: 2px solid var(--gold);
    padding-left: 1.5rem;
  }
  .hero-stat-num {
    font-family: var(--serif);
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin-bottom: 0.4rem;
  }
  .hero-stat-label {
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    font-weight: 400;
  }

  /* stats row */
  .stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .stat-cell {
    padding: 3rem 2rem;
    border-right: 1px solid var(--border);
    text-align: center;
  }
  .stat-cell:last-child { border-right: none; }
  .stat-cell-num {
    font-family: var(--serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 0.4rem;
  }
  .stat-cell-label {
    font-size: 0.8rem;
    color: var(--ink-muted);
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  /* marquee */
  .marquee-wrap {
    overflow: hidden;
    border-top: 1px solid var(--border);
    padding: 1.2rem 0;
    background: var(--white);
  }
  .marquee-inner {
    display: flex; gap: 4rem;
    animation: marquee 22s linear infinite;
    width: max-content;
  }
  .marquee-item {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--ink-muted);
    white-space: nowrap;
    display: flex; align-items: center; gap: 1rem;
  }
  .marquee-item::before {
    content: '✦';
    font-size: 0.5rem;
    color: var(--gold);
  }
  @keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

  /* feature cards */
  .section { padding: 7rem 4rem; }
  .section-label {
    font-size: 1.2rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 1rem;
  }
  .section-title {
    font-family: var(--serif);
    font-size: clamp(1.5rem, 3.5vw, 3rem);
    font-weight: 650;
    line-height: 1.05;
    letter-spacing: -0.02em;
    max-width: 560px;
    margin-bottom: 2rem;
  }
  .card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
  .card:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 22px 54px rgba(42, 62, 245, 0.22) !important;
    background: linear-gradient(135deg, #fff 0%, #f0f7ff 100%) !important;
}
.card {
    transition: all 0.3s ease !important;
    padding: 36px !important;
    min-height: 340px !important;
    border-radius: 14px !important;
    background: #fff !important;
    box-shadow: 0 5px 24px rgba(0, 0, 0, 0.1) !important;
    border-left: 4px solid #2476b5 !important;
    position: relative;
    margin-bottom: 24px !important; }
  .card-icon {
    width: 48px; height: 48px;
    background: var(--gold-light);
    border-radius: 2px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.75rem;
    font-size: 1.3rem;
  }
  .card-title {
    font-family: var(--serif);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--ink);
  }
  .card-body {
    font-size: 0.9rem;
    color: var(--ink-soft);
    line-height: 1.7;
    font-weight: 300;
  }

  /* ── ABOUT ── */
  .about-hero {
    padding: 7rem 4rem 5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
  }
  .about-img-wrap {
    position: relative;
    height: 500px;
  }
  .about-img-block {
    position: absolute;
    background: var(--ink);
    border-radius: 2px;
  }
  .about-img-block:nth-child(1) {
    inset: 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #1b2847 100%);
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
  }
  .about-img-graphic {
    width: 200px; height: 200px;
    border: 1px solid rgba(78, 98, 210, 0.5);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    position: relative;
  }
  .about-img-graphic::before {
    content: '';
    position: absolute;
    width: 120px; height: 120px;
    border: 1px solid rgba(78, 98, 210, 0.4);
    border-radius: 50%;
  }
  .about-img-graphic::after {
    content: 'N';
    font-family: var(--serif);
    font-size: 4rem;
    font-weight: 700;
    color: var(--gold);
  }
  .about-img-block:nth-child(2) {
    width: 160px; height: 100px;
    right: -1.5rem; bottom: 3rem;
    background: var(--gold);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 0.25rem;
  }
  .about-badge-num {
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
  }
  .about-badge-label {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
  }
  
  .about-content p {
    font-size: 1rem;
    color: var(--ink-soft);
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 1.25rem;
  }

  .team-section { padding: 5rem 4rem 7rem; background: var(--white); }
  .team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
  }
  .team-card { text-align: center; }
  .team-avatar {
    width: 100px; height: 100px;
    border-radius: 50%;
    margin: 0 auto 1.25rem;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--serif);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--white);
  }
  .team-name {
    font-family: var(--serif);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
  }
  .team-role {
    font-size: 0.8rem;
    color: var(--gold);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
  }
  .team-bio {
    font-size: 0.875rem;
    color: var(--ink-soft);
    line-height: 1.65;
    font-weight: 300;
  }

  /* ── SERVICES ── */
  .services-intro { padding: 7rem 4rem 5rem; max-width: 720px; }
  .services-list { padding: 0 4rem 7rem; }
  .service-item {
    display: grid;
    grid-template-columns: 60px 1fr auto;
    align-items: start;
    gap: 2rem;
    padding: 2.5rem 0;
    border-bottom: 1px solid var(--border);
    cursor: pointer;
    transition: all var(--transition);
  }
  .service-item:first-child { border-top: 1px solid var(--border); }
  .service-item:hover .service-arrow { transform: translateX(4px); color: var(--gold); }
  .service-num {
    font-family: var(--serif);
    font-size: 0.85rem;
    color: var(--ink-muted);
    padding-top: 0.2rem;
  }
  .service-info h3 {
    font-family: var(--serif);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
  }
  .service-info p {
    font-size: 0.9rem;
    color: var(--ink-soft);
    line-height: 1.7;
    font-weight: 300;
    max-width: 540px;
  }
  .service-tags {
    display: flex; flex-wrap: wrap; gap: 0.5rem;
    margin-top: 1rem;
  }
  .tag {
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: var(--cream);
    border: 1px solid var(--border);
    color: var(--ink-soft);
    padding: 0.3rem 0.75rem;
    border-radius: 2px;
  }
  .service-arrow {
    font-size: 1.2rem;
    color: var(--ink-muted);
    transition: all var(--transition);
    margin-top: 0.25rem;
  }

  .pricing-section { padding: 5rem 4rem 7rem; background: var(--white); }
  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
  }
  .pricing-card {
    border: 1px solid var(--border);
    border-radius: 2px;
    padding: 2.5rem 2rem;
    position: relative;
    transition: transform var(--transition), box-shadow var(--transition);
  }
  .pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.09);
  }
  .pricing-card.featured {
    background: var(--ink);
    color: var(--cream);
    border-color: var(--ink);
  }
  .pricing-badge {
    position: absolute; top: -1px; right: 1.5rem;
    background: var(--gold);
    color: var(--white);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.35rem 0.9rem;
    border-radius: 0 0 2px 2px;
    font-weight: 500;
  }
  .pricing-tier {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
  }
  .pricing-price {
    font-family: var(--serif);
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.4rem;
  }
  .pricing-period {
    font-size: 0.8rem;
    color: var(--ink-muted);
    margin-bottom: 1.75rem;
  }
  .pricing-card.featured .pricing-period { color: rgba(248,245,240,0.5); }
  .pricing-feature {
    font-size: 0.875rem;
    color: var(--ink-soft);
    padding: 0.55rem 0;
    border-bottom: 1px solid var(--border);
    display: flex; align-items: center; gap: 0.6rem;
    font-weight: 300;
  }
  .pricing-card.featured .pricing-feature { color: rgba(248,245,240,0.7); border-color: rgba(255,255,255,0.1); }
  .pricing-feature::before { content: '—'; color: var(--gold); font-size: 0.85rem; }
  .pricing-feature:last-of-type { border-bottom: none; margin-bottom: 1.75rem; }
  .btn-pricing {
    width: 100%;
    padding: 0.85rem;
    font-family: var(--sans);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 2px;
    transition: all var(--transition);
  }
  .btn-pricing-dark {
    background: var(--ink); color: var(--cream); border: 1px solid var(--ink);
  }
  .btn-pricing-dark:hover { background: var(--gold); border-color: var(--gold); }
  .btn-pricing-light {
    background: var(--cream); color: var(--ink); border: 1px solid rgba(248,245,240,0.3);
  }
  .btn-pricing-light:hover { background: var(--gold); color: var(--white); border-color: var(--gold); }

  /* ── CONTACT ── */
  .contact-wrap {
    padding: 7rem 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
  }
  .contact-info h2 {
    font-family: var(--serif);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.5rem;
  }
  .contact-info p {
    font-size: 1rem;
    color: var(--ink-soft);
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 2.5rem;
  }
  .contact-detail {
    display: flex; align-items: flex-start; gap: 1rem;
    margin-bottom: 1.5rem;
  }
  .contact-icon {
    width: 40px; height: 40px;
    background: var(--gold-light);
    border-radius: 2px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
  }
  .contact-detail-text strong {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-muted);
    margin-bottom: 0.2rem;
  }
  .contact-detail-text span {
    font-size: 0.95rem;
    color: var(--ink-soft);
    font-weight: 300;
  }
  .contact-form {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 2px;
    padding: 3rem;
  }
  .form-group { margin-bottom: 1.5rem; }
  .form-label {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-muted);
    margin-bottom: 0.5rem;
    font-weight: 500;
  }
  .form-input, .form-textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 2px;
    font-family: var(--sans);
    font-size: 0.9rem;
    color: var(--ink);
    transition: border-color var(--transition);
    outline: none;
    font-weight: 300;
  }
  .form-input:focus, .form-textarea:focus {
    border-color: var(--gold);
    background: var(--white);
  }
  .form-textarea { resize: vertical; min-height: 130px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .form-submit {
    width: 100%;
    padding: 1rem;
    background: var(--ink);
    color: var(--cream);
    border: none;
    border-radius: 2px;
    font-family: var(--sans);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background var(--transition);
    margin-top: 0.5rem;
  }
  .form-submit:hover { background: var(--gold); }
  .form-success {
    display: none;
    text-align: center;
    padding: 2rem 0;
    color: var(--gold);
    font-family: var(--serif);
    font-size: 1.1rem;
  }

  /* ── FOOTER ── */
  footer.site-footer {
    background: #10121a;
    color: rgba(255,255,255,0.72);
    padding: 4rem 4rem 3rem;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2.5rem;
    position: relative;
    overflow: hidden;
  }
  footer.site-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(255,255,255,0.04), transparent 23%),
                radial-gradient(circle at bottom right, rgba(255,255,255,0.03), transparent 20%);
    pointer-events: none;
  }
  .footer-column {
    position: relative;
    z-index: 1;
  }
  .footer-logo-img {
    display: block;
    max-height: 10rem;
    width: auto;
    margin-bottom: 1rem;
  }
  .footer-logo {
    font-family: var(--serif);
    font-size: 1.75rem;
    color: #fff;
    font-weight: 700;
    margin-bottom: 1rem;
  }
  .footer-logo span { color: var(--gold); }
  .footer-description {
    max-width: 320px;
    line-height: 1.85;
    color: rgba(255,255,255,0.72);
    margin-bottom: 1.5rem;
  }
  .footer-links h4,
  .footer-contact h4,
  .footer-newsletter h4 {
    font-family: var(--serif);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #fff;
    margin-bottom: 1.5rem;
  }
  .footer-links a,
  .footer-contact p,
  .footer-newsletter p {
    display: block;
    color: rgba(255,255,255,0.72);
    font-size: 0.95rem;
    line-height: 1.9;
    text-decoration: none;
    margin-bottom: 0.75rem;
    transition: color 0.25s ease;
  }
  .footer-links a:hover,
  .footer-contact p:hover {
    color: var(--gold);
  }
  .footer-contact p i {
    width: 1.25rem;
    display: inline-block;
    color: var(--gold);
    margin-right: 0.65rem;
  }
  .footer-social-links {
    display: flex;
    align-items: center;
    gap: 0.85rem;
  }
  .footer-social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.95);
    text-decoration: none;
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
  }
  .footer-social-links a i {
    font-family: 'Font Awesome 6 Brands';
    font-style: normal;
    font-weight: 400;
    font-feature-settings: normal;
    font-variation-settings: normal;
    text-rendering: auto;
    line-height: 1;
  }
  .footer-social-links a:hover {
    background: rgba(255,255,255,0.14);
    color: var(--gold);
    transform: translateY(-2px);
  }
  .footer-newsletter p {
    max-width: 280px;
    margin-bottom: 1.5rem;
  }
  .footer-form {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    max-width: 380px;
  }
  .footer-form input {
    flex: 1;
    min-width: 0;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.9);
    padding: 0.95rem 1rem;
    border-radius: 999px;
    outline: none;
    font-size: 0.95rem;
  }
  .footer-form input::placeholder {
    color: rgba(255,255,255,0.42);
  }
  .footer-form button {
    width: 52px;
    height: 52px;
    border: none;
    border-radius: 50%;
    background: var(--gold);
    color: #111;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease;
  }
  .footer-form button:hover {
    transform: translateY(-2px);
  }
  .footer-form button i {
    font-size: 0.95rem;
  }

  /* fade-in animation */
  .page.active > * {
    animation: fadein 0.5s ease both;
  }
  @keyframes fadein {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .container {
    width: min(100%, 1180px);
    margin: 0 auto;
    padding: 0 1.5rem;
  }
  img, svg { max-width: 100%; height: auto; display: block; }
  .page { width: 100%; overflow-x: hidden; }

  @media (max-width: 1200px) {
    nav { padding: 0 2rem; }
    .hero-left, .about-hero, .contact-wrap, .services-intro, .pricing-section, .team-section {
      padding-left: 2rem;
      padding-right: 2rem;
    }
    .hero { grid-template-columns: 1fr; }
    .hero-left { padding: 5rem 0 4rem; }
    .hero-right { min-height: 420px; }
    .hero-stat-stack { gap: 1.5rem; padding: 2.5rem; }
    .stats-row { grid-template-columns: repeat(2, 1fr); }
    .card-grid { grid-template-columns: repeat(2, 1fr); }
    .about-hero { grid-template-columns: 1fr; gap: 3rem; padding: 5rem 0 3rem; }
    .about-img-wrap { height: auto; min-height: 360px; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .services-list { padding: 0 2rem 4rem; }
    .service-item { grid-template-columns: 1fr; padding: 2rem 0; }
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-wrap { grid-template-columns: 1fr; gap: 3rem; padding: 5rem 0; }
    footer.site-footer {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 2rem;
    }
    .footer-description {
      max-width: none;
    }
    .footer-form {
      max-width: 100%;
    }
  }

  @media (max-width: 900px) {
    nav { padding: 0 1.5rem; }
    .nav-links { flex-wrap: wrap; justify-content: center; gap: 0.5rem; }
    .nav-links li a { padding: 0.6rem 0.9rem; }
    .hero-left { padding: 4rem 0 3rem; }
    .hero-body { max-width: 100%; }
    .btn-group { flex-direction: column; align-items: stretch; }
    .hero-stat-stack { padding: 1.5rem; }
    .stats-row { grid-template-columns: 1fr; }
    .section { padding: 5rem 1.5rem; }
    .card-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
    .contact-wrap { padding: 4rem 1.5rem; }
    .contact-form { padding: 2rem; }
    .form-row, .form-grid { grid-template-columns: 1fr; }
    .faq-card { padding: 2rem; }
    .faq-item-modern { flex-direction: column; }
    .faq-item-modern .faq-icon { margin-bottom: 1rem; }
  }

  @media (max-width: 650px) {
    :root { --nav-h: 108px; }
    nav {
      padding: 0.85rem 1rem;
      min-height: var(--nav-h);
      height: auto;
      flex-wrap: wrap;
      justify-content: center;
      gap: 0.75rem;
      align-items: center;
    }
    .logo { width: 100%; justify-content: center; }
    .logo-img { height: 1.8rem; max-width: 5.2rem; }
    .nav-links { width: 100%; justify-content: center; gap: 0.3rem; flex-wrap: wrap; }
    .nav-links li { flex: 1 1 auto; text-align: center; }
    .nav-links li a { padding: 0.45rem 0.7rem; font-size: 0.76rem; }
    .hero-left { padding: 3rem 0 2.5rem; }
    .hero-right { min-height: 280px; }
    .hero h1 { font-size: clamp(2.2rem, 10vw, 3rem); line-height: 1.08; }
    .hero-body { font-size: 0.95rem; margin-bottom: 2rem; }
    .btn-group { gap: 0.75rem; }
    .btn-primary, .btn-ghost, .form-submit, .btn-pricing { width: 100%; justify-content: center; text-align: center; }
    .stats-row { gap: 1rem; }
    .stat-cell { padding: 1.5rem 1rem; }
    .section, .about-hero, .team-section, .services-intro, .services-list, .pricing-section, .contact-wrap { padding-left: 1rem; padding-right: 1rem; }
    .section { padding: 4rem 1rem; }
    .section-title { max-width: 100%; font-size: clamp(1.45rem, 8vw, 2rem); }
    .card-grid, .team-grid, .pricing-grid { grid-template-columns: 1fr; }
    .about-hero { gap: 2.5rem; padding-top: 5.5rem; }
    .about-img-wrap { min-height: 280px; }
    .about-img-block:nth-child(2) { width: 120px; height: 80px; right: 0.5rem; bottom: 1.25rem; }
    .about-content p, .contact-info p, .pricing-feature, .service-info p { font-size: 0.95rem; }
    .service-item { gap: 1rem; padding: 1.5rem 0; }
    .service-info h3 { font-size: 1.15rem; }
    .contact-form { padding: 1.5rem; }
    .contact-detail { gap: 0.75rem; flex-direction: column; }
    .form-row { gap: 0.85rem; }
    #faqSection { padding: 3rem 0 !important; }
    .faq-card {
      width: 100% !important;
      max-width: 100% !important;
      margin: 0 0.75rem !important;
      border-radius: 18px !important;
    }
    .faq-card > div { padding: 1.5rem !important; }
    .faq-card h2 { font-size: clamp(1.65rem, 6vw, 2.25rem) !important; }
    .faq-card p { font-size: 1rem !important; }
    .faq-item-modern { gap: 0.75rem !important; margin-bottom: 1rem !important; flex-direction: column; }
    footer.site-footer {
      padding: 2.5rem 1rem;
      grid-template-columns: 1fr;
      gap: 1.5rem;
      text-align: left;
    }
    .footer-description, .footer-newsletter p { max-width: none; }
    .footer-form { flex-direction: column; align-items: stretch; }
    .footer-form button { width: 100%; border-radius: 999px; }
    .footer-social-links { justify-content: flex-start; }
  }

  @media (max-width: 480px) {
    :root { --nav-h: 120px; }
    .hero-left { padding: 2.25rem 0 1.75rem; }
    .hero-body { font-size: 0.92rem; margin-bottom: 1.5rem; }
    .hero-stat-stack { padding: 1rem; gap: 0.9rem; }
    .hero-stat-num { font-size: 1.7rem; }
    .hero-stat-label { font-size: 0.7rem; }
    .section-label { font-size: 0.95rem; }
    .btn-primary, .btn-ghost, .form-submit, .btn-pricing { padding: 0.8rem 1rem; font-size: 0.78rem; }
    .nav-links li a { padding: 0.4rem 0.55rem; font-size: 0.7rem; }
    .about-img-wrap { min-height: 240px; }
    .about-img-block:nth-child(2) { width: 100px; height: 70px; }
    .team-avatar { width: 80px; height: 80px; }
    .service-info h3 { font-size: 1.05rem; }
    .contact-form { padding: 1.25rem; }
    .footer-form input { padding: 0.85rem 0.95rem; }
  }
