    /* ============================================================
       CSS CUSTOM PROPERTIES
       ============================================================ */
    :root {
      --navy: #1B2034;
      --orange: #FF4D1C;
      --orange-hover: #e8440f;
      --bg: #F8F7F4;
      --white: #FFFFFF;
      --light-gray: #E8E6E1;
      --medium-gray: #6B7280;
      --success: #22C55E;
      --error: #EF4444;
      --font-heading: 'Outfit', sans-serif;
      --font-body: 'DM Sans', sans-serif;
      --shadow-sm: 0 1px 3px rgba(27, 32, 52, 0.06);
      --shadow-md: 0 4px 16px rgba(27, 32, 52, 0.08);
      --shadow-lg: 0 8px 32px rgba(27, 32, 52, 0.12);
      --radius: 12px;
      --radius-lg: 20px;
      --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

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

    html {
      scroll-behavior: smooth;
      -webkit-text-size-adjust: 100%;
    }

    body {
      font-family: var(--font-body);
      font-size: 16px;
      line-height: 1.6;
      color: var(--navy);
      background-color: var(--bg);
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    /* Subtle grain removed for performance */

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

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

    button {
      font-family: inherit;
      cursor: pointer;
      border: none;
      background: none;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
      font-family: var(--font-heading);
      font-weight: 700;
      line-height: 1.15;
    }

    /* ============================================================
       UTILITY CLASSES
       ============================================================ */
    .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
    }

    .section-label {
      font-family: var(--font-heading);
      font-size: 0.8125rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--orange);
      margin-bottom: 12px;
    }

    .section-title {
      font-size: clamp(2rem, 4vw, 2.75rem);
      margin-bottom: 16px;
      color: var(--navy);
    }

    .section-sub {
      font-size: 1.125rem;
      color: var(--medium-gray);
      max-width: 560px;
      line-height: 1.7;
    }

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

    .section-header .section-sub {
      margin-left: auto;
      margin-right: auto;
    }

    /* Buttons */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: var(--font-heading);
      font-weight: 600;
      font-size: 0.9375rem;
      padding: 14px 28px;
      border-radius: 50px;
      transition: all var(--transition);
      white-space: nowrap;
    }

    .btn-primary {
      background: var(--orange);
      color: var(--white);
      box-shadow: 0 4px 16px rgba(255, 77, 28, 0.25);
    }

    .btn-primary:hover,
    .btn-primary:focus-visible {
      background: var(--orange-hover);
      transform: translateY(-2px);
      box-shadow: 0 6px 24px rgba(255, 77, 28, 0.35);
    }

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

    .btn-outline:hover,
    .btn-outline:focus-visible {
      background: var(--navy);
      color: var(--white);
      transform: translateY(-2px);
    }

    .btn-outline-white {
      border: 2px solid rgba(255, 255, 255, 0.3);
      color: var(--white);
      background: transparent;
    }

    .btn-outline-white:hover,
    .btn-outline-white:focus-visible {
      background: var(--white);
      color: var(--navy);
      transform: translateY(-2px);
    }

    /* Focus visible for accessibility */
    :focus-visible {
      outline: 2px solid var(--orange);
      outline-offset: 3px;
    }

    /* Scroll reveal animations */
    .reveal {
      opacity: 0;
      transform: translateY(32px);
      transition: opacity 0.7s var(--transition), transform 0.7s var(--transition);
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

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

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

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

    .reveal-delay-4 {
      transition-delay: 0.4s;
    }

    /* ============================================================
       NAVIGATION
       ============================================================ */
    .navbar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      padding: 20px 0;
      transition: all 0.4s ease;
    }

    .navbar.scrolled {
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      box-shadow: 0 1px 12px rgba(27, 32, 52, 0.06);
      padding: 12px 0;
    }

    .navbar-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .navbar-logo img {
      height: 32px;
      width: auto;
    }

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

    .navbar-links a {
      font-family: var(--font-heading);
      font-size: 0.9375rem;
      font-weight: 500;
      color: var(--navy);
      transition: color var(--transition);
      position: relative;
    }

    .navbar-links a::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: -4px;
      width: 0;
      height: 2px;
      background: var(--orange);
      border-radius: 2px;
      transition: width var(--transition);
    }

    .navbar-links a:hover::after,
    .navbar-links a:focus-visible::after {
      width: 100%;
    }

    .navbar-cta {
      display: flex;
      align-items: center;
    }

    .navbar-cta .btn {
      padding: 10px 24px;
      font-size: 0.875rem;
    }

    /* Hamburger */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      width: 28px;
      padding: 4px 0;
      z-index: 1001;
    }

    .hamburger span {
      display: block;
      width: 100%;
      height: 2px;
      background: var(--navy);
      border-radius: 2px;
      transition: all 0.3s ease;
      transform-origin: center;
    }

    .hamburger.active span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
      opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    /* Mobile menu */
    .mobile-menu {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      background: var(--white);
      padding: 100px 24px 40px;
      transform: translateY(-100%);
      transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      box-shadow: var(--shadow-lg);
      z-index: 999;
    }

    .mobile-menu.open {
      transform: translateY(0);
    }

    .mobile-menu a {
      display: block;
      font-family: var(--font-heading);
      font-size: 1.25rem;
      font-weight: 600;
      padding: 16px 0;
      color: var(--navy);
      border-bottom: 1px solid var(--light-gray);
    }

    .mobile-menu .btn {
      margin-top: 24px;
      width: 100%;
      justify-content: center;
    }

    @media (max-width: 768px) {

      .navbar-links,
      .navbar-cta {
        display: none;
      }

      .hamburger {
        display: flex;
      }

      .mobile-menu {
        display: block;
      }
    }

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

    /* Animated floating blobs */
    .hero-blobs {
      position: absolute;
      inset: 0;
      overflow: hidden;
      pointer-events: none;
    }

    .blob {
      position: absolute;
      border-radius: 50%;
      filter: blur(80px);
      opacity: 0.15;
      animation: blobFloat 20s ease-in-out infinite;
    }

    .blob-1 {
      width: 500px;
      height: 500px;
      background: var(--orange);
      top: -10%;
      right: -5%;
      animation-delay: 0s;
    }

    .blob-2 {
      width: 400px;
      height: 400px;
      background: var(--navy);
      bottom: -10%;
      left: -5%;
      animation-delay: -7s;
    }

    .blob-3 {
      width: 300px;
      height: 300px;
      background: var(--orange);
      top: 50%;
      left: 40%;
      opacity: 0.08;
      animation-delay: -14s;
    }

    @keyframes blobFloat {

      0%,
      100% {
        transform: translate(0, 0) scale(1);
      }

      25% {
        transform: translate(30px, -40px) scale(1.05);
      }

      50% {
        transform: translate(-20px, 20px) scale(0.95);
      }

      75% {
        transform: translate(40px, 30px) scale(1.03);
      }
    }

    /* Hand-drawn accent shapes */
    .hero-accent {
      position: absolute;
      pointer-events: none;
      opacity: 0.08;
    }

    .hero-accent-circle {
      width: 180px;
      height: 180px;
      border: 3px solid var(--orange);
      border-radius: 47% 53% 52% 48% / 46% 48% 52% 54%;
      top: 20%;
      right: 15%;
      animation: morphShape 12s ease-in-out infinite;
    }

    .hero-accent-squiggle {
      width: 120px;
      height: 120px;
      border: 3px solid var(--navy);
      border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
      bottom: 20%;
      left: 10%;
      animation: morphShape 15s ease-in-out infinite reverse;
    }

    @keyframes morphShape {

      0%,
      100% {
        border-radius: 47% 53% 52% 48% / 46% 48% 52% 54%;
        transform: rotate(0deg);
      }

      33% {
        border-radius: 60% 40% 35% 65% / 55% 45% 55% 45%;
        transform: rotate(60deg);
      }

      66% {
        border-radius: 35% 65% 60% 40% / 40% 60% 40% 60%;
        transform: rotate(120deg);
      }
    }

    .hero .container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px 48px;
      align-items: center;
    }

    /* On desktop, break children out of hero-content so they participate in the grid */
    .hero-content {
      display: contents;
    }

    .hero-content h1 {
      grid-column: 1;
      grid-row: 1;
    }

    .hero-content > p {
      grid-column: 1;
      grid-row: 2;
    }

    .hero-buttons {
      grid-column: 1;
      grid-row: 3;
    }

    .hero-illustration {
      grid-column: 2;
      grid-row: 1 / 4;
      position: relative;
      z-index: 1;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .hero-illustration svg {
      width: 100%;
      max-width: 480px;
      height: auto;
    }

    /* Monitor float animation */
    .hero-illustration svg {
      animation: monitorFloat 6s ease-in-out infinite;
    }

    @keyframes monitorFloat {

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

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

    /* Paper plane fly animation */
    .paper-plane {
      animation: planeFly 4s ease-in-out infinite;
    }

    @keyframes planeFly {
      0% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 1;
      }

      60% {
        transform: translate(60px, -50px) rotate(-8deg);
        opacity: 1;
      }

      80% {
        transform: translate(100px, -70px) rotate(-12deg);
        opacity: 0.4;
      }

      100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 1;
      }
    }

    /* Trail dots behind the plane */
    .trail-dot {
      animation: trailPulse 4s ease-in-out infinite;
      transform-origin: center;
    }

    .trail-dot:nth-child(1) {
      animation-delay: 0.15s;
    }

    .trail-dot:nth-child(2) {
      animation-delay: 0.3s;
    }

    .trail-dot:nth-child(3) {
      animation-delay: 0.45s;
    }

    @keyframes trailPulse {

      0%,
      100% {
        opacity: 0.3;
        r: 3;
      }

      40% {
        opacity: 1;
        r: 4;
      }

      80% {
        opacity: 0;
        r: 2;
      }
    }

    /* Cursor blink on screen */
    .screen-cursor {
      animation: cursorBlink 1s step-end infinite;
    }

    @keyframes cursorBlink {

      0%,
      100% {
        opacity: 1;
      }

      50% {
        opacity: 0;
      }
    }

    /* Code lines typing animation */
    .code-line {
      animation: codeFadeIn 0.6s ease forwards;
      opacity: 0;
    }

    .code-line:nth-child(1) {
      animation-delay: 0.8s;
    }

    .code-line:nth-child(2) {
      animation-delay: 1.2s;
    }

    .code-line:nth-child(3) {
      animation-delay: 1.6s;
    }

    .code-line:nth-child(4) {
      animation-delay: 2.0s;
    }

    .code-line:nth-child(5) {
      animation-delay: 2.4s;
    }

    @keyframes codeFadeIn {
      to {
        opacity: 1;
      }
    }

    /* Notification badge pop */
    .notif-badge {
      animation: badgePop 3s ease-in-out infinite;
      transform-origin: center;
    }

    @keyframes badgePop {

      0%,
      70%,
      100% {
        transform: scale(1);
      }

      75% {
        transform: scale(1.2);
      }

      80% {
        transform: scale(1);
      }

      85% {
        transform: scale(1.15);
      }

      90% {
        transform: scale(1);
      }
    }

    @media (max-width: 768px) {
      .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
      }

      .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
      }

      /* Reset grid placements for mobile - let flex order take over */
      .hero-content h1,
      .hero-content > p,
      .hero-buttons,
      .hero-illustration {
        grid-column: auto;
        grid-row: auto;
      }

      .hero-content p {
        margin-left: auto;
        margin-right: auto;
      }

      .hero-illustration {
        max-width: 280px;
        margin: 0 auto 32px;
      }

      .hero-buttons {
        justify-content: center;
      }
    }

    .hero-content h1 {
      font-size: clamp(2.5rem, 5.5vw, 4rem);
      font-weight: 800;
      line-height: 1.08;
      margin-bottom: 24px;
      color: var(--navy);
      letter-spacing: -0.02em;
    }

    .hero-content p {
      font-size: clamp(1.0625rem, 1.8vw, 1.25rem);
      color: var(--medium-gray);
      max-width: 540px;
      margin-bottom: 40px;
      line-height: 1.7;
    }

    .hero-buttons {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
    }

    /* Staggered load animations */
    .hero-animate {
      opacity: 0;
      transform: translateY(28px);
      animation: heroFadeIn 0.8s ease forwards;
    }

    .hero-animate:nth-child(1) {
      animation-delay: 0.15s;
    }

    .hero-animate:nth-child(2) {
      animation-delay: 0.35s;
    }

    .hero-animate:nth-child(3) {
      animation-delay: 0.55s;
    }

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

    /* ============================================================
       PROBLEM vs SOLUTION
       ============================================================ */
    .comparison {
      padding: 120px 0;
    }

    .comparison-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 32px;
      position: relative;
    }

    /* Visual divider */
    .comparison-grid::before {
      content: 'vs';
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: var(--bg);
      border: 2px solid var(--light-gray);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-heading);
      font-weight: 700;
      font-size: 0.875rem;
      color: var(--medium-gray);
      z-index: 2;
      line-height: 56px;
      text-align: center;
    }

    .comparison-card {
      background: var(--white);
      border-radius: var(--radius-lg);
      padding: 40px;
      box-shadow: var(--shadow-sm);
      transition: all var(--transition);
    }

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

    .comparison-card.old-way {
      background: #f3f2ef;
    }

    .comparison-card.growide-way {
      border: 2px solid rgba(255, 77, 28, 0.15);
      position: relative;
      overflow: hidden;
    }

    .comparison-card.growide-way::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--orange), #ff7a54);
    }

    .comparison-card h3 {
      font-size: 1.375rem;
      margin-bottom: 28px;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .comparison-card h3 .tag {
      font-size: 0.6875rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      padding: 4px 10px;
      border-radius: 50px;
    }

    .old-way h3 .tag {
      background: var(--light-gray);
      color: var(--medium-gray);
    }

    .growide-way h3 .tag {
      background: rgba(255, 77, 28, 0.1);
      color: var(--orange);
    }

    .comparison-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .comparison-list li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      font-size: 0.9375rem;
      line-height: 1.5;
    }

    .comparison-list .icon {
      flex-shrink: 0;
      width: 24px;
      height: 24px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.75rem;
      font-weight: 700;
      margin-top: 1px;
    }

    .old-way .icon {
      background: rgba(239, 68, 68, 0.1);
      color: var(--error);
    }

    .growide-way .icon {
      background: rgba(34, 197, 94, 0.1);
      color: var(--success);
    }

    @media (max-width: 768px) {
      .comparison-grid {
        grid-template-columns: 1fr;
      }

      .comparison-card.old-way {
        order: 1;
      }

      .comparison-grid::before {
        order: 2;
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        margin: -8px auto;
      }

      .comparison-card.growide-way {
        order: 3;
      }

      .comparison-card {
        padding: 32px 24px;
      }
    }

    /* ============================================================
       HOW IT WORKS
       ============================================================ */
    .how-it-works {
      padding: 120px 0;
      background: var(--white);
      position: relative;
    }

    /* Subtle organic shape in background */
    .how-it-works::before {
      content: '';
      position: absolute;
      top: 10%;
      right: -5%;
      width: 300px;
      height: 300px;
      border-radius: 40% 60% 55% 45% / 50% 40% 60% 50%;
      background: rgba(255, 77, 28, 0.03);
      pointer-events: none;
    }

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

    /* Connecting line between steps */
    .steps-grid::before {
      content: '';
      position: absolute;
      top: 56px;
      left: calc(16.666% + 16px);
      right: calc(16.666% + 16px);
      height: 2px;
      background: repeating-linear-gradient(90deg,
          var(--light-gray) 0,
          var(--light-gray) 8px,
          transparent 8px,
          transparent 16px);
      z-index: 0;
    }

    .step-card {
      background: var(--bg);
      border-radius: var(--radius-lg);
      padding: 40px 32px;
      text-align: center;
      position: relative;
      z-index: 1;
      transition: all var(--transition);
    }

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

    .step-number {
      font-family: var(--font-heading);
      font-size: 3.5rem;
      font-weight: 800;
      color: rgba(255, 77, 28, 0.12);
      line-height: 1;
      margin-bottom: 20px;
    }

    .step-card h3 {
      font-size: 1.25rem;
      margin-bottom: 12px;
    }

    .step-card p {
      font-size: 0.9375rem;
      color: var(--medium-gray);
      line-height: 1.65;
    }

    @media (max-width: 768px) {
      .steps-grid {
        grid-template-columns: 1fr;
        max-width: 440px;
        margin: 0 auto;
      }

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

    /* ============================================================
       PRICING
       ============================================================ */
    .pricing {
      padding: 120px 0;
      background: var(--bg);
      position: relative;
    }

    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
      margin-top: 48px;
    }

    .pricing-card {
      background: var(--white);
      border-radius: var(--radius-lg);
      padding: 40px 32px;
      text-align: center;
      transition: all var(--transition);
      box-shadow: var(--shadow-sm);
      position: relative;
      display: flex;
      flex-direction: column;
      border: 2px solid transparent;
    }

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

    .pricing-card.popular {
      border: 2px solid var(--orange);
      box-shadow: 0 12px 32px rgba(255, 77, 28, 0.1);
    }

    .pricing-badge {
      position: absolute;
      top: -14px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--orange);
      color: var(--white);
      font-family: var(--font-heading);
      font-size: 0.75rem;
      font-weight: 700;
      padding: 6px 16px;
      border-radius: 50px;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      white-space: nowrap;
    }

    .pricing-icon {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: rgba(27, 32, 52, 0.05);
      color: var(--navy);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 24px;
      font-size: 1.5rem;
    }

    .pricing-card.popular .pricing-icon {
      background: rgba(255, 77, 28, 0.1);
      color: var(--orange);
    }

    .pricing-name {
      font-family: var(--font-heading);
      font-size: 0.875rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--navy);
      margin-bottom: 16px;
    }

    .pricing-price {
      font-family: var(--font-heading);
      font-size: 3rem;
      font-weight: 800;
      color: var(--navy);
      line-height: 1;
      margin-bottom: 8px;
    }

    .pricing-period {
      font-size: 0.9375rem;
      color: var(--medium-gray);
      margin-bottom: 32px;
    }

    .pricing-features {
      list-style: none;
      text-align: left;
      margin-bottom: 40px;
      flex-grow: 1;
      border-top: 1px solid var(--light-gray);
      padding-top: 24px;
    }

    .pricing-features li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      font-size: 0.9375rem;
      color: var(--navy);
      margin-bottom: 16px;
      line-height: 1.5;
    }

    .pricing-features li:last-child {
      margin-bottom: 0;
    }

    .pricing-check {
      color: var(--success);
      font-weight: bold;
      margin-top: 2px;
    }

    .pricing-card .btn {
      width: 100%;
      justify-content: center;
    }

    .pricing-optional {
      text-align: center;
      margin-top: 40px;
      font-size: 0.9375rem;
      color: var(--medium-gray);
    }

    @media (max-width: 992px) {
      .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 440px;
        margin-left: auto;
        margin-right: auto;
      }
    }

    /* ============================================================
       ABOUT US
       ============================================================ */
    .about {
      padding: 120px 0;
      position: relative;
      overflow: hidden;
    }

    /* Background accent shape */
    .about::before {
      content: '';
      position: absolute;
      bottom: -10%;
      left: -5%;
      width: 400px;
      height: 400px;
      border-radius: 52% 48% 45% 55% / 48% 55% 45% 52%;
      background: rgba(27, 32, 52, 0.02);
      pointer-events: none;
      animation: morphShape 18s ease-in-out infinite;
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
    }

    .about-text p {
      font-size: 1.0625rem;
      color: var(--medium-gray);
      line-height: 1.8;
      margin-bottom: 16px;
    }

    .about-text p:last-of-type {
      margin-bottom: 0;
    }

    .about-people {
      display: flex;
      justify-content: center;
      gap: 40px;
    }

    .founder {
      text-align: center;
    }

    .founder-avatar {
      width: 140px;
      height: 140px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--light-gray), #d4d2cc);
      margin: 0 auto 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2.5rem;
      color: var(--medium-gray);
      position: relative;
    }

    .founder-avatar::before {
      content: '';
      position: absolute;
      inset: -12px;
      border-radius: 50%;
      border: 2px dashed var(--orange);
    }

    .founder-name {
      font-family: var(--font-heading);
      font-weight: 600;
      font-size: 1rem;
      color: var(--navy);
    }

    .founder-role {
      font-size: 0.8125rem;
      color: var(--medium-gray);
      margin-top: 2px;
    }

    @media (max-width: 768px) {
      .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
      }

      .about-people {
        order: -1;
      }
    }

    /* ============================================================
       CONTACT
       ============================================================ */
    .contact {
      padding: 120px 0;
      background: var(--white);
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: start;
    }

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

    .form-group label {
      display: block;
      font-family: var(--font-heading);
      font-size: 0.875rem;
      font-weight: 500;
      margin-bottom: 6px;
      color: var(--navy);
    }

    .form-group input,
    .form-group textarea {
      width: 100%;
      padding: 14px 16px;
      font-family: var(--font-body);
      font-size: 0.9375rem;
      color: var(--navy);
      background: var(--bg);
      border: 2px solid var(--light-gray);
      border-radius: var(--radius);
      transition: all var(--transition);
      outline: none;
    }

    .form-group input::placeholder,
    .form-group textarea::placeholder {
      color: #b0b0aa;
    }

    .form-group input:focus,
    .form-group textarea:focus {
      border-color: var(--orange);
      background: var(--white);
      box-shadow: 0 0 0 4px rgba(255, 77, 28, 0.08);
    }

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

    .form-submit .btn {
      width: 100%;
      justify-content: center;
      padding: 16px 32px;
      font-size: 1rem;
    }

    .contact-side {
      background: var(--bg);
      border-radius: var(--radius-lg);
      padding: 40px;
    }

    .contact-side h3 {
      font-size: 1.375rem;
      margin-bottom: 12px;
    }

    .contact-side p {
      font-size: 0.9375rem;
      color: var(--medium-gray);
      line-height: 1.65;
      margin-bottom: 24px;
    }

    .contact-side .btn {
      width: 100%;
      justify-content: center;
    }

    .contact-info {
      margin-top: 32px;
      padding-top: 32px;
      border-top: 1px solid var(--light-gray);
    }

    .contact-info-item {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 16px;
      font-size: 0.9375rem;
      color: var(--medium-gray);
    }

    .contact-info-item:last-child {
      margin-bottom: 0;
    }

    .contact-info-icon {
      width: 40px;
      height: 40px;
      border-radius: 10px;
      background: var(--white);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      flex-shrink: 0;
    }

    @media (max-width: 768px) {
      .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }
    }

    /* ============================================================
       FAQ
       ============================================================ */
    .faq {
      padding: 120px 0;
      background: var(--white);
    }

    .faq-list {
      max-width: 720px;
      margin: 0 auto;
    }

    .faq-item {
      border-bottom: 1px solid var(--light-gray);
    }

    .faq-item:first-child {
      border-top: 1px solid var(--light-gray);
    }

    .faq-question {
      width: 100%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 24px 0;
      background: none;
      border: none;
      cursor: pointer;
      font-family: var(--font-heading);
      font-size: 1.125rem;
      font-weight: 600;
      color: var(--navy);
      text-align: left;
      transition: color var(--transition);
    }

    .faq-question:hover {
      color: var(--orange);
    }

    .faq-icon {
      font-size: 1.5rem;
      font-weight: 300;
      flex-shrink: 0;
      margin-left: 16px;
      transition: transform var(--transition);
    }

    .faq-item.open .faq-icon {
      transform: rotate(45deg);
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease, padding 0.4s ease;
    }

    .faq-item.open .faq-answer {
      max-height: 200px;
      padding-bottom: 24px;
    }

    .faq-answer p {
      font-size: 1rem;
      line-height: 1.7;
      color: var(--medium-gray);
    }

    /* ============================================================
       FOOTER
       ============================================================ */
    .footer {
      background: var(--navy);
      color: rgba(255, 255, 255, 0.7);
      padding: 64px 0 32px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      gap: 48px;
      align-items: start;
      margin-bottom: 48px;
    }

    .footer-logo img {
      height: 28px;
      width: auto;
      margin-bottom: 12px;
    }

    .footer-logo p {
      font-size: 0.875rem;
      line-height: 1.6;
      max-width: 260px;
    }

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

    .footer-links a {
      font-size: 0.875rem;
      transition: color var(--transition);
    }

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

    .footer-social {
      display: flex;
      gap: 12px;
      justify-self: end;
    }

    .footer-social a {
      width: 40px;
      height: 40px;
      border-radius: 10px;
      background: rgba(255, 255, 255, 0.08);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      transition: all var(--transition);
    }

    .footer-social a:hover {
      background: rgba(255, 255, 255, 0.15);
      color: var(--white);
      transform: translateY(-2px);
    }


    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      padding-top: 24px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.8125rem;
    }

    .footer-bottom .heart {
      color: var(--orange);
    }

    @media (max-width: 768px) {
      .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
      }

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

      .footer-social {
        justify-self: center;
      }

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

    /* ============================================================
       SVG ICON HELPERS
       ============================================================ */
    .icon-svg {
      width: 20px;
      height: 20px;
      display: inline-block;
      vertical-align: middle;
    }
    /* ============================================================
       COOKIE BANNER
       ============================================================ */
    .cookie-banner {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 9999;
      background: var(--navy);
      color: rgba(255, 255, 255, 0.85);
      padding: 20px 0;
      transform: translateY(100%);
      transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .cookie-banner.visible {
      transform: translateY(0);
    }

    .cookie-banner-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      flex-wrap: wrap;
    }

    .cookie-banner-text {
      flex: 1;
      min-width: 280px;
      font-size: 0.875rem;
      line-height: 1.6;
    }

    .cookie-banner-text a {
      color: var(--orange);
      text-decoration: underline;
    }

    .cookie-banner-text a:hover {
      color: var(--white);
    }

    .cookie-banner-actions {
      display: flex;
      gap: 12px;
      flex-shrink: 0;
    }

    .cookie-btn {
      font-family: var(--font-heading);
      font-weight: 600;
      font-size: 0.8125rem;
      padding: 10px 20px;
      border-radius: 50px;
      border: none;
      cursor: pointer;
      transition: all 0.3s ease;
      white-space: nowrap;
    }

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

    .cookie-btn-accept:hover,
    .cookie-btn-accept:focus-visible {
      background: var(--orange-hover);
      transform: translateY(-1px);
    }

    .cookie-btn-decline {
      background: rgba(255, 255, 255, 0.1);
      color: rgba(255, 255, 255, 0.7);
    }

    .cookie-btn-decline:hover,
    .cookie-btn-decline:focus-visible {
      background: rgba(255, 255, 255, 0.18);
      color: var(--white);
    }

    @media (max-width: 600px) {
      .cookie-banner-inner {
        flex-direction: column;
        text-align: center;
      }

      .cookie-banner-actions {
        width: 100%;
        justify-content: center;
      }
    }

    /* ============================================================
       reCAPTCHA BADGE
       ============================================================ */
    .grecaptcha-badge {
      visibility: hidden;
    }

    .recaptcha-notice {
      font-size: 0.75rem;
      color: var(--medium-gray);
      margin-top: 12px;
      text-align: center;
    }

    .recaptcha-notice a {
      color: var(--medium-gray);
      text-decoration: underline;
    }

    /* ============================================================
       CONTACT PAGE (standalone)
       ============================================================ */
    .contact-page {
      padding: 140px 0 80px;
      min-height: 100vh;
    }

    .contact-page .section-header {
      margin-bottom: 48px;
    }

    .form-consent {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      margin-bottom: 20px;
      font-size: 0.875rem;
      color: var(--medium-gray);
      line-height: 1.5;
    }

    .form-consent input[type="checkbox"] {
      margin-top: 3px;
      accent-color: var(--orange);
      flex-shrink: 0;
    }

    .form-consent a {
      color: var(--orange);
      text-decoration: underline;
    }

    .form-consent a:hover {
      color: var(--orange-hover);
    }

    .form-status {
      margin-top: 16px;
      padding: 12px 16px;
      border-radius: var(--radius);
      font-size: 0.9375rem;
      font-weight: 500;
      text-align: center;
    }

    .form-status:empty {
      display: none;
    }

    .form-status.success {
      background: rgba(34, 197, 94, 0.1);
      color: var(--success);
    }

    .form-status.error {
      background: rgba(239, 68, 68, 0.1);
      color: var(--error);
    }

    /* ============================================================
       LEGAL PAGES (Privacy & Cookies)
       ============================================================ */
    .legal-page {
      padding: 140px 0 80px;
      min-height: 100vh;
    }

    .legal-page .section-header {
      margin-bottom: 48px;
    }

    .legal-content {
      max-width: 780px;
      margin: 0 auto;
      background: var(--white);
      border-radius: var(--radius-lg);
      padding: 48px 40px;
      box-shadow: var(--shadow-sm);
    }

    .legal-content h2 {
      font-size: 1.375rem;
      margin-top: 40px;
      margin-bottom: 12px;
      color: var(--navy);
    }

    .legal-content h2:first-of-type {
      margin-top: 0;
    }

    .legal-content h3 {
      font-size: 1.125rem;
      margin-top: 28px;
      margin-bottom: 8px;
      color: var(--navy);
    }

    .legal-content p {
      font-size: 0.9375rem;
      color: var(--medium-gray);
      line-height: 1.75;
      margin-bottom: 16px;
    }

    .legal-content ul {
      margin-bottom: 16px;
      padding-left: 24px;
    }

    .legal-content ul li {
      font-size: 0.9375rem;
      color: var(--medium-gray);
      line-height: 1.75;
      margin-bottom: 8px;
    }

    .legal-content a {
      color: var(--orange);
      text-decoration: underline;
    }

    .legal-content a:hover {
      color: var(--orange-hover);
    }

    .legal-meta {
      font-size: 0.8125rem;
      font-style: italic;
      color: var(--medium-gray);
      margin-bottom: 32px;
      padding-bottom: 24px;
      border-bottom: 1px solid var(--light-gray);
    }

    /* Cookie table */
    .cookie-table {
      width: 100%;
      border-collapse: collapse;
      margin: 16px 0 24px;
      font-size: 0.875rem;
    }

    .cookie-table th,
    .cookie-table td {
      text-align: left;
      padding: 12px 16px;
      border-bottom: 1px solid var(--light-gray);
    }

    .cookie-table th {
      font-family: var(--font-heading);
      font-weight: 600;
      font-size: 0.8125rem;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: var(--navy);
      background: var(--bg);
    }

    .cookie-table td {
      color: var(--medium-gray);
      line-height: 1.5;
    }

    .cookie-table code {
      background: var(--bg);
      padding: 2px 8px;
      border-radius: 4px;
      font-size: 0.8125rem;
      color: var(--orange);
    }

    @media (max-width: 768px) {
      .legal-content {
        padding: 32px 20px;
      }

      .cookie-table {
        font-size: 0.8125rem;
      }

      .cookie-table th,
      .cookie-table td {
        padding: 8px 10px;
      }
    }

    /* ============================================================
       PORTFOLIO PAGE
       ============================================================ */

    /* Solid navbar for subpages (no transparent hero behind it) */
    .navbar-solid {
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      box-shadow: 0 1px 12px rgba(27, 32, 52, 0.06);
      padding: 12px 0;
    }

    .portfolio-hero {
      padding: 160px 0 60px;
      background: var(--bg);
    }

    .portfolio-hero .section-title {
      font-size: clamp(2.25rem, 5vw, 3.25rem);
    }

    .portfolio-section {
      padding: 40px 0 100px;
      background: var(--bg);
    }

    .portfolio-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
      gap: 40px;
    }

    .portfolio-card {
      background: var(--white);
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-md);
      transition: transform var(--transition), box-shadow var(--transition);
    }

    .portfolio-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-lg);
    }

    /* Browser chrome bar */
    .portfolio-card-browser {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 12px 16px;
      background: var(--navy);
      color: var(--white);
    }

    .portfolio-card-dots {
      display: flex;
      gap: 6px;
    }

    .portfolio-card-dots span {
      width: 10px;
      height: 10px;
      border-radius: 50%;
    }

    .portfolio-card-dots span:nth-child(1) {
      background: #EF4444;
    }

    .portfolio-card-dots span:nth-child(2) {
      background: #F59E0B;
    }

    .portfolio-card-dots span:nth-child(3) {
      background: #22C55E;
    }

    .portfolio-card-url {
      font-family: var(--font-body);
      font-size: 0.8125rem;
      color: rgba(255, 255, 255, 0.6);
      background: rgba(255, 255, 255, 0.1);
      padding: 4px 14px;
      border-radius: 8px;
      flex: 1;
    }

    /* Screenshot area */
    .portfolio-card-screenshot {
      width: 100%;
      aspect-ratio: 16 / 9;
      overflow: hidden;
      background: var(--light-gray);
    }

    .portfolio-card-screenshot img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top center;
      transition: transform 0.5s ease;
    }

    .portfolio-card:hover .portfolio-card-screenshot img {
      transform: scale(1.03);
    }

    /* Card info area */
    .portfolio-card-info {
      padding: 28px 28px 32px;
    }

    .portfolio-card-info h3 {
      font-family: var(--font-heading);
      font-size: 1.375rem;
      font-weight: 700;
      margin-bottom: 10px;
      color: var(--navy);
    }

    .portfolio-card-info p {
      font-size: 1rem;
      color: var(--medium-gray);
      line-height: 1.7;
      margin-bottom: 16px;
    }

    /* Tags */
    .portfolio-card-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 20px;
    }

    .portfolio-tag {
      font-family: var(--font-heading);
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.04em;
      padding: 5px 14px;
      border-radius: 50px;
      background: rgba(255, 77, 28, 0.08);
      color: var(--orange);
    }

    .portfolio-btn {
      font-size: 0.875rem;
      padding: 10px 22px;
    }

    /* CTA section */
    .portfolio-cta {
      padding: 80px 0;
      background: var(--bg);
    }

    .portfolio-cta-inner {
      text-align: center;
      background: var(--navy);
      color: var(--white);
      padding: 64px 40px;
      border-radius: var(--radius-lg);
    }

    .portfolio-cta-inner h2 {
      font-family: var(--font-heading);
      font-size: clamp(1.75rem, 4vw, 2.5rem);
      margin-bottom: 12px;
    }

    .portfolio-cta-inner p {
      font-size: 1.125rem;
      color: rgba(255, 255, 255, 0.7);
      margin-bottom: 28px;
    }

    /* Portfolio responsive */
    @media (max-width: 768px) {
      .portfolio-grid {
        grid-template-columns: 1fr;
      }

      .portfolio-card-info {
        padding: 20px 20px 24px;
      }

      .portfolio-cta-inner {
        padding: 48px 24px;
      }
    }

    @media (max-width: 520px) {
      .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 28px;
      }
    }
