/* My Shop — Main Stylesheet
   https://www.myshop.asseminate.com
   © 2025 Asseminate. All rights reserved.
*/

:root {
    --green: #3db54a;
    --green-dark: #2a8e36;
    --green-light: #e8f7ea;
    --navy: #1a2e4a;
    --navy-light: #2d4a6e;
    --orange: #f4a623;
    --white: #ffffff;
    --gray: #f4f8f4;
    --text: #2c3e50;
    --text-light: #6b7c8d;
    --whatsapp: #25d366;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
  }

  .sinhala { font-family: 'Noto Sans Sinhala', sans-serif; font-size: 0.85em; color: var(--text-light); display: block; margin-top: 2px; }

  /* NAV */
  nav {
    position: fixed; top: 0; width: 100%; z-index: 1000;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(61,181,74,0.15);
    padding: 0 5%;
    display: flex; align-items: center; justify-content: space-between;
    height: 68px;
    transition: box-shadow 0.3s;
  }
  nav.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.08); }

  .nav-logo {
    display: flex; align-items: center; gap: 10px;
    font-weight: 800; font-size: 1.3rem; color: var(--navy);
    text-decoration: none;
  }
  .nav-logo span { color: var(--green); }
  .logo-img {
    width: 42px; height: 42px; border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--green);
  }

  .nav-links { display: flex; gap: 30px; list-style: none; }
  .nav-links a {
    text-decoration: none; color: var(--text); font-size: 0.9rem; font-weight: 500;
    transition: color 0.2s; position: relative;
  }
  .nav-links a::after {
    content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px;
    background: var(--green); transition: width 0.3s;
  }
  .nav-links a:hover { color: var(--green); }
  .nav-links a:hover::after { width: 100%; }

  .nav-cta {
    background: var(--green); color: white; padding: 9px 22px; border-radius: 25px;
    text-decoration: none; font-weight: 600; font-size: 0.88rem;
    transition: all 0.2s; box-shadow: 0 4px 12px rgba(61,181,74,0.3);
  }
  .nav-cta:hover { background: var(--green-dark); transform: translateY(-1px); box-shadow: 0 6px 18px rgba(61,181,74,0.4); }

  .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
  .hamburger span { width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: all 0.3s; }

  /* HERO */
  .hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #f0faf1 0%, #e8f7ea 40%, #fef9f0 100%);
    display: flex; align-items: center;
    padding: 100px 5% 60px;
    position: relative; overflow: hidden;
  }

  .hero::before {
    content: '';
    position: absolute; top: -100px; right: -100px;
    width: 600px; height: 600px; border-radius: 50%;
    background: radial-gradient(circle, rgba(61,181,74,0.12) 0%, transparent 70%);
  }
  .hero::after {
    content: '';
    position: absolute; bottom: -80px; left: -80px;
    width: 400px; height: 400px; border-radius: 50%;
    background: radial-gradient(circle, rgba(244,166,35,0.1) 0%, transparent 70%);
  }

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

  .hero-tag {
    display: inline-flex; align-items: center; gap: 8px;
    background: white; border: 1px solid rgba(61,181,74,0.3);
    padding: 6px 16px; border-radius: 25px; font-size: 0.82rem;
    font-weight: 600; color: var(--green); margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(61,181,74,0.1);
    animation: fadeInDown 0.7s ease;
  }
  .hero-tag .dot { width: 7px; height: 7px; background: var(--green); border-radius: 50%; animation: pulse 2s infinite; }

  @keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.3)} }
  @keyframes fadeInDown { from{opacity:0;transform:translateY(-20px)} to{opacity:1;transform:translateY(0)} }
  @keyframes fadeInUp { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }
  @keyframes fadeInLeft { from{opacity:0;transform:translateX(-30px)} to{opacity:1;transform:translateX(0)} }
  @keyframes fadeInRight { from{opacity:0;transform:translateX(30px)} to{opacity:1;transform:translateX(0)} }
  @keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }

  .hero h1 {
    font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 900; line-height: 1.15;
    color: var(--navy); margin-bottom: 12px;
    animation: fadeInLeft 0.8s ease 0.1s both;
  }
  .hero h1 .highlight { color: var(--green); position: relative; }
  .hero h1 .highlight::after {
    content: ''; position: absolute; bottom: 2px; left: 0; width: 100%; height: 4px;
    background: linear-gradient(90deg, var(--green), var(--orange));
    border-radius: 2px;
  }

  .hero-sinhala-h {
    font-family: 'Noto Sans Sinhala', sans-serif;
    font-size: clamp(1rem, 2vw, 1.4rem);
    color: var(--text-light); font-weight: 600; margin-bottom: 20px;
    animation: fadeInLeft 0.8s ease 0.2s both;
  }

  .hero p {
    font-size: 1.05rem; color: var(--text-light); line-height: 1.75;
    margin-bottom: 8px; animation: fadeInLeft 0.8s ease 0.3s both;
  }

  .hero-btns {
    display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px;
    animation: fadeInLeft 0.8s ease 0.4s both;
  }

  .btn-primary {
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: white; padding: 14px 30px; border-radius: 30px;
    text-decoration: none; font-weight: 700; font-size: 0.95rem;
    box-shadow: 0 6px 20px rgba(61,181,74,0.35);
    transition: all 0.3s; display: flex; align-items: center; gap: 8px;
  }
  .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(61,181,74,0.45); }

  .btn-secondary {
    background: white; color: var(--navy); padding: 14px 30px; border-radius: 30px;
    text-decoration: none; font-weight: 700; font-size: 0.95rem;
    border: 2px solid rgba(26,46,74,0.12);
    transition: all 0.3s; display: flex; align-items: center; gap: 8px;
  }
  .btn-secondary:hover { border-color: var(--green); color: var(--green); transform: translateY(-3px); }

  /* PHONE MOCKUP */
  .hero-visual { display: flex; justify-content: center; animation: fadeInRight 0.9s ease 0.2s both; }

  .phone-wrap { position: relative; animation: float 4s ease-in-out infinite; }

  .phone {
    width: 260px; height: 530px; background: #0f1e30;
    border-radius: 40px; padding: 10px 8px;
    box-shadow: 0 30px 80px rgba(26,46,74,0.4), 0 0 0 2px rgba(61,181,74,0.5), inset 0 0 0 2px rgba(255,255,255,0.06);
    position: relative;
  }
  .phone-notch {
    width: 70px; height: 18px; background: #0f1e30;
    border-radius: 0 0 14px 14px;
    position: absolute; top: 10px; left: 50%; transform: translateX(-50%);
    z-index: 2;
  }
  .phone-screen {
    width: 100%; height: 100%; border-radius: 32px; overflow: hidden;
  }
  .phone-screen img {
    width: 100%; height: 100%; object-fit: cover; object-position: top;
    display: block;
  }

  .badge-float {
    position: absolute; background: white; border-radius: 12px; padding: 8px 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12); display: flex; align-items: center; gap: 6px;
    font-size: 0.72rem; font-weight: 700; color: var(--navy);
  }
  .badge-float.orders { top: 30px; right: -50px; border-left: 3px solid var(--whatsapp); }
  .badge-float.views { bottom: 80px; left: -55px; border-left: 3px solid var(--orange); }
  .badge-float .num { font-size: 1.1rem; color: var(--green); }

  /* STATS */
  .stats {
    background: var(--navy);
    padding: 40px 5%;
  }
  .stats-inner {
    max-width: 1000px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  }
  .stat { text-align: center; }
  .stat .num { font-size: 2rem; font-weight: 900; color: var(--green); }
  .stat .label { font-size: 0.85rem; color: rgba(255,255,255,0.7); margin-top: 4px; }
  .stat .sinhala { color: rgba(255,255,255,0.45); font-size: 0.72rem; }

  /* SECTION BASE */
  section { padding: 90px 5%; }
  .section-label {
    display: inline-block; background: var(--green-light); color: var(--green);
    padding: 5px 16px; border-radius: 20px; font-size: 0.8rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1px; margin-bottom: 14px;
  }
  .section-title { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800; color: var(--navy); margin-bottom: 10px; }
  .section-sub { font-size: 1rem; color: var(--text-light); max-width: 560px; line-height: 1.7; }
  .center { text-align: center; }
  .center .section-sub { margin: 0 auto; }

  /* FEATURES */
  .features { background: var(--white); }
  .features-grid {
    max-width: 1200px; margin: 56px auto 0;
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
  }
  .feature-card {
    background: white; border-radius: 20px; padding: 32px 28px;
    border: 1px solid rgba(61,181,74,0.12);
    transition: all 0.3s; position: relative; overflow: hidden;
  }
  .feature-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--green), var(--orange));
    transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
  }
  .feature-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(61,181,74,0.12); }
  .feature-card:hover::before { transform: scaleX(1); }

  .feature-icon {
    width: 56px; height: 56px; border-radius: 16px;
    background: var(--green-light); display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem; margin-bottom: 18px; transition: all 0.3s;
  }
  .feature-card:hover .feature-icon { background: var(--green); transform: scale(1.05); }
  .feature-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
  .feature-card p { font-size: 0.88rem; color: var(--text-light); line-height: 1.65; }

  /* HOW IT WORKS */
  .how { background: var(--gray); }
  .how-inner { max-width: 1100px; margin: 0 auto; }
  .how-tabs {
    display: flex; gap: 8px; margin: 32px 0 36px; justify-content: center; flex-wrap: wrap;
  }
  .how-tab {
    padding: 10px 24px; border-radius: 25px; font-weight: 600; font-size: 0.88rem;
    cursor: pointer; border: 2px solid rgba(61,181,74,0.2);
    transition: all 0.2s; background: white; color: var(--text-light);
  }
  .how-tab.active { background: var(--green); color: white; border-color: var(--green); }

  .how-content { display: none; }
  .how-content.active { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

  .steps { display: flex; flex-direction: column; gap: 24px; }
  .step { display: flex; gap: 16px; align-items: flex-start; }
  .step-num {
    width: 36px; height: 36px; min-width: 36px; border-radius: 50%;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: white; font-weight: 800; font-size: 0.85rem;
    display: flex; align-items: center; justify-content: center;
  }
  .step-body h4 { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
  .step-body p { font-size: 0.85rem; color: var(--text-light); line-height: 1.6; }

  .how-visual {
    background: white; border-radius: 24px; padding: 36px 28px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    display: flex; flex-direction: column; gap: 0;
  }
  .how-visual-header {
    display: flex; align-items: center; gap: 12px; margin-bottom: 24px;
  }
  .how-visual-icon {
    width: 48px; height: 48px; border-radius: 14px; flex-shrink: 0;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    display: flex; align-items: center; justify-content: center; font-size: 1.4rem;
  }
  .how-visual-title { font-size: 1.1rem; font-weight: 800; color: var(--navy); }
  .how-visual-title .sinhala { font-size: 0.75rem; color: var(--text-light); }
  .how-visual-flow {
    display: flex; align-items: center; justify-content: center;
    gap: 8px; margin-bottom: 20px; flex-wrap: wrap;
  }
  .flow-step {
    display: flex; flex-direction: column; align-items: center; gap: 6px;
  }
  .flow-step .flow-icon {
    width: 52px; height: 52px; border-radius: 16px;
    background: var(--green-light); border: 2px solid rgba(61,181,74,0.2);
    display: flex; align-items: center; justify-content: center; font-size: 1.3rem;
  }
  .flow-step .flow-label {
    font-size: 0.62rem; font-weight: 600; color: var(--text-light);
    text-align: center; max-width: 60px; line-height: 1.3;
  }
  .flow-arrow { color: var(--green); font-size: 1rem; font-weight: 900; margin-top: -14px; }
  .how-visual-desc {
    background: var(--green-light); border-radius: 14px; padding: 14px 16px;
    font-size: 0.85rem; color: var(--text); line-height: 1.65;
    border-left: 3px solid var(--green);
  }
  .how-visual-desc .sinhala { color: var(--text-light); font-size: 0.78rem; margin-top: 4px; }

  /* PRICING */
  .pricing { background: var(--white); }
  .pricing-grid {
    max-width: 1100px; margin: 56px auto 0;
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start;
  }
  .pricing-card {
    border-radius: 24px; padding: 36px 28px;
    border: 2px solid rgba(61,181,74,0.15);
    background: white; transition: all 0.3s; position: relative; overflow: hidden;
  }
  .pricing-card.popular {
    border-color: var(--green);
    box-shadow: 0 20px 60px rgba(61,181,74,0.18);
    transform: scale(1.04);
  }
  .pricing-card:hover { box-shadow: 0 20px 50px rgba(61,181,74,0.15); transform: translateY(-5px); }
  .pricing-card.popular:hover { transform: scale(1.04) translateY(-5px); }

  .popular-badge {
    position: absolute; top: 18px; right: 18px;
    background: linear-gradient(135deg, var(--green), var(--orange));
    color: white; font-size: 0.72rem; font-weight: 700;
    padding: 4px 12px; border-radius: 20px;
  }
  .plan-icon { font-size: 2rem; margin-bottom: 14px; }
  .plan-name { font-size: 1.15rem; font-weight: 800; color: var(--navy); }
  .plan-name .sinhala { font-size: 0.72rem; }
  .plan-price {
    margin: 20px 0 6px;
    font-size: 2.4rem; font-weight: 900; color: var(--navy);
    display: flex; align-items: baseline; gap: 6px;
  }
  .plan-price .currency { font-size: 1rem; font-weight: 600; color: var(--text-light); }
  .plan-price .period { font-size: 0.85rem; font-weight: 500; color: var(--text-light); }
  .plan-desc { font-size: 0.82rem; color: var(--text-light); margin-bottom: 24px; }

  .plan-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
  .plan-features li {
    display: flex; align-items: flex-start; gap: 8px;
    font-size: 0.85rem; color: var(--text);
  }
  .plan-features li .check { color: var(--green); font-size: 0.9rem; margin-top: 1px; flex-shrink: 0; }
  .plan-features li .cross { color: #ccc; font-size: 0.9rem; margin-top: 1px; flex-shrink: 0; }

  .btn-plan {
    width: 100%; padding: 13px; border-radius: 25px; font-weight: 700; font-size: 0.9rem;
    text-align: center; text-decoration: none; display: block; transition: all 0.2s;
    border: 2px solid var(--green);
  }
  .btn-plan.solid { background: var(--green); color: white; }
  .btn-plan.solid:hover { background: var(--green-dark); }
  .btn-plan.outline { color: var(--green); }
  .btn-plan.outline:hover { background: var(--green-light); }

  /* TESTIMONIALS */
  .testimonials { background: var(--navy); }
  .testimonials .section-title { color: white; }
  .testimonials .section-sub { color: rgba(255,255,255,0.6); }
  .testimonials .section-label { background: rgba(61,181,74,0.2); }

  .testi-grid {
    max-width: 1100px; margin: 56px auto 0;
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  }
  .testi-card {
    background: rgba(255,255,255,0.06); border-radius: 20px; padding: 28px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s;
  }
  .testi-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-4px); }
  .stars { color: var(--orange); font-size: 0.9rem; margin-bottom: 14px; }
  .testi-text { font-size: 0.9rem; color: rgba(255,255,255,0.8); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
  .testi-text .sinhala { color: rgba(255,255,255,0.5); }
  .testi-author { display: flex; align-items: center; gap: 12px; }
  .testi-avatar {
    width: 40px; height: 40px; border-radius: 50%; font-size: 1.2rem;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
  }
  .testi-name { font-size: 0.88rem; font-weight: 700; color: white; }
  .testi-shop { font-size: 0.75rem; color: var(--green); }

  /* CONTACT / CTA */
  .cta-section {
    background: linear-gradient(135deg, var(--green-light) 0%, #fef9f0 100%);
    text-align: center; padding: 100px 5%;
    position: relative; overflow: hidden;
  }
  .cta-section::before {
    content: '';
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 700px; height: 700px; border-radius: 50%;
    background: radial-gradient(circle, rgba(61,181,74,0.08) 0%, transparent 70%);
    pointer-events: none;
  }
  .cta-inner {
    position: relative; z-index: 1;
    display: flex; flex-direction: column; align-items: center;
    max-width: 760px; margin: 0 auto;
  }
  .cta-section .section-label { margin-bottom: 16px; }
  .cta-section .section-title { font-size: clamp(1.8rem, 3.5vw, 2.8rem); width: 100%; margin: 0 0 16px; }
  .cta-section .section-sub { text-align: center; margin: 0 0 12px; max-width: 560px; }
  .cta-sinhala {
    font-family: 'Noto Sans Sinhala', sans-serif;
    font-size: 0.9rem; color: var(--text-light); text-align: center;
    margin-bottom: 36px; line-height: 1.7;
  }
  .cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 0; }

  .btn-wa {
    background: var(--whatsapp); color: white; padding: 14px 32px; border-radius: 30px;
    text-decoration: none; font-weight: 700; font-size: 0.95rem;
    display: flex; align-items: center; gap: 8px;
    box-shadow: 0 6px 20px rgba(37,211,102,0.35);
    transition: all 0.3s;
  }
  .btn-wa:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(37,211,102,0.45); }

  .contact-info {
    width: 100%; max-width: 800px; margin: 48px auto 0;
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  }
  .contact-info .contact-item:nth-child(4) { grid-column: 1; }
  .contact-info .contact-item:nth-child(4),
  .contact-info .contact-item:nth-child(5) {
    grid-column: auto;
  }
  /* Center last 2 items in row */
  .contact-info-row2 {
    grid-column: 1 / -1; display: flex; justify-content: center; gap: 16px;
  }
  .contact-item {
    background: white; border-radius: 18px; padding: 22px 16px;
    box-shadow: 0 4px 20px rgba(61,181,74,0.08);
    border: 1px solid rgba(61,181,74,0.12);
    text-align: center; transition: all 0.25s;
  }
  .contact-item:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(61,181,74,0.15); }
  .contact-row2 { grid-column: 1 / -1; display: flex; justify-content: center; gap: 16px; }
  .contact-row2 .contact-item { width: 220px; flex-shrink: 0; }
  .contact-item .icon { font-size: 1.6rem; margin-bottom: 10px; display: block; }
  .contact-item .label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1.2px; color: var(--text-light); font-weight: 700; }
  .contact-item .value { font-size: 0.88rem; font-weight: 700; color: var(--navy); margin-top: 6px; word-break: break-word; }

  /* FOOTER */
  footer {
    background: #0f1e30; color: rgba(255,255,255,0.6);
    padding: 50px 5% 30px;
  }
  .footer-inner { max-width: 1100px; margin: 0 auto; }
  .footer-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; margin-bottom: 40px; flex-wrap: wrap; }
  .footer-brand .name { font-size: 1.4rem; font-weight: 800; color: white; margin-bottom: 8px; }
  .footer-brand .name span { color: var(--green); }
  .footer-brand p { font-size: 0.85rem; line-height: 1.7; max-width: 280px; }
  .footer-links h4 { color: white; font-size: 0.9rem; font-weight: 700; margin-bottom: 14px; }
  .footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
  .footer-links a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
  .footer-links a:hover { color: var(--green); }
  .footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
  .footer-bottom p { font-size: 0.8rem; }
  .footer-bottom .love { color: var(--green); }

  /* MOBILE NAV */
  .mobile-menu {
    display: none; position: fixed; top: 68px; left: 0; right: 0;
    background: white; padding: 20px 5%; box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    z-index: 999; flex-direction: column; gap: 16px;
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a { color: var(--navy); text-decoration: none; font-weight: 500; font-size: 1rem; padding: 8px 0; border-bottom: 1px solid rgba(0,0,0,0.05); }

  /* RESPONSIVE */
  @media (max-width: 900px) {
    .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .hero-visual { display: flex; justify-content: center; }
    .hero-btns { justify-content: center; }
    .phone { width: 210px; height: 430px; }
    .badge-float.orders { top: 20px; right: -38px; font-size: 0.66rem; padding: 6px 8px; }
    .badge-float.views { bottom: 60px; left: -38px; font-size: 0.66rem; padding: 6px 8px; }
    .badge-float .num { font-size: 0.95rem; }
    .features-grid { grid-template-columns: 1fr 1fr; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
    .pricing-card.popular { transform: scale(1); }
    .testi-grid { grid-template-columns: 1fr; }
    .how-content.active { grid-template-columns: 1fr; gap: 30px; }
    .how-visual { padding: 24px 20px; }
    .how-visual-flow { gap: 6px; }
    .flow-step .flow-icon { width: 44px; height: 44px; font-size: 1.1rem; }
    .flow-step .flow-label { font-size: 0.58rem; max-width: 52px; }
    .flow-arrow { font-size: 0.85rem; }
    .stats-inner { grid-template-columns: repeat(2, 1fr); }
    .contact-info { grid-template-columns: 1fr 1fr; max-width: 100%; }
    .contact-row2 { flex-direction: column; align-items: center; }
    .contact-row2 .contact-item { width: 100%; }
    .nav-links, .nav-cta { display: none; }
    .hamburger { display: flex; }
    .footer-top { flex-direction: column; }
    .footer-bottom { flex-direction: column; text-align: center; }
  }
  @media (max-width: 480px) {
    .phone { width: 180px; height: 370px; border-radius: 32px; padding: 8px 6px; }
    .phone-screen { border-radius: 26px; }
    .phone-notch { width: 55px; height: 14px; border-radius: 0 0 10px 10px; }
    .badge-float.orders { right: -28px; }
    .badge-float.views { left: -28px; }
  }
  @media (max-width: 600px) {
    .features-grid { grid-template-columns: 1fr; }
    section { padding: 60px 5%; }
  }

  /* SCROLL ANIMATIONS */
  .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  /* OUR CLIENTS */
  .clients { background: var(--gray); padding: 80px 5%; overflow: hidden; }
  .clients-inner { max-width: 1100px; margin: 0 auto; }
  .clients-track-wrap {
    position: relative; margin-top: 50px; overflow: hidden; padding: 12px 0 16px;
  }
  .clients-track-wrap::before,
  .clients-track-wrap::after {
    content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2; pointer-events: none;
  }
  .clients-track-wrap::before { left: 0; background: linear-gradient(to right, var(--gray) 30%, transparent); }
  .clients-track-wrap::after  { right: 0; background: linear-gradient(to left, var(--gray) 30%, transparent); }

  .clients-track {
    display: flex; gap: 20px; width: max-content;
    animation: scrollClients 32s linear infinite;
    align-items: stretch;
  }
  .clients-track:hover { animation-play-state: paused; }

  @keyframes scrollClients {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  .client-card {
    flex-shrink: 0; width: 160px;
    background: white; border-radius: 20px;
    border: 1.5px solid rgba(61,181,74,0.12);
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    display: flex; flex-direction: column; align-items: center;
    padding: 18px 14px 14px; text-decoration: none;
    transition: all 0.28s; position: relative; overflow: hidden;
    cursor: pointer; gap: 10px;
  }
  .client-card::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--green), var(--orange));
    transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
    border-radius: 0 0 20px 20px;
  }
  .client-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(61,181,74,0.18);
    border-color: rgba(61,181,74,0.4);
  }
  .client-card:hover::after { transform: scaleX(1); }

  /* 1:1 square logo */
  .client-logo {
    width: 100%; aspect-ratio: 1 / 1;
    border-radius: 14px; overflow: hidden;
    background: var(--green-light);
    display: flex; align-items: center; justify-content: center;
    border: 1px solid rgba(61,181,74,0.15);
    flex-shrink: 0;
  }
  .client-logo img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center;
    display: block;
  }
  /* Fallback initials when no image */
  .client-logo .logo-initials {
    font-size: 1.6rem; font-weight: 900;
    color: var(--green); line-height: 1;
    font-family: 'Poppins', sans-serif;
    user-select: none;
  }
  .client-info { width: 100%; text-align: center; }
  .client-name {
    font-size: 0.78rem; font-weight: 700; color: var(--navy);
    line-height: 1.35; margin-bottom: 3px;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  }
  .client-type {
    font-size: 0.65rem; color: var(--text-light); font-weight: 500;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  }

  @media (max-width: 480px) {
    .clients-track { animation-duration: 22s; gap: 14px; }
    .client-card { width: 130px; padding: 14px 10px 12px; border-radius: 16px; }
    .clients-track-wrap::before,
    .clients-track-wrap::after { width: 60px; }
  }