/* ============================================
   SECTION 1: HERO
   ============================================ */
.hero {
  position: relative;
  background: #EEF5FF;
  overflow: hidden;
  padding: calc(80px + var(--section-pad)) 0 0;
}

/* Subtle grid pattern background */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 60, 140, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 60, 140, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, black 20%, transparent 70%);
}

/* Glow accent */
.hero::after {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 102, 255, 0.10) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-content { max-width: 600px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 8px;
  background: rgba(0, 102, 255, 0.07);
  border: 1px solid rgba(0, 102, 255, 0.18);
  border-radius: 100px;
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(5, 150, 105, 0.4); }
  50% { box-shadow: 0 0 0 6px rgba(5, 150, 105, 0); }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(var(--text-4xl), 5.5vw, var(--text-6xl));
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

.hero-sub {
  font-size: clamp(var(--text-base), 2vw, var(--text-lg));
  color: rgba(15, 27, 45, 0.6);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.hero-note {
  font-size: var(--text-sm);
  color: rgba(15, 27, 45, 0.45);
}

.hero-note span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.hero-note span + span::before {
  content: '\00b7';
  margin-right: 4px;
}

.hero-visual {
  position: relative;
}

/* Hero photo + floating screenshot combo */
.hero-photo-wrapper {
  position: relative;
}

.hero-photo {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scaleX(-1);
}

.hero-screenshot-float {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 75%;
}

.hero-screenshot-float img {
  width: 100%;
  height: auto;
  display: block;
}

/* Trust bar */
.trust-bar {
  border-top: 1px solid rgba(0, 60, 140, 0.08);
  padding: 1.5rem 0;
  margin-top: 3rem;
}

.trust-bar-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(15, 27, 45, 0.5);
}

.trust-item svg { width: 18px; height: 18px; color: rgba(15, 27, 45, 0.35); }

@media (min-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
  }
  .hero { padding-bottom: 0; }
  .hero-screenshot-float {
    bottom: -30px;
    left: -40px;
    width: 80%;
  }
  .trust-bar { margin-top: 4rem; }
  .trust-bar-inner { justify-content: flex-start; gap: 3rem; }
}

/* ============================================
   SECTION 2: PROBLEM AGITATION
   ============================================ */
.problems {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.problems-header {
  text-align: center;
  margin-bottom: 3rem;
}

.problems-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.problem-card {
  padding: 1.75rem;
  background: var(--white);
  border: 1px solid var(--grey-100);
  border-radius: var(--radius);
  transition: all 0.3s ease;
  position: relative;
}

.problem-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 0;
  background: var(--blue);
  border-radius: 0 2px 2px 0;
  transition: height 0.3s ease;
}

.problem-card:hover::before { height: 40%; }

.problem-card:hover {
  border-color: var(--grey-200);
  box-shadow: var(--shadow-md);
}

.problem-icon {
  width: 40px;
  height: 40px;
  background: var(--grey-50);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--navy);
}

.problem-icon svg { width: 20px; height: 20px; }

