/* Roots Daily — pages-home.css
 * Styles specific to the landing page (index.html).
 * Loaded only on the home page.
 */

/* ===== Decorative ambient background (home only) ===== */
body.home::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.72;
  background:
    radial-gradient(circle at 8% 10%, rgba(246, 184, 63, 0.25), transparent 23%),
    radial-gradient(circle at 85% 8%, rgba(196, 109, 125, 0.15), transparent 24%),
    radial-gradient(circle at 78% 82%, rgba(217, 70, 138, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.85), transparent 45%);
}

body.home::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.04;
  background-image:
    linear-gradient(90deg, var(--navy) 1px, transparent 1px),
    linear-gradient(var(--navy) 1px, transparent 1px);
  background-size: 42px 42px;
  -webkit-mask-image: linear-gradient(to bottom, black, transparent 75%);
  mask-image: linear-gradient(to bottom, black, transparent 75%);
}

/* ===== Hero ===== */
.hero {
  /* padding: 132px 0 60px; */
  position: relative;
  overflow: hidden;
}

.heroBanner {
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #e8dfc8;
  margin-bottom: 28px;
}

.heroBannerImg {
  width: 100%;
  height: auto;
  display: block;
}

.actions {
  display: flex;
  gap: 14px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  margin-top: 22px;
  justify-content: center;
  align-items: center;
}

.proof {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  margin-top: 24px;
}

.stars {
  color: var(--saffron);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: white;
  border: 1px solid rgba(196, 109, 125, 0.14);
  box-shadow: 0 12px 34px rgba(16, 25, 54, 0.08);
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.tiny {
  font-size: 13px;
  color: var(--muted);
  font-weight: 800;
}

/* ===== Banner CTA support line + benefit chips ===== */
.sample .actions {
  margin-bottom: 0;
}

.supportLine {
  font-size: 15px;
  font-weight: 800;
  color: var(--muted);
  margin: 14px 0 0;
}

.benefitChips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 0;
  margin: 22px 0 0;
}

.benefitChips li {
  display: inline-flex;
  align-items: center;
  padding: 9px 16px;
  border-radius: 999px;
  background: white;
  border: 1px solid rgba(196, 109, 125, 0.18);
  box-shadow: var(--softshadow);
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
}

/* ===== Section + section typography ===== */
.section {
  padding: 56px 0;
  position: relative;
}

.title {
  font-family: var(--serif);
  font-size: clamp(38px, 6vw, 50px);
  line-height: 0.98;
  letter-spacing: -0.045em;
  margin: 0;
}

.titles {
  font-family: var(--serif);
  font-size: clamp(38px, 6vw, 54px);
  line-height: 0.98;
  letter-spacing: -0.045em;
  margin: 0;
  padding-top: 20px;
}

.title span {
  color: var(--pink);
  font-style: italic;
}

.para {
  font-size: 18px;
  line-height: 1.72;
  color: var(--muted);
  margin: 20px 0 0;
}

.quote {
  font-family: var(--serif);
  font-size: clamp(22px, 2.6vw, 28px);
  line-height: 1.35;
  color: var(--teal);
  font-style: italic;
  margin: 22px 0;
}

/* ===== Product info (format cards) ===== */
.center .para {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.formats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 44px;
}

.format {
  position: relative;
  background: white;
  border-radius: 30px;
  padding: 28px;
  box-shadow: var(--softshadow);
  border: 1px solid rgba(16, 25, 54, 0.05);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Staggered entrance for the reveal cards */
.format:nth-child(2) { transition-delay: 0.08s; }
.format:nth-child(3) { transition-delay: 0.16s; }
.format:nth-child(4) { transition-delay: 0.24s; }
.format:nth-child(5) { transition-delay: 0.32s; }

/* Accent glow that sweeps in on hover */
.format::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -60px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: var(--saffron);
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.format:nth-child(2)::after { background: var(--teal); }
.format:nth-child(3)::after { background: var(--pink); }
.format:nth-child(4)::after { background: var(--sage); }
.format:nth-child(5)::after { background: var(--saffron); }

.format:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.format:hover::after {
  opacity: 0.22;
  transform: scale(1);
}

.formatTag {
  position: relative;
  z-index: 1;
  display: inline-block;
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 12px;
}

.format p {
  position: relative;
  z-index: 1;
  color: var(--muted);
  line-height: 1.62;
  margin: 0;
}

.formatList {
  position: relative;
  z-index: 1;
  margin: 12px 0 0;
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.formatList li {
  position: relative;
  padding-left: 22px;
  color: var(--teal);
  font-weight: 700;
  line-height: 1.4;
  transition: transform 0.2s ease;
}

.formatList li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--saffron);
}

