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

  :root {
    --orange: #FE5722;
    --dark: #1A1A1A;
    --gray: #6B7280;
    --light-gray: #9CA3AF;
    --bg: #F5F5F7;
    --white: #FFFFFF;
    --font: 'Plus Jakarta Sans', sans-serif;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--font);
    background: var(--white);
    color: var(--dark);
    -webkit-font-smoothing: antialiased;
  }

  /* ── NAV ── */
  #main-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 32px;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(8px);
    transition: box-shadow 0.2s;
  }
  #main-nav.scrolled {
    box-shadow: 0 1px 0 rgba(0,0,0,0.08);
  }
  .nav-logo { height: 32px; }
  .mobile-logo { display: none; }
  .nav-cta {
    background: var(--orange);
    color: #fff;
    font-family: var(--font);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    transition: opacity 0.15s;
  }
  .nav-cta:hover { opacity: 0.88; }

  /* ── HERO ── */
 
  .hero h1 .highlight {
    color: var(--orange);
  }
  .chaos-wrap {
    display: inline-block;
    position: relative;
  }
  .chaos {
    position: relative;
    display: inline-block;
    color: var(--white);
    z-index: 1;
    padding: 0 8px;
  }
  .chaos::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--orange);
    border-radius: 6px;
    z-index: -1;
  }
  /* arrow squiggle under chaos — decorative */
  .chaos-wrap::after {
    content: '';
    display: block;
    width: 60px;
    height: 12px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 12'%3E%3Cpath d='M2 6 Q15 0 30 6 Q45 12 58 6' stroke='%23FE5722' stroke-width='2.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center/contain;
    position: absolute;
    right: -10px;
    bottom: -14px;
  }
.hero {
    background: var(--bg);
    width: 95%;
    margin: 0 auto;
    margin-top: 65px;
    padding: 30px 32px 0px;
    text-align: center;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}
 

  .hero h1 {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--text);
  }
  .hero h1 .highlight {
    display: inline-block;
    color: var(--primary);
    font-style: italic;
  }
  .hero h1 .chaos-wrap {
    display: inline-block;
    position: relative;
  }
  .hero h1 .chaos {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    padding: 2px 12px 4px;
    transform: rotate(-1.5deg);
    font-style: normal;
    line-height: 1.1;
  }
  .hero-sub {
    margin-top: 16px;
    font-size: 14px;
    color: var(--muted);
    /* max-width: 480px; */
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
  }
.hero-shopify {
    margin-top: 24px;
    display: flex;
    justify-content: center;
    position: absolute;
    z-index: 99;
    left: 45%;
}
  .hero-shopify a { display: inline-block; transition: transform 0.2s; }
  .hero-shopify a:hover { transform: scale(1.03); }
  .hero-shopify img { height: 52px; width: auto; border-radius: 8px; }

  /* HERO PHONE SECTION */
  .hero-visual {
    position: relative;
    margin: 32px auto 0;
    max-width: 90%;
    height: 520px;
    padding: 0 16px;
  }
  .hero-stage {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 56%;
    max-width: 660px;
    height: 220px;
    background: #E5E5E8;
    border-radius: 9999px;
  }
  .hero-phones {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    overflow: hidden;
    z-index: 2;
  }
  .hero-phones img {
    height: 480px;
    width: auto;
    object-fit: contain;
    object-position: top;
    margin-bottom: 0px;
  }
  .floating-card {
    position: absolute;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 16px;
    padding: 14px 16px;
    box-shadow: 0 18px 40px -12px rgba(0,0,0,0.18);
    z-index: 3;
    transition: transform 0.3s;
  }
  .floating-card:hover { transform: translateY(-4px); }
  .floating-card h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.3;
  }
  .floating-card p {
    font-size: 11px;
    color: var(--muted);
    margin-top: 4px;
    line-height: 1.4;
    max-width: 200px;
  }
  .card-tl { top: 0%; left: 100px; width: 220px; }
  .card-tr { top: 0%; right: -50px; width: 220px; }
  .card-bl { bottom: 15%; left: 30px; width: 240px; }
  .card-br { bottom: 15%; right: -50px; width: 240px; }
