@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Sora:wght@300;400;500;600;700&display=swap');
    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0
    }

    :root {
      --green: #2A72B5;
      --green-mid: #3D8FD4;
      --green-light: #52796F;
      --gold: #4EA8E8;
      --gold-light: #BEE0F7;
      --cream: #F7F4EF;
      --cream-dark: #EDE8DF;
      --text: #1C1C1A;
      --muted: #7A7A72;
      --border: #E0DBD2;
      --white: #FFFFFF;
      --radius-sm: 10px;
      --radius-md: 18px;
      --radius-lg: 28px;
      --shadow-sm: 0 2px 12px rgba(42, 114, 181, .07);
      --shadow-md: 0 8px 32px rgba(42, 114, 181, .12);
      --shadow-lg: 0 20px 60px rgba(42, 114, 181, .18);
    }

    html {
      scroll-behavior: smooth
    }

    body {
      font-family: 'Sora', sans-serif;
      background: var(--cream);
      color: var(--text);
      line-height: 1.6;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased
    }

    .display {
      font-family: 'DM Serif Display', serif;
      line-height: 1.1;
      letter-spacing: -0.03em
    }

    .label {
      font-size: .72rem;
      font-weight: 600;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--gold)
    }

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

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

    @keyframes fadeIn {
      from {
        opacity: 0
      }

      to {
        opacity: 1
      }
    }

    @keyframes float {

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

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

    @keyframes pulse-ring {
      0% {
        transform: scale(1);
        opacity: .6
      }

      100% {
        transform: scale(1.5);
        opacity: 0
      }
    }

    @keyframes slide-in-right {
      from {
        opacity: 0;
        transform: translateX(30px)
      }

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

    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity .7s ease, transform .7s ease
    }

    .reveal.visible {
      opacity: 1;
      transform: none
    }

    .reveal-delay-1 {
      transition-delay: .1s
    }

    .reveal-delay-2 {
      transition-delay: .2s
    }

    .reveal-delay-3 {
      transition-delay: .3s
    }

    /* NAV */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      padding: 0 5%;
      height: 68px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: rgba(247, 244, 239, .85);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(224, 219, 210, .5)
    }

    .nav-brand {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none
    }

    .nav-name {
      font-family: 'DM Serif Display', serif;
      font-size: 1.25rem;
      color: var(--green);
      letter-spacing: -.02em
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 32px;
      list-style: none
    }

    .nav-links a {
      text-decoration: none;
      font-size: .875rem;
      font-weight: 500;
      color: var(--muted);
      transition: color .2s
    }

    .nav-links a:hover {
      color: var(--green)
    }

    .btn-nav {
      background: var(--green);
      color: var(--cream) !important;
      padding: 10px 22px;
      border-radius: var(--radius-sm);
      font-weight: 600 !important;
      transition: background .2s, transform .15s !important
    }

    .btn-nav:hover {
      background: var(--green-mid) !important;
      transform: translateY(-1px)
    }

    /* ── LANGUAGE SELECTOR ── */
    .lang-switcher {
      display: flex;
      align-items: center;
      gap: 4px;
      margin-left: 20px;
      background: rgba(42,114,181,.07);
      border: 1px solid rgba(42,114,181,.18);
      border-radius: 99px;
      padding: 4px 6px;
    }
    .lang-btn {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      padding: 5px 11px;
      border-radius: 99px;
      font-size: .78rem;
      font-weight: 600;
      text-decoration: none;
      color: var(--muted);
      transition: background .18s, color .18s;
      letter-spacing: .01em;
      white-space: nowrap;
    }
    .lang-btn:hover {
      color: var(--green);
    }
    .lang-btn.active {
      background: var(--green);
      color: #fff;
      box-shadow: 0 2px 8px rgba(42,114,181,.25);
    }
    .lang-btn .lang-flag {
      font-size: .9rem;
      line-height: 1;
    }

    /* BUTTONS */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 28px;
      border-radius: var(--radius-sm);
      font-family: 'Sora', sans-serif;
      font-weight: 600;
      font-size: .95rem;
      text-decoration: none;
      cursor: pointer;
      border: none;
      transition: transform .15s, box-shadow .15s, background .2s;
      letter-spacing: -.01em
    }

    .btn:active {
      transform: scale(.97)
    }

    .btn-primary {
      background: var(--green);
      color: var(--cream);
      box-shadow: 0 4px 20px rgba(42, 114, 181, .3)
    }

    .btn-primary:hover {
      background: var(--green-mid);
      box-shadow: 0 8px 32px rgba(42, 114, 181, .4);
      transform: translateY(-2px)
    }

    .btn-gold {
      background: var(--gold);
      color: #fff;
      box-shadow: 0 4px 20px rgba(78, 168, 232, .35)
    }

    .btn-gold:hover {
      background: #3A9BD5;
      transform: translateY(-2px)
    }

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

    .btn-outline:hover {
      background: var(--green);
      color: var(--cream);
      transform: translateY(-2px)
    }

    .btn-lg {
      padding: 18px 36px;
      font-size: 1.05rem;
      border-radius: 14px
    }

    section {
      padding: 100px 5%
    }

    .container {
      max-width: 1160px;
      margin: 0 auto
    }

    /* HERO */
    #hero {
      padding-top: 140px;
      padding-bottom: 80px;
      position: relative;
      overflow: hidden;
      min-height: 100vh;
      display: flex;
      align-items: center
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      pointer-events: none
    }

    .hero-orb-1 {
      position: absolute;
      top: -100px;
      right: -100px;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(61, 143, 212, .08) 0%, transparent 70%);
      border-radius: 50%
    }

    .hero-orb-2 {
      position: absolute;
      bottom: -60px;
      left: -80px;
      width: 360px;
      height: 360px;
      background: radial-gradient(circle, rgba(78, 168, 232, .10) 0%, transparent 70%);
      border-radius: 50%
    }

    .hero-grid-line {
      position: absolute;
      top: 0;
      bottom: 0;
      width: 1px;
      background: linear-gradient(to bottom, transparent, rgba(61, 143, 212, .06), transparent)
    }

    .hero-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
      width: 100%;
      position: relative;
      z-index: 1
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(78, 168, 232, .12);
      border: 1px solid rgba(78, 168, 232, .3);
      border-radius: 99px;
      padding: 6px 16px 6px 8px;
      margin-bottom: 24px;
      animation: fadeUp .6s ease both
    }

    .hero-badge-dot {
      width: 8px;
      height: 8px;
      background: var(--gold);
      border-radius: 50%;
      animation: pulse-ring 1.5s ease-out infinite
    }

    .hero-badge span {
      font-size: .78rem;
      font-weight: 600;
      color: var(--gold);
      letter-spacing: .04em;
      text-transform: uppercase
    }

    .hero-h1 {
      font-size: clamp(2.4rem, 5vw, 3.8rem);
      color: var(--text);
      margin-bottom: 20px;
      animation: fadeUp .6s .1s ease both
    }

    .hero-h1 em {
      font-style: italic;
      color: var(--green)
    }

    .hero-sub {
      font-size: 1.05rem;
      color: var(--muted);
      line-height: 1.7;
      max-width: 480px;
      margin-bottom: 36px;
      animation: fadeUp .6s .2s ease both
    }

    .hero-actions {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      animation: fadeUp .6s .3s ease both
    }

    .hero-trust {
      margin-top: 40px;
      display: flex;
      align-items: center;
      gap: 16px;
      animation: fadeUp .6s .4s ease both
    }

    .hero-avatars {
      display: flex
    }

    .hero-avatar {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      border: 2.5px solid var(--cream);
      margin-left: -10px;
      background: var(--green);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: .7rem;
      font-weight: 700;
      color: #fff
    }

    .hero-avatar:first-child {
      margin-left: 0
    }

    .hero-trust-text {
      font-size: .82rem;
      color: var(--muted)
    }

    .hero-trust-text strong {
      color: var(--text)
    }

    /* PHONE */
    .hero-visual {
      display: flex;
      justify-content: center;
      align-items: center;
      animation: fadeIn .8s .3s ease both
    }

    .phones-wrap {
      position: relative;
      width: 340px;
      height: 540px
    }

    .phone {
      position: absolute;
      border-radius: 36px;
      overflow: hidden;
      box-shadow: var(--shadow-lg), 0 0 0 1px rgba(0, 0, 0, .06)
    }

    .phone-main {
      width: 240px;
      height: 490px;
      left: 50%;
      top: 0;
      transform: translateX(-50%);
      background: var(--white);
      z-index: 2;
      animation: float 4s ease-in-out infinite
    }

    .phone-back {
      width: 210px;
      height: 440px;
      left: 0;
      top: 50px;
      background: var(--cream-dark);
      z-index: 1;
      opacity: .6;
      transform: rotate(-6deg)
    }

    .phone-back2 {
      width: 210px;
      height: 440px;
      right: 0;
      top: 70px;
      background: var(--green);
      z-index: 1;
      opacity: .15;
      transform: rotate(5deg)
    }

    .phone-screen {
      height: 100%;
      background: var(--cream);
      display: flex;
      flex-direction: column
    }

    .phone-topbar {
      background: var(--white);
      padding: 14px 14px 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-bottom: 1px solid var(--border)
    }

    .phone-topbar-title {
      font-size: .75rem;
      font-weight: 700;
      color: var(--green)
    }

    .phone-body {
      padding: 12px;
      flex: 1
    }

    .phone-salon-card {
      background: linear-gradient(135deg, var(--green), var(--green-mid));
      border-radius: 14px;
      padding: 14px;
      margin-bottom: 10px;
      display: flex;
      align-items: center;
      gap: 10px
    }

    .phone-salon-icon {
      width: 32px;
      height: 32px;
      background: rgba(255, 255, 255, .2);
      border-radius: 9px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0
    }

    .phone-salon-label {
      font-size: .5rem;
      color: rgba(255, 255, 255, .7);
      text-transform: uppercase;
      letter-spacing: .06em;
      font-weight: 600;
      margin-bottom: 2px
    }

    .phone-salon-name {
      font-size: .7rem;
      font-weight: 700;
      color: #fff
    }

    .phone-select-card {
      background: var(--white);
      border-radius: 11px;
      border: 1px solid var(--border);
      padding: 10px 12px;
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 8px
    }

    .phone-select-icon-wrap {
      width: 26px;
      height: 26px;
      background: #EBF4FB;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0
    }

    .phone-select-label {
      font-size: .6rem;
      color: var(--muted);
      flex: 1
    }

    .phone-select-val {
      font-size: .6rem;
      font-weight: 600;
      color: var(--text)
    }

    .phone-cal {
      background: var(--white);
      border-radius: 14px;
      border: 1px solid var(--border);
      padding: 10px;
      margin-top: 8px
    }

    .phone-cal-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 8px
    }

    .phone-cal-month {
      font-size: .62rem;
      font-weight: 700;
      color: var(--text)
    }

    .phone-cal-grid {
      display: grid;
      grid-template-columns: repeat(7, 1fr);
      gap: 2px
    }

    .phone-cal-day {
      aspect-ratio: 1;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: .48rem;
      font-weight: 500;
      color: #C8C4BC
    }

    .phone-cal-day.avail {
      background: #EBF4FB;
      color: var(--green);
      font-weight: 700
    }

    .phone-cal-day.selected {
      background: var(--green);
      color: #fff
    }

    .phone-cal-day.dow {
      color: #9A9A8E;
      font-size: .42rem;
      font-weight: 600
    }

    /* STATS */
    #stats {
      padding: 48px 5%;
      background: var(--green)
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      max-width: 1160px;
      margin: 0 auto
    }

    .stat-item {
      text-align: center;
      padding: 24px 20px;
      position: relative
    }

    .stat-item+.stat-item::before {
      content: '';
      position: absolute;
      left: 0;
      top: 20%;
      bottom: 20%;
      width: 1px;
      background: rgba(255, 255, 255, .15)
    }

    .stat-num {
      font-family: 'DM Serif Display', serif;
      font-size: 2.6rem;
      color: #fff;
      letter-spacing: -.03em;
      line-height: 1;
      margin-bottom: 6px
    }

    .stat-label {
      font-size: .8rem;
      color: rgba(255, 255, 255, .6);
      font-weight: 500
    }

    /* HOW */
    #how {
      background: var(--white)
    }

    .section-header {
      text-align: center;
      margin-bottom: 64px
    }

    .section-header h2 {
      font-size: clamp(1.8rem, 3.5vw, 2.8rem);
      margin-top: 10px;
      margin-bottom: 14px
    }

    .section-header p {
      font-size: 1rem;
      color: var(--muted);
      max-width: 520px;
      margin: 0 auto
    }

    .steps-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2px;
      position: relative
    }

    .steps-grid::before {
      content: '';
      position: absolute;
      top: 52px;
      left: 12%;
      right: 12%;
      height: 2px;
      background: linear-gradient(to right, var(--cream-dark), var(--gold), var(--cream-dark))
    }

    .step {
      text-align: center;
      padding: 32px 20px;
      background: var(--cream);
      border-radius: var(--radius-md)
    }

    .step-num-wrap {
      position: relative;
      display: inline-block;
      margin-bottom: 20px
    }

    .step-num {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      background: var(--green);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'DM Serif Display', serif;
      font-size: 1.3rem;
      color: #fff;
      position: relative;
      z-index: 1;
      margin: 0 auto
    }

    .step-pulse {
      position: absolute;
      inset: -6px;
      border-radius: 50%;
      border: 2px solid rgba(78, 168, 232, .25)
    }

    .step-icon {
      font-size: 1.6rem;
      margin-bottom: 8px;
      display: block
    }

    .step h3 {
      font-size: 1rem;
      font-weight: 700;
      margin-bottom: 8px;
      letter-spacing: -.02em;
      color: var(--text)
    }

    .step p {
      font-size: .83rem;
      color: var(--muted);
      line-height: 1.6
    }

    /* FEATURES */
    #features {
      background: var(--cream)
    }

    .features-bento {
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      gap: 16px
    }

    .feat-card {
      background: var(--white);
      border-radius: var(--radius-md);
      border: 1px solid var(--border);
      padding: 32px;
      box-shadow: var(--shadow-sm);
      transition: transform .2s, box-shadow .2s;
      overflow: hidden
    }

    .feat-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md)
    }

    .feat-card.col-7 {
      grid-column: span 7
    }

    .feat-card.col-5 {
      grid-column: span 5
    }

    .feat-card.col-4 {
      grid-column: span 4
    }

    .feat-card.col-8 {
      grid-column: span 8
    }

    .feat-card.dark {
      background: var(--green);
      border-color: var(--green)
    }

    .feat-card.gold {
      background: linear-gradient(135deg, #2265a8, var(--gold));
      border-color: var(--gold)
    }

    .feat-icon {
      width: 48px;
      height: 48px;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
      margin-bottom: 20px
    }

    .feat-icon.green-bg {
      background: #EBF4FB
    }

    .feat-icon.white-bg {
      background: rgba(255, 255, 255, .15)
    }

    .feat-card h3 {
      font-size: 1.05rem;
      font-weight: 700;
      margin-bottom: 10px;
      letter-spacing: -.02em
    }

    .feat-card p {
      font-size: .875rem;
      line-height: 1.65;
      color: var(--muted)
    }

    .feat-card.dark h3 {
      color: #F5F0E8
    }

    .feat-card.dark p {
      color: rgba(245, 240, 232, .6)
    }

    .feat-card.gold h3,
    .feat-card.gold p {
      color: #fff
    }

    .feat-card.gold p {
      opacity: .85
    }

    .qr-visual {
      margin-top: 24px;
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 16px;
      align-items: center
    }

    .qr-box {
      width: 72px;
      height: 72px;
      background: var(--white);
      border-radius: 10px;
      padding: 8px;
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 2px;
      flex-shrink: 0
    }

    .qr-cell {
      border-radius: 1px;
      background: var(--green)
    }

    .qr-cell.empty {
      background: transparent
    }

    .qr-text {
      font-size: .78rem;
      color: rgba(245, 240, 232, .7);
      line-height: 1.5
    }

    .notif-visual {
      margin-top: 20px
    }

    .notif-item {
      display: flex;
      align-items: center;
      gap: 12px;
      background: var(--cream);
      border-radius: 12px;
      padding: 12px 14px;
      margin-bottom: 8px;
      animation: slide-in-right .5s ease both
    }

    .notif-item:nth-child(2) {
      animation-delay: .3s
    }

    .notif-item:nth-child(3) {
      animation-delay: .6s
    }

    .notif-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      flex-shrink: 0
    }

    .notif-name {
      font-size: .8rem;
      font-weight: 600;
      color: var(--text)
    }

    .notif-detail {
      font-size: .72rem;
      color: var(--muted)
    }

    .notif-time {
      margin-left: auto;
      font-size: .7rem;
      color: var(--muted)
    }

    .cal-visual {
      margin-top: 20px;
      background: var(--cream);
      border-radius: 12px;
      padding: 14px
    }

    .cal-row {
      display: flex;
      gap: 8px;
      margin-bottom: 8px
    }

    .cal-slot {
      flex: 1;
      height: 32px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: .65rem;
      font-weight: 600
    }

    .cal-slot.free {
      background: #EBF4FB;
      color: var(--green)
    }

    .cal-slot.taken {
      background: var(--green);
      color: #fff
    }

    .cal-slot.gold {
      background: var(--gold-light);
      color: #1B4A7A
    }

    .gcal-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255, 255, 255, .2);
      border: 1px solid rgba(255, 255, 255, .3);
      border-radius: 99px;
      padding: 8px 16px;
      margin-top: 20px
    }

    .gcal-badge span {
      font-size: .78rem;
      color: #fff;
      font-weight: 500
    }

    /* WHO */
    #who {
      background: var(--white)
    }

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

    .who-card {
      border: 1.5px solid var(--border);
      border-radius: var(--radius-md);
      padding: 32px 28px;
      transition: border-color .2s, transform .2s, box-shadow .2s;
      position: relative;
      overflow: hidden
    }

    .who-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--green), var(--gold));
      transform: scaleX(0);
      transition: transform .3s;
      transform-origin: left
    }

    .who-card:hover {
      border-color: var(--green);
      transform: translateY(-4px);
      box-shadow: var(--shadow-md)
    }

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

    .who-emoji {
      font-size: 2.4rem;
      margin-bottom: 16px;
      display: block
    }

    .who-card h3 {
      font-size: 1.05rem;
      font-weight: 700;
      margin-bottom: 10px;
      letter-spacing: -.02em
    }

    .who-card p {
      font-size: .85rem;
      color: var(--muted);
      line-height: 1.6
    }

    .who-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-top: 16px
    }

    .who-tag {
      background: var(--cream);
      border: 1px solid var(--border);
      border-radius: 99px;
      padding: 4px 12px;
      font-size: .72rem;
      font-weight: 500;
      color: var(--muted)
    }

    /* TESTIMONIALS */
    #testimonials {
      background: var(--cream)
    }

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

    .testi-card {
      background: var(--white);
      border-radius: var(--radius-md);
      border: 1px solid var(--border);
      padding: 28px;
      box-shadow: var(--shadow-sm)
    }

    .testi-stars {
      display: flex;
      gap: 3px;
      margin-bottom: 14px
    }

    .star {
      color: var(--gold);
      font-size: 1rem
    }

    .testi-quote {
      font-size: .9rem;
      color: var(--text);
      line-height: 1.7;
      margin-bottom: 20px;
      font-style: italic
    }

    .testi-quote::before {
      content: '"';
      color: var(--gold);
      font-size: 1.3em
    }

    .testi-quote::after {
      content: '"';
      color: var(--gold);
      font-size: 1.3em
    }

    .testi-author {
      display: flex;
      align-items: center;
      gap: 12px
    }

    .testi-avatar {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: var(--green);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: .85rem;
      color: #fff;
      flex-shrink: 0
    }

    .testi-name {
      font-size: .85rem;
      font-weight: 700;
      color: var(--text)
    }

    .testi-role {
      font-size: .75rem;
      color: var(--muted)
    }

    /* PRICING — 4 columns, full container width */
    #pricing {
      background: var(--white)
    }

    .pricing-toggle {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      margin-bottom: 48px
    }

    .pricing-toggle-label {
      font-size: .88rem;
      font-weight: 500;
      color: var(--muted);
      cursor: pointer;
      transition: color .2s
    }

    .pricing-toggle-label.active {
      color: var(--green);
      font-weight: 600
    }

    .toggle-switch {
      position: relative;
      width: 52px;
      height: 28px;
      background: var(--green);
      border-radius: 99px;
      cursor: pointer
    }

    .toggle-switch-knob {
      position: absolute;
      top: 3px;
      left: 3px;
      width: 22px;
      height: 22px;
      background: #fff;
      border-radius: 50%;
      transition: transform .25s cubic-bezier(.4, 0, .2, 1);
      box-shadow: 0 1px 4px rgba(0, 0, 0, .2)
    }

    .toggle-switch.annual .toggle-switch-knob {
      transform: translateX(24px)
    }

    .pricing-save-badge {
      background: rgba(78, 168, 232, .15);
      border: 1px solid rgba(78, 168, 232, .4);
      border-radius: 99px;
      padding: 3px 10px;
      font-size: .72rem;
      font-weight: 600;
      color: var(--green);
      margin-left: 4px
    }

    /* Grid itself — no inner max-width, uses .container's 1160px */
    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px
    }

    .pricing-card {
      border: 1.5px solid var(--border);
      border-radius: var(--radius-md);
      padding: 30px 22px;
      position: relative;
      transition: transform .2s, box-shadow .2s, border-color .2s;
      background: var(--cream);
      display: flex;
      flex-direction: column
    }

    .pricing-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md)
    }

    .pricing-card.featured {
      border-color: var(--green);
      background: var(--white);
      box-shadow: var(--shadow-md)
    }

    .pricing-card.featured::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--green), var(--gold));
      border-radius: var(--radius-md) var(--radius-md) 0 0
    }

    .pricing-badge {
      position: absolute;
      top: -13px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--green);
      color: #fff;
      font-size: .7rem;
      font-weight: 700;
      letter-spacing: .06em;
      text-transform: uppercase;
      padding: 4px 14px;
      border-radius: 99px;
      white-space: nowrap
    }

    .pricing-tier {
      font-size: .72rem;
      font-weight: 600;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 8px
    }

    .pricing-card h3 {
      font-size: .95rem;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 6px;
      letter-spacing: -.02em
    }

    .pricing-desc {
      font-size: .78rem;
      color: var(--muted);
      margin-bottom: 18px;
      line-height: 1.5
    }

    .pricing-amount {
      display: flex;
      align-items: baseline;
      gap: 4px;
      margin-bottom: 4px
    }

    .pricing-currency {
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--green)
    }

    .pricing-num {
      font-family: 'DM Serif Display', serif;
      font-size: 2.8rem;
      line-height: 1;
      color: var(--text);
      letter-spacing: -.04em
    }

    .pricing-period {
      font-size: .82rem;
      color: var(--muted)
    }

    .pricing-annual-note {
      font-size: .73rem;
      color: var(--gold);
      font-weight: 600;
      min-height: 18px;
      margin-bottom: 18px
    }

    .pricing-divider {
      height: 1px;
      background: var(--border);
      margin: 18px 0
    }

    .pricing-features-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 8px;
      margin-bottom: 24px;
      flex: 1
    }

    .pricing-features-list li {
      display: flex;
      gap: 9px;
      font-size: .8rem;
      color: var(--muted);
      align-items: flex-start
    }

    .pricing-features-list li::before {
      content: '✓';
      color: var(--green);
      font-weight: 700;
      flex-shrink: 0
    }

    .btn-pricing {
      width: 100%;
      padding: 13px;
      border-radius: var(--radius-sm);
      font-family: 'Sora', sans-serif;
      font-size: .88rem;
      font-weight: 600;
      cursor: pointer;
      border: 2px solid var(--green);
      background: transparent;
      color: var(--green);
      transition: all .2s;
      text-align: center;
      text-decoration: none;
      display: block;
      margin-top: auto
    }

    .btn-pricing:hover,
    .pricing-card.featured .btn-pricing {
      background: var(--green);
      color: #fff
    }

    .pricing-card.featured .btn-pricing:hover {
      background: var(--green-mid)
    }

    /* CTA */
    #cta {
      background: var(--green);
      padding: 120px 5%;
      position: relative;
      overflow: hidden;
      text-align: center
    }

    .cta-orb-1 {
      position: absolute;
      top: -100px;
      right: -100px;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(255, 255, 255, .08) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none
    }

    .cta-orb-2 {
      position: absolute;
      bottom: -80px;
      left: -80px;
      width: 300px;
      height: 300px;
      background: radial-gradient(circle, rgba(255, 255, 255, .06) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none
    }

    #cta h2 {
      font-size: clamp(2rem, 4vw, 3.2rem);
      color: #F5F0E8;
      margin-bottom: 16px;
      position: relative
    }

    #cta p {
      font-size: 1.05rem;
      color: rgba(245, 240, 232, .65);
      max-width: 500px;
      margin: 0 auto 40px;
      position: relative
    }

    .cta-actions {
      display: flex;
      justify-content: center;
      gap: 16px;
      flex-wrap: wrap;
      position: relative
    }

    .cta-note {
      margin-top: 20px;
      font-size: .78rem;
      color: rgba(245, 240, 232, .4);
      position: relative
    }

    /* FOOTER */
    footer {
      background: #111410;
      color: rgba(245, 240, 232, .7);
      padding: 60px 5% 30px
    }

    .footer-container {
      max-width: 1160px;
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 40px
    }

    .footer-brand-col {
      flex: 2 1 240px
    }

    .footer-brand {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 16px
    }

    .footer-logo {
      width: 36px;
      height: 36px;
      background: var(--green);
      border-radius: 9px;
      display: flex;
      align-items: center;
      justify-content: center
    }

    .footer-name {
      font-family: 'DM Serif Display', serif;
      font-size: 1.3rem;
      color: #F5F0E8
    }

    .footer-tagline {
      font-size: .88rem;
      color: rgba(245, 240, 232, .45);
      line-height: 1.5;
      max-width: 240px;
      margin-bottom: 20px
    }

    .footer-social {
      display: flex;
      gap: 16px
    }

    .footer-social a {
      color: rgba(245, 240, 232, .4);
      font-size: 1.2rem;
      text-decoration: none;
      transition: color .2s
    }

    .footer-social a:hover {
      color: var(--gold)
    }

    .footer-links-col {
      flex: 1 1 130px
    }

    .footer-links-col h4 {
      color: #F5F0E8;
      font-size: .82rem;
      font-weight: 600;
      letter-spacing: .08em;
      text-transform: uppercase;
      margin-bottom: 18px
    }

    .footer-links-col ul {
      list-style: none
    }

    .footer-links-col li {
      margin-bottom: 11px
    }

    .footer-links-col a {
      text-decoration: none;
      font-size: .83rem;
      color: rgba(245, 240, 232, .45);
      transition: color .2s
    }

    .footer-links-col a:hover {
      color: var(--gold)
    }

    .footer-newsletter-col {
      flex: 2 1 240px
    }

    .footer-newsletter-col h4 {
      color: #F5F0E8;
      font-size: .82rem;
      font-weight: 600;
      letter-spacing: .08em;
      text-transform: uppercase;
      margin-bottom: 18px
    }

    .newsletter-text {
      font-size: .83rem;
      color: rgba(245, 240, 232, .45);
      margin-bottom: 14px;
      line-height: 1.5
    }

    .newsletter-form {
      display: flex;
      gap: 8px
    }

    .newsletter-input {
      flex: 1;
      min-width: 0;
      background: rgba(255, 255, 255, .06);
      border: 1px solid rgba(255, 255, 255, .1);
      border-radius: 30px;
      padding: 10px 16px;
      font-size: .83rem;
      color: #F5F0E8;
      outline: none;
      transition: border-color .2s
    }

    .newsletter-input::placeholder {
      color: rgba(245, 240, 232, .3)
    }

    .newsletter-input:focus {
      border-color: var(--gold)
    }

    .newsletter-btn {
      background: var(--green-mid);
      border: none;
      border-radius: 30px;
      padding: 10px 18px;
      color: #F5F0E8;
      font-weight: 600;
      font-size: .8rem;
      cursor: pointer;
      white-space: nowrap;
      transition: background .2s
    }

    .newsletter-btn:hover {
      background: var(--green)
    }

    .footer-bottom {
      max-width: 1160px;
      margin: 40px auto 0;
      padding-top: 28px;
      border-top: 1px solid rgba(255, 255, 255, .05);
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 16px
    }

    .footer-copy {
      font-size: .78rem;
      color: rgba(245, 240, 232, .28)
    }

    .footer-legal-links {
      display: flex;
      gap: 24px;
      list-style: none
    }

    .footer-legal-links a {
      text-decoration: none;
      font-size: .78rem;
      color: rgba(245, 240, 232, .28);
      transition: color .2s
    }

    .footer-legal-links a:hover {
      color: rgba(245, 240, 232, .6)
    }

    /* MOBILE */
    @media(max-width:1024px) {
      .pricing-grid {
        grid-template-columns: repeat(2, 1fr)
      }
    }

    @media(max-width:768px) {
      section {
        padding: 60px 5%
      }

      .nav-links {
        display: none
      }

      .lang-switcher {
        margin-left: 0;
      }
      .lang-btn span:last-child {
        display: none;
      }

      .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px
      }

      .hero-visual {
        order: -1
      }

      .phones-wrap {
        width: 260px;
        height: 420px
      }

      .phone-main {
        width: 190px;
        height: 380px
      }

      .phone-back,
      .phone-back2 {
        width: 160px;
        height: 340px
      }

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

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

      .steps-grid::before {
        display: none
      }

      .features-bento {
        grid-template-columns: 1fr
      }

      .feat-card.col-7,
      .feat-card.col-5,
      .feat-card.col-4,
      .feat-card.col-8 {
        grid-column: span 1
      }

      .who-grid,
      .testimonials-grid {
        grid-template-columns: 1fr
      }

      .pricing-grid {
        grid-template-columns: 1fr
      }

      .footer-container {
        flex-direction: column
      }

      .footer-bottom {
        flex-direction: column;
        text-align: center
      }

      .footer-legal-links {
        justify-content: center
      }

      .newsletter-form {
        flex-direction: column
      }
    }

    /* ═══════════════════════════════════════════
       LEGAL PAGES — extra classes
       (used by privacy-policy and terms-of-service)
       ═══════════════════════════════════════════ */

    /* Nav additions for legal pages */
    .nav-right {
      display: flex;
      align-items: center;
      gap: 20px
    }

    .nav-back {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: .85rem;
      font-weight: 500;
      color: var(--muted);
      text-decoration: none;
      transition: color .2s
    }

    .nav-back:hover {
      color: var(--green)
    }

    /* Page hero (legal) */
    .page-hero {
      margin-top: 68px;
      padding: 72px 5% 60px;
      position: relative;
      overflow: hidden
    }

    .page-hero.hero-mid {
      background: var(--green-mid)
    }

    .page-hero.hero-dark {
      background: var(--green)
    }

    .page-hero::before {
      content: '';
      position: absolute;
      top: -80px;
      right: -80px;
      width: 360px;
      height: 360px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(255, 255, 255, .08) 0%, transparent 70%);
      pointer-events: none
    }

    .page-hero-inner {
      max-width: 760px;
      margin: 0 auto;
      position: relative;
      z-index: 1
    }

    .eyebrow {
      font-size: .72rem;
      font-weight: 600;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .6);
      margin-bottom: 12px
    }

    .page-hero h1 {
      font-family: 'DM Serif Display', serif;
      font-size: clamp(2rem, 4vw, 3rem);
      color: #F5F0E8;
      line-height: 1.15;
      letter-spacing: -.03em;
      margin-bottom: 16px
    }

    .meta {
      font-size: .85rem;
      color: rgba(245, 240, 232, .5);
      display: flex;
      gap: 20px;
      flex-wrap: wrap
    }

    .gdpr-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255, 255, 255, .12);
      border: 1px solid rgba(255, 255, 255, .2);
      border-radius: 99px;
      padding: 6px 14px;
      margin-top: 16px;
      font-size: .8rem;
      color: rgba(245, 240, 232, .85);
      font-weight: 500
    }

    /* Document layout */
    .doc-wrap {
      max-width: 960px;
      margin: 0 auto;
      padding: 60px 5% 100px;
      display: grid;
      grid-template-columns: 220px 1fr;
      gap: 48px;
      align-items: start
    }

    .doc-toc {
      position: sticky;
      top: 88px;
      background: var(--white);
      border-radius: var(--radius-md);
      border: 1px solid var(--border);
      padding: 20px;
      box-shadow: var(--shadow-sm)
    }

    .doc-toc h3 {
      font-size: .7rem;
      font-weight: 600;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 14px
    }

    .doc-toc ul {
      list-style: none
    }

    .doc-toc li {
      margin-bottom: 2px
    }

    .doc-toc a {
      display: block;
      padding: 6px 10px;
      border-radius: 8px;
      font-size: .82rem;
      color: var(--muted);
      text-decoration: none;
      transition: background .15s, color .15s;
      line-height: 1.4
    }

    .doc-toc a:hover,
    .doc-toc a.active {
      background: rgba(42, 114, 181, .08);
      color: var(--green);
      font-weight: 500
    }

    .doc-content {
      min-width: 0
    }

    .doc-section {
      background: var(--white);
      border-radius: var(--radius-md);
      border: 1px solid var(--border);
      padding: 36px 40px;
      margin-bottom: 20px;
      box-shadow: var(--shadow-sm);
      scroll-margin-top: 90px
    }

    .doc-section h2 {
      font-family: 'DM Serif Display', serif;
      font-size: 1.5rem;
      color: var(--green);
      margin-bottom: 16px;
      padding-bottom: 12px;
      border-bottom: 1px solid var(--border);
      display: flex;
      align-items: center;
      gap: 10px
    }

    .sec-num {
      width: 28px;
      height: 28px;
      background: var(--green);
      color: #fff;
      border-radius: 8px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-family: 'Sora', sans-serif;
      font-size: .78rem;
      font-weight: 700;
      flex-shrink: 0
    }

    .doc-section h3 {
      font-size: 1rem;
      font-weight: 600;
      color: var(--text);
      margin: 20px 0 8px
    }

    .doc-section p {
      font-size: .92rem;
      color: #4a4a44;
      line-height: 1.75;
      margin-bottom: 12px
    }

    .doc-section ul,
    .doc-section ol {
      padding-left: 20px;
      margin-bottom: 12px
    }

    .doc-section li {
      font-size: .92rem;
      color: #4a4a44;
      line-height: 1.75;
      margin-bottom: 4px
    }

    .doc-section a {
      color: var(--green)
    }

    code {
      background: rgba(42, 114, 181, .08);
      padding: 2px 6px;
      border-radius: 4px;
      font-size: .88em;
      color: var(--green)
    }

    /* Callout boxes */
    .highlight-box {
      background: rgba(78, 168, 232, .07);
      border-left: 3px solid var(--gold);
      border-radius: 0 8px 8px 0;
      padding: 14px 18px;
      margin: 16px 0
    }

    .highlight-box p {
      margin: 0;
      font-size: .88rem;
      color: var(--text)
    }

    .info-box {
      background: rgba(42, 114, 181, .06);
      border-left: 3px solid var(--green);
      border-radius: 0 8px 8px 0;
      padding: 14px 18px;
      margin: 16px 0
    }

    .info-box p {
      margin: 0;
      font-size: .88rem;
      color: var(--green)
    }

    .warn-box {
      background: rgba(220, 38, 38, .05);
      border-left: 3px solid #dc2626;
      border-radius: 0 8px 8px 0;
      padding: 14px 18px;
      margin: 16px 0
    }

    .warn-box p {
      margin: 0;
      font-size: .88rem;
      color: #7f1d1d
    }

    /* Data tables */
    .data-table {
      width: 100%;
      border-collapse: collapse;
      margin: 16px 0;
      font-size: .85rem
    }

    .data-table th {
      background: var(--green);
      color: #fff;
      padding: 10px 14px;
      text-align: left;
      font-weight: 600
    }

    .data-table th:first-child {
      border-radius: 8px 0 0 0
    }

    .data-table th:last-child {
      border-radius: 0 8px 0 0
    }

    .data-table td {
      padding: 10px 14px;
      border-bottom: 1px solid var(--border);
      color: #4a4a44;
      vertical-align: top
    }

    .data-table tr:last-child td {
      border-bottom: none
    }

    .data-table tr:nth-child(even) td {
      background: var(--cream)
    }

    /* Plan table (Terms of Service) */
    .plan-table {
      width: 100%;
      border-collapse: collapse;
      margin: 16px 0;
      font-size: .88rem
    }

    .plan-table th {
      background: var(--green);
      color: #fff;
      padding: 10px 16px;
      text-align: left;
      font-weight: 600
    }

    .plan-table th:first-child {
      border-radius: 8px 0 0 0
    }

    .plan-table th:last-child {
      border-radius: 0 8px 0 0
    }

    .plan-table td {
      padding: 10px 16px;
      border-bottom: 1px solid var(--border);
      color: #4a4a44
    }

    .plan-table tr:last-child td {
      border-bottom: none
    }

    .plan-table tr:nth-child(even) td {
      background: var(--cream)
    }

    /* Rights grid (Privacy Policy) */
    .rights-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
      margin: 16px 0
    }

    .right-card {
      background: var(--cream);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 16px
    }

    .right-card .right-icon {
      font-size: 1.4rem;
      margin-bottom: 8px
    }

    .right-card h4 {
      font-size: .88rem;
      font-weight: 600;
      color: var(--green);
      margin-bottom: 4px
    }

    .right-card p {
      font-size: .8rem;
      color: var(--muted);
      margin: 0;
      line-height: 1.5
    }

    /* Legal pages mobile overrides */
    @media (max-width: 768px) {
      .doc-wrap {
        grid-template-columns: 1fr
      }

      .doc-toc {
        display: none
      }

      .doc-section {
        padding: 24px 20px
      }

      .rights-grid {
        grid-template-columns: 1fr
      }

      .nav-back span {
        display: none
      }

      .lang-btn span:not(.lang-flag) {
        display: none
      }
    }