.formatList li:hover {
  transform: translateX(4px);
}

.formatClose {
  font-family: var(--serif);
  font-size: clamp(20px, 2.4vw, 26px);
  line-height: 1.4;
  color: var(--teal);
  font-style: italic;
  max-width: 640px;
  margin: 44px auto 0;
}

/* ===== WhatsApp advantage section ===== */
.whatsGrid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  margin-top: 48px;
}

.whatsPoints {
  display: grid;
  gap: 14px;
}

.whatsPoint {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: white;
  border: 1px solid rgba(16, 25, 54, 0.05);
  border-radius: 22px;
  padding: 20px 22px;
  box-shadow: var(--softshadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsPoint:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow);
}

.whatsIcon {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: #fff;
  font-weight: 900;
  font-size: 15px;
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.35);
}

.whatsPoint strong {
  display: block;
  font-family: var(--serif);
  font-size: 19px;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 4px;
}

.whatsPoint span {
  color: var(--muted);
  line-height: 1.55;
}

/* WhatsApp phone mock-up */
.whatsMock {
  display: flex;
  justify-content: center;
}

.waPhone {
  width: min(100%, 360px);
  border-radius: 32px;
  overflow: hidden;
  background: #0b141a;
  box-shadow: var(--shadow);
  border: 8px solid #0b141a;
}

.waBar {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #075e54;
  padding: 14px 16px;
}

.waAvatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  object-fit: contain;
  padding: 4px;
}

.waName {
  color: #fff;
  font-weight: 800;
  line-height: 1.2;
}

.waName small {
  display: block;
  font-weight: 600;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}

.waChat {
  background-color: #e5ddd5;
  background-image: radial-gradient(
      rgba(0, 0, 0, 0.04) 1px,
      transparent 1px
    );
  background-size: 18px 18px;
  padding: 26px 18px 34px;
  min-height: 280px;
}

.waMsg {
  position: relative;
  background: #fff;
  border-radius: 12px;
  border-top-left-radius: 2px;
  padding: 14px 16px 22px;
  max-width: 88%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}

.waMsg::before {
  content: "";
  position: absolute;
  top: 0;
  left: -8px;
  border: 8px solid transparent;
  border-top-color: #fff;
  border-right-color: #fff;
}

.waLead {
  margin: 0 0 8px;
  font-weight: 800;
  color: var(--ink);
}

.waList {
  margin: 0;
  padding-left: 20px;
  color: #303030;
  line-height: 1.6;
}

.waEnd {
  margin: 10px 0 0;
  font-weight: 700;
  color: #075e54;
}

.waTime {
  position: absolute;
  right: 12px;
  bottom: 7px;
  font-size: 11px;
  color: #8b9aa0;
}

/* ===== Product samples slider ===== */
.samplesSlider {
  margin: 48px -14px 0;
}

.samplesSlider .slick-track {
  display: flex;
  align-items: center;
  padding: 30px 0;
}

.samplesSlider .slick-slide {
  height: inherit;
}

.samplesSlider .slick-slide > div {
  height: 100%;
  padding: 0 14px;
}

.sampleC {
  position: relative;
  height: 100%;
  min-height: 320px;
  background: #fff;
  border-radius: 28px;
  padding: 30px 28px;
  box-shadow: var(--softshadow);
  border: 1px solid rgba(16, 25, 54, 0.05);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: scale(0.9);
  opacity: 0.6;
  transition: transform 0.4s ease, opacity 0.4s ease, box-shadow 0.4s ease;
}

/* Coloured accent bar at the top of every card */
.sampleC::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--accent, var(--saffron));
}

/* Soft accent glow in the corner */
.sampleC::after {
  content: "";
  position: absolute;
  right: -70px;
  top: -70px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: var(--accent, var(--saffron));
  opacity: 0.12;
}

.sampleC--story { --accent: var(--saffron); }
.sampleC--quiz { --accent: var(--teal); }
.sampleC--talk { --accent: var(--pink); }
.sampleC--why { --accent: var(--sage); }

/* Center slide is emphasised — the modern coverflow focus */
.samplesSlider .slick-center .sampleC {
  transform: scale(1.02);
  opacity: 1;
  box-shadow: var(--shadow);
}