.floating-card.card-bl,.right-feature-card-2nd-block{
    transform: rotate(-5deg);
}
  /* ── LOGOS ── */
  .logos-section {
    padding: 52px 32px;
    text-align: center;
  }
  .logos-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray);
    margin-bottom: 28px;
    letter-spacing: 0.01em;
  }
  .logos-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
  }
  .logos-row img {
    height: 26px;
    max-width: 120px;
    opacity: 0.65;
    filter: grayscale(100%);
    object-fit: contain;
  }

  /* ── HOW SECTION ── */
  .how-section {
    background: transparent;
    padding: 80px 48px;
    border-radius: 24px;
    margin: 0 20px;
  }
  .section-header {
    text-align: center;
    margin-bottom: 52px;
  }
  .section-header h2 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    letter-spacing: -0.025em;
    color: var(--dark);
    margin-bottom: 8px;
  }
  .section-header p {
    font-size: 15px;
    font-weight: 400;
    color: var(--light-gray);
  }
  .steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1040px;
    margin: 0 auto;
  }
  .step-card {
    background: #fff;
    border-radius: 16px;
    border: 1.5px solid #E8E8EE;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  }
  .step-img {
    background: #EBEBEF;
    border-radius: 10px;
    overflow: hidden;
    margin: 14px 14px 0;
    height: 210px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
  }
  .step-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
  }
  .step-card h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
    padding: 18px 18px 6px;
    line-height: 1.3;
  }
  .step-card p {
    font-size: 13px;
    font-weight: 400;
    color: var(--light-gray);
    padding: 0 18px 22px;
    line-height: 1.6;
  }

  /* ── PRICING ── */
  .pricing-section {
    padding: 96px 32px;
    text-align: center;
    background: #F5F5F7;
    margin: 0 24px;
    border-radius: 24px;
  }
  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 860px;
    margin: 0 auto;
    align-items: center;
  }
  .pricing-card {
    border-radius: 16px;
    padding: 32px 28px;
    text-align: left;
  }
  .pricing-card.light {
    background: #fff;
    border: 1.5px solid #E5E5EA;
  }
  .pricing-card.primary {
    background: var(--orange);
    color: #fff;
  }
  .pricing-card.primary.featured {
    background: #FF8C55;
  }
  .pricing-card.featured {
    transform: scale(1.06);
    box-shadow: 0 12px 48px rgba(254,87,34,0.35);
  }
  /* Free card eyebrow: "Free Forever" */
  .pricing-eyebrow {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--dark);
    margin-bottom: 2px;
    line-height: 1.1;
  }
  /* Orange cards: price amount large */
  .pricing-price {
    display: flex;
    align-items: baseline;
    gap: 2px;
    margin-bottom: 4px;
  }
  .pricing-price .amount {
    font-size: 48px;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
    color: #fff;
  }
  .pricing-price .period {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    margin-bottom: 2px;
  }

  /* "Basic" / "Growth" / "Enterprise" subtitle */
  .pricing-title {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 8px;
    color: #fff;
  }
  .pricing-card.light .pricing-title {
    font-size: 16px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 8px;
  }

  .pricing-desc {
    font-size: 13px;
    font-weight: 400;
    line-height: 1.55;
    color: rgba(255,255,255,0.85);
    margin-bottom: 20px;
  }
  .pricing-card.light .pricing-desc {
    color: var(--gray);
  }

  .pricing-features {
    list-style: none;
    margin-bottom: 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .pricing-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.95);
  }
  .pricing-card.light .pricing-features li { color: var(--dark); }

  .check-icon {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    color: #fff;
  }
  .pricing-card.light .check-icon { color: var(--orange); }

  .pricing-cta {
    display: block;
    text-align: center;
    padding: 13px 20px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.01em;
    transition: opacity 0.15s;
  }
  .pricing-cta:hover { opacity: 0.88; }
  .cta-outline-dark {
    border: 1.5px solid #D1D1D6;
    color: var(--dark);
    background: #fff;
  }
  .cta-solid-white {
    background: #fff;
    color: var(--orange);
  }
  .cta-outline-white {
    background: #fff;
    color: var(--orange);
    border: none;
  }

  /* ── TESTIMONIALS ── */
  .testimonials-section {
    background: #fff;
    padding: 80px 32px;
    margin: 0 24px;
    border-radius: 24px;
  }
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
  }
  .testimonial-card {
    background: #fff;
    border-radius: 14px;
    padding: 22px 20px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  }
  .testimonial-card h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
    line-height: 1.3;
  }
  .testimonial-card blockquote {
    font-size: 12.5px;
    font-weight: 400;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 16px;
    font-style: normal;
  }
  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .testimonial-author img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
  }
  .testimonial-author span {
    font-size: 12px;
    font-weight: 600;
    color: var(--dark);
  }

  /* ── CTA BANNER ── */
  .cta-banner {
    padding: 56px 32px;
    text-align: center;
  }
  .cta-banner img {
    height: 72px;
    border-radius: 14px;
  }

  /* ── FOOTER ── */
  footer {
    padding: 28px 32px 40px;
    border-top: 1px solid #E5E5EA;
  }
  .footer-inner {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
  }
  .footer-inner > img {
    height: 32px;
  }
  .footer-links {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
  }
  .footer-links a {
    font-size: 13px;
    font-weight: 500;
    color: var(--gray);
    text-decoration: none;
  }
  .footer-links a:hover { color: var(--dark); }
  .footer-links .sep {
    color: #D1D1D6;
    font-size: 13px;
  }
