  /* ========================================
     CSS RESET & BASE
     ======================================== */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  
  :root {
    --ivory: #f8f4ec;
    --ivory-warm: #f1ead9;
    --cream: #ede4cf;
    --ink: #1a1612;
    --ink-soft: #2a241c;
    --emerald: #0f4c3a;
    --emerald-deep: #0a3528;
    --emerald-bright: #1d6b54;
    --saffron: #d97706;
    --saffron-bright: #f59e0b;
    --saffron-deep: #b45309;
    --terracotta: #c2410c;
    --pomegranate: #9f1239;
    --gold: #ca8a04;
    --line: rgba(26, 22, 18, 0.12);
    --shadow-warm: 0 30px 60px -20px rgba(180, 83, 9, 0.25);
    --shadow-deep: 0 30px 60px -20px rgba(15, 76, 58, 0.35);
  }

  html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
  
  body {
    font-family: 'Vazirmatn', 'Fraunces', sans-serif;
    background: var(--ivory);
    color: var(--ink);
    overflow-x: hidden;
    line-height: 1.6;
    font-feature-settings: 'ss01', 'ss02';
  }
  
  /* English text uses Fraunces */
  .en {
    font-family: 'Fraunces', serif;
    direction: ltr;
    display: inline-block;
    font-feature-settings: 'ss01', 'liga';
  }
  
  .mono {
    font-family: 'Geist Mono', monospace;
    direction: ltr;
    display: inline-block;
  }

  img { max-width: 100%; display: block; }
  button { font-family: inherit; cursor: pointer; border: none; background: none; }
  a { color: inherit; text-decoration: none; }

  ::selection { background: var(--saffron); color: var(--ivory); }


  /* ========================================
     GRAIN OVERLAY
     ======================================== */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    opacity: 0.4;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.4 0 0 0 0 0.3 0 0 0 0 0.2 0 0 0 0.4 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    mix-blend-mode: multiply;
  }

  /* ========================================
     NAVIGATION
     ======================================== */
  nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    backdrop-filter: blur(12px);
    background: rgba(248, 244, 236, 0.8);
    border-bottom: 1px solid transparent;
    transition: all 0.4s ease;
  }

  nav.scrolled {
    border-bottom-color: var(--line);
    padding: 14px 40px;
  }

 .logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 10px; /* Space between logo and text */
}

  .logo-mark {
  width: 50px;  /* Adjust size as needed */
  height: 50px; /* Adjust size as needed */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden; /* Ensures the image doesn't bleed out */
  border-radius: 50%; /* Keeps it circular if desired */
}

.logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* This prevents the photo from stretching */
}

  .logo:hover .logo-mark {
    transform: rotate(5deg) scale(1.1);
  }

  .nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
    font-size: 0.92rem;
    font-weight: 500;
  }

  .nav-links a {
    position: relative;
    transition: color 0.3s;
  }

  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--saffron);
    transition: width 0.3s ease;
  }

  .nav-links a:hover::after { width: 100%; }
  .nav-links a:hover { color: var(--saffron-deep); }

  .nav-cta {
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .lang-toggle {
    padding: 6px 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s;
  }

  .lang-toggle:hover {
    background: var(--ink);
    color: var(--ivory);
    border-color: var(--ink);
  }

  .btn-primary {
    padding: 11px 22px;
    background: var(--ink);
    color: var(--ivory);
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
  }

  .btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--saffron);
    transform: translateY(101%);
    transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
    z-index: 0;
  }

  .btn-primary span {
    position: relative;
    z-index: 1;
  }

  .btn-primary:hover::before { transform: translateY(0); }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-warm); }

  /* ========================================
     HERO
     ======================================== */
  .hero {
    min-height: 100vh;
    padding: 140px 40px 80px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
  }

  /* Decorative gradient mesh blobs */
  .blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    z-index: 0;
    animation: blob-float 20s ease-in-out infinite;
  }

  .blob-1 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, var(--saffron) 0%, transparent 70%);
    top: -200px; right: -100px;
  }

  .blob-2 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, var(--emerald) 0%, transparent 70%);
    bottom: -300px; left: -200px;
    animation-delay: -10s;
  }

  .blob-3 {
    width: 300px; height: 300px;
    background: radial-gradient(circle, var(--pomegranate) 0%, transparent 70%);
    top: 30%; left: 30%;
    animation-delay: -5s;
    opacity: 0.25;
  }

  @keyframes blob-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(40px, -30px) scale(1.1); }
    66% { transform: translate(-30px, 30px) scale(0.95); }
  }

  /* Decorative Persian-inspired pattern */
  .hero-pattern {
    position: absolute;
    top: 50%;
    right: 5%;
    width: 200px;
    height: 200px;
    transform: translateY(-50%);
    opacity: 0.08;
    z-index: 1;
    pointer-events: none;
    animation: spin-slow 40s linear infinite;
  }

  @keyframes spin-slow {
    from { transform: translateY(-50%) rotate(0deg); }
    to { transform: translateY(-50%) rotate(360deg); }
  }

  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(15, 76, 58, 0.08);
    border: 1px solid rgba(15, 76, 58, 0.2);
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--emerald-deep);
    margin-bottom: 28px;
    opacity: 0;
    animation: slide-up 0.8s ease-out forwards;
  }

  .hero-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--emerald-bright);
    border-radius: 50%;
    animation: pulse 2s infinite;
  }

  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
  }

  .hero h1 {
    font-size: clamp(2.5rem, 6vw, 5.5rem);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
  }

  .hero h1 .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(40px);
    animation: word-reveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }

  .hero h1 .word:nth-child(1) { animation-delay: 0.2s; }
  .hero h1 .word:nth-child(2) { animation-delay: 0.3s; }
  .hero h1 .word:nth-child(3) { animation-delay: 0.4s; }
  .hero h1 .word:nth-child(4) { animation-delay: 0.5s; }
  .hero h1 .word:nth-child(5) { animation-delay: 0.6s; }

  @keyframes word-reveal {
    to { opacity: 1; transform: translateY(0); }
  }

  .accent-text {
    background: linear-gradient(135deg, var(--saffron) 0%, var(--terracotta) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 700;
  }

  .hero-sub {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--ink-soft);
    max-width: 580px;
    margin-bottom: 40px;
    opacity: 0;
    animation: slide-up 0.8s ease-out 0.7s forwards;
  }

  @keyframes slide-up {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .hero-cta {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: slide-up 0.8s ease-out 0.9s forwards;
  }

  .btn-large {
    padding: 16px 32px;
    font-size: 1rem;
  }

  .btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 24px;
    font-weight: 600;
    color: var(--ink);
    transition: all 0.3s;
  }

  .btn-ghost:hover { color: var(--saffron-deep); gap: 14px; }

  .btn-ghost .arrow {
    width: 36px;
    height: 36px;
    border: 1.5px solid var(--ink);
    border-radius: 50%;
    display: grid;
    place-items: center;
    transition: all 0.3s;
  }

  .btn-ghost:hover .arrow {
    background: var(--ink);
    color: var(--ivory);
    transform: rotate(-45deg);
  }

  .hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--line);
    opacity: 0;
    animation: slide-up 0.8s ease-out 1.1s forwards;
  }

  .stat-item .stat-value {
    font-family: 'Fraunces', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--ink);
    line-height: 1;
    margin-bottom: 6px;
  }

  .stat-item .stat-label {
    font-size: 0.85rem;
    color: var(--ink-soft);
    opacity: 0.8;
  }

  /* Hero visual: stylized POS mockup */
  .hero-visual {
    position: relative;
    height: 520px;
    opacity: 0;
    animation: fade-in 1.2s ease-out 0.6s forwards;
  }

  @keyframes fade-in {
    to { opacity: 1; }
  }

  .device {
    position: absolute;
    background: var(--ink);
    border-radius: 24px;
    padding: 14px;
    box-shadow: 0 40px 80px -20px rgba(26, 22, 18, 0.4);
  }

  .device-screen {
    background: var(--ivory);
    border-radius: 14px;
    overflow: hidden;
    height: 100%;
  }

  .device-1 {
    width: 480px;
    height: 320px;
    top: 40px;
    right: 0;
    transform: perspective(1000px) rotateY(-8deg) rotateX(4deg);
    animation: float-1 6s ease-in-out infinite;
    z-index: 2;
  }

  .device-2 {
    width: 220px;
    height: 360px;
    top: 140px;
    right: -60px;
    transform: perspective(1000px) rotateY(15deg);
    animation: float-2 7s ease-in-out infinite;
    z-index: 3;
  }

  @keyframes float-1 {
    0%, 100% { transform: perspective(1000px) rotateY(-8deg) rotateX(4deg) translateY(0); }
    50% { transform: perspective(1000px) rotateY(-8deg) rotateX(4deg) translateY(-15px); }
  }

  @keyframes float-2 {
    0%, 100% { transform: perspective(1000px) rotateY(15deg) translateY(0); }
    50% { transform: perspective(1000px) rotateY(15deg) translateY(-20px); }
  }

  /* Mock POS interior */
  .mock-header {
    padding: 12px 16px;
    background: var(--ink);
    color: var(--ivory);
    font-size: 0.7rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .tables-photo {
  width: 100%;       
  height: auto;      
  display: block;    
  border-radius: 4px;
}

  .mock-table.available { background: rgba(29, 107, 84, 0.15); color: var(--emerald-deep); }
  .mock-table.occupied { background: rgba(217, 119, 6, 0.15); color: var(--saffron-deep); }
  .mock-table.reserved { background: rgba(159, 18, 57, 0.15); color: var(--pomegranate); }

  .order-photo {
  width: 100%;       
  height: auto;      
  display: block;    
  border-radius: 4px;
}

  /* Floating notification */
  .floating-card {
    position: absolute;
    background: var(--ivory);
    padding: 14px 18px;
    border-radius: 14px;
    box-shadow: var(--shadow-warm);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 4;
    border: 1px solid var(--line);
  }

  .floating-card-1 {
    top: 0;
    left: 20px;
    animation: float-card 5s ease-in-out infinite;
  }

  .floating-card-2 {
    bottom: 30px;
    left: 60px;
    animation: float-card 5s ease-in-out infinite 2s;
  }

  @keyframes float-card {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
  }

  .fc-icon {
    width: 36px;
    height: 36px;
    background: var(--emerald);
    color: var(--ivory);
    border-radius: 10px;
    display: grid;
    place-items: center;
    font-size: 1.1rem;
  }

  .floating-card-2 .fc-icon { background: var(--saffron); }

  .fc-text { font-size: 0.78rem; }
  .fc-text strong { display: block; font-weight: 700; }
  .fc-text span { color: var(--ink-soft); opacity: 0.7; font-size: 0.7rem; }

  /* ========================================
     MARQUEE / TRUST
     ======================================== */
  .marquee-section {
    padding: 30px 0;
    background: var(--ink);
    color: var(--ivory);
    overflow: hidden;
    position: relative;
    border-top: 1px solid rgba(248, 244, 236, 0.1);
    border-bottom: 1px solid rgba(248, 244, 236, 0.1);
  }

  .marquee-track {
    display: flex;
    gap: 60px;
    animation: scroll-x 30s linear infinite;
    white-space: nowrap;
    width: max-content;
  }

  @keyframes scroll-x {
    from { transform: translateX(0); }
    to { transform: translateX(50%); }
  }

  .marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 1.4rem;
    font-weight: 500;
  }

  .marquee-item .dot {
    width: 8px; height: 8px;
    background: var(--saffron-bright);
    border-radius: 50%;
  }

  /* ========================================
     SECTION COMMON
     ======================================== */
  section {
    position: relative;
    z-index: 2;
  }

  .section-pad {
    padding: 120px 40px;
    max-width: 1400px;
    margin: 0 auto;
  }

  .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--saffron-deep);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
  }

  .eyebrow::before {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--saffron-deep);
  }

  .section-title {
    font-size: clamp(2rem, 4.5vw, 3.8rem);
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    max-width: 800px;
  }

  .section-sub {
    font-size: 1.1rem;
    color: var(--ink-soft);
    max-width: 640px;
    line-height: 1.7;
  }

  /* Reveal-on-scroll */
  .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s ease-out, transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* ========================================
     FEATURES BENTO GRID
     ======================================== */
  .features {
    background: var(--ivory-warm);
    position: relative;
  }

  .bento {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(220px, auto);
    gap: 20px;
    margin-top: 70px;
  }

  .bento-card {
    background: var(--ivory);
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: default;
  }

  .bento-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--saffron) 0%, var(--terracotta) 100%);
    opacity: 0;
    transition: opacity 0.5s;
    z-index: 0;
  }

  .bento-card > * { position: relative; z-index: 1; transition: color 0.5s; }

  .bento-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-warm);
  }

  .bento-card.feat-primary {
    grid-column: span 2;
    grid-row: span 2;
    background: var(--ink);
    color: var(--ivory);
    border-color: transparent;
  }

  .bento-card.feat-emerald {
    grid-column: span 2;
    background: var(--emerald);
    color: var(--ivory);
    border-color: transparent;
  }

  .bento-card.feat-saffron {
    background: var(--saffron);
    color: var(--ivory);
    border-color: transparent;
  }

  .bento-card.feat-saffron::before { display: none; }
  .bento-card.feat-primary::before { display: none; }
  .bento-card.feat-emerald::before { display: none; }

  .bento-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(217, 119, 6, 0.1);
    color: var(--saffron-deep);
    display: grid;
    place-items: center;
    margin-bottom: 24px;
    transition: all 0.4s;
  }

  .bento-card.feat-primary .bento-icon {
    background: rgba(245, 158, 11, 0.15);
    color: var(--saffron-bright);
  }

  .bento-card.feat-emerald .bento-icon,
  .bento-card.feat-saffron .bento-icon {
    background: rgba(248, 244, 236, 0.15);
    color: var(--ivory);
  }

  .bento-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
  }

  .bento-card.feat-primary h3 {
    font-size: 2rem;
    margin-bottom: 16px;
  }

  .bento-card p {
    color: var(--ink-soft);
    line-height: 1.7;
    font-size: 0.95rem;
  }

  .bento-card.feat-primary p,
  .bento-card.feat-emerald p,
  .bento-card.feat-saffron p {
    color: rgba(248, 244, 236, 0.85);
  }

  .bento-card svg { display: block; }

  /* Decorative element in primary feature */
  .bento-deco {
    position: absolute;
    top: -40px;
    left: -40px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--saffron-bright) 0%, transparent 70%);
    opacity: 0.3;
    border-radius: 50%;
    z-index: 0;
    animation: blob-float 15s ease-in-out infinite;
  }

  /* ========================================
     MODULES SECTION
     ======================================== */
  .modules {
    background: var(--ivory);
  }

  .modules-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    margin-top: 70px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: 24px;
    overflow: hidden;
  }

  .module-card {
    background: var(--ivory);
    padding: 40px 32px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    cursor: default;
  }

  .module-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 3px;
    background: var(--saffron);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s ease;
  }

  .module-card:hover {
    background: var(--ivory-warm);
  }

  .module-card:hover::before {
    transform: scaleX(1);
  }

  .module-num {
    font-family: 'Fraunces', serif;
    font-size: 0.95rem;
    color: var(--saffron-deep);
    font-weight: 600;
    margin-bottom: 16px;
    display: inline-block;
    direction: ltr;
  }

  .module-card h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.3;
  }

  .module-card .module-en {
    font-family: 'Fraunces', serif;
    font-size: 0.95rem;
    color: var(--ink-soft);
    opacity: 0.7;
    margin-bottom: 16px;
    direction: ltr;
    display: block;
    font-style: italic;
  }

  .module-card p {
    font-size: 0.9rem;
    color: var(--ink-soft);
    line-height: 1.7;
  }

  .module-icon-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
  }

  .module-icon {
    width: 44px;
    height: 44px;
    background: rgba(217, 119, 6, 0.1);
    color: var(--saffron-deep);
    border-radius: 12px;
    display: grid;
    place-items: center;
    transition: all 0.4s;
  }

  .module-card:hover .module-icon {
    background: var(--saffron);
    color: var(--ivory);
    transform: rotate(-8deg);
  }

  /* ========================================
     SHOWCASE / SCREENSHOTS
     ======================================== */
  .showcase {
    background: var(--ink);
    color: var(--ivory);
    overflow: hidden;
  }

  .showcase .eyebrow {
    color: var(--saffron-bright);
  }

  .showcase .eyebrow::before { background: var(--saffron-bright); }

  .showcase .section-sub {
    color: rgba(248, 244, 236, 0.7);
  }

  .showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 70px;
  }

  .showcase-card {
    background: rgba(248, 244, 236, 0.04);
    border: 1px solid rgba(248, 244, 236, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s;
    position: relative;
  }

  .showcase-card:hover {
    transform: translateY(-6px);
    border-color: var(--saffron-bright);
  }

  .showcase-img {
    aspect-ratio: 16/10;
    position: relative;
    overflow: hidden;
    background: var(--ivory);
    display: grid;
    place-items: center;
    color: var(--ink);
  }

  .showcase-info {
    padding: 24px 28px;
  }

  .showcase-info h4 {
    font-size: 1.2rem;
    margin-bottom: 6px;
    font-weight: 700;
  }

  .showcase-info p {
    color: rgba(248, 244, 236, 0.6);
    font-size: 0.9rem;
  }

  /* Mock screenshots inside cards */
  .mock-dashboard {
    width: 100%;
    height: 100%;
    background: var(--ivory);
    padding: 20px;
    position: relative;
  }

  .mock-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 14px;
  }

  .mock-stat {
    padding: 14px;
    background: var(--ivory-warm);
    border-radius: 8px;
  }

  .mock-stat-num {
    font-family: 'Fraunces', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--ink);
  }

  .mock-stat-label {
    font-size: 0.65rem;
    color: var(--ink-soft);
    opacity: 0.7;
  }

  .mock-chart {
    height: 80px;
    background: linear-gradient(180deg, transparent 0%, rgba(217, 119, 6, 0.2) 100%);
    border-radius: 8px;
    position: relative;
    border-bottom: 2px solid var(--saffron);
    overflow: hidden;
  }

  .mock-chart::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 300 80' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none'%3E%3Cpath d='M0 60 Q 30 30 60 40 T 120 35 T 180 25 T 240 30 T 300 15 L300 80 L0 80 Z' fill='%23d97706' opacity='0.3'/%3E%3Cpath d='M0 60 Q 30 30 60 40 T 120 35 T 180 25 T 240 30 T 300 15' stroke='%23d97706' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  }

  /* Kanban mock */
