
    /* ─────────────────────────────────────────
       TOKENS — same as homepage
    ───────────────────────────────────────── */
    :root {
      --orange:  #FF6B35;
      --coral:   #FF4E6A;
      --peach:   #FFB347;
      --light:   #FFF3EE;
      --ink:     #1C1C2E;
      --ink2:    #3D3D55;
      --muted:   #888899;
      --white:   #FFFFFF;
      --grad: linear-gradient(135deg, var(--peach) 0%, var(--orange) 45%, var(--coral) 100%);
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body { font-family: 'Manrope', sans-serif; background: var(--white); color: var(--ink); overflow-x: hidden; }

    .display { font-family: 'Fraunces', serif; font-weight: 900; line-height: 1.08; letter-spacing: -0.02em; }
    .label { font-size: 11px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--orange); }

    section { position: relative; overflow: hidden; }
    .container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

    /* ─── REVEAL ── */
    .reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.75s cubic-bezier(0.22,1,0.36,1), transform 0.75s cubic-bezier(0.22,1,0.36,1); }
    .reveal.visible { opacity: 1; transform: none; }

    /* ─── NAVBAR (identical to homepage) ── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      background: rgba(255,255,255,0.92);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(0,0,0,0.06);
      transition: box-shadow 0.3s;
    }
    nav.scrolled { box-shadow: 0 4px 24px rgba(255,107,53,0.08); }
    .nav-inner {
      max-width: 1200px; margin: 0 auto; padding: 0 32px; height: 72px;
      display: flex; align-items: center; justify-content: space-between;
    }
    .logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
    .logo-icon { width: 40px; height: 40px; background: var(--grad); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 18px; box-shadow: 0 6px 18px rgba(255,107,53,0.35); }
    .logo-text { font-family: 'Fraunces', serif; font-weight: 800; font-size: 18px; color: var(--ink); line-height: 1; }
    .logo-sub { font-size: 9px; letter-spacing: 0.2em; color: var(--muted); font-weight: 600; }
    .nav-links { display: flex; align-items: center; gap: 40px; list-style: none; }
    .nav-links a { font-size: 13px; font-weight: 600; letter-spacing: 0.05em; text-decoration: none; color: var(--ink2); position: relative; padding-bottom: 4px; transition: color 0.2s; }
    .nav-links a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--grad); border-radius: 2px; transition: width 0.3s ease; }
    .nav-links a:hover { color: var(--orange); }
    .nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
    .nav-links a.active { color: var(--ink); font-weight: 700; }
    .nav-cta { background: var(--grad); color: white !important; padding: 10px 24px !important; border-radius: 50px !important; font-weight: 700 !important; box-shadow: 0 6px 20px rgba(255,107,53,0.35); transition: transform 0.2s, box-shadow 0.2s !important; }
    .nav-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(255,107,53,0.45) !important; }
    .nav-cta::after { display: none !important; }
    .hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
    .hamburger span { display: block; width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: all 0.3s; }
    .mobile-nav { display: none; background: white; padding: 20px 32px 28px; border-top: 1px solid rgba(0,0,0,0.06); flex-direction: column; gap: 18px; }
    .mobile-nav.open { display: flex; }
    .mobile-nav a { font-size: 15px; font-weight: 600; color: var(--ink2); text-decoration: none; }

    /* ─── BUTTONS ── */
    .btn-primary { background: var(--grad); color: white; padding: 16px 36px; border-radius: 50px; font-size: 14px; font-weight: 700; text-decoration: none; box-shadow: 0 10px 32px rgba(255,107,53,0.35); transition: transform 0.25s, box-shadow 0.25s; display: inline-flex; align-items: center; gap: 8px; }
    .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(255,107,53,0.45); }
    .btn-outline { border: 2px solid rgba(28,28,46,0.2); color: var(--ink); padding: 14px 34px; border-radius: 50px; font-size: 14px; font-weight: 700; text-decoration: none; transition: border-color 0.2s, color 0.2s; display: inline-flex; align-items: center; gap: 8px; }
    .btn-outline:hover { border-color: var(--orange); color: var(--orange); }

    /* ─── WhatsApp Float ── */
    .wa-float { position: fixed; bottom: 28px; right: 28px; z-index: 200; width: 58px; height: 58px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 28px rgba(37,211,102,0.45); transition: transform 0.3s, box-shadow 0.3s; text-decoration: none; }
    .wa-float:hover { transform: scale(1.12); box-shadow: 0 14px 36px rgba(37,211,102,0.55); }

    /* ════════════════════════════════════
       PAGE HERO
    ════════════════════════════════════ */
    #page-hero {
      min-height: 72vh;
      padding-top: 72px;
      background: var(--ink);
      display: flex; align-items: center;
      position: relative; overflow: hidden;
    }
    .page-hero-blob {
      position: absolute; border-radius: 50%; filter: blur(90px); pointer-events: none;
    }
    .page-hero-grid-texture {
      position: absolute; inset: 0; opacity: 0.03;
      background-image: linear-gradient(rgba(255,107,53,1) 1px, transparent 1px), linear-gradient(90deg, rgba(255,107,53,1) 1px, transparent 1px);
      background-size: 56px 56px;
    }
    .breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 28px; font-size: 12px; font-weight: 600; letter-spacing: 0.1em; }
    .breadcrumb a { color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
    .breadcrumb a:hover { color: var(--peach); }
    .breadcrumb span { color: rgba(255,255,255,0.2); }
    .breadcrumb .current { color: var(--orange); }
    .page-hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,107,53,0.12); border: 1px solid rgba(255,107,53,0.3); padding: 8px 16px; border-radius: 50px; margin-bottom: 24px; font-size: 12px; font-weight: 700; color: var(--peach); letter-spacing: 0.06em; }
    .page-hero-title { font-size: clamp(44px, 5.5vw, 76px); color: white; margin-bottom: 22px; }
    .page-hero-title .highlight { background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
    .page-hero-desc { font-size: 17px; line-height: 1.8; color: rgba(255,255,255,0.5); max-width: 520px; margin-bottom: 44px; }
    .page-hero-stats { display: flex; gap: 48px; flex-wrap: wrap; }
    .ph-stat-val { font-family: 'Fraunces', serif; font-size: 38px; font-weight: 900; line-height: 1; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
    .ph-stat-lbl { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; color: rgba(255,255,255,0.35); margin-top: 5px; }

    /* ─── TICKER ── */
    .ticker-section { background: var(--light); border-top: 1px solid rgba(255,107,53,0.12); border-bottom: 1px solid rgba(255,107,53,0.12); padding: 18px 0; overflow: hidden; }
    .ticker-track { display: flex; animation: tickerAnim 5s linear infinite; white-space: nowrap; }
    @keyframes tickerAnim { from { transform: translateX(0); } to { transform: translateX(-50%); } }
    .ticker-item { display: inline-flex; align-items: center; gap: 10px; padding: 0 36px; font-size: 13px; font-weight: 700; letter-spacing: 0.12em; color: var(--ink2); }
    .ticker-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--grad); flex-shrink: 0; }

    /* ════════════════════════════════════
       ABOUT STORY
    ════════════════════════════════════ */
    #story { padding: 120px 0; background: white; }
    .story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
    .stats-mosaic { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; position: relative; z-index: 1; }
    .about-blob-bg { position: absolute; width: 420px; height: 380px; background: var(--grad); opacity: 0.07; border-radius: 60% 40% 50% 60% / 50% 60% 40% 50%; top: -20px; left: -20px; animation: morphBlob 10s ease-in-out infinite; }
    @keyframes morphBlob { 0%,100%{border-radius:42% 58% 65% 35%/46% 54% 46% 54%} 33%{border-radius:55% 45% 48% 52%/38% 62% 38% 62%} 66%{border-radius:38% 62% 55% 45%/56% 44% 56% 44%} }
    .stat-card { background: white; border-radius: 20px; padding: 28px 24px; border: 1.5px solid rgba(0,0,0,0.06); transition: transform 0.3s, box-shadow 0.3s; }
    .stat-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(255,107,53,0.1); }
    .stat-card.wide { grid-column: span 2; }
    .stat-card.orange { background: var(--grad); border-color: transparent; }
    .stat-card.orange .stat-val, .stat-card.orange .stat-lbl, .stat-card.orange p { color: white; }
    .stat-val { font-family: 'Fraunces', serif; font-size: 44px; font-weight: 900; line-height: 1; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
    .stat-card.orange .stat-val { background: none; -webkit-text-fill-color: white; }
    .stat-lbl { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; color: var(--muted); margin-top: 6px; }
    .story-text p { font-size: 16px; line-height: 1.85; color: var(--muted); margin-bottom: 20px; }
    .story-text h2 { margin-bottom: 20px; }

    /* ════════════════════════════════════
       FOUNDER
    ════════════════════════════════════ */
    #founder { padding: 100px 0; background: var(--light); }
    .founder-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px; align-items: center; }
    .founder-visual { position: relative; display: flex; align-items: center; justify-content: center; }
    .founder-blob { position: absolute; width: 340px; height: 340px; background: var(--grad); border-radius: 40% 60% 60% 40%/60% 40% 60% 40%; opacity: 0.15; animation: morphBlob 9s ease-in-out infinite; }
    .founder-avatar {
      width: 200px; height: 200px; border-radius: 50%;
      background: var(--grad);
      display: flex; align-items: center; justify-content: center;
      font-family: 'Fraunces', serif; font-size: 64px; font-weight: 900; color: white;
      position: relative; z-index: 1;
      box-shadow: 0 24px 64px rgba(255,107,53,0.35);
      transition: transform 0.4s;
    }
    .founder-visual:hover .founder-avatar { transform: scale(1.05); }
    .founder-badge { position: absolute; bottom: 10px; right: 0; background: white; padding: 12px 18px; border-radius: 14px; box-shadow: 0 10px 36px rgba(255,107,53,0.2); z-index: 2; display: flex; align-items: center; gap: 8px; }
    .founder-badge-icon { font-size: 22px; }
    .founder-badge-title { font-size: 10px; font-weight: 800; color: var(--ink); line-height: 1.3; }
    .founder-badge-sub { font-size: 9px; color: var(--muted); margin-top: 1px; }
    .founder-name { font-family: 'Fraunces', serif; font-size: clamp(36px,4vw,52px); font-weight: 900; color: var(--ink); margin: 16px 0 8px; }
    .founder-role { display: inline-flex; align-items: center; gap: 8px; background: var(--light); border: 1px solid rgba(255,107,53,0.25); padding: 7px 18px; border-radius: 50px; font-size: 12px; font-weight: 700; color: var(--orange); letter-spacing: 0.1em; margin-bottom: 24px; }
    .founder-text p { font-size: 16px; line-height: 1.85; color: var(--muted); margin-bottom: 16px; }

    /* ════════════════════════════════════
       SERVICES
    ════════════════════════════════════ */
    #services { padding: 120px 0; background: white; }
    .section-header { margin-bottom: 64px; }
    .section-header h2 { font-size: clamp(36px, 4.5vw, 58px); margin-top: 12px; }
    .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .svc-card { border-radius: 22px; padding: 32px; border: 1.5px solid rgba(0,0,0,0.07); background: white; position: relative; overflow: hidden; transition: transform 0.35s cubic-bezier(0.23,1,0.32,1), box-shadow 0.35s ease, border-color 0.25s; }
    .svc-card::before { content: ''; position: absolute; inset: 0; background: var(--grad); opacity: 0; transition: opacity 0.35s; }
    .svc-card:hover { transform: translateY(-8px); box-shadow: 0 24px 64px rgba(255,107,53,0.13); border-color: transparent; }
    .svc-card:hover::before { opacity: 1; }
    .svc-card:hover .svc-icon-wrap { background: rgba(255,255,255,0.2) !important; }
    .svc-card:hover .svc-title, .svc-card:hover .svc-desc { color: white !important; }
    .svc-icon-wrap { width: 58px; height: 58px; border-radius: 16px; background: var(--light); display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 22px; position: relative; z-index: 1; transition: background 0.3s; }
    .svc-title { font-size: 18px; font-weight: 800; color: var(--ink); margin-bottom: 10px; position: relative; z-index: 1; transition: color 0.3s; }
    .svc-desc { font-size: 14px; line-height: 1.7; color: var(--muted); position: relative; z-index: 1; transition: color 0.3s; }
    .svc-card.featured { background: var(--grad); border-color: transparent; }
    .svc-card.featured .svc-icon-wrap { background: rgba(255,255,255,0.2); }
    .svc-card.featured .svc-title, .svc-card.featured .svc-desc { color: white; }
    .svc-card.featured::before { display: none; }
    .svc-card.featured:hover { transform: translateY(-8px); }

    /* ════════════════════════════════════
       WHY US
    ════════════════════════════════════ */
    #why { padding: 120px 0; background: #FAFAFA; }
    .why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
    .usp-list { display: flex; flex-direction: column; gap: 16px; }
    .usp-item { display: flex; align-items: flex-start; gap: 16px; padding: 20px 22px; border-radius: 16px; background: white; border: 1.5px solid rgba(0,0,0,0.06); transition: border-color 0.25s, transform 0.25s; }
    .usp-item:hover { border-color: rgba(255,107,53,0.3); transform: translateX(5px); }
    .usp-icon { width: 44px; height: 44px; min-width: 44px; border-radius: 12px; background: var(--light); display: flex; align-items: center; justify-content: center; font-size: 20px; transition: transform 0.25s; }
    .usp-item:hover .usp-icon { transform: scale(1.1); }
    .usp-title { font-size: 14px; font-weight: 800; color: var(--ink); margin-bottom: 4px; }
    .usp-desc { font-size: 13px; color: var(--muted); line-height: 1.65; }
    .why-right-card { background: var(--grad); border-radius: 28px; padding: 48px 40px; color: white; position: relative; overflow: hidden; }
    .why-right-card .blob-dec { position: absolute; background: rgba(255,255,255,0.1); border-radius: 50%; }
    .why-card-stat { font-family: 'Fraunces', serif; font-size: 56px; font-weight: 900; color: white; line-height: 1; margin-bottom: 8px; }
    .why-card-lbl { font-size: 12px; font-weight: 700; letter-spacing: 0.15em; color: rgba(255,255,255,0.65); margin-bottom: 32px; }
    .why-card-divider { width: 40px; height: 2px; background: rgba(255,255,255,0.3); margin-bottom: 32px; }
    .why-card-text { font-size: 15px; line-height: 1.8; color: rgba(255,255,255,0.8); margin-bottom: 32px; }

    /* ════════════════════════════════════
       CLIENTS
    ════════════════════════════════════ */
    #clients { padding: 100px 0; background: white; }
    .clients-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
    .client-card { border-radius: 22px; padding: 36px 40px; border: 1.5px solid rgba(0,0,0,0.07); display: flex; align-items: center; gap: 24px; transition: transform 0.3s, box-shadow 0.3s, border-color 0.25s; }
    .client-card:hover { transform: translateY(-6px); box-shadow: 0 20px 56px rgba(255,107,53,0.1); border-color: rgba(255,107,53,0.25); }
    .client-icon { width: 64px; height: 64px; border-radius: 18px; background: var(--light); display: flex; align-items: center; justify-content: center; font-size: 28px; flex-shrink: 0; }
    .client-name { font-family: 'Fraunces', serif; font-size: 22px; font-weight: 800; color: var(--ink); margin-bottom: 4px; }
    .client-type { font-size: 13px; color: var(--muted); font-weight: 600; }

    /* ════════════════════════════════════
       REVIEWS
    ════════════════════════════════════ */
    #reviews { padding: 120px 0; background: #FAFAFA; }
    .rating-banner { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; margin-bottom: 56px; padding: 32px 40px; background: white; border-radius: 24px; border: 1.5px solid rgba(255,107,53,0.15); }
    .rating-big { font-family: 'Fraunces', serif; font-size: 72px; font-weight: 900; line-height: 1; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
    .rating-stars { font-size: 28px; color: #FFC107; letter-spacing: 3px; margin-bottom: 4px; }
    .rating-count { font-size: 14px; color: var(--muted); font-weight: 600; }
    .rating-divider { width: 1px; height: 60px; background: rgba(0,0,0,0.1); }
    .rating-award { display: flex; align-items: center; gap: 16px; }
    .award-icon { font-size: 42px; }
    .award-title { font-size: 16px; font-weight: 800; color: var(--ink); line-height: 1.2; }
    .award-sub { font-size: 13px; color: var(--muted); margin-top: 3px; }
    .reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
    .review-card { background: white; border: 1.5px solid rgba(0,0,0,0.07); border-radius: 20px; padding: 28px; transition: transform 0.3s, box-shadow 0.3s, border-color 0.25s; }
    .review-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(255,107,53,0.1); border-color: rgba(255,107,53,0.25); }
    .review-stars { font-size: 16px; color: #FFC107; margin-bottom: 14px; }
    .review-text { font-size: 14px; line-height: 1.75; color: var(--ink2); margin-bottom: 22px; font-style: italic; }
    .reviewer { display: flex; align-items: center; gap: 12px; }
    .reviewer-avatar { width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 800; color: white; flex-shrink: 0; }
    .reviewer-name { font-size: 14px; font-weight: 700; color: var(--ink); }
    .reviewer-meta { font-size: 11px; color: var(--muted); font-weight: 600; margin-top: 2px; }

    /* ════════════════════════════════════
       CTA BANNER
    ════════════════════════════════════ */
    .cta-banner { margin: 0 32px 0; background: var(--grad); border-radius: 32px; padding: 72px 80px; display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; overflow: hidden; position: relative; box-shadow: 0 24px 64px rgba(255,107,53,0.3); }
    .cta-blob { position: absolute; background: rgba(255,255,255,0.1); border-radius: 50%; }
    .cta-content { position: relative; z-index: 1; }
    .cta-title { font-family: 'Fraunces', serif; font-size: clamp(30px,3.5vw,48px); font-weight: 900; color: white; line-height: 1.1; margin-bottom: 12px; }
    .cta-sub { font-size: 16px; color: rgba(255,255,255,0.8); }
    .cta-btns { display: flex; gap: 14px; flex-wrap: wrap; position: relative; z-index: 1; }
    .btn-white { background: white; color: var(--orange); padding: 16px 36px; border-radius: 50px; font-size: 14px; font-weight: 800; text-decoration: none; box-shadow: 0 8px 24px rgba(0,0,0,0.12); transition: transform 0.2s, box-shadow 0.2s; }
    .btn-white:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(0,0,0,0.18); }
    .btn-ghost-white { border: 2px solid rgba(255,255,255,0.6); color: white; padding: 14px 34px; border-radius: 50px; font-size: 14px; font-weight: 700; text-decoration: none; transition: background 0.2s; }
    .btn-ghost-white:hover { background: rgba(255,255,255,0.15); }

    /* ════════════════════════════════════
       CONTACT STRIP
    ════════════════════════════════════ */
    #contact-strip { padding: 80px 0; background: white; }
    .contact-items { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
    .contact-item { display: flex; align-items: flex-start; gap: 16px; padding: 24px 20px; border-radius: 18px; border: 1.5px solid rgba(0,0,0,0.07); background: white; transition: border-color 0.25s, transform 0.25s; }
    .contact-item:hover { border-color: rgba(255,107,53,0.3); transform: translateY(-4px); box-shadow: 0 12px 36px rgba(255,107,53,0.08); }
    .contact-item-icon { width: 48px; height: 48px; min-width: 48px; border-radius: 14px; background: var(--light); display: flex; align-items: center; justify-content: center; font-size: 20px; }
    .contact-item-title { font-size: 10px; font-weight: 700; letter-spacing: 0.15em; color: var(--orange); margin-bottom: 5px; }
    .contact-item-val { font-size: 14px; font-weight: 700; color: var(--ink); line-height: 1.5; }
    .contact-item-val a { color: var(--ink); text-decoration: none; }
    .contact-item-val a:hover { color: var(--orange); }

    /* ════════════════════════════════════
       FOOTER
    ════════════════════════════════════ */
    footer { background: var(--ink); color: rgba(255,255,255,0.7); padding: 64px 0 32px; }
    .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 52px; }
    .footer-brand p { font-size: 14px; line-height: 1.8; margin: 16px 0 24px; max-width: 260px; }
    .footer-rating { display: flex; align-items: center; gap: 8px; }
    .footer-stars { color: #FFC107; font-size: 14px; }
    .footer-rating-text { font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.4); }
    .footer-logo-text { font-family: 'Fraunces', serif; font-weight: 800; font-size: 20px; color: white; }
    .footer-col h4 { font-size: 11px; font-weight: 700; letter-spacing: 0.2em; color: rgba(255,255,255,0.4); margin-bottom: 20px; }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
    .footer-col ul li a { font-size: 14px; color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.2s; }
    .footer-col ul li a:hover { color: var(--peach); }
    .footer-bottom { padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.07); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
    .footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.3); }
    .social-links { display: flex; gap: 12px; }
    .social-link { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; text-decoration: none; font-size: 16px; transition: background 0.2s, transform 0.2s; }
    .social-link:hover { background: var(--orange); transform: translateY(-2px); }

    /* ─── RESPONSIVE ── */
    @media (max-width: 1024px) {
      .services-grid { grid-template-columns: repeat(2,1fr); }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .contact-items { grid-template-columns: repeat(2,1fr); }
    }
    @media (max-width: 768px) {
      .nav-links { display: none; }
      .hamburger { display: flex; }
      .story-grid, .founder-grid, .why-grid { grid-template-columns: 1fr; gap: 48px; }
      .clients-grid { grid-template-columns: 1fr; }
      .services-grid { grid-template-columns: 1fr; }
      .reviews-grid { grid-template-columns: 1fr; }
      .contact-items { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; gap: 32px; }
      .rating-banner { flex-direction: column; align-items: flex-start; gap: 16px; }
      .rating-divider { display: none; }
      .cta-banner { margin: 0 16px; padding: 48px 32px; flex-direction: column; }
      .container { padding: 0 20px; }
      .nav-inner { padding: 0 20px; }
      .page-hero-stats { gap: 28px; }
    }