/* Desktop image only */
.desktop-hero-image {
  display: block;

}
  .pricing-card:hover { transform: translateY(-6px); }
  .pricing-card {
    transition: transform 0.3s, box-shadow 0.3s;
  }  .pricing-card.light:hover { box-shadow: var(--card-hover-shadow); }
  .pricing-card.primary:hover { box-shadow: 0 24px 60px -12px rgba(244,98,42,0.5); }
  .pricing-card.featured:hover { transform: scale(1.03) translateY(-14px); }
/* Mobile image hidden on desktop */
.mobile-hero-image {
  display: none;
}
@media (max-width: 768px) {
  .hero-phones {
    height: 420px;
  }

  .desktop-hero-image {
    display: none !important;
  }

  .mobile-hero-image {
    display: block !important;
    left: 50%;
    bottom: -55px;
    transform: translateX(-50%);
    /* height: 440px !important; */
    z-index: 2;
  }
}

@media (max-width: 1024px) {
  .steps-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    max-width: 100%;
  }
}

/* Small tablet */
@media (max-width: 900px) {
  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }
}/* Mobile */
@media (max-width: 768px) {
  .steps-grid {
    display: flex;
    grid-template-columns: unset;
    gap: 20px;

    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;

    max-width: 100%;
    margin: 0;
    padding: 0 16px 24px;

    scrollbar-width: none;
    cursor: grab;
  }

  .steps-grid::-webkit-scrollbar {
    display: none;
  }

  .step-card {
    flex: 0 0 260px;
    scroll-snap-align: start;
  }
}

/* Very small mobile */
@media (max-width: 420px) {
  .step-card {
    flex: 0 0 240px;
  }
}

  /* RESPONSIVE */
  @media (max-width: 768px) {
    nav { padding: 14px 20px; }
    .hero { padding-bottom: 0px; 
    margin: 0px;
    
    }
    .hero-visual { height: 290px; }
    .hero-phones img {
        position: absolute;
        height: 100%;
        width: 410px;
        /* margin-bottom: -70px; */
        /*bottom: -35%;*/
    }
    .hero-stage { height: 140px; width: 70%; }
    .floating-card { display: none; }
    .logos-section { padding: 24px 20px 32px; }
    .how-section, .pricing-section { padding: 56px 20px; }
    .steps-grid, .pricing-grid, .testimonials-grid {
      grid-template-columns: 1fr;
      gap: 10px;
    }
    .pricing-card.featured { transform: none; }
    .cta-banner { padding: 40px; }
    footer { padding: 24px 20px; }
    .footer-inner { flex-direction: column; align-items: flex-start; }
  }

  @media (max-width: 1024px) {
    .card-tl, .card-tr, .card-bl, .card-br { display: none; }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  }
  

/* Responsive */
@media (max-width: 768px){
  .hero-phones{
    height: 420px;
  }

.hero {

    padding: 30px 32px 0px;
    
    margin:0 auto;
    
    margin-top:80px;}

  .hero-phones img:first-child{
    left: unset;
    bottom: 20px;
  }


.testimonial-card {
    padding: 25px 10px;
  }
  .testimonials-grid {
    /* gap: 20px; */
    max-width: 100%;
  }

  .hero-shopify{
    left: 30%;
  }

  .hero-visual{
    max-width: 100%;
    padding:0px
  }
.hero{
  overflow: hidden;
}
.section-header h2 {

  font-size: 30px;
  font-weight: 500;
  letter-spacing: -1.25px;
  line-height: 57.6px;
  color: #060b13;
}
.section-header {
    margin: 0 auto 20px;
}



}
.desktop-logo {
  display: block;
}