.sampleLabel {
  position: relative;
  z-index: 1;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent) 14%, white);
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.sampleTitle {
  position: relative;
  z-index: 1;
  font-family: var(--serif);
  font-size: 23px;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--navy);
  margin: 0 0 14px;
}

.sampleBody {
  position: relative;
  z-index: 1;
  color: var(--muted);
  line-height: 1.62;
  margin: 0;
}

.sampleOptions {
  position: relative;
  z-index: 1;
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.sampleOptions li {
  padding: 13px 16px;
  border-radius: 14px;
  background: #f4f6f8;
  border: 1px solid rgba(16, 25, 54, 0.06);
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease,
    transform 0.2s ease;
}

.sampleOptions li:hover {
  background: color-mix(in srgb, var(--accent) 12%, white);
  border-color: var(--accent);
  transform: translateX(4px);
}

/* Arrows */
.samplesArrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--teal);
  z-index: 20;
  display: flex !important;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.samplesArrow:hover {
  background: var(--navy);
}

.samplesArrow i {
  color: #fff;
  font-size: 16px;
}

.samplesArrow::before {
  display: none;
}

.samplesSlider .slick-prev {
  left: -10px;
}

.samplesSlider .slick-next {
  right: -10px;
}

.samplesSlider .slick-dots {
  bottom: -40px;
}

.samplesSlider .slick-dots li button:before {
  font-size: 10px;
  color: var(--teal);
  opacity: 0.4;
}

.samplesSlider .slick-dots li.slick-active button:before {
  opacity: 1;
  color: var(--teal);
}

/* ===== Dark "problem" section ===== */
.dark {
  background: #24364b;
  color: white;
  overflow: hidden;
}

.dark .para {
  color: rgba(255, 255, 255, 0.74);
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 54px;
  align-items: center;
}

.problemList {
  display: grid;
  gap: 14px;
}

.problem {
  padding: 24px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.problem strong {
  display: block;
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 8px;
}

/* ===== Pillars (4-column features) ===== */
.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 44px;
}

.pillar {
  position: relative;
  min-height: 280px;
  background: white;
  border-radius: 34px;
  padding: 28px;
  box-shadow: var(--softshadow);
  overflow: hidden;
  transition: 0.25s ease;
}

.pillar:hover {
  transform: translateY(-7px);
}

.pillar::after {
  content: "";
  position: absolute;
  right: -62px;
  bottom: -62px;
  width: 168px;
  height: 168px;
  border-radius: 50%;
  background: var(--saffron);
  opacity: 0.28;
}

.pillar:nth-child(2)::after { background: var(--teal); }
.pillar:nth-child(3)::after { background: var(--pink); }
.pillar:nth-child(4)::after { background: var(--sage); }

.pillar small {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--teal);
  display: inline-block;
  margin-bottom: 18px;
}

.pillar h3 {
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 12px;
}

.pillar p {
  color: var(--muted);
  line-height: 1.62;
  margin: 0;
}

/* ===== Demo (tabs + WhatsApp screenshot) ===== */
.demo {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 42px;
  align-items: center;
  margin-top: 44px;
}

.demoPanel {
  background: white;
  border-radius: 36px;
  padding: 30px;
  box-shadow: var(--softshadow);
}

.tabs {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
  margin: 0;
}

