 @import url('https://fonts.googleapis.com/css2?family=Oxanium:wght@200..800&family=Quicksand:wght@300..700&display=swap');

 /* ========== RESET & BASE ========== */
 *,
 *::before,
 *::after {
   box-sizing: border-box;
   margin: 0;
   padding: 0;
 }

 :root {
   --navy: #0a0e1a;
   --navy2: #111827;
   --ink: #1a2035;
   --indigo: #4f46e5;
   --violet: #7c3aed;
   --cyan: #06b6d4;
   --lime: #84cc16;
   --white: #ffffff;
   --off: #f8fafc;
   --muted: #94a3b8;
   --card: rgba(255, 255, 255, 0.04);
   --border: rgba(255, 255, 255, 0.08);
   --grad1: linear-gradient(135deg, #4f46e5 0%, #7c3aed 50%, #06b6d4 100%);
   --grad2: linear-gradient(135deg, #06b6d4 0%, #4f46e5 100%);
   --grad3: linear-gradient(135deg, #84cc16 0%, #06b6d4 100%);
   --radius: 16px;
   --radius-sm: 8px;
 }

 html {
   scroll-behavior: smooth;
   overflow-x: hidden;
   max-width: 100vw;
 }
 
 body {
   font-family: "Oxanium", sans-serif;
   background: var(--navy);
   color: var(--white);
   overflow-x: hidden;
   line-height: 1.6;
   max-width: 100vw;
   position: relative;
 }

 h1,
 h2,
 h3,
 h4,
 h5 {
   font-family: "Oxanium", sans-serif;
   line-height: 1.15;
 }

 a {
   color: inherit;
   text-decoration: none;
 }

 img {
   max-width: 100%;
   display: block;
 }

 section {
   padding: 140px 0;
 }

 .container {
   max-width: 1400px;
   margin: 0 auto;
   padding: 0 24px;
 }

 .container--wide {
   max-width: 1440px;
   margin: 0 auto;
   padding: 0 40px;
 }

 /* ========== NOISE OVERLAY ========== */
 body::before {
   content: '';
   position: fixed;
   inset: 0;
   background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
   pointer-events: none;
   z-index: 0;
   opacity: 0.4;
 }

 /* ========== GRADIENT ORBS ========== */
 .orb {
   position: absolute;
   border-radius: 50%;
   filter: blur(80px);
   pointer-events: none;
   z-index: 0;
   max-width: 100vw;
 }

 .orb--purple {
   width: 600px;
   height: 600px;
   background: radial-gradient(circle, rgba(124, 58, 237, 0.25) 0%, transparent 70%);
 }

 .orb--cyan {
   width: 400px;
   height: 400px;
   background: radial-gradient(circle, rgba(6, 182, 212, 0.2) 0%, transparent 70%);
 }

 .orb--indigo {
   width: 500px;
   height: 500px;
   background: radial-gradient(circle, rgba(79, 70, 229, 0.2) 0%, transparent 70%);
 }

 /* ========== NAV ========== */
 .nav {
   position: fixed;
   top: 0;
   left: 0;
   right: 0;
   z-index: 1000;
   padding: 18px 0;
   background: rgba(10, 14, 26, 0.85);
   backdrop-filter: blur(20px);
   border-bottom: 1px solid var(--border);
   transition: all 0.3s;
 }

 .nav__inner {
   display: flex;
   align-items: center;
   justify-content: space-between;
   max-width: 1400px;
   margin: 0 auto;
   padding: 0 24px;
 }

 .nav__logo {
   font-family: 'Oxanium', sans-serif;
   font-size: 1.5rem;
   font-weight: 800;
   background: var(--grad1);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   background-clip: text;
 }

 .nav__logo span {
   opacity: 0.6;
   font-weight: 400;
   font-size: 0.75rem;
   display: block;
   -webkit-text-fill-color: var(--muted);
 }

 .nav__links {
   display: flex;
   gap: 32px;
   list-style: none;
 }

 .nav__links a {
   font-size: 0.9rem;
   font-weight: 500;
   color: var(--muted);
   transition: color 0.2s;
   position: relative;
   padding-bottom: 2px;
 }

 .nav__links a::after {
   content: '';
   position: absolute;
   bottom: 0;
   left: 0;
   width: 0;
   height: 1px;
   background: var(--grad1);
   transition: width 0.3s;
 }

 .nav__links a:hover {
   color: var(--white);
 }

 .nav__links a:hover::after {
   width: 100%;
 }

 .nav__cta {
   background: var(--grad1);
   color: var(--white);
   padding: 10px 24px;
   border-radius: 50px;
   font-size: 0.875rem;
   font-weight: 600;
   transition: opacity 0.2s, transform 0.2s;
   white-space: nowrap;
 }

 .nav__cta:hover {
   opacity: 0.9;
   transform: translateY(-1px);
 }

 .nav__hamburger {
   display: none;
   flex-direction: column;
   gap: 5px;
   cursor: pointer;
 }

 .nav__hamburger span {
   width: 24px;
   height: 2px;
   background: var(--white);
   border-radius: 2px;
 }

 /* ========== HERO ========== */
 .hero {
   min-height: 100vh;
   display: flex;
   align-items: center;
   position: relative;
   overflow: hidden;
   padding-top: 150px;
 }

 .hero__grid {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 60px;
   align-items: center;
   position: relative;
   z-index: 1;
 }

 .hero__badge {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   background: rgba(79, 70, 229, 0.15);
   border: 1px solid rgba(79, 70, 229, 0.3);
   padding: 6px 16px;
   border-radius: 50px;
   font-size: 0.8rem;
   font-weight: 600;
   color: #a5b4fc;
   margin-bottom: 24px;
 }

 .hero__badge::before {
   content: '●';
   color: var(--lime);
   font-size: 0.6rem;
 }

 .hero__h1 {
   font-size: clamp(2.8rem, 5vw, 5rem);
   font-weight: 800;
   line-height: 1.05;
   margin-bottom: 20px;
 }

 .hero__h1 .grad {
   background: var(--grad1);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   background-clip: text;
 }

 .hero__sub {
   font-size: 1.15rem;
   color: var(--muted);
   max-width: 500px;
   margin-bottom: 36px;
   line-height: 1.7;
 }

 .hero__actions {
   display: flex;
   gap: 16px;
   flex-wrap: wrap;
   margin-bottom: 48px;
 }

 .btn-primary {
   display: inline-block;
   background: var(--grad1);
   color: var(--white);
   padding: 14px 32px;
   border-radius: 50px;
   font-size: 1rem;
   font-weight: 700;
   transition: transform 0.2s, box-shadow 0.2s;
   box-shadow: 0 8px 32px rgba(79, 70, 229, 0.4);
   border: none;
   cursor: pointer;
 }

 .btn-primary:hover {
   transform: translateY(-2px);
   box-shadow: 0 12px 40px rgba(79, 70, 229, 0.5);
 }

 .btn-secondary {
   display: inline-block;
   background: transparent;
   color: var(--white);
   padding: 14px 32px;
   border-radius: 50px;
   font-size: 1rem;
   font-weight: 600;
   border: 1px solid var(--border);
   transition: border-color 0.2s, background 0.2s;
   cursor: pointer;
 }

 .btn-secondary:hover {
   border-color: rgba(255, 255, 255, 0.3);
   background: rgba(255, 255, 255, 0.05);
 }

 .hero__stats {
   display: flex;
   gap: 32px;
   flex-wrap: wrap;
 }

 .hero__stat strong {
   display: block;
   font-family: "Oxanium", sans-serif;
   font-size: 1.8rem;
   font-weight: 800;
   background: var(--grad1);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   background-clip: text;
 }

 .hero__stat span {
   font-size: 0.8rem;
   color: var(--muted);
 }

 .hero__visual {
   position: relative;
 }

 .hero__card {
   background: var(--card);
   border: 1px solid var(--border);
   border-radius: var(--radius);
   padding: 24px;
   backdrop-filter: blur(20px);
 }

 .hero__card-header {
   display: flex;
   align-items: center;
   gap: 8px;
   font-size: 0.75rem;
   color: var(--muted);
   margin-bottom: 16px;
 }

 .hero__card-header .dot {
   width: 8px;
   height: 8px;
   border-radius: 50%;
   background: var(--lime);
   box-shadow: 0 0 8px var(--lime);
 }

 .hero__mockup {
   background: var(--navy);
   border-radius: var(--radius-sm);
   padding: 16px;
   margin-bottom: 16px;
 }

 .hero__mockup-bar {
   height: 8px;
   border-radius: 4px;
   background: var(--grad1);
   margin-bottom: 8px;
   width: 70%;
 }

 .hero__mockup-lines {
   display: flex;
   flex-direction: column;
   gap: 6px;
 }

 .hero__mockup-line {
   height: 6px;
   border-radius: 3px;
   background: rgba(255, 255, 255, 0.08);
 }

 .hero__metrics {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 12px;
 }

 .hero__metric {
   background: rgba(255, 255, 255, 0.03);
   border-radius: var(--radius-sm);
   padding: 12px;
 }

 .hero__metric-val {
   font-family: 'Oxanium', sans-serif;
   font-size: 1.4rem;
   font-weight: 700;
 }

 .hero__metric-label {
   font-size: 0.7rem;
   color: var(--muted);
 }

 .hero__floating {
   position: absolute;
   background: var(--card);
   border: 1px solid var(--border);
   border-radius: var(--radius-sm);
   padding: 10px 14px;
   backdrop-filter: blur(20px);
   font-size: 0.75rem;
 }

 .hero__floating--tl {
   top: -20px;
   left: -30px;
 }

 .hero__floating--br {
   bottom: -20px;
   right: -20px;
 }

 .hero__floating-icon {
   font-size: 1rem;
   margin-bottom: 2px;
 }

 /* ========== TRUST STRIP ========== */
 .trust {
   padding: 40px 0;
   border-top: 1px solid var(--border);
   border-bottom: 1px solid var(--border);
   overflow: hidden;
 }

 .trust__label {
   text-align: center;
   font-size: 0.8rem;
   color: var(--muted);
   margin-bottom: 24px;
   text-transform: uppercase;
   letter-spacing: 2px;
 }

 .trust__scroll {
   display: flex;
   gap: 60px;
   align-items: center;
   animation: scrollX 25s linear infinite;
   white-space: nowrap;
 }

 .trust__item {
   font-family: 'Oxanium', sans-serif;
   font-size: 1rem;
   font-weight: 700;
   color: rgba(255, 255, 255, 0.2);
   flex-shrink: 0;
 }

 @keyframes scrollX {
   from {
     transform: translateX(0);
   }

   to {
     transform: translateX(-50%);
   }
 }

 /* ========== SECTION LABELS ========== */
 .section-label {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   font-size: 0.75rem;
   font-weight: 700;
   letter-spacing: 3px;
   text-transform: uppercase;
   color: #a5b4fc;
   margin-bottom: 16px;
 }

 .section-label::before {
   content: '';
   width: 24px;
   height: 2px;
   background: var(--grad1);
   border-radius: 1px;
 }

 .section-h2 {
   font-size: clamp(2rem, 4vw, 3rem);
   font-weight: 800;
   margin-bottom: 16px;
 }

 .section-sub {
   font-size: 1.1rem;
   color: var(--muted);
   max-width: 600px;
   line-height: 1.7;
 }

 /* ========== 7 DAYS OFFER ========== */
 .offer {
   position: relative;
   overflow: hidden;
 }

 .offer__inner {
   background: var(--grad1);
   border-radius: 32px;
   padding: 80px 60px;
   display: grid;
   grid-template-columns: 1fr auto;
   gap: 40px;
   align-items: center;
   position: relative;
   overflow: hidden;
 }

 .offer__inner::before {
   content: '7';
   position: absolute;
   right: -20px;
   top: -40px;
   font-family: 'Oxanium', sans-serif;
   font-size: 300px;
   font-weight: 800;
   color: rgba(255, 255, 255, 0.07);
   line-height: 1;
   pointer-events: none;
 }

 .offer__badge {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   background: rgba(255, 255, 255, 0.2);
   padding: 6px 16px;
   border-radius: 50px;
   font-size: 0.8rem;
   font-weight: 700;
   margin-bottom: 20px;
 }

 .offer__h2 {
   font-size: clamp(2rem, 4vw, 3.5rem);
   font-weight: 800;
   margin-bottom: 16px;
 }

 .offer__sub {
   font-size: 1.1rem;
   opacity: 0.85;
   margin-bottom: 32px;
   max-width: 500px;
 }

 .offer__checks {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
   margin-bottom: 36px;
 }

 .offer__check {
   display: flex;
   align-items: center;
   gap: 6px;
   font-size: 0.875rem;
   font-weight: 500;
 }

 .offer__check::before {
   content: '✓';
   font-weight: 800;
 }

 .offer__cta {
   background: var(--white);
   color: var(--indigo);
   padding: 16px 36px;
   border-radius: 50px;
   font-size: 1rem;
   font-weight: 700;
   transition: transform 0.2s, box-shadow 0.2s;
   display: inline-block;
   white-space: nowrap;
 }

 .offer__cta:hover {
   transform: translateY(-2px);
   box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
 }

 .offer__right {
   text-align: center;
   position: relative;
   z-index: 1;
 }

 .offer__days {
   font-family: 'Oxanium', sans-serif;
   font-size: 7rem;
   font-weight: 800;
   line-height: 0.9;
   margin-bottom: 8px;
 }

 .offer__days-label {
   font-size: 1.1rem;
   font-weight: 600;
   opacity: 0.8;
 }

 /* ========== SERVICES ========== */
 .services__grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 24px;
   margin-top: 60px;
 }

 .service-card {
   background: var(--card);
   border: 1px solid var(--border);
   border-radius: var(--radius);
   padding: 36px;
   transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
   position: relative;
   overflow: hidden;
   cursor: pointer;
 }

 .service-card::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   height: 2px;
   background: var(--grad1);
   transform: scaleX(0);
   transition: transform 0.3s;
   transform-origin: left;
 }

 .service-card:hover {
   transform: translateY(-4px);
   border-color: rgba(79, 70, 229, 0.3);
   box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
 }

 .service-card:hover::before {
   transform: scaleX(1);
 }

 .service-card--primary {
   grid-column: span 2;
   background: linear-gradient(135deg, rgba(79, 70, 229, 0.15), rgba(124, 58, 237, 0.1));
   border-color: rgba(79, 70, 229, 0.2);
 }

 .service-card__num {
   font-family: 'Oxanium', sans-serif;
   font-size: 0.75rem;
   font-weight: 700;
   color: var(--muted);
   margin-bottom: 20px;
   letter-spacing: 2px;
 }

 .service-card__icon {
   font-size: 2.5rem;
   margin-bottom: 16px;
 }

 .service-card__title {
   font-size: 1.4rem;
   font-weight: 700;
   margin-bottom: 12px;
 }

 .service-card--primary .service-card__title {
   font-size: 1.8rem;
 }

 .service-card__desc {
   color: var(--muted);
   font-size: 0.95rem;
   line-height: 1.7;
   margin-bottom: 24px;
 }

 .service-card__tag {
   display: inline-block;
   background: rgba(255, 255, 255, 0.06);
   border: 1px solid var(--border);
   border-radius: 50px;
   padding: 4px 12px;
   font-size: 0.75rem;
   color: var(--muted);
   margin: 4px;
 }

 .service-card__arrow {
   margin-top: 24px;
   font-size: 1.2rem;
   color: var(--indigo);
   transition: transform 0.2s;
   display: inline-block;
 }

 .service-card:hover .service-card__arrow {
   transform: translateX(4px);
 }

 /* ========== PROCESS ========== */
 .process {
   background: var(--navy2);
 }

 .process__steps {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 0;
   margin-top: 60px;
   position: relative;
 }

 .process__steps::before {
   content: '';
   position: absolute;
   top: 40px;
   left: 16.67%;
   right: 16.67%;
   height: 2px;
   background: linear-gradient(90deg, var(--indigo), var(--violet), var(--cyan));
 }

 .process__step {
   text-align: center;
   padding: 0 32px;
 }

 .process__step-num {
   width: 80px;
   height: 80px;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   margin: 0 auto 32px;
   font-family: 'Oxanium', sans-serif;
   font-size: 1.5rem;
   font-weight: 800;
   position: relative;
   z-index: 1;
 }

 .process__step:nth-child(1) .process__step-num {
   background: linear-gradient(135deg, #4f46e5, #7c3aed);
   box-shadow: 0 0 40px rgba(79, 70, 229, 0.4);
 }

 .process__step:nth-child(2) .process__step-num {
   background: linear-gradient(135deg, #7c3aed, #06b6d4);
   box-shadow: 0 0 40px rgba(124, 58, 237, 0.4);
 }

 .process__step:nth-child(3) .process__step-num {
   background: linear-gradient(135deg, #06b6d4, #84cc16);
   box-shadow: 0 0 40px rgba(6, 182, 212, 0.4);
 }

 .process__step-label {
   font-family: 'Oxanium', sans-serif;
   font-size: 1.5rem;
   font-weight: 800;
   margin-bottom: 12px;
 }

 .process__step-desc {
   color: var(--muted);
   font-size: 0.95rem;
   line-height: 1.7;
 }

 .process__step-tags {
   display: flex;
   flex-wrap: wrap;
   justify-content: center;
   gap: 6px;
   margin-top: 16px;
 }

 .process__tag {
   background: rgba(255, 255, 255, 0.05);
   border: 1px solid var(--border);
   border-radius: 50px;
   padding: 3px 10px;
   font-size: 0.7rem;
   color: var(--muted);
 }

 /* ========== PORTFOLIO ========== */
 .portfolio__grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 24px;
   margin-top: 60px;
 }

 .portfolio__card {
   border-radius: var(--radius);
   overflow: hidden;
   background: var(--card);
   border: 1px solid var(--border);
   transition: transform 0.3s, box-shadow 0.3s;
   cursor: pointer;
 }

 .portfolio__card:hover {
   transform: translateY(-4px);
   box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
 }

 /* .portfolio__card:first-child {
   grid-column: span 2;
 } */

 .portfolio__img {
   height: 200px;
   position: relative;
   overflow: hidden;
   display: flex;
   align-items: center;
   justify-content: center;
 }

 /* .portfolio__card:first-child .portfolio__img {
   height: 280px;
 } */

 .portfolio__img-inner {
   width: 100%;
   height: 100%;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 4rem;
 }

 .portfolio__img-inner img {
   object-fit: cover !important;
 }

 .portfolio__img-1 {
   background: linear-gradient(135deg, #1e1b4b, #312e81);
 }

 .portfolio__img-2 {
   background: linear-gradient(135deg, #0c4a6e, #0e7490);
 }

 .portfolio__img-3 {
   background: linear-gradient(135deg, #14532d, #065f46);
 }

 .portfolio__img-4 {
   background: linear-gradient(135deg, #1c1917, #44403c);
 }

 .portfolio__img-5 {
   background: linear-gradient(135deg, #3b0764, #4a044e);
 }

 .portfolio__info {
   padding: 24px;
 }

 .portfolio__cat {
   font-size: 0.7rem;
   font-weight: 700;
   letter-spacing: 2px;
   color: #a5b4fc;
   text-transform: uppercase;
   margin-bottom: 8px;
 }

 .portfolio__name {
   font-family: 'Oxanium', sans-serif;
   font-size: 1.1rem;
   font-weight: 700;
   margin-bottom: 8px;
 }

 .portfolio__stats {
   display: flex;
   gap: 16px;
 }

 .portfolio__stat {
   font-size: 0.8rem;
   color: var(--muted);
 }

 .portfolio__stat strong {
   color: var(--lime);
   font-weight: 700;
 }

 /* ========== CASE STUDY ========== */
 .case-study__grid {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 40px;
   margin-top: 60px;
 }

 .case-card {
   background: var(--card);
   border: 1px solid var(--border);
   border-radius: var(--radius);
   overflow: hidden;
   transition: transform 0.3s;
 }

 .case-card:hover {
   transform: translateY(-4px);
 }

 .case-card__header {
   padding: 32px;
   border-bottom: 1px solid var(--border);
 }

 .case-card__company {
   font-size: 0.7rem;
   font-weight: 700;
   letter-spacing: 2px;
   color: #a5b4fc;
   text-transform: uppercase;
   margin-bottom: 12px;
 }

 .case-card__h3 {
   font-size: 1.3rem;
   font-weight: 700;
   margin-bottom: 12px;
 }

 .case-card__desc {
   color: var(--muted);
   font-size: 0.9rem;
   line-height: 1.7;
 }

 .case-card__metrics {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
 }

 .case-card__metric {
   padding: 20px;
   border-right: 1px solid var(--border);
   text-align: center;
 }

 .case-card__metric:last-child {
   border-right: none;
 }

 .case-card__metric-val {
   font-family: 'ox', sans-serif;
   font-size: 1.8rem;
   font-weight: 800;
   background: var(--grad1);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   background-clip: text;
 }

 .case-card__metric-label {
   font-size: 0.7rem;
   color: var(--muted);
   margin-top: 4px;
 }

 .case-card__footer {
   padding: 20px 32px;
   display: flex;
   align-items: center;
   justify-content: space-between;
 }

 .case-card__tags {
   display: flex;
   gap: 8px;
   flex-wrap: wrap;
 }

 .case-card__tag {
   background: rgba(255, 255, 255, 0.05);
   border: 1px solid var(--border);
   border-radius: 50px;
   padding: 4px 10px;
   font-size: 0.7rem;
   color: var(--muted);
 }

 .case-card__link {
   font-size: 0.85rem;
   font-weight: 600;
   color: #a5b4fc;
 }

 /* ========== TESTIMONIALS ========== */
 .testimonials {
   background: var(--navy2);
 }

 .testimonials__grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 24px;
   margin-top: 60px;
 }

 .testimonial-card {
   background: var(--card);
   border: 1px solid var(--border);
   border-radius: var(--radius);
   padding: 32px;
 }

 .testimonial-card__stars {
   color: #fbbf24;
   font-size: 0.9rem;
   margin-bottom: 16px;
 }

 .testimonial-card__quote {
   font-size: 1rem;
   line-height: 1.7;
   color: rgba(255, 255, 255, 0.85);
   margin-bottom: 24px;
   font-style: italic;
 }

 .testimonial-card__author {
   display: flex;
   align-items: center;
   gap: 12px;
 }

 .testimonial-card__avatar {
   width: 44px;
   height: 44px;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 1.2rem;
   font-weight: 700;
   font-family: 'Oxanium', sans-serif;
 }

 .testimonial-card__name {
   font-weight: 600;
   font-size: 0.9rem;
 }

 .testimonial-card__role {
   font-size: 0.75rem;
   color: var(--muted);
 }

 /* ========== ABOUT / FOUNDERS ========== */
 .about__intro {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 80px;
   align-items: center;
   margin-bottom: 80px;
 }

 .about__founders {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 24px;
 }

 .founder-card {
   background: var(--card);
   border: 1px solid var(--border);
   border-radius: var(--radius);
   padding: 32px;
   text-align: center;
 }

 .founder-card__avatar {
   width: 150px;
   height: 150px;
   border-radius: 50%;
   overflow: hidden;
   margin: 0 auto 20px;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 2rem;
   font-weight: 800;
   font-family: 'Oxanium', sans-serif;
 }

 .founder-card__name {
   font-family: 'Oxanium', sans-serif;
   font-size: 1.2rem;
   font-weight: 700;
   margin-bottom: 4px;
 }

 .founder-card__role {
   font-size: 0.8rem;
   color: #a5b4fc;
   font-weight: 600;
   margin-bottom: 16px;
 }

 .founder-card__bio {
   font-size: 0.875rem;
   color: var(--muted);
   line-height: 1.7;
 }

 .founder-card__skills {
   display: flex;
   flex-wrap: wrap;
   gap: 6px;
   margin-top: 16px;
   justify-content: center;
 }

 .founder-card__skill {
   background: rgba(255, 255, 255, 0.05);
   border-radius: 50px;
   padding: 3px 10px;
   font-size: 0.7rem;
   color: var(--muted);
 }

 /* ========== FUTURE VISION ========== */
 .vision {
   background: var(--navy2);
   position: relative;
   overflow: hidden;
 }

 .vision__products {
   display: grid;
   grid-template-columns: repeat(4, 1fr);
   gap: 24px;
   margin-top: 60px;
 }

 .vision-card {
   background: var(--card);
   border: 1px solid var(--border);
   border-radius: var(--radius);
   padding: 32px;
   position: relative;
   overflow: hidden;
 }

 .vision-card::before {
   content: 'COMING SOON';
   position: absolute;
   top: 16px;
   right: -20px;
   background: var(--grad1);
   padding: 4px 40px;
   font-size: 0.6rem;
   font-weight: 700;
   transform: rotate(15deg);
   letter-spacing: 2px;
 }

 .vision-card__icon {
   font-size: 2.5rem;
   margin-bottom: 16px;
 }

 .vision-card__title {
   font-family: 'Oxanium', sans-serif;
   font-size: 1.1rem;
   font-weight: 700;
   margin-bottom: 8px;
 }

 .vision-card__desc {
   font-size: 0.875rem;
   color: var(--muted);
   line-height: 1.6;
 }

 .vision-card__status {
   display: inline-flex;
   align-items: center;
   gap: 6px;
   margin-top: 16px;
   font-size: 0.7rem;
   color: var(--muted);
 }

 .vision-card__status::before {
   content: '';
   width: 6px;
   height: 6px;
   border-radius: 50%;
   background: #fbbf24;
 }

 /* ========== BLOG ========== */
 .blog__grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 24px;
   margin-top: 60px;
 }

 .blog-card {
   background: var(--card);
   border: 1px solid var(--border);
   border-radius: var(--radius);
   overflow: hidden;
   transition: transform 0.3s;
   cursor: pointer;
 }

 .blog-card:hover {
   transform: translateY(-4px);
 }

 .blog-card__img {
   height: 180px;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 3rem;
 }

 .blog-card__img-1 {
   background: linear-gradient(135deg, #1e1b4b, #4f46e5);
 }

 .blog-card__img-2 {
   background: linear-gradient(135deg, #0c4a6e, #7c3aed);
 }

 .blog-card__img-3 {
   background: linear-gradient(135deg, #14532d, #06b6d4);
 }

 .blog-card__body {
   padding: 24px;
 }

 .blog-card__cat {
   font-size: 0.7rem;
   font-weight: 700;
   letter-spacing: 2px;
   color: #a5b4fc;
   text-transform: uppercase;
   margin-bottom: 8px;
 }

 .blog-card__title {
   font-family: 'Oxanium', sans-serif;
   font-size: 1rem;
   font-weight: 700;
   margin-bottom: 8px;
   line-height: 1.4;
 }

 .blog-card__excerpt {
   font-size: 0.85rem;
   color: var(--muted);
   line-height: 1.6;
   margin-bottom: 16px;
 }

 .blog-card__meta {
   font-size: 0.75rem;
   color: rgba(255, 255, 255, 0.3);
 }

 /* ========== CONTACT ========== */
 .contact__inner {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 80px;
   align-items: start;
 }

 .contact__info-item {
   display: flex;
   gap: 16px;
   margin-bottom: 32px;
 }

 .contact__info-icon {
   font-size: 1.5rem;
   flex-shrink: 0;
 }

 .contact__info-label {
   font-size: 0.75rem;
   font-weight: 700;
   letter-spacing: 2px;
   color: var(--muted);
   text-transform: uppercase;
   margin-bottom: 4px;
 }

 .contact__info-val {
   font-size: 1rem;
   font-weight: 500;
 }

 .contact__form {
   background: var(--card);
   border: 1px solid var(--border);
   border-radius: var(--radius);
   padding: 40px;
 }

 .form-row {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 16px;
 }

 .form-group {
   margin-bottom: 20px;
 }

 .form-group label {
   display: block;
   font-size: 0.8rem;
   font-weight: 600;
   color: var(--muted);
   margin-bottom: 8px;
   text-transform: uppercase;
   letter-spacing: 1px;
 }

 .form-group input,
 .form-group select,
 .form-group textarea {
   width: 100%;
   background: rgba(255, 255, 255, 0.04);
   border: 1px solid var(--border);
   border-radius: var(--radius-sm);
   padding: 12px 16px;
   color: var(--white);
   font-family: 'DM Sans', sans-serif;
   font-size: 0.95rem;
   transition: border-color 0.2s;
   -webkit-appearance: none;
 }

 .form-group input:focus,
 .form-group select:focus,
 .form-group textarea:focus {
   outline: none;
   border-color: rgba(79, 70, 229, 0.5);
 }

 .form-group select option {
   background: var(--navy2);
 }

 .form-group textarea {
   min-height: 120px;
   resize: vertical;
 }

 .form-submit {
   width: 100%;
 }

 /* ========== STICKY CTA ========== */
 .sticky-cta {
   position: fixed;
   bottom: 32px;
   right: 32px;
   z-index: 999;
   background: var(--grad1);
   color: var(--white);
   padding: 14px 24px;
   border-radius: 50px;
   font-size: 0.9rem;
   font-weight: 700;
   box-shadow: 0 8px 32px rgba(79, 70, 229, 0.5);
   transition: transform 0.2s, box-shadow 0.2s;
   display: flex;
   align-items: center;
   gap: 8px;
   cursor: pointer;
   border: none;
 }

 .sticky-cta:hover {
   transform: translateY(-2px);
   box-shadow: 0 12px 40px rgba(79, 70, 229, 0.6);
 }

 .sticky-cta__icon {
   font-size: 1rem;
 }

 /* ========== FOOTER ========== */
 footer {
   background: var(--navy);
   border-top: 1px solid var(--border);
   padding: 80px 0 40px;
 }

 .footer__grid {
   display: grid;
   grid-template-columns: 2fr 1fr 1fr 1fr;
   gap: 60px;
   margin-bottom: 60px;
 }

 .footer__logo {
   font-family: 'Oxanium', sans-serif;
   font-size: 1.8rem;
   font-weight: 800;
   margin-bottom: 12px;
   background: var(--grad1);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   background-clip: text;
 }

 .footer__tagline {
   color: var(--muted);
   font-size: 0.9rem;
   line-height: 1.6;
   margin-bottom: 24px;
 }

 .footer__socials {
   display: flex;
   gap: 12px;
 }

 .footer__social {
   width: 36px;
   height: 36px;
   border-radius: var(--radius-sm);
   background: var(--card);
   border: 1px solid var(--border);
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 0.9rem;
   transition: background 0.2s;
 }

 .footer__social:hover {
   background: rgba(79, 70, 229, 0.2);
 }

 .footer__col-title {
   font-family: 'Oxanium', sans-serif;
   font-size: 0.85rem;
   font-weight: 700;
   margin-bottom: 20px;
   color: rgba(255, 255, 255, 0.6);
   text-transform: uppercase;
   letter-spacing: 1px;
 }

 .footer__links {
   list-style: none;
 }

 .footer__links li {
   margin-bottom: 12px;
 }

 .footer__links a {
   color: var(--muted);
   font-size: 0.875rem;
   transition: color 0.2s;
 }

 .footer__links a:hover {
   color: var(--white);
 }

 .footer__bottom {
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding-top: 40px;
   border-top: 1px solid var(--border);
 }

 .footer__copy {
   font-size: 0.8rem;
   color: rgba(255, 255, 255, 0.2);
 }

 .footer__badge {
   display: flex;
   align-items: center;
   gap: 8px;
   background: rgba(132, 204, 22, 0.1);
   border: 1px solid rgba(132, 204, 22, 0.2);
   padding: 6px 14px;
   border-radius: 50px;
   font-size: 0.75rem;
   color: var(--lime);
 }

 .footer__badge::before {
   content: '●';
   font-size: 0.5rem;
 }

 /* ========== PAGE SECTIONS (nav-controlled) ========== */
 /* .page { display: none; }
  .page.active { display: block; } */

 /* ========== ANIMATIONS ========== */
 @keyframes fadeUp {
   from {
     opacity: 0;
     transform: translateY(30px);
   }

   to {
     opacity: 1;
     transform: translateY(0);
   }
 }

 @keyframes fadeIn {
   from {
     opacity: 0;
   }

   to {
     opacity: 1;
   }
 }

 @keyframes pulse {

   0%,
   100% {
     opacity: 1;
   }

   50% {
     opacity: 0.5;
   }
 }

 @keyframes float {

   0%,
   100% {
     transform: translateY(0px);
   }

   50% {
     transform: translateY(-10px);
   }
 }

 .hero__grid {
   animation: fadeUp 0.8s ease both;
 }

 .hero__floating--tl {
   animation: float 4s ease-in-out infinite;
 }

 .hero__floating--br {
   animation: float 4s ease-in-out 2s infinite;
 }

 /* ========== UTILITY ========== */
 .text-grad {
   background: var(--grad1);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   background-clip: text;
 }

 .text-center {
   text-align: center;
 }

 .mt-16 {
   margin-top: 16px;
 }

 .mt-24 {
   margin-top: 24px;
 }

 .mt-40 {
   margin-top: 40px;
 }

 .rel {
   position: relative;
 }

 /* ========== RESPONSIVE ========== */
 @media (max-width: 1024px) {
   .services__grid {
     grid-template-columns: 1fr 1fr;
   }

   .service-card--primary {
     grid-column: span 2;
   }

   .vision__products {
     grid-template-columns: repeat(2, 1fr);
   }

   .footer__grid {
     grid-template-columns: 1fr 1fr;
   }

   .about__founders {
     grid-template-columns: 1fr 1fr;
   }
 }

 @media (max-width: 768px) {
   .container {
     width: 100%;
     padding: 0 16px;
   }
   
   .nav__inner {
     padding: 0 16px;
   }
   .nav__links {
     display: none;
     flex-direction: column;
     position: absolute;
     top: 100%;
     left: 0;
     right: 0;
     background: rgba(10, 14, 26, 0.95);
     backdrop-filter: blur(20px);
     padding: 24px;
     border-bottom: 1px solid var(--border);
     gap: 20px;
   }

   .nav__links.active {
     display: flex;
   }

   .nav__hamburger {
     display: flex;
   }

   .hero__grid {
     grid-template-columns: 1fr;
   }

   .hero__visual {
     display: none;
   }

   .offer__inner {
     grid-template-columns: 1fr;
     text-align: center;
     padding: 48px 32px;
   }

   .offer__inner::before {
     font-size: 200px;
   }

   .services__grid {
     grid-template-columns: 1fr;
   }

   .service-card--primary {
     grid-column: span 1;
   }

   .portfolio__grid {
     grid-template-columns: 1fr;
   }

   .portfolio__card:first-child {
     grid-column: span 1;
   }

   .case-study__grid {
     grid-template-columns: 1fr;
   }

   .testimonials__grid {
     grid-template-columns: 1fr;
   }

   .process__steps {
     grid-template-columns: 1fr;
   }

   .process__steps::before {
     display: none;
   }

   .about__intro {
     grid-template-columns: 1fr;
   }

   .about__founders {
     grid-template-columns: 1fr;
   }

   .contact__inner {
     grid-template-columns: 1fr;
   }

   .blog__grid {
     grid-template-columns: 1fr;
   }

   .footer__grid {
     grid-template-columns: 1fr;
   }

   .hero__stats {
     gap: 24px;
   }

   section {
     padding: 60px 0;
   }

   .sticky-cta {
     bottom: 20px;
     right: 16px;
     padding: 12px 18px;
     font-size: 0.8rem;
   }

    .hero__h1 {
      font-size: clamp(2.2rem, 8vw, 3rem);
    }
    
    .hero__sub {
      font-size: 1rem;
    }
    
    .btn-primary, .btn-secondary {
      display: block;
      width: 100%;
      text-align: center;
      font-size: 0.9rem;
      padding: 12px 24px;
    }
  }

 .eyebrow {
   display: inline-flex;
   align-items: center;
   gap: 10px;
   font-size: .72rem;
   font-weight: 700;
   letter-spacing: 3px;
   text-transform: uppercase;
   color: #a5b4fc;
   margin-bottom: 18px;
 }

 .eyebrow::before {
   content: '';
   width: 28px;
   height: 2px;
   background: var(--grad1);
   border-radius: 1px;
 }

 /* FOUNDERS */
 .founders-grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 28px;
   margin-top: 64px;
 }

 .fc {
   background: var(--card);
   border: 1px solid var(--border);
   border-radius: 24px;
   overflow: hidden;
   transition: transform .35s, border-color .3s, box-shadow .3s;
   position: relative;
 }

 .fc:hover {
   transform: translateY(-6px);
   border-color: rgba(79, 70, 229, .35);
   box-shadow: 0 28px 80px rgba(0, 0, 0, .4);
 }

 .fc::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   height: 3px;
   opacity: 0;
   transition: opacity .3s;
 }

 .fc:hover::before {
   opacity: 1;
 }

 .fc:nth-child(1)::before {
   background: linear-gradient(90deg, #4f46e5, #7c3aed);
 }

 .fc:nth-child(2)::before {
   background: linear-gradient(90deg, #7c3aed, #06b6d4);
 }

 .fc:nth-child(3)::before {
   background: linear-gradient(90deg, #06b6d4, #84cc16);
 }

 .fc__head {
   padding: 32px 32px 24px;
   display: flex;
   align-items: flex-start;
   gap: 18px;
 }

 .ava {
   width: 68px;
   height: 68px;
   border-radius: 18px;
   flex-shrink: 0;
   display: flex;
   align-items: center;
   justify-content: center;
   font-family: 'Oxanium', sans-serif;
   font-size: 1.5rem;
   font-weight: 800;
 }

 .av1 {
   background: linear-gradient(135deg, #312e81, #4f46e5);
   box-shadow: 0 8px 30px rgba(79, 70, 229, .5);
 }

 .av2 {
   background: linear-gradient(135deg, #5b21b6, #7c3aed);
   box-shadow: 0 8px 30px rgba(124, 58, 237, .5);
 }

 .av3 {
   background: linear-gradient(135deg, #0e7490, #06b6d4);
   box-shadow: 0 8px 30px rgba(6, 182, 212, .4);
 }

 .av4 {
   background: linear-gradient(135deg, #065f46, #84cc16);
 }

 .av5 {
   background: linear-gradient(135deg, #9f1239, #f43f5e);
 }

 .av6 {
   background: linear-gradient(135deg, #92400e, #f59e0b);
 }

 .fc__meta {
   flex: 1;
 }

 .fc__name {
   font-family: 'Oxanium', sans-serif;
   font-size: 1.2rem;
   font-weight: 800;
   margin-bottom: 3px;
 }

 .fc__role {
   font-size: .72rem;
   font-weight: 700;
   letter-spacing: 1.5px;
   text-transform: uppercase;
   color: #a5b4fc;
   margin-bottom: 10px;
 }

 .fc__socials {
   display: flex;
   gap: 7px;
 }

 .fc__soc {
   width: 26px;
   height: 26px;
   border-radius: 6px;
   background: rgba(255, 255, 255, .06);
   border: 1px solid var(--border);
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: .68rem;
   transition: background .2s;
 }

 .fc__soc:hover {
   background: rgba(79, 70, 229, .25);
 }

 .fc__body {
   padding: 0 32px 32px;
 }

 .fc__bio {
   font-size: .88rem;
   color: rgba(255, 255, 255, .7);
   line-height: 1.75;
   margin-bottom: 20px;
 }

 .chips {
   display: flex;
   flex-wrap: wrap;
   gap: 6px;
   margin-bottom: 20px;
 }

 .chip {
   padding: 3px 11px;
   border-radius: 50px;
   font-size: .68rem;
   font-weight: 700;
 }

 .ci {
   background: rgba(79, 70, 229, .15);
   border: 1px solid rgba(79, 70, 229, .3);
   color: #a5b4fc;
 }

 .cv {
   background: rgba(124, 58, 237, .15);
   border: 1px solid rgba(124, 58, 237, .3);
   color: #c4b5fd;
 }

 .cc {
   background: rgba(6, 182, 212, .12);
   border: 1px solid rgba(6, 182, 212, .3);
   color: #67e8f9;
 }

 .cl {
   background: rgba(132, 204, 22, .12);
   border: 1px solid rgba(132, 204, 22, .3);
   color: #bef264;
 }

 .cr {
   background: rgba(244, 63, 94, .12);
   border: 1px solid rgba(244, 63, 94, .3);
   color: #fda4af;
 }

 .ca {
   background: rgba(245, 158, 11, .12);
   border: 1px solid rgba(245, 158, 11, .3);
   color: #fcd34d;
 }

 .fc__quote {
   background: rgba(255, 255, 255, .03);
   border: 1px solid var(--border);
   border-radius: var(--rs);
   padding: 14px 16px;
   font-size: .82rem;
   color: rgba(255, 255, 255, .72);
   line-height: 1.65;
   font-style: italic;
   margin-bottom: 24px;
 }

 .fc__quote::before {
   content: '"';
   color: #a5b4fc;
   font-size: 1.2rem;
   font-family: 'Oxanium', sans-serif;
   font-weight: 800;
 }

 .fc__stats {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   border-top: 1px solid var(--border);
 }

 .fc__stat {
   padding: 14px;
   text-align: center;
   border-right: 1px solid var(--border);
 }

 .fc__stat:last-child {
   border-right: none;
 }

 .fc__stat-v {
   font-family: 'Oxanium', sans-serif;
   font-size: 1.25rem;
   font-weight: 800;
 }

 .fc__stat-l {
   font-size: .62rem;
   color: var(--muted);
   margin-top: 2px;
 }

 /* RESPONSIVE */
 @media(max-width:1024px) {
   .founders-grid {
     grid-template-columns: 1fr 1fr;
   }

   .ext-grid {
     grid-template-columns: repeat(2, 1fr);
   }

   .cul-grid {
     grid-template-columns: 1fr 1fr;
   }

   .pil-grid {
     grid-template-columns: 1fr;
   }

   .sp-grid {
     grid-template-columns: repeat(2, 1fr);
   }

   .mt-grid {
     grid-template-columns: 1fr 1fr;
   }
 }

 @media(max-width:768px) {
   .nav__links {
     display: none;
   }

   section {
     padding: 60px 0;
   }

   .founders-grid,
   .ext-grid {
     grid-template-columns: 1fr;
   }

   .cul-grid {
     grid-template-columns: 1fr;
   }

   .pd-grid {
     grid-template-columns: 1fr;
   }

   .pd:not(:last-child)::after {
     display: none;
   }

   .pd {
     padding: 0;
     margin-bottom: 40px;
   }

   .sp-grid {
     grid-template-columns: repeat(2, 1fr);
   }

   .mt-grid {
     grid-template-columns: 1fr;
   }

   .hiring {
     padding: 40px 28px;
     flex-direction: column;
   }

   .tbi {
     padding: 36px 28px;
   }

   .fcta__inner {
     padding: 56px 28px;
   }

   .scta {
     bottom: 16px;
     right: 16px;
     padding: 11px 16px;
     font-size: .8rem;
   }

   .tabs {
     width: 100%;
   }
 }

 @keyframes fadeUp {
   from {
     opacity: 0;
     transform: translateY(26px)
   }

   to {
     opacity: 1;
     transform: translateY(0)
   }
 }

 .au {
   animation: fadeUp .7s ease both;
 }

 .au2 {
   animation: fadeUp .7s ease .12s both;
 }

 .au3 {
   animation: fadeUp .7s ease .24s both;
 }


 /* EXTENDED TEAM */
 .ext-grid {
   display: grid;
   grid-template-columns: repeat(4, 1fr);
   gap: 20px;
   margin-top: 48px;
 }

 .em {
   background: var(--card);
   border: 1px solid var(--border);
   border-radius: var(--r);
   padding: 28px;
   text-align: center;
   transition: transform .3s, border-color .3s;
 }

 .em:hover {
   transform: translateY(-4px);
   border-color: var(--border-hi);
 }

 .em__ava {
   width: 52px;
   height: 52px;
   border-radius: 14px;
   margin: 0 auto 14px;
   display: flex;
   align-items: center;
   justify-content: center;
   font-family: 'Oxanium', sans-serif;
   font-size: 1rem;
   font-weight: 800;
 }

 .em__name {
   font-family: 'Oxanium', sans-serif;
   font-size: .92rem;
   font-weight: 700;
   margin-bottom: 3px;
 }

 .em__role {
   font-size: .68rem;
   font-weight: 700;
   letter-spacing: 1px;
   text-transform: uppercase;
   color: #a5b4fc;
   margin-bottom: 10px;
 }

 .em__desc {
   font-size: .8rem;
   color: var(--muted);
   line-height: 1.6;
 }

 /* CULTURE */
 .culture-bg {
   background: var(--navy2);
 }

 .cul-grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 22px;
   margin-top: 56px;
 }

 .cul {
   border-radius: var(--r);
   padding: 32px;
   border: 1px solid var(--border);
   transition: transform .3s;
 }

 .cul:hover {
   transform: translateY(-4px);
 }

 .cul-d {
   background: var(--card);
 }

 .cul-g1 {
   background: linear-gradient(135deg, rgba(79, 70, 229, .15), rgba(124, 58, 237, .08));
   border-color: rgba(79, 70, 229, .22);
 }

 .cul-g2 {
   background: linear-gradient(135deg, rgba(6, 182, 212, .1), rgba(132, 204, 22, .06));
   border-color: rgba(6, 182, 212, .18);
 }

 .cul__ico {
   font-size: 2rem;
   margin-bottom: 16px;
 }

 .cul__ttl {
   font-family: 'Oxanium', sans-serif;
   font-size: 1.1rem;
   font-weight: 800;
   margin-bottom: 10px;
 }

 .cul__txt {
   font-size: .86rem;
   color: var(--muted);
   line-height: 1.75;
 }


 /* WHY PAGE */
 .why-hero {
   padding: 160px 0 80px;
 }

 .why-cred {
   display: flex;
   gap: 40px;
   flex-wrap: wrap;
   padding-top: 44px;
   border-top: 1px solid var(--border);
   margin-top: 44px;
 }

 .why-cred__s strong {
   display: block;
   font-family: 'Oxanium', sans-serif;
   font-size: 2.3rem;
   font-weight: 800;
   background: var(--grad1);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   background-clip: text;
   line-height: 1;
 }

 .why-cred__s span {
   font-size: .78rem;
   color: var(--muted);
   margin-top: 4px;
   display: block;
 }

 /* COMPARE */
 .cmp-bg {
   background: var(--navy2);
 }

 .cmp-wrap {
   margin-top: 56px;
   border-radius: var(--r);
   overflow: hidden;
   border: 1px solid var(--border);
   overflow-x: auto;
 }

 .cmp-wrap table {
   width: 100%;
   border-collapse: collapse;
   min-width: 620px;
 }

 .cmp-wrap thead tr {
   background: rgba(255, 255, 255, .04);
 }

 .cmp-wrap th {
   padding: 18px 22px;
   text-align: left;
   font-family: 'Oxanium', sans-serif;
   font-size: .78rem;
   font-weight: 800;
   letter-spacing: 1.5px;
   text-transform: uppercase;
   border-bottom: 1px solid var(--border);
 }

 .cmp-wrap th:not(:first-child) {
   text-align: center;
 }

 .cmp-wrap th.hi {
   color: #a5b4fc;
 }

 .cmp-wrap td {
   padding: 16px 22px;
   border-bottom: 1px solid var(--border);
   font-size: .88rem;
   color: rgba(255, 255, 255, .78);
 }

 .cmp-wrap td:not(:first-child) {
   text-align: center;
 }

 .cmp-wrap tr:last-child td {
   border-bottom: none;
 }

 .cmp-wrap tr:hover td {
   background: rgba(255, 255, 255, .02);
 }

 .adcol {
   background: rgba(79, 70, 229, .06);
 }

 .ck {
   color: var(--lime);
   font-weight: 700;
   font-size: 1.05rem;
 }

 .cx {
   color: rgba(255, 255, 255, .18);
   font-size: 1rem;
 }

 .cp {
   color: var(--amber);
   font-size: .78rem;
   font-weight: 600;
 }

 /* PILLARS */
 .pil-grid {
   display: grid;
   grid-template-columns: repeat(2, 1fr);
   gap: 22px;
   margin-top: 56px;
 }

 .pil {
   display: grid;
   grid-template-columns: 56px 1fr;
   gap: 22px;
   align-items: start;
   background: var(--card);
   border: 1px solid var(--border);
   border-radius: var(--r);
   padding: 32px;
   transition: transform .3s, border-color .3s;
 }

 .pil:hover {
   transform: translateY(-4px);
   border-color: var(--border-hi);
 }

 .pil__ico {
   width: 56px;
   height: 56px;
   border-radius: 14px;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 1.4rem;
   flex-shrink: 0;
 }

 .pi1 {
   background: linear-gradient(135deg, #312e81, #4f46e5);
 }

 .pi2 {
   background: linear-gradient(135deg, #5b21b6, #7c3aed);
 }

 .pi3 {
   background: linear-gradient(135deg, #0e7490, #06b6d4);
 }

 .pi4 {
   background: linear-gradient(135deg, #14532d, #84cc16);
 }

 .pi5 {
   background: linear-gradient(135deg, #7c2d12, #f59e0b);
 }

 .pi6 {
   background: linear-gradient(135deg, #881337, #f43f5e);
 }

 .pil__ttl {
   font-family: 'Oxanium', sans-serif;
   font-size: 1.1rem;
   font-weight: 800;
   margin-bottom: 8px;
 }

 .pil__txt {
   font-size: .86rem;
   color: var(--muted);
   line-height: 1.75;
 }

 /* PROMISE */
 .prm-bg {
   background: var(--navy2);
 }

 .prm-inner {
   max-width: 860px;
   margin: 0 auto;
   text-align: center;
 }

 .prm-q {
   font-family: 'Oxanium', sans-serif;
   font-size: clamp(1.4rem, 3.2vw, 2.4rem);
   font-weight: 700;
   line-height: 1.4;
   margin-bottom: 28px;
   background: var(--grad1);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   background-clip: text;
 }

 .prm-p {
   font-size: 1rem;
   color: var(--muted);
   line-height: 1.8;
   margin-bottom: 56px;
 }

 /* PROCESS */
 .pd-grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 0;
 }

 .pd {
   padding: 0 32px;
   text-align: center;
   position: relative;
 }

 .pd:not(:last-child)::after {
   content: '→';
   position: absolute;
   right: -10px;
   top: 42px;
   font-size: 1.4rem;
   color: rgba(255, 255, 255, .12);
 }

 .pd__c {
   width: 84px;
   height: 84px;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   margin: 0 auto 28px;
   font-family: 'Oxanium', sans-serif;
   font-size: 1.6rem;
   font-weight: 800;
 }

 .pdc1 {
   background: linear-gradient(135deg, #4f46e5, #7c3aed);
   box-shadow: 0 0 48px rgba(79, 70, 229, .45);
 }

 .pdc2 {
   background: linear-gradient(135deg, #7c3aed, #06b6d4);
   box-shadow: 0 0 48px rgba(124, 58, 237, .4);
 }

 .pdc3 {
   background: linear-gradient(135deg, #06b6d4, #84cc16);
   box-shadow: 0 0 48px rgba(6, 182, 212, .38);
 }

 .pd__lbl {
   font-family: 'Oxanium', sans-serif;
   font-size: 1.5rem;
   font-weight: 800;
   margin-bottom: 12px;
 }

 .pd__sub {
   font-size: .86rem;
   color: var(--muted);
   line-height: 1.75;
 }

 .pd__list {
   list-style: none;
   margin-top: 18px;
   display: flex;
   flex-direction: column;
   gap: 9px;
 }

 .pd__list li {
   display: flex;
   align-items: flex-start;
   gap: 7px;
   font-size: .8rem;
   color: rgba(255, 255, 255, .55);
   text-align: left;
 }

 .pd__list li::before {
   content: '›';
   color: #a5b4fc;
   font-weight: 800;
   flex-shrink: 0;
 }

 /* PROOF */
 .sp-grid {
   display: grid;
   grid-template-columns: repeat(4, 1fr);
   gap: 20px;
   margin-top: 64px;
 }

 .spc {
   background: var(--card);
   border: 1px solid var(--border);
   border-radius: var(--r);
   padding: 28px;
   text-align: center;
   transition: transform .3s;
 }

 .spc:hover {
   transform: translateY(-4px);
 }

 .spc__ico {
   font-size: 1.7rem;
   margin-bottom: 10px;
 }

 .spc__val {
   font-family: 'Oxanium', sans-serif;
   font-size: 2.1rem;
   font-weight: 800;
   background: var(--grad1);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   background-clip: text;
   line-height: 1;
   margin-bottom: 6px;
 }

 .spc__lbl {
   font-size: .76rem;
   color: var(--muted);
   line-height: 1.5;
 }

 /* BIG TESTI */
 .tbi {
   background: linear-gradient(135deg, rgba(79, 70, 229, .12), rgba(124, 58, 237, .07));
   border: 1px solid rgba(79, 70, 229, .24);
   border-radius: 24px;
   padding: 56px;
   position: relative;
   overflow: hidden;
   margin-top: 56px;
 }

 .tbi::before {
   content: '"';
   position: absolute;
   top: -20px;
   left: 28px;
   font-size: 200px;
   font-family: 'Oxanium', sans-serif;
   font-weight: 800;
   color: rgba(79, 70, 229, .1);
   line-height: 1;
 }

 .tbi__q {
   font-family: 'Oxanium', sans-serif;
   font-size: clamp(1rem, 2vw, 1.4rem);
   font-weight: 600;
   line-height: 1.65;
   margin-bottom: 24px;
   color: rgba(255, 255, 255, .9);
   position: relative;
   z-index: 1;
 }

 .tbi__author {
   display: flex;
   align-items: center;
   gap: 14px;
   position: relative;
   z-index: 1;
 }

 .tbi__ava {
   width: 50px;
   height: 50px;
   border-radius: 13px;
   display: flex;
   align-items: center;
   justify-content: center;
   font-family: 'Oxanium', sans-serif;
   font-size: 1rem;
   font-weight: 800;
   background: linear-gradient(135deg, #4f46e5, #7c3aed);
 }

 .tbi__stars {
   color: #fbbf24;
   font-size: .9rem;
   margin-bottom: 3px;
 }

 .tbi__name {
   font-weight: 700;
   font-size: .95rem;
 }

 .tbi__role {
   font-size: .76rem;
   color: var(--muted);
 }

 /* MINI TESTIS */
 .mt-grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 20px;
   margin-top: 22px;
 }

 .mt {
   background: var(--card);
   border: 1px solid var(--border);
   border-radius: var(--r);
   padding: 26px;
 }

 .mt__stars {
   color: #fbbf24;
   font-size: .78rem;
   margin-bottom: 11px;
 }

 .mt__q {
   font-size: .84rem;
   color: rgba(255, 255, 255, .76);
   line-height: 1.7;
   font-style: italic;
   margin-bottom: 18px;
 }

 .mt__a {
   display: flex;
   align-items: center;
   gap: 10px;
 }

 .mt__ava {
   width: 34px;
   height: 34px;
   border-radius: 9px;
   display: flex;
   align-items: center;
   justify-content: center;
   font-family: 'Oxanium', sans-serif;
   font-size: .76rem;
   font-weight: 800;
 }

 .mt__name {
   font-size: .8rem;
   font-weight: 600;
 }

 .mt__co {
   font-size: .68rem;
   color: var(--muted);
 }

 /* FINAL CTA */
 .fcta {
   text-align: center;
 }

 .fcta__inner {
   background: var(--grad1);
   border-radius: 30px;
   padding: 80px 56px;
   position: relative;
   overflow: hidden;
 }

 .fcta__inner::before {
   content: 'AdNav';
   position: absolute;
   bottom: -30px;
   right: -10px;
   font-family: 'Oxanium', sans-serif;
   font-size: 180px;
   font-weight: 800;
   color: rgba(255, 255, 255, .06);
   pointer-events: none;
   line-height: 1;
 }

 .fcta h2 {
   font-size: clamp(2rem, 4vw, 3.4rem);
   font-weight: 800;
   margin-bottom: 14px;
   position: relative;
   z-index: 1;
 }

 .fcta p {
   font-size: 1rem;
   opacity: .84;
   max-width: 500px;
   margin: 0 auto 32px;
   line-height: 1.7;
   position: relative;
   z-index: 1;
 }

 .fcta__btns {
   display: flex;
   gap: 14px;
   justify-content: center;
   flex-wrap: wrap;
   position: relative;
   z-index: 1;
 }

 .fcta__w {
   background: #fff;
   color: var(--indigo);
   padding: 15px 40px;
   border-radius: 50px;
   font-weight: 800;
   font-size: .95rem;
   transition: transform .2s, box-shadow .2s;
 }

 .fcta__w:hover {
   transform: translateY(-2px);
   box-shadow: 0 14px 40px rgba(0, 0, 0, .3);
 }

 .fcta__d {
   background: rgba(255, 255, 255, .14);
   color: #fff;
   padding: 15px 34px;
   border-radius: 50px;
   font-weight: 700;
   font-size: .95rem;
   border: 1px solid rgba(255, 255, 255, .28);
   transition: background .2s;
 }

 .fcta__d:hover {
   background: rgba(255, 255, 255, .22);
 }

 footer {
   background: var(--navy);
   border-top: 1px solid var(--border);
   padding: 56px 0 32px;
 }

 .foot {
   display: flex;
   align-items: center;
   justify-content: space-between;
   flex-wrap: wrap;
   gap: 18px;
 }

 .foot__logo {
   font-family: 'Oxanium', sans-serif;
   font-size: 1.4rem;
   font-weight: 800;
   background: var(--grad1);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   background-clip: text;
 }

 .foot__copy {
   font-size: .78rem;
   color: rgba(255, 255, 255, .18);
 }

 .foot__badge {
   display: flex;
   align-items: center;
   gap: 7px;
   background: rgba(132, 204, 22, .1);
   border: 1px solid rgba(132, 204, 22, .2);
   padding: 5px 13px;
   border-radius: 50px;
   font-size: .7rem;
   color: var(--lime);
 }

 .foot__badge::before {
   content: '●';
   font-size: .45rem;
 }

 /* RESPONSIVE */
 @media(max-width:1024px) {
   .founders-grid {
     grid-template-columns: 1fr 1fr;
   }

   .ext-grid {
     grid-template-columns: repeat(2, 1fr);
   }

   .cul-grid {
     grid-template-columns: 1fr 1fr;
   }

   .pil-grid {
     grid-template-columns: 1fr;
   }

   .sp-grid {
     grid-template-columns: repeat(2, 1fr);
   }

   .mt-grid {
     grid-template-columns: 1fr 1fr;
   }
 }

 @media(max-width:768px) {
   .nav__links {
     display: none;
   }

   section {
     padding: 60px 0;
   }

   .founders-grid,
   .ext-grid {
     grid-template-columns: 1fr;
   }

   .cul-grid {
     grid-template-columns: 1fr;
   }

   .pd-grid {
     grid-template-columns: 1fr;
   }

   .pd:not(:last-child)::after {
     display: none;
   }

   .pd {
     padding: 0;
     margin-bottom: 40px;
   }

   .sp-grid {
     grid-template-columns: repeat(2, 1fr);
   }

   .mt-grid {
     grid-template-columns: 1fr;
   }

   .hiring {
     padding: 40px 28px;
     flex-direction: column;
   }

   .tbi {
     padding: 36px 28px;
   }

   .fcta__inner {
     padding: 56px 28px;
   }

   .scta {
     bottom: 16px;
     right: 16px;
     padding: 11px 16px;
     font-size: .8rem;
   }

   .tabs {
     width: 100%;
   }
 }

 @keyframes fadeUp {
   from {
     opacity: 0;
     transform: translateY(26px)
   }

   to {
     opacity: 1;
     transform: translateY(0)
   }
 }

 .au {
   animation: fadeUp .7s ease both;
 }

 .au2 {
   animation: fadeUp .7s ease .12s both;
 }

 .au3 {
   animation: fadeUp .7s ease .24s both;
 }