

  :root {
    --indigo:   #272973;   /* E box — deep indigo/purple */
    --green:    #00bf5f;   /* D box — vivid green */
    --orange:   #ee610f;   /* M box — bright orange */
    --dark-text:#272770;   /* DIGITAL text */
    --paper:    #f7f8ff;   /* near-white with indigo tint */
    --white:    #ffffff;
    --muted:    #6b7190;
    --border:   rgba(39,41,115,0.1);
    --card-bg:  #ffffff;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body { font-family: 'Instrument Sans', sans-serif; background: var(--paper); color: var(--dark-text); overflow-x: hidden; }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 60px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 2px 20px rgba(39,41,115,0.06);
    transition: padding 0.3s;
  }
  .logo img { height: 46px; width: auto; display: block; }
  .nav-links { display: flex; gap: 34px; list-style: none; }
  .nav-links a {
    font-size: 13.5px; font-weight: 500; color: var(--dark-text);
    text-decoration: none; opacity: 0.65; transition: opacity 0.2s;
  }
  .nav-links a:hover { opacity: 1; }
  .nav-cta {
    background: var(--indigo); color: white;
    padding: 11px 26px; border-radius: 100px;
    font-size: 13px; font-weight: 600; text-decoration: none;
    transition: background 0.2s, transform 0.2s;
  }
  .nav-cta:hover { background: var(--orange); transform: translateY(-1px); }

  /* HERO */
  .hero {
    min-height: 100vh;
    display: grid; grid-template-columns: 1fr 1fr;
    padding: 130px 60px 80px; gap: 60px; align-items: center;
    position: relative; overflow: hidden;
  }
  .hero-bg {
    position: absolute; inset: 0; pointer-events: none;
    background:
      radial-gradient(ellipse 55% 60% at 75% 45%, rgba(0,191,95,0.07) 0%, transparent 65%),
      radial-gradient(ellipse 40% 40% at 20% 80%, rgba(238,97,15,0.06) 0%, transparent 60%);
  }
  .hero-grid {
    position: absolute; inset: 0; pointer-events: none;
    background-image: linear-gradient(var(--border) 1px, transparent 1px),
                      linear-gradient(90deg, var(--border) 1px, transparent 1px);
    background-size: 56px 56px; opacity: 0.4;
  }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(39,41,115,0.08); color: var(--indigo);
    padding: 7px 18px; border-radius: 100px;
    font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
    margin-bottom: 28px;
  }
  .hero-badge::before {
    content: ''; width: 7px; height: 7px; border-radius: 50%;
    background: var(--green); animation: pulse 2s infinite;
  }
  @keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.5)} }
  .hero h1 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(46px, 5.2vw, 76px);
    font-weight: 800; line-height: 1.05; letter-spacing: -2px;
    color: var(--indigo); margin-bottom: 26px;
  }
  .hero h1 .hl-green { color: var(--green); position: relative; }
  .hero h1 .hl-orange { color: var(--orange); }
  .hero h1 .hl-green::after {
    content: ''; position: absolute; left: 0; bottom: 0; right: 0; height: 3px;
    background: var(--green); border-radius: 2px;
    transform: scaleX(0); transform-origin: left;
    animation: ul 0.8s 0.7s ease forwards;
  }
  @keyframes ul { to { transform: scaleX(1); } }
  .hero p { font-size: 17px; line-height: 1.72; color: var(--muted); max-width: 460px; margin-bottom: 42px; }
  .hero-ctas { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
  .btn-primary {
    background: var(--indigo); color: white;
    padding: 15px 34px; border-radius: 100px;
    font-size: 15px; font-weight: 600; text-decoration: none;
    display: inline-flex; align-items: center; gap: 10px;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 20px rgba(39,41,115,0.25);
  }
  .btn-primary:hover { background: var(--orange); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(238,97,15,0.35); }
  .btn-secondary {
    color: var(--indigo); font-size: 15px; font-weight: 600;
    text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
    border: 2px solid var(--indigo); padding: 13px 28px; border-radius: 100px;
    transition: background 0.2s, color 0.2s;
  }
  .btn-secondary:hover { background: var(--indigo); color: white; }

  /* Hero visual cards */
  .hero-visual {
    display: flex; flex-direction: column; gap: 14px;
    animation: fadeup 0.9s 0.3s ease both;
  }
  @keyframes fadeup { from{opacity:0;transform:translateY(28px)} to{opacity:1;transform:translateY(0)} }
  .stat-row { display: flex; gap: 14px; }
  .stat-card {
    background: white; border: 1px solid var(--border);
    border-radius: 20px; padding: 26px 30px;
    box-shadow: 0 2px 16px rgba(39,41,115,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .stat-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(39,41,115,0.12); }
  .stat-card.green  { background: var(--green);  color: white; }
  .stat-card.indigo { background: var(--indigo); color: white; }
  .stat-card.orange { background: var(--orange); color: white; }
  .stat-num {
    font-family: 'Syne', sans-serif; font-size: 46px;
    font-weight: 800; letter-spacing: -2px; line-height: 1;
  }
  .stat-label { font-size: 12.5px; margin-top: 5px; opacity: 0.75; font-weight: 500; }
  .pills { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 16px; }
  .pill {
    padding: 7px 16px; border-radius: 100px; font-size: 12.5px; font-weight: 600;
    border: 1.5px solid var(--indigo); color: var(--indigo);
    transition: background 0.2s, color 0.2s;
  }
  .pill:hover { background: var(--indigo); color: white; }
  .pill.filled { background: var(--indigo); color: white; }
  .pill.green-fill { background: var(--green); color: white; border-color: var(--green); }
  .pill.orange-fill { background: var(--orange); color: white; border-color: var(--orange); }

  /* MARQUEE */
  .marquee-wrap {
    overflow: hidden; padding: 0;
    background: var(--indigo);
    border-top: none; border-bottom: none;
  }
  .marquee-track {
    display: flex; animation: ticker 24s linear infinite; white-space: nowrap;
  }
  @keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }
  .m-item {
    display: inline-flex; align-items: center; gap: 18px;
    padding: 16px 36px;
    font-family: 'Syne', sans-serif;
    font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
    color: rgba(255,255,255,0.7);
  }
  .m-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
  .m-dot.g { background: var(--green); }
  .m-dot.o { background: var(--orange); }
  .m-dot.w { background: rgba(255,255,255,0.4); }

  /* SECTION SHARED */
  section { padding: 100px 60px; }
  .s-label {
    font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--green); margin-bottom: 14px;
  }
  .s-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(30px, 3.2vw, 50px);
    font-weight: 800; letter-spacing: -1.5px; line-height: 1.08;
    color: var(--indigo);
  }
  .s-sub { font-size: 16px; color: var(--muted); line-height: 1.7; max-width: 480px; margin-top: 14px; }

  /* SERVICES */
  .services-section { background: var(--indigo); }
  .services-section .s-title { color: white; }
  .services-section .s-sub { color: rgba(255,255,255,0.5); }
  .services-section .s-label { color: var(--green); }
  .svc-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 56px; flex-wrap: wrap; gap: 24px; }
  .svc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; }
  .svc-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 38px 34px; border-radius: 4px;
    transition: background 0.3s; cursor: default; position: relative; overflow: hidden;
  }
  .svc-card::before {
    content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
    background: var(--orange); transform: scaleY(0); transform-origin: bottom;
    transition: transform 0.3s;
  }
  .svc-card:nth-child(3n+2)::before { background: var(--green); }
  .svc-card:hover::before { transform: scaleY(1); }
  .svc-card:hover { background: rgba(255,255,255,0.08); }
  .svc-icon {
    width: 46px; height: 46px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; margin-bottom: 22px;
  }
  .svc-icon.g  { background: rgba(0,191,95,0.18); }
  .svc-icon.o  { background: rgba(238,97,15,0.18); }
  .svc-icon.i  { background: rgba(255,255,255,0.1); }
  .svc-card h3 { font-family:'Syne',sans-serif; font-size:18px; font-weight:700; color:white; margin-bottom:10px; }
  .svc-card p  { font-size:13.5px; line-height:1.7; color:rgba(255,255,255,0.45); }
  .svc-link {
    display: inline-flex; align-items: center; gap: 8px;
    margin-top: 18px; font-size: 13px; font-weight: 600;
    color: var(--green); text-decoration: none; transition: gap 0.2s, color 0.2s;
  }
  .svc-card:nth-child(odd) .svc-link { color: var(--orange); }
  .svc-link:hover { gap: 14px; }

  /* ABOUT */
  .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
  .about-img-wrap {
    position: relative; border-radius: 24px; overflow: visible;
    aspect-ratio: 4/3;
  }
  .about-img-wrap img { width:100%; height:100%; object-fit:cover; border-radius:24px; display:block; }
  .about-badge {
    position: absolute; bottom: -24px; right: -24px;
    background: var(--orange); color: white;
    width: 128px; height: 128px; border-radius: 50%;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center; box-shadow: 0 8px 36px rgba(238,97,15,0.45);
    z-index: 2;
  }
  .about-badge strong { font-family:'Syne',sans-serif; font-size:34px; font-weight:800; line-height:1; }
  .about-badge span { font-size:11px; font-weight:600; opacity:0.88; }
  .about-deco {
    position: absolute; top: -16px; left: -16px;
    width: 80px; height: 80px; border-radius: 20px;
    background: var(--green); opacity: 0.12; z-index: 0;
  }
  .about-content p { font-size:16px; line-height:1.75; color:var(--muted); margin-bottom:14px; }
  .about-quote {
    border-left: 3px solid var(--green);
    padding: 16px 22px; margin: 28px 0;
    background: rgba(0,191,95,0.06); border-radius: 0 12px 12px 0;
    font-style: italic; font-size: 15.5px; color: var(--indigo); font-weight: 500;
  }
  .stat-strip { display:flex; gap:28px; margin-top:32px; flex-wrap:wrap; }
  .stat-strip > div > .big {
    font-family:'Syne',sans-serif; font-size:34px; font-weight:800; line-height:1;
  }
  .stat-strip > div:nth-child(1) .big { color: var(--indigo); }
  .stat-strip > div:nth-child(2) .big { color: var(--green); }
  .stat-strip > div:nth-child(3) .big { color: var(--orange); }
  .stat-strip .lbl { font-size:12.5px; color:var(--muted); margin-top:4px; }

  /* INDUSTRIES */
  .ind-section { background: #eef0ff; }
  .ind-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; margin-top:56px; }
  .ind-card {
    background: white; border-radius:20px; padding:30px 26px;
    border: 1px solid var(--border);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  }
  .ind-card:hover { transform:translateY(-6px); box-shadow:0 20px 48px rgba(39,41,115,0.13); border-color: var(--indigo); }
  .ind-emoji { font-size:34px; margin-bottom:18px; display:block; }
  .ind-card h3 { font-family:'Syne',sans-serif; font-size:16px; font-weight:700; color:var(--indigo); margin-bottom:9px; }
  .ind-card p  { font-size:13.5px; color:var(--muted); line-height:1.65; }

  /* PROCESS */
  .process-section { background: var(--indigo); }
  .process-section .s-label { color: var(--orange); }
  .process-section .s-title { color: white; }
  .process-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:30px; margin-top:64px; position:relative; }
  .process-grid::before {
    content:''; position:absolute; top:28px; left:8%; right:8%; height:1px;
    background:linear-gradient(90deg,transparent,rgba(255,255,255,0.1) 20%,rgba(255,255,255,0.1) 80%,transparent);
  }
  .proc-step { text-align:center; }
  .proc-num {
    width:58px; height:58px; border-radius:50%; margin:0 auto 22px;
    display:flex; align-items:center; justify-content:center;
    font-family:'Syne',sans-serif; font-size:19px; font-weight:800;
    position:relative; z-index:1;
  }
  .proc-num.g { background:rgba(0,191,95,0.15); color:var(--green); border:1.5px solid rgba(0,191,95,0.3); }
  .proc-num.o { background:rgba(238,97,15,0.15); color:var(--orange); border:1.5px solid rgba(238,97,15,0.3); }
  .proc-num.w { background:rgba(255,255,255,0.08); color:white; border:1.5px solid rgba(255,255,255,0.15); }
  .proc-step h3 { font-family:'Syne',sans-serif; font-size:16px; font-weight:700; color:white; margin-bottom:10px; }
  .proc-step p  { font-size:13px; color:rgba(255,255,255,0.42); line-height:1.65; }

  /* TESTIMONIALS */
  .testi-header { display:flex; justify-content:space-between; align-items:flex-end; margin-bottom:48px; flex-wrap:wrap; gap:20px; }
  .testi-rating { text-align:right; }
  .testi-rating .big { font-family:'Syne',sans-serif; font-size:40px; font-weight:800; color:var(--orange); line-height:1; }
  .testi-rating small { font-size:12.5px; color:var(--muted); }
  .testi-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
  .testi-card {
    background:white; border:1px solid var(--border); border-radius:20px; padding:30px;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .testi-card:hover { transform:translateY(-4px); box-shadow:0 16px 40px rgba(39,41,115,0.1); }
  .testi-card.featured { background:var(--indigo); border-color:var(--indigo); }
  .testi-card.featured p, .testi-card.featured .a-name { color:white; }
  .testi-card.featured .a-role { color:rgba(255,255,255,0.6); }
  .stars { font-size:13px; letter-spacing:2px; margin-bottom:14px; color:#f4a623; }
  .testi-card.featured .stars { color:rgba(255,255,255,0.85); }
  .testi-card p { font-size:14.5px; line-height:1.7; color:var(--dark-text); font-style:italic; margin-bottom:22px; }
  .t-author { display:flex; align-items:center; gap:12px; }
  .t-avatar {
    width:38px; height:38px; border-radius:50%; flex-shrink:0;
    display:flex; align-items:center; justify-content:center;
    font-family:'Syne',sans-serif; font-size:13px; font-weight:700; color:white;
  }
  .t-avatar.ind { background:var(--indigo); }
  .t-avatar.grn { background:var(--green); }
  .t-avatar.org { background:var(--orange); }
  .testi-card.featured .t-avatar { background:rgba(255,255,255,0.2); }
  .a-name { font-size:13.5px; font-weight:600; color:var(--dark-text); }
  .a-role { font-size:12px; color:var(--muted); }

  /* PARTNERS */
  .partners-strip {
    border-top:1px solid var(--border); border-bottom:1px solid var(--border);
    padding:52px 60px; text-align:center;
    background: white;
  }
  .p-label { font-size:11.5px; font-weight:700; letter-spacing:0.12em; text-transform:uppercase; color:var(--muted); margin-bottom:36px; }
  .p-logos { display:flex; align-items:center; justify-content:center; gap:56px; flex-wrap:wrap; }
  .p-logo {
    font-family:'Syne',sans-serif; font-size:17px; font-weight:800;
    letter-spacing:-0.3px; color:var(--muted); opacity:0.4;
    transition:opacity 0.2s, color 0.2s;
  }
  .p-logo:hover { opacity:1; color:var(--indigo); }

  /* BLOG */
  .blog-grid { display:grid; grid-template-columns:2fr 1fr 1fr; gap:22px; margin-top:56px; }
  .blog-card {
    border-radius:20px; overflow:hidden; border:1px solid var(--border);
    background:white; transition:transform 0.3s, box-shadow 0.3s;
  }
  .blog-card:hover { transform:translateY(-4px); box-shadow:0 16px 40px rgba(39,41,115,0.1); }
  .blog-img { width:100%; display:block; object-fit:cover; background:#e0e4f5; }
  .blog-body { padding:22px 24px; }
  .blog-tag {
    display:inline-block;
    padding:4px 12px; border-radius:100px; margin-bottom:10px;
    font-size:11px; font-weight:700; letter-spacing:0.06em; text-transform:uppercase;
  }
  .blog-tag.g  { background:rgba(0,191,95,0.1);  color:var(--green); }
  .blog-tag.o  { background:rgba(238,97,15,0.1);  color:var(--orange); }
  .blog-tag.i  { background:rgba(39,41,115,0.08); color:var(--indigo); }
  .blog-card h3 { font-family:'Syne',sans-serif; font-size:17px; font-weight:700; line-height:1.3; margin-bottom:10px; color:var(--indigo); }
  .blog-card:first-child h3 { font-size:22px; }
  .blog-card p  { font-size:13.5px; color:var(--muted); line-height:1.65; }
  .blog-date { font-size:11.5px; color:var(--muted); margin-top:14px; opacity:0.7; }

  /* CTA */
  .cta-section {
    background: linear-gradient(135deg, var(--indigo) 0%, #1a1e6b 60%, #0e1050 100%);
    padding:100px 60px; text-align:center; position:relative; overflow:hidden;
  }
  .cta-section::before {
    content:'GROW';
    position:absolute; font-family:'Syne',sans-serif;
    font-size:240px; font-weight:800; color:rgba(255,255,255,0.03);
    top:50%; left:50%; transform:translate(-50%,-50%);
    white-space:nowrap; pointer-events:none; letter-spacing:-8px;
  }
  .cta-section .s-label { color:var(--green); }
  .cta-section h2 {
    font-family:'Syne',sans-serif;
    font-size:clamp(34px,5vw,64px); font-weight:800;
    letter-spacing:-2px; color:white; margin-bottom:18px; line-height:1.07;
  }
  .cta-section h2 span { color:var(--orange); }
  .cta-section > p { font-size:17px; color:rgba(255,255,255,0.65); margin-bottom:42px; }
  .cta-form { display:flex; gap:12px; justify-content:center; max-width:480px; margin:0 auto; flex-wrap:wrap; }
  .cta-input {
    flex:1; min-width:210px; padding:15px 22px; border-radius:100px;
    border:none; background:rgba(255,255,255,0.12); color:white;
    font-size:15px; font-family:inherit; outline:none;
    border:1.5px solid rgba(255,255,255,0.15);
  }
  .cta-input::placeholder { color:rgba(255,255,255,0.45); }
  .cta-btn {
    background:var(--orange); color:white;
    padding:15px 30px; border-radius:100px;
    font-size:15px; font-weight:700; border:none; cursor:pointer;
    font-family:inherit; transition:transform 0.2s, box-shadow 0.2s;
    box-shadow:0 4px 20px rgba(238,97,15,0.4);
  }
  .cta-btn:hover { transform:translateY(-2px); box-shadow:0 8px 28px rgba(238,97,15,0.55); }
  .cta-note { font-size:12.5px; color:rgba(255,255,255,0.38); margin-top:14px; }

  /* COLOR ACCENT STRIP */
  .color-strip { display:flex; height:5px; }
  .color-strip .cs-i { flex:1; background:var(--indigo); }
  .color-strip .cs-g { flex:1; background:var(--green); }
  .color-strip .cs-o { flex:1; background:var(--orange); }

  /* FOOTER */
  footer { background:#07081f; padding:72px 60px 36px; color:white; }
  .footer-top {
    display:grid; grid-template-columns:2fr 1fr 1fr 1.2fr;
    gap:52px; padding-bottom:52px;
    border-bottom:1px solid rgba(255,255,255,0.07);
  }
  .footer-logo { margin-bottom:18px; }
  .footer-logo img { height:44px; width:auto; filter:brightness(0) invert(1); }
  .footer-brand p { font-size:13.5px; color:rgba(255,255,255,0.38); line-height:1.7; margin:0 0 26px; max-width:270px; }
  .f-socials { display:flex; gap:10px; }
  .f-social {
    width:36px; height:36px; border-radius:50%;
    border:1px solid rgba(255,255,255,0.12);
    display:flex; align-items:center; justify-content:center;
    font-size:13px; color:white; text-decoration:none;
    transition:border-color 0.2s, background 0.2s;
  }
  .f-social:hover { border-color:var(--green); background:rgba(0,191,95,0.18); }
  .footer-col h4 {
    font-family:'Syne',sans-serif; font-size:13px; font-weight:700;
    letter-spacing:0.04em; margin-bottom:18px; color:white;
  }
  .footer-col ul { list-style:none; }
  .footer-col li { margin-bottom:9px; }
  .footer-col a { font-size:13px; color:rgba(255,255,255,0.38); text-decoration:none; transition:color 0.2s; }
  .footer-col a:hover { color:white; }
  .footer-contact-item { margin-bottom:14px; }
  .footer-contact-item .fc-label { font-size:10.5px; font-weight:700; letter-spacing:0.1em; text-transform:uppercase; color:var(--green); margin-bottom:3px; }
  .footer-contact-item a { font-size:13px; color:rgba(255,255,255,0.5); text-decoration:none; }
  .footer-bottom {
    padding-top:32px; display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:14px;
  }
  .footer-bottom p { font-size:12.5px; color:rgba(255,255,255,0.25); }
  .footer-bottom .edm-tag {
    display:inline-flex; align-items:center; gap:8px;
    font-size:12px; color:rgba(255,255,255,0.25);
  }
  .edm-mini { display:inline-flex; gap:3px; }
  .edm-mini span { width:10px; height:10px; border-radius:2px; display:inline-block; }

  /* REVEAL */
  .reveal { opacity:0; transform:translateY(24px); transition:opacity 0.7s, transform 0.7s; }
  .reveal.visible { opacity:1; transform:translateY(0); }

  /* RESPONSIVE */
  @media(max-width:1100px){
    nav{ padding:14px 32px; }
    .hero,.about-grid{ grid-template-columns:1fr; padding:120px 32px 70px; }
    .about-grid{ padding:0; gap:50px; }
    .hero-visual,.about-badge{ display:none; }
    section{ padding:72px 32px; }
    .svc-grid{ grid-template-columns:repeat(2,1fr); }
    .ind-grid{ grid-template-columns:repeat(2,1fr); }
    .process-grid{ grid-template-columns:repeat(2,1fr); }
    .process-grid::before{ display:none; }
    .blog-grid{ grid-template-columns:1fr 1fr; }
    .blog-grid .blog-card:last-child{ grid-column:span 2; }
    .footer-top{ grid-template-columns:1fr 1fr; }
    .testi-grid{ grid-template-columns:1fr 1fr; }
  }
  @media(max-width:700px){
    nav{ padding:12px 18px; }
    .nav-links{ display:none; }
    section{ padding:56px 18px; }
    .svc-grid,.ind-grid,.testi-grid,.blog-grid,.process-grid{ grid-template-columns:1fr; }
    .blog-grid .blog-card:last-child{ grid-column:span 1; }
    .footer-top{ grid-template-columns:1fr; gap:32px; }
    .cta-section{ padding:70px 18px; }
    .partners-strip{ padding:44px 18px; }
    .p-logos{ gap:28px; }
    .footer-bottom{ flex-direction:column; text-align:center; }
  }

/* PAGE HERO */
.page-hero {
  padding: 140px 60px 80px;
  background: linear-gradient(135deg, var(--indigo) 0%, #1a1e6b 60%, #0e1050 100%);
  position: relative; overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 56px 56px;
}
.page-hero-label {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,191,95,0.15); color: var(--green);
  padding: 6px 18px; border-radius: 100px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 22px;
}
.page-hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(38px, 5vw, 70px);
  font-weight: 800; letter-spacing: -2px; line-height: 1.06;
  color: white; margin-bottom: 20px; position: relative; z-index: 1;
}
.page-hero h1 .hl { color: var(--orange); }
.page-hero p {
  font-size: 17px; color: rgba(255,255,255,0.6);
  max-width: 560px; margin: 0 auto 36px; line-height: 1.7;
  position: relative; z-index: 1;
}
.page-hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }
/* BREADCRUMB */
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  padding: 14px 60px;
  background: var(--paper); border-bottom: 1px solid var(--border);
  font-size: 13px; color: var(--muted);
}
.breadcrumb a { color: var(--indigo); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb .sep { opacity: 0.4; }
/* EXTRA */

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.about-stats-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 20px; }
.about-stat { text-align: center; }
.about-stat-num { font-family:'Syne',sans-serif; font-size: 52px; font-weight: 800; letter-spacing: -2px; line-height: 1; }
.about-stat-label { font-size: 13px; color: rgba(255,255,255,0.5); margin-top: 8px; font-weight: 500; }
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.value-card { background: white; border: 1px solid var(--border); border-radius: 20px; padding: 34px 28px; transition: transform 0.3s, box-shadow 0.3s; }
.value-card:hover { transform: translateY(-5px); box-shadow: 0 18px 44px rgba(39,41,115,0.1); }
.val-icon { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 18px; }
.value-card h3 { font-family:'Syne',sans-serif; font-size: 17px; font-weight: 700; color: var(--indigo); margin-bottom: 10px; }
.value-card p { font-size: 14px; color: var(--muted); line-height: 1.7; }
.team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.team-card { text-align: center; background: var(--paper); border-radius: 20px; padding: 36px 24px; border: 1px solid var(--border); transition: transform 0.3s; }
.team-card:hover { transform: translateY(-5px); }
.team-avatar { width: 80px; height: 80px; border-radius: 50%; margin: 0 auto 18px; display: flex; align-items: center; justify-content: center; font-family:'Syne',sans-serif; font-size: 28px; font-weight: 800; color: white; }
.team-card h3 { font-family:'Syne',sans-serif; font-size: 17px; font-weight: 700; color: var(--indigo); margin-bottom: 4px; }
.team-role { font-size: 12.5px; color: var(--green); font-weight: 600; margin-bottom: 10px; }
.team-bio { font-size: 13.5px; color: var(--muted); line-height: 1.6; }
@media(max-width:1000px){ .about-stats-grid{grid-template-columns:repeat(3,1fr)} .team-grid{grid-template-columns:repeat(2,1fr)} .values-grid{grid-template-columns:repeat(2,1fr)} .two-col{grid-template-columns:1fr} }
@media(max-width:600px){ .about-stats-grid{grid-template-columns:repeat(2,1fr)} .team-grid{grid-template-columns:1fr} .values-grid{grid-template-columns:1fr} }


  .f-social.f-linkedin:hover  { border-color:#0077b5; background:rgba(0,119,181,0.2); color:#0077b5; }
  .f-social.f-facebook:hover  { border-color:#1877f2; background:rgba(24,119,242,0.2); color:#1877f2; }
  .f-social.f-instagram:hover { border-color:#e1306c; background:rgba(225,48,108,0.2); color:#e1306c; }
  .f-social.f-youtube:hover   { border-color:#ff0000; background:rgba(255,0,0,0.2);    color:#ff0000; }



/* ══ Package page styles ══ */

.pkg-hero-icon { font-size:64px;display:block;margin:0 auto 20px;position:relative;z-index:1; }
.pkg-category-label { font-family:'Syne',sans-serif;font-size:20px;font-weight:800;color:var(--indigo);margin-bottom:28px;display:flex;align-items:center;gap:10px; }
.pkg-grid { display:grid;grid-template-columns:repeat(3,1fr);gap:22px;margin-bottom:70px; }
.pkg-card { background:var(--paper);border:1.5px solid var(--border);border-radius:22px;padding:32px 28px;position:relative;transition:transform 0.3s,box-shadow 0.3s; }
.pkg-card:hover { transform:translateY(-5px);box-shadow:0 20px 50px rgba(39,41,115,0.12); }
.pkg-badge { position:absolute;top:-13px;left:50%;transform:translateX(-50%);color:white;padding:5px 20px;border-radius:100px;font-size:12px;font-weight:700;white-space:nowrap; }
.pkg-header { margin-bottom:24px;padding-bottom:22px;border-bottom:1px solid var(--border); }
.pkg-name { font-family:'Syne',sans-serif;font-size:18px;font-weight:800;color:var(--indigo);margin-bottom:10px; }
.pkg-price { font-family:'Syne',sans-serif;font-size:36px;font-weight:800;color:var(--dark-text);letter-spacing:-1px;line-height:1; }
.pkg-price span { font-size:15px;font-weight:500;color:var(--muted); }
.pkg-sub { font-size:12.5px;color:var(--muted);margin-top:6px; }
.pkg-features { list-style:none;padding:0;margin:0 0 26px; }
.pkg-features li { font-size:13.5px;color:var(--dark-text);padding:7px 0;border-bottom:1px solid rgba(39,41,115,0.06);display:flex;align-items:flex-start;gap:8px; }
.pkg-features li::before { content:'✓';color:var(--green);font-weight:800;font-size:13px;flex-shrink:0;margin-top:2px; }
.pkg-btn { display:block;text-align:center;padding:14px;border-radius:100px;font-size:15px;font-weight:700;text-decoration:none;transition:.2s; }
.pkg-btn.outline { border:2px solid var(--indigo);color:var(--indigo); }
.pkg-btn.outline:hover { background:var(--indigo);color:white; }
.pkg-btn.filled { background:var(--indigo);color:white; }
.pkg-btn.filled:hover { background:var(--orange); }
.why-grid { display:grid;grid-template-columns:repeat(3,1fr);gap:20px;margin-top:48px; }
.why-card { background:white;border:1px solid var(--border);border-radius:18px;padding:28px;text-align:center; }
.why-icon { font-size:32px;display:block;margin:0 auto 14px; }
.why-card h4 { font-family:'Syne',sans-serif;font-size:16px;font-weight:800;color:var(--indigo);margin-bottom:8px; }
.why-card p { font-size:13.5px;color:var(--muted);line-height:1.65; }
.compare-table { width:100%;border-collapse:collapse;margin-top:40px; }
.compare-table th { background:var(--indigo);color:white;padding:14px 18px;font-family:'Syne',sans-serif;font-size:14px;font-weight:700;text-align:left; }
.compare-table td { padding:13px 18px;font-size:14px;border-bottom:1px solid var(--border);color:var(--dark-text); }
.compare-table tr:nth-child(even) td { background:var(--paper); }
.compare-table .check { color:var(--green);font-weight:800;font-size:16px; }
.compare-table .dash  { color:var(--muted); }
.faq-list { max-width:760px;margin:0 auto; }
.faq-item { border-bottom:1px solid var(--border);padding:20px 0; }
.faq-q { font-family:'Syne',sans-serif;font-size:17px;font-weight:700;color:var(--indigo);margin-bottom:10px; }
.faq-a { font-size:15px;color:var(--muted);line-height:1.72; }
@media(max-width:900px){ .pkg-grid{grid-template-columns:1fr} .why-grid{grid-template-columns:1fr 1fr} }
@media(max-width:560px){ .why-grid{grid-template-columns:1fr} }

/* ── Nav active state ── */
.nav-links a.nav-active {
  color: var(--orange);
  font-weight: 700;
}

/* ── Social icon brand hover colours ── */
.f-social.f-linkedin:hover  { border-color:#0077b5; background:rgba(0,119,181,0.18); color:#0077b5; }
.f-social.f-facebook:hover  { border-color:#1877f2; background:rgba(24,119,242,0.18); color:#1877f2; }
.f-social.f-instagram:hover { border-color:#e1306c; background:rgba(225,48,108,0.18); color:#e1306c; }
.f-social.f-youtube:hover   { border-color:#ff0000; background:rgba(255,0,0,0.18);    color:#ff0000; }