.showcase-img {
  width: 100%;
  height: 250px; /* Adjust height to match your other cards */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f0f0f0; /* Fallback color while image loads */
}
  .showcase-photo {
  width: 100%;
  height: 100%;
  /* This is the key property to keep the photo looking professional */
  object-fit: cover; 
  object-position: center;
  display: block;
}

  /* QR menu mock */
  .mock-qr {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--emerald) 0%, var(--emerald-deep) 100%);
    padding: 20px;
    display: grid;
    place-items: center;
    color: var(--ivory);
  }

  .mock-qr-card {
    background: var(--ivory);
    color: var(--ink);
    border-radius: 14px;
    padding: 18px;
    width: 65%;
    text-align: center;
  }

  .mock-qr-code {
    width: 90px;
    height: 90px;
    background: 
      linear-gradient(45deg, var(--ink) 25%, transparent 25%),
      linear-gradient(-45deg, var(--ink) 25%, transparent 25%),
      linear-gradient(45deg, transparent 75%, var(--ink) 75%),
      linear-gradient(-45deg, transparent 75%, var(--ink) 75%);
    background-size: 12px 12px;
    background-position: 0 0, 0 6px, 6px -6px, -6px 0px;
    margin: 0 auto 10px;
    border-radius: 6px;
  }

  /* Tables mock */
  .mock-tables-full {
    width: 100%;
    height: 100%;
    background: var(--ivory);
    padding: 20px;
  }