.mobile-logo {
  display: none;
}

@media (max-width: 768px) {
  .logos-section {
    padding: 24px 0 32px;
    overflow: hidden;
  }

  .logos-row {
    width: max-content;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 42px;
    animation: logosSlide 18s linear infinite;
  }

    .logos-row img {
        height: 61px;
        flex: 0 0 auto;
        width: 110px;
    }
  /*  */
  .how-section {
    padding: 56px 0;
    overflow: hidden;
  }

  .how-section .section-header {
    padding: 0 20px;
    margin-bottom: 28px;
  }

  .steps-grid {
    display: flex;
    grid-template-columns: unset;
    gap: 24px;

    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;

    padding: 0 14px 24px;
    max-width: 100%;
    margin: 0;

    scrollbar-width: none;
    cursor: grab;
  }

  .steps-grid::-webkit-scrollbar {
    display: none;
  }

  .steps-grid.is-dragging {
    cursor: grabbing;
  }

  .step-card {
    flex: 0 0 250px;
    scroll-snap-align: start;
  }
.step-card h3 {
   font-size: 15px;
  }
/* @media (max-width: 768px) { */
  .pricing-section {
    padding: 40px 15px;
    overflow: hidden;
  }

  .pricing-section .section-header {
    padding: 0 20px;
    margin-bottom: 20px;
  }

  .pricing-section .section-header h2 {
    font-size: 20px;
    line-height: 1.25;
    letter-spacing: -0.6px;
    /* white-space: nowrap; */
  }

  .pricing-section .section-header p {
    font-size: 12px;
    line-height: 18px;
    margin-top: 8px;
  }

  .pricing-grid {
    display: flex;
    grid-template-columns: unset;
    gap: 26px;

    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;

    max-width: 100%;
    margin: 0;
    padding: 0 14px 28px;

    scrollbar-width: none;
    cursor: grab;
  }

  .pricing-grid::-webkit-scrollbar {
    display: none;
  }

  .pricing-grid.is-dragging {
    cursor: grabbing;
  }

  .pricing-card {
    flex: 0 0 250px;
    scroll-snap-align: start;

    min-height: 266px;
    padding: 18px 14px 14px;
    border-radius: 8px;
  }

  .pricing-card.featured {
    transform: none;
  }

  .pricing-card.featured:hover {
    transform: none;
  }

  .pricing-card:hover {
    transform: none;
  }

  .pricing-eyebrow {
    font-size: 27px;
    line-height: 100%;
    letter-spacing: 0.6px;
  }

  .pricing-price {
    margin-top: 4px;
  }

  .pricing-price .amount {
    font-size: 32px;
    line-height: 100%;
  }

  .pricing-price .period {
    font-size: 10px;
  }

  .pricing-title {
    font-size: 15px;
    margin-top: 4px;
  }

  .pricing-desc {
    font-size: 13px;
    line-height: 1.45;
    margin-top: 16px;
  }

  .pricing-features {
    margin-top: 14px;
    padding-top: 12px;
    gap: 8px;
  }

  .pricing-features li {
    font-size: 15px;
    line-height: 20px;
    gap: 8px;
  }

  .check-icon {
    width: 14px;
    height: 14px;
  }

  /*.pricing-cta {*/
  /*  height: 30px;*/
  /*  margin-top: 28px;*/
  /*  border-radius: 5px;*/
  /*  font-size: 14px;*/
  /*}*/
  
  .testimonials-section .section-header h2{ 
        font-size: 24px;
        font-weight: 500;
        letter-spacing: -1.25px;
        line-height: 30.8px;
        color: #060b13;
}
.testimonials-section { padding: 56px 12px; }
.cta-banner img {
    height: auto;
    width: 100%;
}.footer-inner img {
    height: 55px;
    width: 200px;
}
  .desktop-logo {
    display: none;
  }
#main-nav{
padding: 14px 12px;}
  .mobile-logo {
    display: block;
  }

  .nav-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
  }
}

@keyframes logosSlide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}
/* Mobile only */
@media (max-width: 768px) {
  .hero-phones {
    height: 420px;
  }

  .desktop-hero-image {
    display: none !important;
  }

  .mobile-hero-image {
    display: block !important;
    left: 45%;
    bottom: -55px;
    transform: translateX(-50%);
    /* height: 440px !important; */
    z-index: 2;
  }
}