.problem-card h3 {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.problem-card p {
  font-size: var(--text-sm);
  color: var(--muted);
  line-height: 1.65;
}

.problems-closing {
  text-align: center;
  margin-top: 3rem;
  font-size: var(--text-lg);
  font-style: italic;
  color: var(--navy);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

@media (min-width: 640px) {
  .problems-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .problems-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
}

/* ============================================
   SECTION 3: SOLUTION REVEAL
   ============================================ */
.solution {
  padding: var(--section-pad) 0;
  background: var(--off-white);
}

.solution-content {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 1.5rem;
}

.solution-content p {
  font-size: var(--text-lg);
  color: var(--body-text);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.solution-screenshot {
  width: 100%;
  background: none;
  border: none;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: var(--text-sm);
  font-weight: 500;
  box-shadow: none;
  position: relative;
  overflow: hidden;
}

.solution-screenshot::before {
  display: none;
}

.screenshot-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 1;
}

.screenshot-placeholder svg { width: 36px; height: 36px; opacity: 0.3; }

/* ============================================
   SECTION 3.5: VALUE PILLARS
   ============================================ */
.pillars {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.pillars-header {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.pillars-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.pillar-card {
  text-align: center;
  padding: 2.5rem 2rem;
  background: var(--off-white);
  border: 1px solid var(--grey-100);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.pillar-card:hover {
  border-color: var(--grey-200);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.pillar-icon {
  width: 48px;
  height: 48px;
  background: var(--blue-glow);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--blue);
}

.pillar-icon svg { width: 22px; height: 22px; }

.pillar-card h3 {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.pillar-card p {
  font-size: var(--text-sm);
  color: var(--muted);
  line-height: 1.65;
  max-width: 320px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .pillars-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
}

/* ============================================
   SECTION 4: FEATURES
   ============================================ */
.features {
  padding: 0 0 var(--section-pad);
  background: var(--off-white);
}

.features-header {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.feature-row:last-child { margin-bottom: 0; }

.feature-text { max-width: 480px; }

.feature-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.75rem;
}

.feature-label svg { width: 14px; height: 14px; }

.feature-text h3 {
  font-family: var(--font-display);
  font-size: clamp(var(--text-2xl), 3vw, var(--text-3xl));
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.feature-text p {
  font-size: var(--text-base);
  color: var(--muted);
  line-height: 1.7;
}

/* Feature bullet lists (Shopmonkey-style) */
.feature-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 6px 0;
  font-size: var(--text-sm);
  color: var(--body-text);
  line-height: 1.6;
  font-weight: 500;
}

.feature-bullets li::before {
  content: '';
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 2px;
  background: var(--green-light);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%23059669' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
}

.feature-image {
  width: 100%;
  aspect-ratio: 6/5;
  background: var(--grey-50);
  border: 1px solid var(--grey-100);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: var(--text-sm);
  font-weight: 500;
  position: relative;
  overflow: hidden;
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.5rem;
}

.feature-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.04);
  pointer-events: none;
}

@media (min-width: 1024px) {
  .feature-row { grid-template-columns: 1fr 1fr; gap: 4rem; }
  .feature-row:nth-child(even) .feature-text { order: 2; }
  .feature-row:nth-child(even) .feature-image { order: 1; }
}

/* ============================================
   SECTION 4.5: SHOP TYPES
   ============================================ */
.shop-types {
  padding: var(--section-pad) 0;
  background: var(--white);
  overflow: hidden;
}

.shop-types-header {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

/* Marquee container */
.shop-types-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, black 2%, black 98%, transparent);
  mask-image: linear-gradient(to right, transparent, black 2%, black 98%, transparent);
}

.shop-types-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: marquee-scroll 30s linear infinite;
}

.shop-types-marquee:hover .shop-types-track {
  animation-play-state: paused;
}

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

/* Cards */
.shop-type-card {
  flex-shrink: 0;
  width: 160px;
  text-align: center;
}

.shop-type-image {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--off-white);
  border: 1px solid var(--grey-100);
  transition: all 0.3s ease;
}

.shop-type-card:hover .shop-type-image {
  border-color: var(--grey-200);
  box-shadow: var(--shadow-lg);
}

.shop-type-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.shop-type-card:hover .shop-type-image img {
  transform: scale(1.05);
}

.shop-type-card h3 {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--navy);
  margin-top: 0.5rem;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .shop-type-card { width: 190px; }
  .shop-type-card h3 { font-size: var(--text-sm); }
}

/* ============================================
   SECTION 5: BUILT FOR AUSTRALIA
   ============================================ */
.australia {
  padding: var(--section-pad) 0;
  background: #E6F0FF;
  position: relative;
  overflow: hidden;
}

.australia-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.au-checklist { list-style: none; }

.au-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: var(--text-base);
  color: var(--body-text);
  font-weight: 500;
}