.showcase-img {
  width: 100%;
  height: 300px; /* Adjust height to match your design */
  background: #f4f4f4; /* Fallback color while image loads */
  overflow: hidden;
}

.showcase-photo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover; /* This prevents the image from stretching */
  object-position: center; /* Keeps the middle of the photo visible */
  transition: transform 0.5s ease;
}

  /* ========================================
     PRICING
     ======================================== */
  .pricing {
    background: var(--ivory-warm);
    position: relative;
    overflow: hidden;
  }

  .pricing::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--saffron) 0%, transparent 70%);
    opacity: 0.06;
    border-radius: 50%;
    pointer-events: none;
  }

  .pricing-header {
    text-align: center;
    margin-bottom: 70px;
  }

  .pricing-header .eyebrow {
    justify-content: center;
  }

  .pricing-header .section-title {
    margin-left: auto;
    margin-right: auto;
  }

  .pricing-header .section-sub {
    margin-left: auto;
    margin-right: auto;
  }

  .billing-toggle {
    display: inline-flex;
    background: var(--ivory);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 4px;
    margin-top: 30px;
  }

  .billing-toggle button {
    padding: 10px 22px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--ink-soft);
    transition: all 0.3s;
  }

  .billing-toggle button.active {
    background: var(--ink);
    color: var(--ivory);
  }

  .savings-badge {
    background: var(--saffron);
    color: var(--ivory);
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 999px;
    margin-right: 6px;
    font-weight: 700;
  }

  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
  }

  .price-card {
    background: var(--ivory);
    border: 1px solid var(--line);
    border-radius: 28px;
    padding: 40px 32px;
    position: relative;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
  }

  .price-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px -20px rgba(26, 22, 18, 0.15);
  }

  .price-card.featured {
    background: var(--ink);
    color: var(--ivory);
    border-color: var(--ink);
    transform: scale(1.04);
    box-shadow: var(--shadow-warm);
  }

  .price-card.featured:hover {
    transform: scale(1.04) translateY(-8px);
  }

  .featured-tag {
    position: absolute;
    top: 24px;
    left: 24px;
    background: var(--saffron);
    color: var(--ivory);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
  }

  .price-card .pkg-name {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
  }

  .price-card .pkg-en {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 0.85rem;
    opacity: 0.6;
    direction: ltr;
    margin-bottom: 24px;
  }

  .price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 8px;
    direction: ltr;
  }

  .price .currency {
    font-family: 'Fraunces', serif;
    font-size: 1.6rem;
    font-weight: 600;
    opacity: 0.7;
  }

  .price .amount {
    font-family: 'Fraunces', serif;
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.03em;
  }

  .price .period {
    font-size: 0.9rem;
    opacity: 0.6;
  }

  .price-card .pkg-desc {
    font-size: 0.9rem;
    opacity: 0.7;
    line-height: 1.6;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--line);
  }

  .price-card.featured .pkg-desc {
    border-bottom-color: rgba(248, 244, 236, 0.15);
  }

  .features-list {
    list-style: none;
    margin-bottom: 32px;
  }

  .features-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 14px;
    font-size: 0.92rem;
    line-height: 1.5;
  }

  .features-list .check {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    background: rgba(15, 76, 58, 0.12);
    color: var(--emerald-bright);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 0.8rem;
    font-weight: 700;
    margin-top: 1px;
  }

  .price-card.featured .features-list .check {
    background: rgba(245, 158, 11, 0.2);
    color: var(--saffron-bright);
  }

  .price-card .btn-primary {
    width: 100%;
    text-align: center;
    padding: 14px;
    justify-content: center;
    display: block;
  }

  .price-card.featured .btn-primary {
    background: var(--saffron);
    color: var(--ivory);
  }

  .price-card.featured .btn-primary::before {
    background: var(--ivory);
  }

  .price-card.featured .btn-primary:hover {
    color: var(--ink);
  }

  .pricing-note {
    text-align: center;
    margin-top: 50px;
    color: var(--ink-soft);
    font-size: 0.9rem;
  }

  /* ========================================
     TECH STACK
     ======================================== */
  .tech-section {
    background: var(--ivory);
    padding: 100px 40px;
    text-align: center;
  }

  .tech-title {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 1rem;
    color: var(--ink-soft);
    margin-bottom: 30px;
    direction: ltr;
  }

  .tech-marquee {
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  }

  .tech-track {
    display: flex;
    gap: 60px;
    animation: scroll-x 25s linear infinite;
    width: max-content;
  }

  .tech-item {
    font-family: 'Fraunces', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--ink);
    opacity: 0.4;
    transition: opacity 0.3s;
    direction: ltr;
    white-space: nowrap;
  }

  .tech-item:hover { opacity: 1; }

  /* ========================================
     CTA SECTION
     ======================================== */
  .cta-section {
    background: var(--emerald-deep);
    color: var(--ivory);
    padding: 120px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top, var(--emerald-bright) 0%, transparent 60%);
    opacity: 0.4;
  }

  .cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
  }

  .cta-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
  }

  .cta-sub {
    font-size: 1.2rem;
    opacity: 0.85;
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  .cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .cta-section .btn-primary {
    background: var(--saffron);
    padding: 16px 32px;
    font-size: 1rem;
  }

  .cta-section .btn-primary::before {
    background: var(--ivory);
  }

  .cta-section .btn-primary:hover {
    color: var(--ink);
  }

  .btn-outline {
    padding: 16px 32px;
    border: 1.5px solid rgba(248, 244, 236, 0.3);
    color: var(--ivory);
    border-radius: 999px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
  }

  .btn-outline:hover {
    background: var(--ivory);
    color: var(--ink);
    border-color: var(--ivory);
  }

  /* ========================================
     FOOTER
     ======================================== */
  footer {
    background: var(--ink);
    color: var(--ivory);
    padding: 80px 40px 30px;
  }

  .footer-grid {
    max-width: 1400px;
    margin: 0 auto 60px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
  }

  .footer-brand .logo-mark {
    background: var(--saffron);
    color: var(--ink);
  }

  .logo {
    display: flex;
    align-items: center;
    gap: 12px; /* Adjust spacing between image and text */
}

.logo-mark {
    width: 50px;  /* Set your desired width */
    height: 50px; /* Set your desired height */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    /* Optional: border-radius: 50%; if you want a circular logo */
}



  .footer-brand p {
    margin-top: 20px;
    color: rgba(248, 244, 236, 0.6);
    line-height: 1.7;
    font-size: 0.95rem;
    max-width: 300px;
  }

  /* Company logo styles */
  .company-block {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid rgba(248, 244, 236, 0.1);
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .company-logo {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    background: var(--ivory);
    padding: 4px;
    flex-shrink: 0;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  }

  .company-logo:hover {
    transform: scale(1.08) rotate(-5deg);
  }

  .company-text {
    font-size: 0.78rem;
    line-height: 1.5;
  }

  .company-text .label {
    color: rgba(248, 244, 236, 0.5);
    margin-bottom: 2px;
    font-size: 0.72rem;
  }

  .company-text .name {
    color: var(--saffron-bright);
    font-weight: 700;
    font-size: 0.9rem;
  }

  .company-text .name-en {
    font-family: 'Fraunces', serif;
    font-style: italic;
    direction: ltr;
    display: block;
    color: rgba(248, 244, 236, 0.6);
    font-size: 0.72rem;
    margin-top: 2px;
  }

  /* Made-by badge below hero */
  .made-by {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px 8px 8px;
    background: rgba(248, 244, 236, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 0.78rem;
    color: var(--ink-soft);
    margin-top: 28px;
    font-weight: 500;
    transition: all 0.3s;
    text-decoration: none;
  }

  .made-by:hover {
    background: var(--ivory);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px -10px rgba(26, 22, 18, 0.15);
  }

  .made-by img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
  }

  .made-by strong {
    color: var(--ink);
    font-weight: 700;
  }

  .footer-col h5 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--saffron-bright);
    margin-bottom: 20px;
    font-weight: 700;
  }

  .footer-col ul { list-style: none; }
  .footer-col li { margin-bottom: 10px; }
  .footer-col a {
    color: rgba(248, 244, 236, 0.7);
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .footer-col a:hover { color: var(--saffron-bright); }

  .footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(248, 244, 236, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: rgba(248, 244, 236, 0.5);
    flex-wrap: wrap;
    gap: 16px;
  }

  /* ========================================
     RESPONSIVE
     ======================================== */
  @media (max-width: 1024px) {
    .hero-content { grid-template-columns: 1fr; }
    .hero-visual { display: none; }
    .bento { grid-template-columns: repeat(2, 1fr); }
    .bento-card.feat-primary { grid-column: span 2; grid-row: auto; }
    .bento-card.feat-emerald { grid-column: span 2; }
    .modules-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: 1fr; max-width: 500px; }
    .price-card.featured { transform: scale(1); }
    .price-card.featured:hover { transform: translateY(-8px); }
    .showcase-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  }

  @media (max-width: 640px) {
    nav { padding: 16px 20px; }
    .nav-links { display: none; }
    .hero { padding: 100px 20px 60px; }
    .section-pad { padding: 80px 20px; }
    .bento { grid-template-columns: 1fr; }
    .bento-card.feat-primary, .bento-card.feat-emerald { grid-column: span 1; }
    .modules-grid { grid-template-columns: 1fr; }
    .hero-stats { gap: 24px; flex-wrap: wrap; }
    .stat-item .stat-value { font-size: 1.8rem; }
    .footer-grid { grid-template-columns: 1fr; }
    .cta-section, .tech-section { padding: 80px 20px; }
  }