.tab {
  border: 0;
  background: #f2f5f7;
  color: var(--muted);
  border-radius: 999px;
  padding: 11px 14px;
  font-weight: 900;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.tab.active {
  background: var(--navy);
  color: white;
}

.phoneImg {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.phoneImg img {
  max-width: 50%;
  width: auto;
  height: auto;
  display: block;
  margin: 0 auto;
  transition: opacity 0.18s ease;
}

.phoneImg img.fading {
  opacity: 0.2;
}

/* ===== Sample video section ===== */
.sample {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  justify-items: center;
  text-align: center;
}

.sample .quote {
  margin-left: auto;
  margin-right: auto;
}

/* .sampleVideo {
  border-radius: 36px;
  overflow: hidden;
  background: #050813;
  box-shadow: var(--shadow);
  aspect-ratio: 9 / 16;
  max-height: 620px;
  width: min(100%, 349px)!important;
  margin: 0 auto;
}

.sampleVideo video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
} */

.sampleVideo {
  border-radius: 36px;
  overflow: hidden;
  background: #050813;
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 10; 
  width: min(100%, 1200px);
  max-height: 700px;

  margin: 0 auto;
}

.sampleVideo video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Mobile */
/* @media (max-width: 768px) {
  .sampleVideo {
    aspect-ratio: 9 / 16;
    width: min(100%, 349px);
  }
} */

/* ===== Reasons / testimonials ===== */
.reasons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 44px;
}

.reason {
  background: white;
  border-radius: 32px;
  padding: 26px;
  box-shadow: var(--softshadow);
}

.reason h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.reason span {
  font-size: 13px;
  color: var(--muted);
  font-weight: 700;
}

.reason p {
  color: var(--muted);
  line-height: 1.58;
  margin: 0;
  padding-top: 12px;
}

/* ===== Pricing ===== */
.pricing {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 44px;
  align-items: center;
}

.pricecard {
  background: white;
  border-radius: 42px;
  padding: 30px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.price {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  margin: 22px 0 10px;
}

.price strong {
  font-size: 82px;
  letter-spacing: -0.08em;
  line-height: 0.85;
  font-family: var(--serif);
}

.checks {
  display: grid;
  gap: 14px;
  margin: 28px 0;
}

.checks div {
  display: flex;
  gap: 10px;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.45;
}

.check {
  color: var(--teal);
  font-weight: 900;
}

/* ===== FAQ ===== */
.faqgrid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 48px;
}

.faq {
  border-bottom: 1px solid var(--line);
}

.faqq {
  width: 100%;
  border: 0;
  background: none;
  color: var(--ink);
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-size: 19px;
  font-weight: 900;
  cursor: pointer;
  gap: 16px;
}

.faqa {
  max-height: 0;
  overflow: hidden;
  color: var(--muted);
  line-height: 1.65;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq.open .faqa {
  max-height: 600px;
  padding: 0 0 22px;
}

/* ===== Final call-to-action section ===== */
.final {
  padding: 68px 0;
  background: #24364b;
  color: white;
  text-align: center;
}

.final .title {
  max-width: 880px;
  margin: auto;
  padding-top: 20px;
}

.final .para {
  max-width: 660px;
  margin: 24px auto;
  color: rgba(255, 255, 255, 0.72);
}

.trial-title {
    margin: 25px 0 10px;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    color: #1f2344;
}

.trial-desc {
    margin: 0 0 28px;
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.6;
    color: #5f667a;
}

.reason{
    background:#fff;
    border-radius:20px;
    padding:32px;
    margin:10px;
    height:100%;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
}

.reason h3{
    font-size:1.35rem;
    line-height:1.5;
    color:#1f2344;
    margin-bottom:20px;
}

.reason span{
    display:block;
    color:#cb6c78;
    font-weight:700;
    margin-bottom:10px;
}

.reason p{
    color:#667085;
    margin:0;
    font-size:16px;
}

.testimonial-slider .slick-track{
    display:flex;
}

.testimonial-slider .slick-slide{
    height:inherit;
}

.testimonial-slider .slick-slide>div{
    height:100%;
}

.slick-prev:before,
.slick-next:before{
    color:#cb6c78;
    font-size:28px;
}

.slick-prev,
.slick-next {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #cb6c78;
    display: flex !important;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.slick-prev {
    left: -60px;
}

.slick-next {
    right: -60px;
}

.slick-prev:hover,
.slick-next:hover {
    background: #b85767;
}

.slick-prev::before,
.slick-next::before {
    display: none;
}

.slick-prev i,
.slick-next i {
    color: #fff;
    font-size: 18px;
}

/* Let Slick control the layout */
.reasons {
    display: block !important;
}

.testimonial-slider .slick-list {
    margin: 0 -15px;
}

.testimonial-slider .slick-slide {
    padding: 30px;
    box-sizing: border-box;
    height: -webkit-fill-available;
}

.testimonial-slider .slick-slide > div {
    height: 100%;
}

.reason {
    width: 100% !important;
    height: 100%;
    background: #fff;
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

/* Navigation */
.testimonial-slider .slick-prev,
.testimonial-slider .slick-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #cb6c78;
    z-index: 10;
}

.testimonial-slider .slick-prev {
    left: -42px;
}

.testimonial-slider .slick-next {
    right: -42px;
}

.testimonial-slider .slick-prev:before,
.testimonial-slider .slick-next:before {
    font-size: 22px;
    color: #fff;
}

.testimonial-slider .slick-prev:hover,
.testimonial-slider .slick-next:hover {
    background: #b95b69;
}

.testimonial-slider .slick-dots {
    bottom: -45px;
}


/* ===== Responsive breakpoints (home only) ===== */

/* Tablet and below: collapse multi-column grids */
@media (max-width: 768px) {
    .testimonial-slider .slick-prev {
        left: -10px;
    }

    .testimonial-slider .slick-next {
        right: -10px;
    }

    .testimonial-slider .slick-slide {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .slick-prev {
        left: -10px;
    }

    .slick-next {
        right: -10px;
    }
}
@media (max-width: 768px) {
    .trial-title {
        font-size: 1.6rem;
    }

    .trial-desc {
        font-size: 1rem;
    }
}
@media (max-width: 1000px) {
  .split,
  .demo,
  .sample,
  .pricing,
  .faqgrid,
  .whatsGrid {
    grid-template-columns: 1fr;
  }

  .pillars {
    grid-template-columns: 1fr 1fr;
  }

  .formats {
    grid-template-columns: 1fr 1fr;
  }

  .reasons {
    grid-template-columns: 1fr;
  }
}

/* Phone */
@media (max-width: 640px) {
  .hero {
    /* padding: 92px 0 36px; */
  }

  .heroBanner {
    border-radius: 24px;
    margin-bottom: 18px;
  }

  .section {
    padding: 32px 0;
  }

  .titles {
    padding-top: 58px;
    font-size: clamp(32px, 7.4vw, 42px)!important;
  }

  .para {
    font-size: 15px;
    line-height: 1.58;
    margin-top: 14px;
  }

  .actions {
    margin-top: 18px;
    gap: 10px;
  }

  .supportLine {
    font-size: 14px;
  }

  .benefitChips {
    gap: 8px;
    margin-top: 18px;
  }

  .benefitChips li {
    font-size: 12px;
    padding: 8px 13px;
  }

  .actions .btn {
    width: 100%;
    min-height: 52px;
  }

  .quote {
    font-size: 20px;
    line-height: 1.32;
    margin: 14px 0;
  }

  .split {
    gap: 24px;
  }

  .problem {
    padding: 18px;
    border-radius: 22px;
  }

  .problem strong {
    font-size: 22px;
  }

  .pillars {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 26px;
  }

  .pillar {
    min-height: auto;
    padding: 22px;
    border-radius: 26px;
  }

  .pillar h3 {
    font-size: 24px;
  }

  .formats {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 26px;
  }

  .format {
    padding: 22px;
    border-radius: 24px;
  }

  .whatsGrid {
    gap: 28px;
    margin-top: 28px;
  }

  .whatsPoint {
    padding: 16px 18px;
    border-radius: 18px;
  }

  .whatsPoint strong {
    font-size: 17px;
  }

  .samplesSlider {
    margin-top: 28px;
  }

  .sampleC {
    min-height: auto;
    padding: 24px 22px;
    border-radius: 22px;
  }

  .sampleTitle {
    font-size: 20px;
  }

  .samplesArrow {
    width: 40px;
    height: 40px;
  }

  .demo {
    gap: 24px;
    margin-top: 26px;
  }

  .demoPanel {
    padding: 16px;
    border-radius: 26px;
  }

  .tabs {
    gap: 8px;
  }

  .tab {
    flex: 1 1 calc(50% - 8px);
    padding: 11px 8px;
    font-size: 12px;
  }

  .sampleVideo {
    width: min(100%, 320px);
    margin: 0 auto;
    border-radius: 26px;
  }

  .reasons {
    gap: 14px;
    margin-top: 26px;
  }

  .reason {
    padding: 20px;
    border-radius: 24px;
  }

  .pricing {
    gap: 24px;
  }

  .pricecard {
    padding: 24px;
    border-radius: 32px;
  }

  .price strong {
    font-size: 60px;
  }

  .checks {
    gap: 12px;
    margin: 22px 0;
  }

  .faqgrid {
    gap: 20px;
  }

  .faqq {
    font-size: 16px;
    padding: 18px 0;
  }

  .final {
    padding: 44px 0;
  }

  .phoneImg img {
    max-width: 100%;
  }

   .sampleVideo {
    aspect-ratio: 9 / 16;
    width: min(100%, 349px);
  }
  
}

/* Very small phones */
@media (max-width: 380px) {
  .sampleVideo {
    width: 100%;
  }
}

/* Larger desktops — slightly more breathing room */
@media (min-width: 1200px) {
  .section {
    padding: 68px 0;
  }

  .hero {
    /* padding: 148px 0 80px; */
  }
}
