

    :root {
      --color-orange: #E8762D;
      --color-orange-hover: #D4681F;
      --color-orange-light: #F4A261;
      --color-orange-glow: rgba(232, 118, 45, 0.12);
      --color-orange-subtle: rgba(232, 118, 45, 0.06);
      --color-teal: #1A6B6A;
      --color-teal-light: #2D8F8E;
      --color-teal-hover: #15585A;
      --color-cream: #FFF9F4;
      --color-sand: #F5EDE4;
      --color-sand-light: #FAF5EF;
      --color-navy: #1B2A4A;
      --color-navy-light: #243656;
      --color-navy-lighter: #2E4268;
      --color-text: #2D2A26;
      --color-text-muted: #7A756E;
      --color-text-light: #9E9890;
      --color-white: #FFFFFF;
      --color-border: rgba(45, 42, 38, 0.08);
      --font-display: 'Poppins', sans-serif;
      --font-body: 'Poppins', sans-serif;
      --radius-sm: 12px;
      --radius-md: 20px;
      --radius-lg: 32px;
      --radius-pill: 100px;
      --shadow-soft: 0 4px 24px rgba(45, 42, 38, 0.06);
      --shadow-card: 0 8px 32px rgba(45, 42, 38, 0.08);
      --shadow-elevated: 0 16px 48px rgba(45, 42, 38, 0.12);
      --shadow-glow: 0 8px 40px rgba(232, 118, 45, 0.2);
      --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

    body {
      font-family: var(--font-body);
      font-size: 1.05rem;
      font-weight: 400;
      line-height: 1.7;
      color: var(--color-text);
      background-color: var(--color-cream);
      overflow-x: hidden;
    }

    body.th { font-size: 1.1rem; line-height: 1.85; font-family: 'Sarabun', 'Noto Sans Thai', 'Poppins', sans-serif; }

    img { max-width: 100%; display: block; }
    a { text-decoration: none; color: inherit; transition: var(--transition-smooth); }

    h1, h2, h3, h4 {
      font-family: var(--font-display);
      font-weight: 800;
      line-height: 1.15;
      text-transform: uppercase;
      letter-spacing: -0.01em;
    }

    .container { max-width: 1320px; margin: 0 auto; padding: 0 32px; }

    .reveal {
      opacity: 0; transform: translateY(40px);
      transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .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; }

    .navbar {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
      padding: 18px 0; transition: var(--transition-smooth);
      background: rgba(255, 249, 244, 0.95);
      backdrop-filter: blur(20px) saturate(1.4);
      -webkit-backdrop-filter: blur(20px) saturate(1.4);
      box-shadow: 0 1px 24px rgba(45, 42, 38, 0.06);
    }
    .navbar.scrolled {
      padding: 10px 0;
      background: rgba(255, 249, 244, 0.85);
      backdrop-filter: blur(20px) saturate(1.4);
      -webkit-backdrop-filter: blur(20px) saturate(1.4);
      box-shadow: 0 1px 24px rgba(45, 42, 38, 0.06);
    }
    .navbar .container { display: flex; align-items: center; justify-content: space-between; }

    .nav-logo { display: flex; align-items: center; }
    .nav-logo img { height: 48px; width: auto; }

    .nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
    .nav-links a {
      font-size: 0.88rem; font-weight: 600; color: var(--color-text-muted);
      letter-spacing: 0.04em; text-transform: uppercase; position: relative;
    }
    .nav-links a::after {
      content: ''; position: absolute; bottom: -4px; left: 0; width: 0;
      height: 2px; background: var(--color-orange); border-radius: 2px;
      transition: var(--transition-smooth);
    }
    .nav-links a:hover { color: var(--color-text); }
    .nav-links a:hover::after { width: 100%; }

    .nav-right { display: flex; align-items: center; gap: 16px; }

    .lang-toggle {
      display: flex; background: var(--color-sand); border-radius: var(--radius-pill);
      padding: 3px; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.04em;
    }
    .lang-toggle a {
      padding: 5px 12px; border-radius: var(--radius-pill); cursor: pointer;
      transition: var(--transition-smooth); color: var(--color-text-muted);
      text-decoration: none; font-size: inherit; font-weight: inherit; letter-spacing: inherit;
    }
    .lang-toggle a.active {
      background: var(--color-white); color: var(--color-text);
      box-shadow: 0 2px 8px rgba(45, 42, 38, 0.08);
    }

    .btn {
      display: inline-flex; align-items: center; gap: 8px;
      font-family: var(--font-body); font-weight: 700; font-size: 0.88rem;
      border: none; cursor: pointer; transition: var(--transition-smooth);
      letter-spacing: 0.02em; text-transform: uppercase;
    }
    .btn-primary {
      background: var(--color-orange); color: var(--color-white);
      padding: 12px 28px; border-radius: var(--radius-pill);
    }
    .btn-primary:hover {
      background: var(--color-orange-hover);
      box-shadow: var(--shadow-glow); transform: translateY(-1px);
    }
    .btn-secondary {
      background: transparent; color: var(--color-teal);
      padding: 12px 28px; border-radius: var(--radius-pill); border: 2px solid var(--color-teal);
    }
    .btn-secondary:hover {
      background: var(--color-teal); color: var(--color-white); transform: translateY(-1px);
    }
    .btn-nav { padding: 10px 24px; }

    .hamburger {
      display: none; flex-direction: column; gap: 5px; cursor: pointer;
      padding: 8px; background: none; border: none; z-index: 1001;
    }
    .hamburger span { width: 24px; height: 2px; background: var(--color-text); border-radius: 2px; transition: var(--transition-smooth); }
    .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

    .mobile-menu {
      display: none; position: fixed; top: 0; right: -100%; width: 320px; height: 100vh;
      background: var(--color-cream); padding: 100px 40px 40px;
      box-shadow: -8px 0 40px rgba(45, 42, 38, 0.1);
      transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1); z-index: 999;
    }
    .mobile-menu.open { right: 0; }
    .mobile-menu a {
      display: block; font-size: 1.1rem; font-weight: 600; color: var(--color-text);
      padding: 16px 0; border-bottom: 1px solid var(--color-border);
      text-transform: uppercase; letter-spacing: 0.04em;
    }
    .mobile-overlay {
      display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%;
      background: rgba(45, 42, 38, 0.3); z-index: 998; opacity: 0; transition: opacity 0.4s ease;
    }
    .mobile-overlay.open { opacity: 1; }

    .hero {
      min-height: 100vh; display: flex; align-items: center;
      position: relative; overflow: visible; padding-top: 80px;
      background: linear-gradient(165deg, var(--color-cream) 0%, #FFF5EC 40%, var(--color-sand-light) 100%);
    }
    .hero-bg-blob { position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; }
    .hero-bg-blob-1 { width: 500px; height: 500px; background: var(--color-orange-glow); top: -150px; right: -200px; }
    .hero-bg-blob-2 { width: 400px; height: 400px; background: rgba(26, 107, 106, 0.06); bottom: -50px; left: -100px; }
    .hero-bg-blob-3 { width: 300px; height: 300px; background: rgba(244, 162, 97, 0.08); top: 30%; left: 15%; }

    .hero-palm-deco { position: absolute; right: -40px; top: 60px; width: 300px; height: 400px; opacity: 0.04; pointer-events: none; }

    .hero .container {
      display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
      align-items: center; position: relative; z-index: 2;
    }
    .hero-content { max-width: 620px; }

    .hero-badge {
      display: inline-flex; align-items: center; gap: 6px;
      background: var(--color-orange-glow); color: var(--color-orange);
      font-size: 0.78rem; font-weight: 700; padding: 8px 16px;
      border-radius: var(--radius-pill); margin-bottom: 28px;
      letter-spacing: 0.06em; text-transform: uppercase;
    }
    .hero-badge svg { width: 14px; height: 14px; }

    .hero h1 { font-size: 3rem; color: var(--color-text); margin-bottom: 24px; line-height: 1.1; }
    .hero h1 em { font-style: normal; color: var(--color-orange); }

    .hero-subtitle {
      font-size: 1.1rem; font-weight: 300; color: var(--color-text-muted);
      line-height: 1.75; margin-bottom: 40px; max-width: 460px;
      text-transform: none; letter-spacing: 0;
    }

    .hero-ctas { display: flex; gap: 16px; margin-bottom: 32px; flex-wrap: wrap; }
    .hero-ctas .btn-primary, .hero-ctas .btn-secondary { padding: 16px 32px; font-size: 0.92rem; }

    .hero-trust {
      font-size: 0.82rem; color: var(--color-text-light); font-weight: 500;
      display: flex; align-items: center; gap: 16px;
      text-transform: none; letter-spacing: 0;
    }
    .hero-trust span { display: flex; align-items: center; gap: 6px; }
    .hero-trust svg { width: 14px; height: 14px; color: var(--color-orange-light); }

    .hero-phone-wrapper { display: flex; justify-content: center; align-items: center; perspective: 1200px; transform: scale(0.78); transform-origin: top center; }

    .phone-device {
      position: relative; width: 290px; height: 600px;
      transform: rotateY(-12deg) rotateX(4deg);
      animation: phoneFloat 6s ease-in-out infinite;
    }

    @keyframes phoneFloat {
      0%, 100% { transform: rotateY(-12deg) rotateX(4deg) translateY(0); }
      50% { transform: rotateY(-12deg) rotateX(4deg) translateY(-16px); }
    }

    .phone-frame {
      position: absolute; inset: 0; border-radius: 44px;
      background: linear-gradient(145deg, #2D2A26 0%, #1a1817 100%);
      box-shadow:
        0 40px 80px rgba(45, 42, 38, 0.2),
        0 16px 32px rgba(45, 42, 38, 0.12),
        inset 0 1px 0 rgba(255,255,255,0.1),
        inset 0 -1px 0 rgba(0,0,0,0.3);
      padding: 12px;
    }

    .phone-frame::before {
      content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
      width: 130px; height: 30px; background: #1a1817;
      border-radius: 0 0 20px 20px; z-index: 10;
    }

    .phone-frame::after {
      content: ''; position: absolute; top: 10px; left: 50%; transform: translateX(-50%);
      width: 90px; height: 24px; background: #000;
      border-radius: 16px; z-index: 11;
    }

    .phone-inner {
      width: 100%; height: 100%; border-radius: 34px; overflow: hidden;
      background: var(--color-white); position: relative;
    }

    .phone-status-bar {
      height: 44px; display: flex; align-items: flex-end; justify-content: space-between;
      padding: 0 24px 6px; font-size: 0.6rem; font-weight: 600; color: white;
      position: absolute; top: 0; left: 0; right: 0; z-index: 12;
    }

    .phone-screen-content { height: 100%; overflow: hidden; position: relative; }

    .phone-app-header {
      background: var(--color-orange);
      padding: 50px 18px 22px; border-radius: 0 0 28px 28px;
    }

    .phone-app-loc { font-size: 0.6rem; color: rgba(255,255,255,0.75); font-weight: 500; margin-bottom: 2px; }
    .phone-app-loc-name { font-size: 0.88rem; color: white; font-weight: 700; display: flex; align-items: center; gap: 4px; }
    .phone-app-loc-name svg { width: 12px; height: 12px; }
    .phone-app-search {
      background: rgba(255,255,255,0.2); border-radius: 12px;
      padding: 9px 14px; margin-top: 12px; font-size: 0.65rem;
      color: rgba(255,255,255,0.7); display: flex; align-items: center; gap: 6px;
    }
    .phone-app-search svg { width: 12px; height: 12px; opacity: 0.7; }

    .phone-app-body { padding: 14px 14px 20px; }

    .phone-app-cats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 18px; }
    .phone-app-cat { display: flex; flex-direction: column; align-items: center; gap: 6px; }
    .phone-app-cat-icon {
      width: 52px; height: 52px; border-radius: 16px;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 4px 16px rgba(0,0,0,0.06); position: relative; overflow: hidden;
    }
    .phone-app-cat-icon svg { width: 26px; height: 26px; }
    .phone-app-cat-label { font-size: 0.55rem; font-weight: 700; color: var(--color-text); text-align: center; line-height: 1.2; }

    .phone-app-section-title { font-size: 0.72rem; font-weight: 800; color: var(--color-text); margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.03em; }

    .phone-app-card {
      background: var(--color-white); border-radius: 16px; overflow: hidden;
      box-shadow: 0 3px 16px rgba(0,0,0,0.06); margin-bottom: 10px;
    }
    .phone-app-card-img { height: 85px; background-size: cover; background-position: center; position: relative; }
    .phone-app-card-price {
      position: absolute; bottom: 8px; right: 8px; background: var(--color-orange);
      color: white; font-size: 0.55rem; font-weight: 700; padding: 3px 8px;
      border-radius: 8px;
    }
    .phone-app-card-body { padding: 10px 12px; }
    .phone-app-card-title { font-size: 0.68rem; font-weight: 700; color: var(--color-text); }
    .phone-app-card-meta { font-size: 0.56rem; color: var(--color-text-muted); margin-top: 2px; display: flex; align-items: center; gap: 8px; }
    .phone-app-card-rating { color: var(--color-orange); font-weight: 700; }

    .phone-home-bar {
      position: absolute; bottom: 8px; left: 50%; transform: translateX(-50%);
      width: 130px; height: 4px; background: var(--color-text); border-radius: 4px; opacity: 0.2;
    }

    .section-header { text-align: center; margin-bottom: 64px; }
    .section-header h2 { font-size: 2.8rem; color: var(--color-text); margin-bottom: 16px; }
    .section-header p {
      font-size: 1.05rem; color: var(--color-text-muted); font-weight: 300;
      max-width: 480px; margin: 0 auto; text-transform: none; letter-spacing: 0;
    }

    .section-deco { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 16px; }
    .section-deco-line { width: 40px; height: 2px; background: var(--color-orange-light); border-radius: 2px; }
    .section-deco svg { width: 20px; height: 20px; color: var(--color-orange); }

    .discover { padding: 100px 0 120px; background: var(--color-cream); }

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

    .island-card {
      position: relative; height: 480px; border-radius: var(--radius-lg);
      overflow: hidden; cursor: pointer; display: flex;
      flex-direction: column; justify-content: flex-end;
    }
    .island-card-bg {
      position: absolute; inset: 0; background-size: cover; background-position: center;
      transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .island-card:hover .island-card-bg { transform: scale(1.06); }
    .island-card-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(27,42,74,0.85) 0%, rgba(27,42,74,0.3) 40%, transparent 70%);
      transition: var(--transition-smooth);
    }
    .island-card:hover .island-card-overlay {
      background: linear-gradient(to top, rgba(27,42,74,0.9) 0%, rgba(27,42,74,0.4) 50%, transparent 75%);
    }
    .island-card-content { position: relative; z-index: 2; padding: 36px; }
    .island-card h3 { font-size: 1.8rem; color: var(--color-white); margin-bottom: 8px; }
    .island-card-subtitle {
      font-size: 0.9rem; color: rgba(255,255,255,0.75); font-weight: 300;
      margin-bottom: 20px; text-transform: none;
    }
    .island-card-link {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 0.88rem; font-weight: 700; color: var(--color-orange-light);
      opacity: 0.8; transform: translateY(8px); transition: var(--transition-smooth);
      text-transform: uppercase; letter-spacing: 0.04em;
    }
    .island-card-link svg { width: 18px; height: 18px; transition: var(--transition-smooth); }
    .island-card:hover .island-card-link { opacity: 1; transform: translateY(0); }
    .island-card:hover .island-card-link svg { transform: translateX(4px); }

    .how-it-works { padding: 100px 0 120px; background: var(--color-sand-light); position: relative; }
    .how-it-works::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 80px;
      background: linear-gradient(to bottom, var(--color-cream), var(--color-sand-light));
    }
    .steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; position: relative; }
    .steps-grid::before {
      content: ''; position: absolute; top: 44px; left: 15%; right: 15%;
      height: 2px; background: linear-gradient(to right, transparent, var(--color-orange-light), var(--color-orange-light), transparent);
      opacity: 0.3;
    }
    .step-card { text-align: center; position: relative; }
    .step-number {
      width: 88px; height: 88px; border-radius: 50%; background: var(--color-white);
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 28px; box-shadow: var(--shadow-soft); position: relative; z-index: 2;
    }
    .step-number-inner {
      width: 52px; height: 52px; border-radius: 50%; background: var(--color-orange-glow);
      display: flex; align-items: center; justify-content: center;
    }
    .step-number-inner span { font-family: var(--font-display); font-size: 1.3rem; font-weight: 800; color: var(--color-orange); }
    .step-icon { margin: 0 auto 16px; color: var(--color-orange); }
    .step-card h3 {
      font-family: var(--font-body); font-size: 1.1rem; font-weight: 800;
      margin-bottom: 10px; color: var(--color-text); text-transform: uppercase; letter-spacing: 0.02em;
    }
    .step-card p { font-size: 0.92rem; color: var(--color-text-muted); font-weight: 300; max-width: 280px; margin: 0 auto; text-transform: none; letter-spacing: 0; }

    .features { padding: 100px 0 120px; background: var(--color-cream); position: relative; }
    .features::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 80px;
      background: linear-gradient(to bottom, var(--color-sand-light), var(--color-cream));
    }
    .features-grid {
      display: grid; grid-template-columns: 1.2fr 1fr; grid-template-rows: 1fr 1fr;
      gap: 24px; min-height: 560px;
    }
    .feature-card {
      position: relative; border-radius: var(--radius-lg); overflow: hidden;
      display: flex; flex-direction: column; justify-content: flex-end;
      transition: var(--transition-smooth); cursor: default;
    }
    .feature-card:hover { transform: scale(1.015); box-shadow: var(--shadow-elevated); }
    .feature-card-big { grid-row: span 2; }
    .feature-card-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
    .feature-card-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(27,42,74,0.88) 0%, rgba(27,42,74,0.2) 60%, transparent 100%);
    }
    .feature-card-gradient { position: absolute; inset: 0; }
    .feature-card-content { position: relative; z-index: 2; padding: 36px; }
    .feature-badge {
      display: inline-block; background: var(--color-orange); color: var(--color-white);
      font-size: 0.7rem; font-weight: 700; padding: 5px 14px; border-radius: var(--radius-pill);
      margin-bottom: 16px; letter-spacing: 0.06em; text-transform: uppercase;
    }
    .feature-card h3 { font-size: 1.6rem; color: var(--color-white); margin-bottom: 10px; }
    .feature-card-big h3 { font-size: 2.2rem; }
    .feature-card p { font-size: 0.92rem; color: rgba(255,255,255,0.8); font-weight: 300; max-width: 360px; text-transform: none; letter-spacing: 0; }
    .feature-card-teal .feature-card-gradient { background: linear-gradient(135deg, var(--color-teal) 0%, var(--color-teal-light) 50%, #3AAFAD 100%); }
    .feature-card-teal .feature-badge { background: rgba(255,255,255,0.2); }
    .feature-card-teal-icon { margin-bottom: 16px; opacity: 0.6; }

    .partners { padding: 80px 0 100px; background: var(--color-sand-light); position: relative; }
    .partners::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 80px;
      background: linear-gradient(to bottom, var(--color-cream), var(--color-sand-light));
    }
    .partner-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .partner-card {
      background: var(--color-white); border-radius: var(--radius-md); padding: 36px 32px;
      box-shadow: var(--shadow-soft); border-left: 3px solid transparent; transition: var(--transition-smooth);
    }
    .partner-card:hover { border-left-color: var(--color-orange); transform: translateX(4px); box-shadow: var(--shadow-card); }
    .partner-icon {
      width: 52px; height: 52px; border-radius: 16px; background: var(--color-orange-glow);
      display: flex; align-items: center; justify-content: center; margin-bottom: 20px; color: var(--color-orange);
    }
    .partner-card h3 { font-family: var(--font-body); font-size: 1.05rem; font-weight: 800; margin-bottom: 10px; color: var(--color-text); }
    .partner-card p { font-size: 0.9rem; color: var(--color-text-muted); font-weight: 300; margin-bottom: 20px; text-transform: none; letter-spacing: 0; }
    .partner-link {
      font-size: 0.88rem; font-weight: 700; color: var(--color-orange);
      display: inline-flex; align-items: center; gap: 6px; text-transform: uppercase; letter-spacing: 0.04em;
    }
    .partner-link svg { width: 16px; height: 16px; transition: var(--transition-smooth); }
    .partner-link:hover svg { transform: translateX(4px); }

    .app-cta {
      padding: 100px 0; position: relative; overflow: hidden;
      background: linear-gradient(135deg, var(--color-orange) 0%, #D4681F 40%, #C45A15 100%);
    }
    .app-cta-palm { position: absolute; pointer-events: none; opacity: 0.07; filter: brightness(0) invert(1) brightness(2); top: 0; height: 100%; width: auto; }
    .app-cta-palm-1 { left: -30px; }
    .app-cta-palm-2 { right: -30px; transform: scaleX(-1); opacity: 0.05; }

    .app-cta .container { position: relative; z-index: 2; text-align: center; }
    .app-cta h2 { font-size: 3rem; color: var(--color-white); margin-bottom: 16px; }
    .app-cta-subtitle { font-size: 1.1rem; color: rgba(255,255,255,0.85); font-weight: 300; margin-bottom: 48px; text-transform: none; letter-spacing: 0; }

    .store-buttons { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
    .store-btn {
      display: inline-flex; align-items: center; gap: 12px;
      background: rgba(255,255,255,0.15); backdrop-filter: blur(8px);
      border: 1px solid rgba(255,255,255,0.25); color: var(--color-white);
      padding: 14px 28px; border-radius: var(--radius-sm); transition: var(--transition-smooth);
    }
    .store-btn:hover { background: rgba(255,255,255,0.25); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
    .store-btn svg { width: 28px; height: 28px; }
    .store-btn-text { text-align: left; }
    .store-btn-small { font-size: 0.65rem; font-weight: 400; opacity: 0.8; display: block; text-transform: none; letter-spacing: 0; }
    .store-btn-big { font-size: 1rem; font-weight: 700; display: block; text-transform: none; letter-spacing: 0; }

    .contact { padding: 100px 0 80px; background: var(--color-cream); }
    .contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 800px; margin: 0 auto; }
    .contact-card {
      background: var(--color-white); border-radius: var(--radius-md); padding: 28px 24px;
      text-align: center; box-shadow: var(--shadow-soft); transition: var(--transition-smooth);
    }
    .contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
    .contact-icon {
      width: 48px; height: 48px; border-radius: 14px;
      display: flex; align-items: center; justify-content: center; margin: 0 auto 14px;
    }
    .contact-icon-wa { background: rgba(37, 211, 102, 0.1); color: #25D366; }
    .contact-icon-line { background: rgba(0, 185, 0, 0.1); color: #00B900; }
    .contact-icon-email { background: var(--color-orange-glow); color: var(--color-orange); }
    .contact-card h4 { font-family: var(--font-body); font-size: 0.92rem; font-weight: 700; margin-bottom: 4px; color: var(--color-text); text-transform: uppercase; letter-spacing: 0.03em; }
    .contact-card p { font-size: 0.82rem; color: var(--color-text-muted); font-weight: 400; text-transform: none; letter-spacing: 0; }

    .social-row { display: flex; justify-content: center; gap: 16px; margin-top: 40px; }
    .social-link {
      width: 48px; height: 48px; border-radius: 50%; background: var(--color-sand);
      display: flex; align-items: center; justify-content: center;
      color: var(--color-text-muted); transition: var(--transition-smooth);
    }
    .social-link:hover { background: var(--color-orange); color: var(--color-white); transform: translateY(-3px); }
    .social-link svg { width: 20px; height: 20px; }

    .footer { background: var(--color-navy); padding: 80px 0 40px; color: rgba(255,255,255,0.7); }
    .footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 60px; }
    .footer-brand p { font-size: 0.9rem; font-weight: 300; line-height: 1.7; margin-top: 16px; max-width: 300px; text-transform: none; letter-spacing: 0; }
    .footer-logo img { height: 32px; width: auto; filter: brightness(0) invert(1); }

    .footer h5 {
      font-family: var(--font-body); font-size: 0.8rem; font-weight: 700;
      color: var(--color-white); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 20px;
    }
    .footer ul { list-style: none; }
    .footer ul li { margin-bottom: 12px; }
    .footer ul a { font-size: 0.9rem; font-weight: 300; color: rgba(255,255,255,0.6); transition: var(--transition-smooth); text-transform: none; letter-spacing: 0; }
    .footer ul a:hover { color: var(--color-orange-light); padding-left: 4px; }

    .footer-store-btns { display: flex; flex-direction: column; gap: 10px; }
    .footer-store-btn {
      display: flex; align-items: center; gap: 10px;
      background: var(--color-navy-light); border: 1px solid rgba(255,255,255,0.1);
      padding: 10px 16px; border-radius: var(--radius-sm); color: var(--color-white);
      font-size: 0.78rem; transition: var(--transition-smooth); text-transform: none; letter-spacing: 0;
    }
    .footer-store-btn:hover { background: var(--color-navy-lighter); border-color: rgba(255,255,255,0.2); }
    .footer-store-btn svg { width: 20px; height: 20px; flex-shrink: 0; }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.08); padding-top: 28px;
      display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
    }
    .footer-bottom p { font-size: 0.82rem; font-weight: 300; text-transform: none; letter-spacing: 0; }

    @media (max-width: 1280px) { .hero h1 { font-size: 2.6rem; } }

    @media (max-width: 1024px) {
      .nav-links, .lang-toggle { display: none; }
      .hamburger { display: flex; }
      .mobile-menu { display: block; }
      .hero .container { grid-template-columns: 1fr; text-align: center; }
      .hero-content { max-width: 100%; }
      .hero h1 { font-size: 2.8rem; }
      .hero-subtitle { margin: 0 auto 40px; }
      .hero-ctas { justify-content: center; }
      .hero-trust { justify-content: center; }
      .hero-phone-wrapper { margin-top: 40px; }
      .phone-device { width: 250px; height: 520px; }
      .island-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
      .island-card { height: 320px; }
      .steps-grid::before { display: none; }
      .features-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
      .feature-card-big { grid-row: span 1; min-height: 360px; }
      .feature-card { min-height: 280px; }
      .partner-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }

    @media (max-width: 768px) {
      .section-header h2 { font-size: 2rem; }
      .hero h1 { font-size: 2.4rem; }
      .hero-ctas .btn-primary, .hero-ctas .btn-secondary { padding: 14px 24px; font-size: 0.88rem; }
      .steps-grid { grid-template-columns: 1fr; gap: 48px; }
      .contact-grid { grid-template-columns: 1fr; max-width: 360px; }
      .app-cta h2 { font-size: 2.2rem; }
      .footer-grid { grid-template-columns: 1fr; gap: 40px; }
      .footer-bottom { flex-direction: column; text-align: center; }
    }

    @media (max-width: 480px) {
      .hero h1 { font-size: 2rem; }
      .phone-device { width: 220px; height: 460px; }
      .section-header h2 { font-size: 1.8rem; }
      .app-cta h2 { font-size: 1.8rem; }
      .store-buttons { flex-direction: column; align-items: center; }
    }

    @media print {
      .navbar, .mobile-menu, .mobile-overlay { display: none; }
      .reveal { opacity: 1 !important; transform: none !important; }
      .phone-device { animation: none !important; }
      body { background: white; }
    }


    .hero-logo-big { margin-bottom: 16px; }
    .hero-logo-img { width: 320px; height: auto; display: block; margin-left: -12px; }
    .hero-tagline {
      font-size: 1.15rem !important; font-weight: 600 !important;
      color: var(--color-text-muted) !important; letter-spacing: 0.08em;
      text-transform: uppercase; max-width: 320px;
    }

    /* Palm decorations */
    .hero-palm-img {
      position: absolute; pointer-events: none; opacity: 0.18; z-index: 2;
      bottom: 0; width: 480px; height: auto;
    }
    .hero-palm-img-1 {
      right: -60px; width: 530px;
    }
    .hero-palm-img-2 {
      left: -60px; transform: scaleX(-1);
    }

    /* Local app section */
    .local-app {
      padding: 80px 0; background: var(--color-sand-light); position: relative;
      border-top: 1px solid rgba(0,0,0,0.04);
    }
    .local-app .container {
      display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 32px;
      align-items: start;
    }
    .local-card {
      text-align: center; padding: 36px 24px;
    }
    .local-card-icon {
      width: 64px; height: 64px; border-radius: 20px;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 20px; font-size: 2rem;
    }
    .local-card-icon-orange { background: var(--color-orange-glow); color: var(--color-orange); }
    .local-card-icon-teal { background: rgba(26,107,106,0.1); color: var(--color-teal); }
    .local-card-icon-navy { background: rgba(27,42,74,0.08); color: var(--color-navy); }
    .local-card h3 {
      font-family: var(--font-body); font-size: 1.15rem; font-weight: 800;
      color: var(--color-text); margin-bottom: 10px; text-transform: uppercase;
      letter-spacing: 0.02em;
    }
    .local-card p {
      font-size: 0.92rem; color: var(--color-text-muted); font-weight: 300;
      line-height: 1.7; text-transform: none; letter-spacing: 0;
    }
    .local-card .highlight {
      color: var(--color-orange); font-weight: 700;
    }

    @media (max-width: 768px) {
      .local-app .container { grid-template-columns: 1fr; max-width: 420px; }
      .hero-palm-img { display: none; }
    }

    /* Large screens */
    @media (min-width: 1440px) {
      .container { max-width: 1440px; padding: 0 48px; }
      .hero h1 { font-size: 3.4rem; }
      .hero .container { gap: 80px; }
      .section-header h2 { font-size: 3.2rem; }
      .island-card { height: 540px; }
      .features-grid { min-height: 640px; }
      .phone-device { width: 348px; height: 720px; }
      .hero-palm-img-1 { width: 620px; }
      .hero-palm-img-2 { width: 500px; }
    }
    @media (min-width: 1680px) {
      .container { max-width: 1560px; padding: 0 60px; }
      .hero h1 { font-size: 3.8rem; }
      .island-grid { gap: 32px; }
      .features-grid { gap: 32px; }
      .partner-grid { gap: 32px; }
      .phone-device { width: 380px; height: 780px; }
      .hero-palm-img-1 { width: 680px; }
      .hero-palm-img-2 { width: 560px; }
    }
    /* ====== /app PAGE — minimal one-screen ====== */
    .app-page {
      min-height: 100vh;
      display: flex; align-items: center; justify-content: center;
      padding: 120px 0 80px;
      position: relative; overflow: clip;
      background: linear-gradient(165deg, var(--color-cream) 0%, #FFF5EC 40%, var(--color-sand-light) 100%);
    }
    .app-page-blob { position: absolute; border-radius: 50%; filter: blur(90px); pointer-events: none; z-index: 1; }
    .app-page-blob-1 { width: 520px; height: 520px; background: var(--color-orange-glow); top: -180px; right: -180px; }
    .app-page-blob-2 { width: 400px; height: 400px; background: rgba(26, 107, 106, 0.08); bottom: -120px; left: -120px; }
    .app-page .container { position: relative; z-index: 2; text-align: center; }

    .app-page-logo { width: 400px; max-width: 90vw; height: auto; margin: 0 auto 24px; display: block; }
    .app-page-logo.app-page-icon { width: 140px; border-radius: 22.37%; box-shadow: 0 8px 32px rgba(0,0,0,0.15); }
    .app-icon-label { display: block; text-align: center; font-size: 0.95rem; font-weight: 600; color: white; margin-top: -12px; margin-bottom: 20px; letter-spacing: 0.01em; text-shadow: 0 1px 4px rgba(0,0,0,0.15); }
    @media (max-width: 768px) { .app-page-logo { width: 96px; } .app-page-logo.app-page-icon { width: 100px; border-radius: 22.37%; } .app-icon-label { font-size: 0.85rem; margin-top: -8px; margin-bottom: 16px; } }
    .app-page h1 { font-size: 3rem; color: var(--color-text); margin-bottom: 16px; line-height: 1.1; }
    .app-page h1 em { font-style: normal; color: var(--color-orange); }
    .app-page-sub {
      font-size: 1.1rem; font-weight: 300; color: var(--color-text-muted);
      line-height: 1.65; margin: 0 auto 44px; max-width: 520px;
      text-transform: none; letter-spacing: 0;
    }

    .app-page-buttons {
      display: flex; justify-content: center; gap: 16px;
      flex-wrap: wrap; margin-bottom: 28px;
    }
    .app-page-btn {
      display: inline-flex; align-items: center; gap: 14px;
      background: var(--color-text); color: var(--color-white);
      padding: 16px 30px; border-radius: 16px;
      transition: var(--transition-smooth); min-width: 220px;
      box-shadow: 0 10px 30px rgba(45, 42, 38, 0.15);
    }
    .app-page-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 16px 40px rgba(45, 42, 38, 0.25);
    }
    .app-page-btn svg { width: 32px; height: 32px; flex-shrink: 0; }
    .app-page-btn-text { text-align: left; line-height: 1.15; }
    .app-page-btn-small {
      font-size: 0.7rem; font-weight: 400; opacity: 0.78; display: block;
      text-transform: none; letter-spacing: 0.02em;
    }
    .app-page-btn-big {
      font-size: 1.05rem; font-weight: 700; display: block;
      text-transform: none; letter-spacing: 0;
    }

    .app-page-trust {
      display: flex; flex-wrap: wrap; justify-content: center; gap: 20px;
      font-size: 0.82rem; color: var(--color-text-light); font-weight: 500;
      text-transform: none; letter-spacing: 0;
    }
    .app-page-trust span { display: inline-flex; align-items: center; gap: 6px; }
    .app-page-trust svg { width: 14px; height: 14px; color: var(--color-orange); }

    @media (max-width: 640px) {
      .app-page { padding: 110px 0 60px; }
      .app-page h1 { font-size: 2.1rem; }
      .app-page-sub { font-size: 1rem; margin-bottom: 32px; }
      .app-page-buttons { flex-direction: column; align-items: stretch; }
      .app-page-btn { min-width: 0; width: 100%; justify-content: center; }
    }
    /* === /app PAGE ====== */

    /* === KOHME MOBILE LAYOUT FIXES === */
    html, body { overflow-x: clip; max-width: 100%; }
    .hero { overflow: clip; }
    .btn, .btn-nav, .btn-primary, .btn-secondary { white-space: nowrap; }
    .nav-right { flex-wrap: nowrap; min-width: 0; }
    @media (max-width: 480px) {
      .btn-nav { padding: 9px 16px; font-size: 0.82rem; }
      .nav-right { gap: 10px; }
      .container { padding-left: 20px; padding-right: 20px; }
    }
    /* === /KOHME MOBILE LAYOUT FIXES === */

  
  

    /* === Mobile menu lang toggle (T-LANG-001 2026-04-30) === */
    .mobile-menu .lang-toggle {
      display: flex; margin: 0 0 20px; align-self: flex-start;
      background: var(--color-sand); border-radius: var(--radius-pill);
      padding: 4px; font-size: 0.82rem; font-weight: 700; letter-spacing: 0.04em;
      width: fit-content;
    }
    .mobile-menu .lang-toggle a {
      padding: 6px 16px; border-radius: var(--radius-pill);
      color: var(--color-text-muted); text-decoration: none;
      transition: var(--transition-smooth); border-bottom: none;
      font-size: inherit; font-weight: inherit; letter-spacing: inherit;
      display: inline-block;
    }
    .mobile-menu .lang-toggle a.active {
      background: var(--color-white); color: var(--color-text);
      box-shadow: 0 2px 8px rgba(45, 42, 38, 0.08);
    }

    /* === Partnership floating widgets (T-LANG-001 / T-CONTACT-001 2026-04-30) === */
    .partner-floats {
      position: fixed; right: 20px; bottom: 20px; z-index: 1000;
      display: flex; flex-direction: column; align-items: flex-end; gap: 12px;
      pointer-events: none;
    }
    .partner-floats > * { pointer-events: auto; }
    .floating-lang {
      background: var(--color-cream); border: 1px solid var(--color-border);
      border-radius: var(--radius-pill); box-shadow: var(--shadow-card);
      display: flex; padding: 4px; font-size: 0.78rem; font-weight: 700;
      letter-spacing: 0.04em;
    }
    .floating-lang a {
      padding: 6px 14px; border-radius: var(--radius-pill);
      color: var(--color-text-muted); text-decoration: none;
      transition: var(--transition-smooth);
    }
    .floating-lang a.active { background: var(--color-text); color: var(--color-cream); }
    .floating-lang a:hover:not(.active) { color: var(--color-text); }
    .floating-contact { position: relative; }
    .floating-contact-toggle {
      width: 56px; height: 56px; border-radius: 50%;
      background: var(--color-cream); cursor: pointer;
      border: 2px solid rgba(37, 211, 102, 0.4);
      display: flex; align-items: center; justify-content: center;
      color: #1FAE54; box-shadow: var(--shadow-card);
      transition: var(--transition-smooth); padding: 0;
    }
    .floating-contact-toggle:hover {
      border-color: #25D366; transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(37, 211, 102, 0.25);
    }
    .floating-contact-toggle svg { width: 24px; height: 24px; flex-shrink: 0; }
    .floating-contact[aria-expanded="true"] .floating-contact-toggle {
      border-color: #25D366; background: #25D366; color: white;
    }
    .floating-contact-panel {
      position: absolute; right: 0; bottom: calc(100% + 12px);
      min-width: 240px; padding: 8px;
      background: var(--color-cream); border: 1px solid var(--color-border);
      border-radius: var(--radius-md); box-shadow: var(--shadow-elevated);
      display: flex; flex-direction: column; gap: 4px;
      opacity: 0; transform: translateY(8px) scale(0.95);
      transform-origin: bottom right; pointer-events: none; visibility: hidden;
      transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1),
                  transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
                  visibility 0s linear 0.25s;
    }
    .floating-contact[aria-expanded="true"] .floating-contact-panel {
      opacity: 1; transform: translateY(0) scale(1);
      pointer-events: auto; visibility: visible; transition-delay: 0s;
    }
    .floating-contact-panel a {
      display: flex; align-items: center; gap: 12px; padding: 10px 12px;
      border-radius: var(--radius-sm); text-decoration: none;
      font-size: 0.92rem; font-weight: 700; color: var(--color-text);
      transition: var(--transition-smooth); line-height: 1.2;
    }
    .floating-contact-panel a:hover { background: var(--color-orange-subtle); }
    .floating-contact-panel a .ico {
      width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0;
      display: flex; align-items: center; justify-content: center; color: white;
    }
    .floating-contact-panel a .ico svg { width: 20px; height: 20px; flex-shrink: 0; }
    .floating-contact-panel a.wa .ico { background: #25D366; }
    .floating-contact-panel a.line .ico { background: #06C755; }
    .floating-contact-panel a small {
      display: block; font-weight: 500; color: var(--color-text-muted);
      font-size: 0.76rem; margin-top: 2px;
    }
    @media (max-width: 480px) {
      .partner-floats { right: 14px; bottom: 14px; gap: 10px; }
      .floating-lang { font-size: 0.74rem; padding: 3px; }
      .floating-lang a { padding: 5px 12px; }
      .floating-contact-toggle { width: 52px; height: 52px; }
      .floating-contact-panel { min-width: 220px; }
    }

