﻿/* Sofin Solar — frontend design system (extracted from landing page) */
  :root {
    --cream: #d9d1c7;
    --cream-soft: #e3dbd1;
    --cream-light: #ece5dc;
    --cream-lighter: #f3ede4;
    --charcoal: #1f1f21;
    --charcoal-soft: #28282b;
    --charcoal-line: #313135;
    --orange: #f26522;
    --orange-bright: #ff7733;
    --orange-dark: #d9511a;
    --white: #f8f8f8;
    --text: #222222;
    --text-soft: #3d3d3d;
    --muted: #6a6a6e;
    --muted-dark: rgba(248, 248, 248, 0.62);
    --border-light: rgba(34, 34, 34, 0.10);
    --border-dark: rgba(248, 248, 248, 0.10);
    --grid-line: rgba(34, 34, 34, 0.08);
    --grid-line-dark: rgba(248, 248, 248, 0.08);
    --container: 1240px;
    --radius-sm: 6px;
    --radius: 14px;
  }

  * { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    margin: 0;
    font-family: "Inter", "Segoe UI", Tahoma, sans-serif;
    color: var(--text);
    background: var(--cream);
    overflow-x: hidden;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
  }

  h1, h2, h3, h4 {
    font-family: "Sora", "Inter", sans-serif;
    letter-spacing: -0.02em;
    margin: 0;
  }

  .container {
    width: min(calc(100% - 40px), var(--container));
    margin: 0 auto;
    position: relative;
  }

  .container-wide {
    width: min(calc(100% - 40px), 1360px);
    margin: 0 auto;
    position: relative;
  }

  /* ============ Top Strip ============ */
  .top-strip {
    background: var(--charcoal);
    color: var(--white);
    padding: 18px 0;
    position: relative;
  }

  .top-strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(248,248,248,0.6);
  }

  .top-strip-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    letter-spacing: 0.22em;
    font-weight: 500;
    color: var(--white);
  }

  /* ============ Navigation ============ */
  .nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--cream);
    border-bottom: 1px solid var(--border-light);
  }

  .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 0;
  }

  .brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--orange);
    display: grid;
    place-items: center;
    color: var(--white);
    font-weight: 900;
    font-family: "Sora", sans-serif;
    font-size: 1.2rem;
    flex-shrink: 0;
  }

  .brand-text strong {
    display: block;
    line-height: 1;
    color: var(--text);
    font-family: "Sora", sans-serif;
    font-weight: 800;
    font-size: 1.15rem;
    letter-spacing: -0.01em;
  }

  .brand-text small {
    display: block;
    font-size: 0.68rem;
    font-weight: 500;
    color: var(--muted);
    margin-top: 3px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    flex-wrap: wrap;
  }

  .nav-links > a {
    color: var(--text);
    text-decoration: none;
    font-size: 0.86rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    position: relative;
    padding: 6px 0;
    transition: color 0.25s ease;
  }

  .nav-links > a:not(.btn)::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: var(--orange);
    transition: width 0.3s ease;
  }

  .nav-links > a:not(.btn):hover { color: var(--orange); }
  .nav-links > a:not(.btn):hover::after { width: 100%; }

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

  /* ============ Buttons ============ */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 26px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.88rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.02em;
    font-family: "Inter", sans-serif;
  }

  .btn-primary {
    color: var(--white);
    background: var(--orange);
  }

  .btn-primary:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(242,101,34,0.28);
  }

  .btn-outline {
    color: var(--text);
    background: transparent;
    border: 1px solid var(--text);
  }

  .btn-outline:hover {
    background: var(--text);
    color: var(--white);
  }

  .btn-dark {
    color: var(--white);
    background: var(--charcoal);
  }

  .btn-dark:hover {
    background: var(--orange);
    transform: translateY(-2px);
  }

  .btn-ghost-light {
    color: var(--white);
    background: transparent;
    border: 1px solid rgba(248,248,248,0.4);
  }

  .btn-ghost-light:hover {
    background: var(--white);
    color: var(--charcoal);
    border-color: var(--white);
  }

  .btn-arrow {
    width: 48px;
    height: 48px;
    padding: 0;
    border-radius: 50%;
  }

  /* ============ Eyebrows / Labels ============ */
  .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text-soft);
    margin-bottom: 20px;
  }

  .eyebrow::before {
    content: "";
    display: inline-block;
    width: 28px;
    height: 2px;
    background: var(--orange);
  }

  .eyebrow.on-dark { color: rgba(248,248,248,0.78); }

  .section-number {
    font-family: "Sora", sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--orange);
  }

  /* ============ Hero ============ */
  .hero {
    position: relative;
    padding: 80px 0 100px;
    background: var(--cream);
    overflow: hidden;
  }

  .hero-grid-lines {
    position: absolute;
    inset: 0;
    pointer-events: none;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    opacity: 0.9;
  }

  .hero-grid-lines > div {
    border-right: 1px solid var(--grid-line);
  }

  .hero-grid-lines > div:last-child { border-right: none; }

  .hero-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.78rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 50px;
    font-weight: 500;
  }

  .hero-meta .divider { flex: 1; height: 1px; background: var(--border-light); margin: 0 24px; }

  .hero-layout {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 40px;
    align-items: stretch;
    min-height: 560px;
    position: relative;
  }

  .hero-triangle {
    position: absolute;
    width: 380px;
    height: 420px;
    background: var(--orange);
    clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
    left: 48%;
    top: -30px;
    transform: translateX(-50%);
    z-index: 0;
    opacity: 0.95;
  }

  .hero-triangle-bottom {
    position: absolute;
    width: 260px;
    height: 180px;
    background: var(--orange);
    clip-path: polygon(0 0, 100% 0, 30% 100%);
    left: 4%;
    bottom: -40px;
    z-index: 0;
  }

  /* ============ Platform Coin ============ */
  .platform-head {
    display: grid;
    grid-template-columns: 1fr 1fr 320px;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
  }

  .platform-head h2 {
    font-size: clamp(2rem, 3.8vw, 3.4rem);
    line-height: 1.05;
    font-weight: 800;
    color: var(--text);
  }

  .platform-head p {
    color: var(--text-soft);
    font-size: 1rem;
    line-height: 1.8;
    margin: 0;
  }

  .platform-coin {
    position: relative;
    width: 300px;
    height: 300px;
    justify-self: end;
    filter: drop-shadow(0 24px 40px rgba(242,101,34,0.45))
            drop-shadow(0 0 32px rgba(255,119,51,0.35));
    animation: coinFloat 5s ease-in-out infinite;
  }

  .platform-coin::before {
    content: "";
    position: absolute;
    inset: -30px;
    border-radius: 50%;
    border: 1px dashed rgba(242,101,34,0.4);
    animation: coinSpin 24s linear infinite;
  }

  .platform-coin::after {
    content: "";
    position: absolute;
    inset: -70px;
    border-radius: 50%;
    border: 1px solid rgba(34,34,34,0.08);
  }

  .platform-coin img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    position: relative;
    z-index: 1;
    background: var(--charcoal);
  }

  @keyframes coinFloat {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-14px); }
  }

  @keyframes coinSpin {
    to { transform: rotate(360deg); }
  }

  .hero-headline-wrap {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 0;
  }

  .hero-headline-ghost {
    position: absolute;
    right: -40px;
    top: 20px;
    font-family: "Sora", sans-serif;
    font-weight: 900;
    font-size: clamp(5rem, 11vw, 10rem);
    line-height: 0.9;
    color: transparent;
    -webkit-text-stroke: 1px rgba(34,34,34,0.12);
    letter-spacing: -0.04em;
    pointer-events: none;
    z-index: 0;
    white-space: nowrap;
  }

  .hero h1 {
    font-size: clamp(2.6rem, 5.6vw, 5rem);
    line-height: 1.02;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 28px;
    position: relative;
    z-index: 2;
  }

  .hero h1 .accent { color: var(--orange); }
  .hero h1 .italic { font-style: italic; font-weight: 600; }

  .hero-sub {
    font-size: 1.02rem;
    line-height: 1.8;
    color: var(--text-soft);
    max-width: 540px;
    margin: 0 0 36px;
    position: relative;
    z-index: 2;
  }

  .hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
  }

  .hero-side {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 18px;
    justify-content: center;
  }

  .hero-card {
    background: var(--charcoal);
    color: var(--white);
    padding: 30px 28px;
    border-radius: var(--radius);
    position: relative;
    overflow: hidden;
  }

  .hero-card .date-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(248,248,248,0.6);
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(248,248,248,0.12);
  }

  .hero-card h3 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--white);
  }

  .hero-card p {
    font-size: 0.92rem;
    color: rgba(248,248,248,0.72);
    line-height: 1.7;
    margin: 0 0 20px;
  }

  .hero-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .hero-card-footer a {
    color: var(--white);
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }

  .hero-card-footer a:hover { color: var(--orange-bright); }

  .hero-card-arrows {
    display: flex;
    gap: 6px;
  }

  .arrow-chip {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(248,248,248,0.25);
    display: grid;
    place-items: center;
    color: var(--white);
    background: transparent;
    cursor: pointer;
    transition: 0.25s ease;
  }

  .arrow-chip:hover { background: var(--orange); border-color: var(--orange); }

  .hero-card-orange {
    background: var(--orange);
    padding: 26px 28px;
    border-radius: var(--radius);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }

  .hero-card-orange strong {
    display: block;
    font-family: "Sora", sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    line-height: 1.1;
  }

  .hero-card-orange span {
    display: block;
    font-size: 0.82rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8);
    margin-top: 4px;
  }

  .hero-bottom-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 70px;
    padding-top: 34px;
    border-top: 1px solid var(--border-light);
    position: relative;
    z-index: 2;
  }

  .hero-bottom-stats .stat-cell {
    padding: 0 24px;
    border-right: 1px solid var(--border-light);
  }

  .hero-bottom-stats .stat-cell:first-child { padding-left: 0; }
  .hero-bottom-stats .stat-cell:last-child { border-right: none; padding-right: 0; }

  .stat-cell strong {
    display: block;
    font-family: "Sora", sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text);
    line-height: 1;
    margin-bottom: 10px;
  }

  .stat-cell strong .sm-orange { color: var(--orange); font-size: 1.6rem; }

  .stat-cell span {
    font-size: 0.84rem;
    color: var(--muted);
    line-height: 1.55;
  }

  /* ============ Generic Section ============ */
  section {
    padding: 110px 0;
    position: relative;
  }

  .section-cream { background: var(--cream); }
  .section-cream-light { background: var(--cream-light); }
  .section-dark {
    background: var(--charcoal);
    color: var(--white);
  }
  .section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }

  .section-head {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: end;
    margin-bottom: 60px;
  }

  .section-head h2 {
    font-size: clamp(2rem, 3.8vw, 3.4rem);
    line-height: 1.05;
    font-weight: 800;
    color: inherit;
  }

  .section-head p {
    color: var(--text-soft);
    font-size: 1rem;
    line-height: 1.8;
    max-width: 520px;
    margin: 0 0 0 auto;
  }

  .section-dark .section-head p { color: rgba(248,248,248,0.72); }

  /* ============ Features / Platform ============ */
  .features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid var(--border-light);
  }

  .feature {
    padding: 40px 30px 40px 0;
    border-right: 1px solid var(--border-light);
    position: relative;
    transition: 0.3s ease;
  }

  .feature:nth-child(2) { padding-left: 30px; }
  .feature:last-child { border-right: none; padding-left: 30px; padding-right: 0; }

  .feature-num {
    font-family: "Sora", sans-serif;
    font-size: 0.86rem;
    font-weight: 700;
    color: var(--orange);
    letter-spacing: 0.1em;
    margin-bottom: 26px;
  }

  .feature-icon-box {
    width: 60px;
    height: 60px;
    background: var(--orange);
    color: var(--white);
    display: grid;
    place-items: center;
    font-size: 1.6rem;
    margin-bottom: 24px;
    border-radius: var(--radius-sm);
  }

  .feature h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 14px;
    color: var(--text);
  }

  .feature p {
    margin: 0 0 20px;
    color: var(--text-soft);
    line-height: 1.8;
    font-size: 0.96rem;
  }

  .feature ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
  }

  .feature li {
    padding-left: 22px;
    position: relative;
    color: var(--text-soft);
    font-size: 0.92rem;
    line-height: 1.6;
  }

  .feature li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 12px;
    height: 1px;
    background: var(--orange);
  }

  /* ============ Editorial Showcase ============ */
  .editorial {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    min-height: 520px;
  }

  .editorial-text {
    background: var(--cream);
    padding: 70px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .editorial-text h2 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--text);
  }

  .editorial-text p {
    color: var(--text-soft);
    line-height: 1.85;
    margin: 0 0 22px;
  }

  .editorial-text ul {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    display: grid;
    gap: 12px;
  }

  .editorial-text li {
    padding: 14px 0;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-soft);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
  }

  .editorial-text li strong { color: var(--text); font-weight: 700; }

  .editorial-visual {
    background: var(--charcoal);
    position: relative;
    overflow: hidden;
    display: grid;
    place-items: center;
    color: var(--white);
    padding: 60px;
  }

  .editorial-visual::before {
    content: "";
    position: absolute;
    width: 260px;
    height: 300px;
    background: var(--orange);
    clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
    top: -20px;
    right: -40px;
    opacity: 0.92;
  }

  .editorial-visual .ed-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 360px;
  }

  .editorial-visual .ed-big {
    font-family: "Sora", sans-serif;
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 16px;
    color: var(--white);
  }

  .editorial-visual .ed-big em {
    font-style: italic;
    color: var(--orange-bright);
    font-weight: 800;
  }

  .editorial-visual p {
    color: rgba(248,248,248,0.75);
    line-height: 1.8;
  }

  .editorial-visual .bars-row {
    display: flex;
    gap: 10px;
    align-items: flex-end;
    justify-content: center;
    margin-top: 30px;
    height: 80px;
  }

  .editorial-visual .bar {
    width: 14px;
    background: var(--white);
    border-radius: 2px 2px 0 0;
  }
  .editorial-visual .bar.on { background: var(--orange); }

  .editorial.reverse .editorial-text { order: 2; }
  .editorial.reverse .editorial-visual { order: 1; background: var(--cream-light); color: var(--text); }
  .editorial.reverse .editorial-visual::before {
    right: auto;
    left: -40px;
    background: var(--charcoal);
    clip-path: polygon(100% 0%, 100% 100%, 0% 100%);
  }
  .editorial.reverse .editorial-visual .ed-big { color: var(--text); }
  .editorial.reverse .editorial-visual p { color: var(--text-soft); }

  /* ============ Process / How it works (dark) ============ */
  .process {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid var(--border-dark);
  }

  .step {
    padding: 40px 28px 40px 0;
    border-right: 1px solid var(--border-dark);
    position: relative;
    transition: 0.3s ease;
  }

  .step:nth-child(n+2) { padding-left: 28px; }
  .step:last-child { border-right: none; padding-right: 0; }

  .step-number {
    font-family: "Sora", sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--orange);
    line-height: 1;
    margin-bottom: 26px;
  }

  .step h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--white);
  }

  .step p {
    margin: 0;
    color: rgba(248,248,248,0.68);
    line-height: 1.75;
    font-size: 0.92rem;
  }

  .step:hover { background: var(--charcoal-soft); }

  /* ============ Packages ============ */
  .packages {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }

  .package {
    padding: 34px 30px;
    background: var(--cream-lighter);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    position: relative;
    overflow: hidden;
    transition: 0.35s ease;
  }

  .package:hover {
    transform: translateY(-6px);
    background: var(--white);
    box-shadow: 0 26px 50px rgba(34,34,34,0.08);
  }

  .package.featured {
    background: var(--charcoal);
    color: var(--white);
    border-color: var(--charcoal);
  }

  .package.featured:hover { background: var(--charcoal-soft); }

  .package-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
  }

  .package .tag {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 100px;
    background: var(--charcoal);
    color: var(--white);
    font-weight: 600;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .package.featured .tag { background: var(--orange); }

  .package-num {
    font-family: "Sora", sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--muted);
    letter-spacing: 0.08em;
  }

  .package.featured .package-num { color: rgba(248,248,248,0.5); }

  .package h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: inherit;
    margin-bottom: 8px;
  }

  .package .price {
    margin: 18px 0 4px;
    font-family: "Sora", sans-serif;
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--orange);
    line-height: 1;
  }

  .package .sub {
    color: var(--muted);
    margin-bottom: 22px;
    font-size: 0.92rem;
  }

  .package.featured .sub { color: rgba(248,248,248,0.6); }

  .package ul {
    list-style: none;
    padding: 0;
    margin: 0 0 26px;
    display: grid;
    gap: 10px;
  }

  .package li {
    padding: 10px 0;
    border-top: 1px solid var(--border-light);
    color: var(--text-soft);
    font-size: 0.92rem;
  }

  .package.featured li {
    color: rgba(248,248,248,0.78);
    border-color: rgba(248,248,248,0.14);
  }

  .package-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.88rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding-top: 18px;
    border-top: 1px solid var(--border-light);
    transition: color 0.25s ease;
  }

  .package.featured .package-cta {
    color: var(--white);
    border-color: rgba(248,248,248,0.14);
  }

  .package-cta:hover { color: var(--orange); }
  .package-cta .arrow {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--orange);
    color: var(--white);
    display: grid;
    place-items: center;
    font-size: 1rem;
    transition: transform 0.25s ease;
  }
  .package-cta:hover .arrow { transform: translateX(4px); }

  /* ============ Metrics (dark) ============ */
  .metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid var(--border-dark);
  }

  .metric {
    padding: 40px 24px;
    border-right: 1px solid var(--border-dark);
    transition: 0.3s ease;
  }

  .metric:last-child { border-right: none; }
  .metric:hover { background: var(--charcoal-soft); }

  .metric strong {
    display: block;
    font-family: "Sora", sans-serif;
    font-size: 1.9rem;
    color: var(--orange);
    margin-bottom: 14px;
    font-weight: 800;
    line-height: 1.1;
  }

  .metric span {
    color: rgba(248,248,248,0.7);
    line-height: 1.7;
    font-size: 0.9rem;
  }

  /* ============ Testimonial ============ */
  .testimonial {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: stretch;
    margin-top: 60px;
  }

  .quote {
    padding: 50px 50px;
    background: var(--cream-lighter);
    border-radius: var(--radius);
    position: relative;
  }

  .quote::before {
    content: "โ€";
    position: absolute;
    top: 10px;
    left: 24px;
    font-family: "Sora", serif;
    font-size: 7rem;
    color: var(--orange);
    line-height: 1;
    opacity: 0.6;
  }

  .quote p {
    font-family: "Sora", sans-serif;
    font-size: 1.3rem;
    line-height: 1.55;
    color: var(--text);
    margin: 0 0 24px;
    font-weight: 500;
    position: relative;
    z-index: 1;
  }

  .quote-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 22px;
    border-top: 1px solid var(--border-light);
  }

  .quote-author .avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--charcoal);
    color: var(--white);
    display: grid;
    place-items: center;
    font-family: "Sora", sans-serif;
    font-weight: 800;
  }

  .quote-author strong {
    display: block;
    color: var(--text);
    font-weight: 700;
  }

  .quote-author span {
    display: block;
    font-size: 0.82rem;
    color: var(--muted);
    margin-top: 2px;
  }

  .quote-side {
    background: var(--orange);
    color: var(--white);
    padding: 50px;
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
  }

  .quote-side::before {
    content: "";
    position: absolute;
    right: -40px;
    bottom: -40px;
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
  }

  .quote-side h3 {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 14px;
    position: relative;
  }

  .quote-side p {
    color: rgba(255,255,255,0.9);
    line-height: 1.75;
    margin: 0 0 20px;
    position: relative;
  }

  .quote-side strong {
    display: block;
    font-size: 0.82rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    position: relative;
  }

  /* ============ CTA ============ */
  .cta-section {
    padding: 100px 0;
    background: var(--cream-light);
  }

  .cta-box {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    padding: 60px 56px;
    background: var(--charcoal);
    color: var(--white);
    border-radius: var(--radius);
    align-items: center;
    position: relative;
    overflow: hidden;
  }

  .cta-box::before {
    content: "";
    position: absolute;
    width: 280px;
    height: 320px;
    background: var(--orange);
    clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
    right: -30px;
    top: -60px;
    opacity: 0.92;
  }

  .cta-box h2 {
    color: var(--white);
    font-size: clamp(2rem, 3.6vw, 3rem);
    line-height: 1.08;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
  }

  .cta-box h2 .accent { color: var(--orange-bright); }

  .cta-box p {
    margin: 0;
    color: rgba(248,248,248,0.72);
    line-height: 1.8;
    position: relative;
    z-index: 1;
  }

  .cta-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: center;
    position: relative;
    z-index: 1;
  }

  .cta-actions .btn { width: 100%; padding: 18px 28px; }

  /* ============ Footer ============ */
  footer {
    background: var(--charcoal);
    color: rgba(248,248,248,0.6);
    padding: 60px 0 30px;
    font-size: 0.88rem;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(248,248,248,0.1);
  }

  .footer-brand .brand-text strong { color: var(--white); }
  .footer-brand .brand-text small { color: rgba(248,248,248,0.55); }

  .footer-brand p {
    margin: 20px 0 0;
    color: rgba(248,248,248,0.62);
    line-height: 1.75;
    max-width: 320px;
  }

  .footer-col h4 {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 18px;
  }

  .footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
  }

  .footer-col a {
    color: rgba(248,248,248,0.62);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
  }

  .footer-col a:hover { color: var(--orange); }

  .footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 30px;
    flex-wrap: wrap;
    gap: 14px;
    font-size: 0.82rem;
  }

  .footer-bottom .dot { color: var(--orange); margin: 0 10px; }

  /* ============ Animations ============ */
  .reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  .reveal.in { opacity: 1; transform: translateY(0); }

  /* ============ Responsive ============ */
  @media (max-width: 1080px) {
    .hero-layout { grid-template-columns: 1fr; }
    .hero-side { margin-top: 20px; }
    .hero-triangle { width: 280px; height: 300px; left: auto; right: 0; transform: none; top: 0; opacity: 0.3; }
    .hero-triangle-bottom { display: none; }
    .platform-head { grid-template-columns: 1fr; gap: 30px; }
    .platform-head .platform-coin { justify-self: center; width: 220px; height: 220px; }
    .section-head { grid-template-columns: 1fr; align-items: flex-start; }
    .section-head p { margin: 0; }
    .features, .process { grid-template-columns: repeat(2, 1fr); }
    .feature, .step { border-right: none; border-bottom: 1px solid var(--border-light); padding: 30px 0; }
    .section-dark .step { border-bottom: 1px solid var(--border-dark); }
    .feature:nth-child(2n) { padding-left: 30px; border-left: 1px solid var(--border-light); }
    .step:nth-child(2n) { padding-left: 28px; border-left: 1px solid var(--border-dark); }
    .packages { grid-template-columns: 1fr; }
    .metrics { grid-template-columns: repeat(2, 1fr); }
    .metric { border-bottom: 1px solid var(--border-dark); }
    .editorial, .editorial.reverse { grid-template-columns: 1fr; }
    .editorial.reverse .editorial-text { order: 1; }
    .editorial.reverse .editorial-visual { order: 2; }
    .editorial-text { padding: 50px 30px; }
    .editorial-visual { padding: 50px 30px; }
    .testimonial, .cta-box { grid-template-columns: 1fr; gap: 24px; }
    .cta-box { padding: 40px 30px; }
    .hero-bottom-stats { grid-template-columns: repeat(2, 1fr); gap: 30px 0; }
    .hero-bottom-stats .stat-cell { border-right: none; padding: 0; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    section { padding: 80px 0; }
  }

  @media (max-width: 640px) {
    .top-strip-inner { font-size: 0.66rem; }
    .top-strip-inner .right { display: none; }
    .nav-inner { flex-wrap: wrap; gap: 14px; }
    .nav-links { gap: 16px; width: 100%; justify-content: flex-start; }
    .nav-links > a:not(.btn) { display: none; }
    .nav-links > a.btn { display: inline-flex; }
    .features, .process, .metrics, .footer-grid { grid-template-columns: 1fr; }
    .feature:nth-child(2n), .step:nth-child(2n) { padding-left: 0; border-left: none; }
    .hero { padding: 50px 0 70px; }
    .hero-meta { margin-bottom: 30px; flex-direction: column; align-items: flex-start; gap: 10px; }
    .hero-meta .divider { display: none; }
    .hero-headline-ghost { display: none; }
    .hero-card, .hero-card-orange { padding: 24px 22px; }
    .editorial-text, .editorial-visual { padding: 40px 22px; }
    .quote { padding: 40px 24px; }
    .quote-side { padding: 36px 26px; }
    .stat-cell strong { font-size: 1.8rem; }
    .hero-bottom-stats { grid-template-columns: 1fr; gap: 24px; }
    section { padding: 60px 0; }
  }