.au-check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: var(--green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.au-check svg { width: 12px; height: 12px; color: var(--green); }

.au-text p {
  font-size: var(--text-lg);
  color: var(--body-text);
  line-height: 1.75;
}

.au-text strong { color: var(--navy); }

/* Australia section photo */
.au-photo {
  width: 100%;
  aspect-ratio: 6/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(0, 102, 255, 0.06);
}

.au-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.5rem;
}

@media (min-width: 1024px) {
  .australia-inner { grid-template-columns: 1fr 1fr; gap: 4rem; }
}

/* ============================================
   SECTION 6: PRICING
   ============================================ */
.pricing {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.pricing-header {
  text-align: center;
  margin-bottom: 3rem;
}

/* ============================================
   SECTION 7: SOCIAL PROOF
   ============================================ */
.social-proof {
  padding: var(--section-pad) 0;
  background: var(--off-white);
}

.social-proof-header {
  text-align: center;
  margin-bottom: 3rem;
}

.testimonial-card {
  max-width: 680px;
  margin: 0 auto 3rem;
  background: var(--white);
  border: 1px solid var(--grey-100);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 2.5rem);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.testimonial-card--featured {
  text-align: left;
}

.testimonial-quote-mark {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--blue);
  line-height: 1;
  opacity: 0.15;
  position: absolute;
  top: 1rem;
  left: 1.5rem;
}

.testimonial-card blockquote {
  font-size: var(--text-lg);
  color: var(--navy);
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-style: italic;
}

/* Testimonial author row with avatar */
.testimonial-author-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--grey-50);
  border: 2px solid var(--grey-100);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-avatar svg { width: 24px; height: 24px; color: var(--grey-200); }

.testimonial-name {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--navy);
}

.testimonial-role {
  font-size: var(--text-xs);
  color: var(--muted);
  font-weight: 500;
}

.testimonial-author {
  font-size: var(--text-sm);
  color: var(--muted);
}

.testimonial-author strong {
  color: var(--body-text);
  font-weight: 600;
}

.industry-stat {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 3rem;
  padding: 1.5rem 2rem;
  background: linear-gradient(135deg, var(--blue-glow), rgba(5, 150, 105, 0.08));
  border-radius: var(--radius);
  font-size: var(--text-base);
  color: var(--navy);
  font-weight: 500;
  line-height: 1.6;
}

.founder-story {
  max-width: 680px;
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 2.5rem);
  border-left: 3px solid var(--blue);
  background: var(--white);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.founder-story p {
  font-size: var(--text-base);
  color: var(--body-text);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.founder-story p:last-child { margin-bottom: 0; }

.founder-story .attribution {
  font-size: var(--text-sm);
  color: var(--muted);
  font-weight: 600;
  margin-top: 1rem;
}

/* ============================================
   PLACEHOLDER ASSET STYLING
   Temporary styles for image placeholders.
   Remove this entire block when real assets are in place.
   ============================================ */
.placeholder-asset {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--grey-50);
  border: 2px dashed var(--grey-200);
  color: var(--muted);
  font-size: var(--text-xs);
  font-weight: 600;
  text-align: center;
  padding: 1rem;
  height: 100%;
  box-sizing: border-box;
}

.placeholder-asset svg {
  width: 32px;
  height: 32px;
  opacity: 0.3;
}

.placeholder-asset span {
  display: block;
}

.shop-type-card .placeholder-asset {
  height: auto;
  padding: 0;
  border: 2px dashed var(--grey-200);
}

.shop-type-card .placeholder-asset span,
.shop-type-card .placeholder-asset svg {
  display: none;
}

.placeholder-hint {
  font-weight: 400;
  color: var(--grey-200);
  font-size: 0.6875rem;
  max-width: 240px;
  line-height: 1.4;
}

/* Light bg variant (for hero) */
.hero .placeholder-asset {
  background: rgba(0, 102, 255, 0.04);
  border-color: rgba(0, 60, 140, 0.12);
  color: rgba(15, 27, 45, 0.4);
}

.hero .placeholder-asset svg { color: rgba(15, 27, 45, 0.2); }
.hero .placeholder-hint { color: rgba(15, 27, 45, 0.2); }
