/* ============================================
   PAGE-SPECIFIC STYLES
   Services | About | Contact
   ============================================ */

/* ---------- PAGE HERO (smaller than home hero) ---------- */
.page-hero{
  position:relative;
  padding:170px 0 90px;
  background:var(--bg-cream);
  overflow:hidden;
  text-align:center;
}
.page-hero-inner{
  max-width:820px;
  position:relative;
}
.page-hero h1{
  font-size:clamp(2.2rem,5vw,4rem);
  line-height:1.1;
  margin-bottom:22px;
  letter-spacing:-.02em;
}
.page-hero p{
  font-size:1.15rem;
  color:var(--muted);
  max-width:640px;
  margin:0 auto;
  line-height:1.65;
}

/* ============================================
   SERVICE DETAIL SECTIONS
   ============================================ */
.service-detail{padding:90px 0}
.service-detail.alt{background:var(--bg-alt)}
.detail-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:center;
}
.detail-grid.reverse .detail-content{order:2}
.detail-grid.reverse .detail-visual{order:1}
.service-tag{
  display:inline-block;
  font-family:'Poppins',sans-serif;
  font-size:.78rem;
  font-weight:600;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:var(--gold);
  margin-bottom:18px;
  padding:6px 14px;
  background:rgba(201,169,97,.12);
  border-radius:50px;
}
.detail-content .section-title{
  text-align:left;
  font-size:clamp(1.8rem,3.5vw,2.7rem);
  margin-bottom:20px;
}
.detail-content .section-sub{
  text-align:left;
  margin:0 0 32px;
}
.detail-list{
  display:flex;
  flex-direction:column;
  gap:14px;
  margin-bottom:36px;
}
.detail-list li{
  display:flex;
  align-items:flex-start;
  gap:14px;
  font-size:1rem;
  color:var(--ink-2);
}
.detail-list li span{
  flex-shrink:0;
  width:24px;height:24px;
  background:var(--gold);
  color:#fff;
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  font-size:.75rem;
  font-weight:700;
}

/* ---------- DETAIL VISUALS ---------- */
.detail-visual{
  display:flex;
  align-items:center;
  justify-content:center;
}

/* GBP Visual */
.visual-mock{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--r-lg);
  padding:32px;
  box-shadow:var(--shadow-lg);
  width:100%;
  max-width:420px;
}
.mock-header{
  display:flex;justify-content:space-between;align-items:center;
  margin-bottom:18px;
}
.mock-stars{color:var(--gold);font-size:1.1rem;letter-spacing:3px}
.mock-rating{color:var(--muted);font-size:.9rem;font-weight:500}
.mock-title{
  font-family:'Poppins',sans-serif;
  font-size:1.3rem;
  font-weight:600;
  color:var(--navy);
  margin-bottom:8px;
}
.mock-tag{
  display:inline-block;
  padding:5px 12px;
  background:#dcfce7;
  color:#166534;
  font-size:.82rem;
  font-weight:500;
  border-radius:50px;
  margin-bottom:28px;
}
.mock-stats{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:12px;
  padding-top:24px;
  border-top:1px solid var(--line);
}
.mock-stats > div{
  text-align:center;
  display:flex;flex-direction:column;gap:4px;
}
.mock-stats strong{
  font-family:'Poppins',sans-serif;
  font-size:1.5rem;
  color:var(--gold);
}
.mock-stats span{
  font-size:.78rem;
  color:var(--muted);
}

/* SEO Ranking Visual */
.visual-rank{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--r-lg);
  padding:32px;
  box-shadow:var(--shadow-lg);
  width:100%;
  max-width:420px;
  display:flex;
  flex-direction:column;
  gap:14px;
}
.rank-row{
  display:grid;
  grid-template-columns:36px 1fr 100px;
  gap:14px;
  align-items:center;
}
.rank-num{
  font-family:'Poppins',sans-serif;
  font-weight:700;
  color:var(--muted-2);
  font-size:1.05rem;
}
.rank-row.top .rank-num{color:var(--gold);font-size:1.3rem}
.rank-row.top .rank-text{color:var(--navy);font-weight:600}
.rank-text{
  color:var(--ink-2);
  font-size:.95rem;
}
.rank-bar{
  display:block;
  height:8px;
  background:var(--line-2);
  border-radius:50px;
  overflow:hidden;
}
.rank-bar span{
  display:block;
  height:100%;
  background:linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius:50px;
  transition:width 1s var(--ease);
}
.rank-row:not(.top) .rank-bar span{
  background:var(--muted-2);
}

/* Reviews Visual */
.visual-reviews{
  display:flex;
  flex-direction:column;
  gap:16px;
  max-width:380px;
  width:100%;
}
.review-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--r-md);
  padding:20px 22px;
  box-shadow:var(--shadow-sm);
}
.review-card.offset{margin-left:32px}
.review-card .mock-stars{margin-bottom:8px;font-size:1rem;letter-spacing:2px}
.review-card p{
  color:var(--ink-2);
  font-size:.92rem;
  line-height:1.55;
  margin-bottom:8px;
  font-style:italic;
}
.review-card span{
  font-size:.82rem;
  color:var(--muted);
  font-weight:500;
}

/* AI Flow Visual */
.visual-flow{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:8px;
  width:100%;
  max-width:340px;
}
.flow-step{
  width:100%;
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--r-md);
  padding:18px 22px;
  display:flex;
  align-items:center;
  gap:14px;
  box-shadow:var(--shadow-sm);
  transition:all .3s var(--ease);
}
.flow-step.active{
  background:var(--navy);
  border-color:var(--navy);
  color:#fff;
  transform:scale(1.04);
  box-shadow:var(--shadow-md);
}
.flow-step.active span{color:#fff}
.flow-icon{
  width:38px;height:38px;
  background:var(--bg-cream);
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  font-size:1.3rem;
}
.flow-step.active .flow-icon{background:var(--gold)}
.flow-step span{
  font-size:.95rem;
  font-weight:500;
  color:var(--navy);
}
.flow-arrow{
  color:var(--gold);
  font-size:1.2rem;
  font-weight:600;
}

/* Website Mockup Visual */
.visual-website{
  width:100%;
  max-width:420px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--r-md);
  overflow:hidden;
  box-shadow:var(--shadow-lg);
}
.web-header{
  padding:12px 18px;
  background:var(--bg-alt);
  border-bottom:1px solid var(--line);
  display:flex;
  gap:6px;
}
.web-header span{
  width:10px;height:10px;
  border-radius:50%;
  background:var(--line);
}
.web-header span:nth-child(1){background:#ff5f57}
.web-header span:nth-child(2){background:#ffbd2e}
.web-header span:nth-child(3){background:#28ca42}
.web-body{
  padding:24px;
  display:flex;
  flex-direction:column;
  gap:16px;
}
.web-hero{
  height:80px;
  background:linear-gradient(135deg, var(--navy), var(--navy-2));
  border-radius:var(--r-sm);
}
.web-row{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:10px;
}
.web-card{
  height:60px;
  background:var(--bg-alt);
  border:1px solid var(--line);
  border-radius:var(--r-sm);
}
.web-cta{
  height:44px;
  background:var(--gold);
  border-radius:var(--r-sm);
}

/* ============================================
   ABOUT — STORY
   ============================================ */
.story{background:#fff}
.story-grid{
  display:grid;
  grid-template-columns:1.2fr 1fr;
  gap:80px;
  align-items:center;
}
.story-content .section-title{
  text-align:left;
  font-size:clamp(1.8rem,3.5vw,2.7rem);
  margin-bottom:24px;
}
.story-content p{
  color:var(--muted);
  font-size:1.05rem;
  line-height:1.75;
  margin-bottom:18px;
}
.story-content strong{color:var(--navy);font-weight:600}
.story-content .btn{margin-top:18px}
.story-visual{
  display:flex;
  justify-content:center;
}
.story-card{
  background:linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  border-radius:var(--r-lg);
  padding:48px 40px;
  width:100%;
  max-width:380px;
  display:flex;
  flex-direction:column;
  gap:32px;
  position:relative;
  overflow:hidden;
  box-shadow:var(--shadow-lg);
}
.story-card::before{
  content:'';
  position:absolute;
  top:-30%;right:-30%;
  width:60%;height:120%;
  background:radial-gradient(circle, rgba(201,169,97,.2), transparent 60%);
}
.story-stat{
  position:relative;
  z-index:1;
  display:flex;
  flex-direction:column;
  gap:6px;
}
.story-num{
  font-family:'Poppins',sans-serif;
  font-size:2.4rem;
  font-weight:700;
  color:var(--gold);
  line-height:1;
}
.story-label{
  color:rgba(255,255,255,.75);
  font-size:.92rem;
}

/* ============================================
   ABOUT — VALUES
   ============================================ */
.values{background:var(--bg-alt)}
.values-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:24px;
}
.value-card{
  background:#fff;
  padding:36px 28px;
  border-radius:var(--r-md);
  border:1px solid var(--line);
  text-align:left;
  transition:all .4s var(--ease);
}
.value-card:hover{
  transform:translateY(-6px);
  box-shadow:var(--shadow-lg);
  border-color:transparent;
}
.value-icon{
  width:52px;height:52px;
  background:var(--bg-cream);
  border-radius:var(--r-sm);
  display:flex;align-items:center;justify-content:center;
  color:var(--gold);
  margin-bottom:22px;
}
.value-icon svg{width:24px;height:24px}
.value-card h3{
  font-size:1.2rem;
  margin-bottom:10px;
}
.value-card p{
  color:var(--muted);
  font-size:.95rem;
  line-height:1.6;
}

/* ============================================
   ABOUT — FOUNDER
   ============================================ */
.founder{background:#fff}
.founder-card{
  display:grid;
  grid-template-columns:auto 1fr;
  gap:64px;
  align-items:center;
  max-width:1000px;
  margin:0 auto;
  padding:60px;
  background:var(--bg-alt);
  border-radius:var(--r-xl);
}
.founder-photo{
  width:240px;height:240px;
  border-radius:50%;
  overflow:hidden;
  background:linear-gradient(135deg, var(--navy), var(--navy-3));
  display:flex;align-items:center;justify-content:center;
  box-shadow:var(--shadow-lg);
  position:relative;
}
.founder-photo::after{
  content:'';
  position:absolute;
  inset:-6px;
  border:2px solid var(--gold);
  border-radius:50%;
  opacity:.4;
}
.photo-placeholder{
  font-family:'Poppins',sans-serif;
  font-size:5rem;
  color:var(--gold);
  font-weight:600;
}
.founder-right .section-title{
  text-align:left;
  margin-bottom:6px;
  font-size:clamp(1.8rem,3vw,2.4rem);
}
.founder-role{
  color:var(--gold);
  font-weight:600;
  font-size:1rem;
  letter-spacing:.04em;
  margin-bottom:20px;
}
.founder-right > p{
  color:var(--muted);
  font-size:1rem;
  line-height:1.7;
  margin-bottom:16px;
}
.founder-cta{margin-top:8px}

/* ============================================
   CTA SIMPLE (used on inner pages)
   ============================================ */
.cta-simple{
  background:linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  border-radius:var(--r-xl);
  padding:80px 60px;
  text-align:center;
  position:relative;
  overflow:hidden;
}
.cta-simple::before{
  content:'';
  position:absolute;
  top:-50%;right:-20%;
  width:60%;height:200%;
  background:radial-gradient(circle, rgba(201,169,97,.18), transparent 60%);
  pointer-events:none;
}
.cta-simple > *{position:relative;z-index:1}
.cta-simple .section-title{
  margin-bottom:18px;
  max-width:640px;
  margin-left:auto;
  margin-right:auto;
}
.cta-simple .section-sub{
  margin-bottom:32px;
  max-width:560px;
}

/* ============================================
   CONTACT
   ============================================ */
.contact-main{padding-top:60px}
.contact-grid{
  display:grid;
  grid-template-columns:1fr 1.1fr;
  gap:64px;
  align-items:start;
}
.contact-info .section-title{
  text-align:left;
  font-size:clamp(1.8rem,3.5vw,2.6rem);
  margin-bottom:16px;
}
.contact-info .section-sub{
  text-align:left;
  margin:0 0 36px;
}
.contact-methods{
  display:flex;
  flex-direction:column;
  gap:14px;
  margin-bottom:40px;
}
.contact-method{
  display:flex;
  align-items:center;
  gap:18px;
  padding:22px 24px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--r-md);
  transition:all .3s var(--ease);
  position:relative;
}
.contact-method:hover{
  border-color:var(--gold);
  transform:translateX(4px);
  box-shadow:var(--shadow-md);
}
.contact-method.primary{
  background:var(--navy);
  border-color:var(--navy);
}
.contact-method.primary .method-text strong{color:#fff}
.contact-method.primary .method-text span{color:rgba(255,255,255,.7)}
.contact-method.primary .method-icon{background:rgba(201,169,97,.2);color:var(--gold)}
.contact-method.primary .method-arrow{color:var(--gold)}
.contact-method.primary:hover{background:var(--navy-2);border-color:var(--gold)}
.method-icon{
  flex-shrink:0;
  width:48px;height:48px;
  background:var(--bg-cream);
  border-radius:var(--r-sm);
  display:flex;align-items:center;justify-content:center;
  color:var(--gold);
}
.method-icon svg{width:22px;height:22px}
.method-text{flex:1;display:flex;flex-direction:column;gap:2px}
.method-text strong{
  color:var(--navy);
  font-size:1rem;
  font-weight:600;
}
.method-text span{
  color:var(--muted);
  font-size:.88rem;
}
.method-arrow{
  color:var(--muted);
  font-size:1.2rem;
  transition:transform .25s var(--ease);
}
.contact-method:hover .method-arrow{transform:translateX(4px)}

.contact-hours{
  padding:24px;
  background:var(--bg-cream);
  border-left:3px solid var(--gold);
  border-radius:var(--r-sm);
}
.contact-hours h4{
  font-family:'Poppins',sans-serif;
  font-size:.85rem;
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:.08em;
  color:var(--gold);
  margin-bottom:8px;
}
.contact-hours p{
  color:var(--ink-2);
  font-size:.95rem;
  line-height:1.5;
}
.contact-hours strong{color:var(--navy)}

/* Contact Form */
.contact-form-wrap{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--r-lg);
  padding:44px 40px;
  box-shadow:var(--shadow-md);
}
.contact-form h3{
  font-size:1.6rem;
  margin-bottom:8px;
}
.form-desc{
  color:var(--muted);
  font-size:.95rem;
  line-height:1.6;
  margin-bottom:28px;
}
.form-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
  margin-bottom:14px;
}
.contact-form .form-group{
  margin-bottom:14px;
  display:flex;
  flex-direction:column;
  gap:6px;
}
.contact-form label{
  font-size:.85rem;
  font-weight:600;
  color:var(--navy);
  letter-spacing:.02em;
}
.contact-form input,
.contact-form select,
.contact-form textarea{
  width:100%;
  padding:14px 16px;
  background:var(--bg-alt);
  border:1.5px solid var(--line);
  border-radius:var(--r-sm);
  font-size:.95rem;
  color:var(--navy);
  font-family:inherit;
  transition:all .25s var(--ease);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus{
  border-color:var(--gold);
  background:#fff;
  box-shadow:0 0 0 4px rgba(201,169,97,.1);
}
.contact-form textarea{resize:vertical;min-height:120px}
.form-disclaimer{
  text-align:center;
  font-size:.82rem;
  color:var(--muted);
  margin-top:14px;
  line-height:1.5;
}

/* ============================================
   RESPONSIVE — PAGE STYLES
   ============================================ */
@media (max-width:1024px){
  .detail-grid{grid-template-columns:1fr;gap:48px}
  .detail-grid.reverse .detail-content{order:1}
  .detail-grid.reverse .detail-visual{order:2}
  .story-grid{grid-template-columns:1fr;gap:48px}
  .values-grid{grid-template-columns:repeat(2, 1fr)}
  .founder-card{grid-template-columns:1fr;gap:32px;padding:48px 32px;text-align:center}
  .founder-photo{margin:0 auto}
  .founder-right .section-title{text-align:center}
  .contact-grid{grid-template-columns:1fr;gap:48px}
  .contact-info .section-title,
  .contact-info .section-sub{text-align:left}
}
@media (max-width:768px){
  .page-hero{padding:130px 0 60px}
  .service-detail{padding:60px 0}
  .values-grid{grid-template-columns:1fr;max-width:380px;margin:0 auto}
  .founder-card{padding:36px 22px}
  .founder-photo{width:180px;height:180px}
  .photo-placeholder{font-size:3.6rem}
  .form-row{grid-template-columns:1fr;gap:0}
  .contact-form-wrap{padding:32px 22px}
  .cta-simple{padding:48px 24px}
  .review-card.offset{margin-left:16px}
}

/* ============================================
   PRICING PAGE
   ============================================ */
.pricing-section{padding:80px 0 120px;background:#fff}

.pricing-toggle{
  display:flex;align-items:center;justify-content:center;
  gap:14px;
  margin-bottom:64px;
}
.pricing-toggle-pill{
  display:inline-flex;align-items:center;
  padding:6px;
  background:var(--bg-alt);
  border:1px solid var(--line);
  border-radius:50px;
  font-size:.88rem;
  font-weight:600;
  color:var(--muted);
}
.pricing-toggle-pill span{
  padding:9px 22px;
  border-radius:50px;
  cursor:pointer;
  transition:all .3s var(--ease);
}
.pricing-toggle-pill span.active{
  background:var(--navy);
  color:#fff;
  box-shadow:0 4px 12px rgba(15,29,58,.18);
}
.save-badge{
  background:var(--gold);
  color:var(--navy);
  font-size:.7rem;
  font-weight:700;
  padding:3px 8px;
  border-radius:50px;
  margin-left:6px;
  letter-spacing:.04em;
}

.pricing-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:28px;
  align-items:stretch;
}
.pricing-card{
  position:relative;
  background:#fff;
  border:1.5px solid var(--line);
  border-radius:var(--r-lg);
  padding:44px 36px;
  display:flex;
  flex-direction:column;
  transition:all .4s var(--ease);
}
.pricing-card:hover{
  transform:translateY(-6px);
  box-shadow:var(--shadow-lg);
  border-color:transparent;
}

.pricing-card.featured{
  background:linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 100%);
  border-color:var(--navy);
  color:#fff;
  transform:scale(1.04);
  box-shadow:0 25px 70px rgba(15,29,58,.18);
  z-index:2;
}
.pricing-card.featured:hover{
  transform:scale(1.04) translateY(-6px);
}
.pricing-card.featured h3{color:#fff}
.pricing-card.featured .plan-desc{color:rgba(255,255,255,.7)}
.pricing-card.featured .plan-price{color:#fff}
.pricing-card.featured .plan-price-unit{color:rgba(255,255,255,.6)}
.pricing-card.featured .plan-features li{color:rgba(255,255,255,.85)}
.pricing-card.featured .plan-features li::before{
  background:var(--gold);
  color:var(--navy);
}
.pricing-card.featured .plan-divider{background:rgba(255,255,255,.12)}

.popular-tag{
  position:absolute;
  top:-14px;left:50%;
  transform:translateX(-50%);
  background:var(--gold);
  color:var(--navy);
  font-size:.72rem;
  font-weight:700;
  letter-spacing:.12em;
  text-transform:uppercase;
  padding:7px 18px;
  border-radius:50px;
  box-shadow:0 4px 12px rgba(201,169,97,.4);
  white-space:nowrap;
}

.plan-icon{
  width:54px;height:54px;
  background:var(--bg-cream);
  border-radius:var(--r-sm);
  display:flex;align-items:center;justify-content:center;
  color:var(--gold);
  margin-bottom:22px;
}
.pricing-card.featured .plan-icon{
  background:rgba(201,169,97,.18);
}
.plan-icon svg{width:26px;height:26px}

.plan-name{
  font-size:1.4rem;
  font-weight:700;
  margin-bottom:8px;
  letter-spacing:-.01em;
}
.plan-desc{
  color:var(--muted);
  font-size:.92rem;
  line-height:1.55;
  margin-bottom:24px;
  min-height:60px;
}
.plan-price-wrap{
  display:flex;align-items:baseline;gap:6px;
  margin-bottom:6px;
}
.plan-currency{
  font-size:1.4rem;
  font-weight:600;
  color:var(--navy);
}
.pricing-card.featured .plan-currency{color:#fff}
.plan-price{
  font-family:'Poppins',sans-serif;
  font-size:3.4rem;
  font-weight:800;
  color:var(--navy);
  line-height:1;
  letter-spacing:-.03em;
}
.plan-price-unit{
  color:var(--muted);
  font-size:.92rem;
  margin-bottom:28px;
}
.plan-divider{
  height:1px;
  background:var(--line);
  margin:0 -8px 28px;
}
.plan-features{
  display:flex;
  flex-direction:column;
  gap:14px;
  margin-bottom:32px;
  flex:1;
}
.plan-features li{
  display:flex;
  align-items:flex-start;
  gap:12px;
  font-size:.94rem;
  color:var(--ink-2);
  line-height:1.5;
}
.plan-features li::before{
  content:'✓';
  flex-shrink:0;
  width:22px;height:22px;
  background:var(--gold);
  color:#fff;
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  font-size:.7rem;
  font-weight:700;
  margin-top:1px;
}
.plan-cta{
  display:block;
  text-align:center;
  padding:15px 24px;
  border-radius:var(--r-sm);
  font-weight:600;
  font-size:.95rem;
  transition:all .3s var(--ease);
}
.plan-cta-primary{
  background:var(--navy);
  color:#fff;
}
.plan-cta-primary:hover{
  background:var(--navy-2);
  transform:translateY(-2px);
  box-shadow:0 10px 24px rgba(15,29,58,.2);
}
.pricing-card.featured .plan-cta-primary{
  background:var(--gold);
  color:var(--navy);
}
.pricing-card.featured .plan-cta-primary:hover{
  background:var(--gold-2);
  box-shadow:0 10px 24px rgba(201,169,97,.4);
}
.plan-cta-outline{
  border:1.5px solid var(--line);
  color:var(--navy);
}
.plan-cta-outline:hover{
  border-color:var(--navy);
  background:var(--navy);
  color:#fff;
}

/* Comparison/Trust strip */
.pricing-trust{
  margin-top:80px;
  padding:36px 40px;
  background:var(--bg-cream);
  border-radius:var(--r-lg);
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:24px;
}
.pricing-trust-item{
  display:flex;
  align-items:center;
  gap:14px;
}
.trust-icon{
  flex-shrink:0;
  width:42px;height:42px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  color:var(--gold);
}
.trust-icon svg{width:18px;height:18px}
.pricing-trust-item strong{
  display:block;
  font-size:.92rem;
  font-weight:600;
  color:var(--navy);
  margin-bottom:2px;
}
.pricing-trust-item span{
  font-size:.8rem;
  color:var(--muted);
}

/* Pricing FAQ */
.pricing-faq{background:var(--bg-alt)}

@media (max-width:1024px){
  .pricing-grid{grid-template-columns:1fr;max-width:480px;margin:0 auto;gap:24px}
  .pricing-card.featured{transform:none}
  .pricing-card.featured:hover{transform:translateY(-6px)}
  .pricing-trust{grid-template-columns:repeat(2, 1fr);padding:28px}
}
@media (max-width:768px){
  .pricing-section{padding:56px 0 80px}
  .pricing-card{padding:36px 28px}
  .plan-price{font-size:2.8rem}
  .pricing-trust{grid-template-columns:1fr;padding:24px}
}

/* ============================================
   PHONE MOCKUP — Live scrolling website preview
   ============================================ */
.phone-mockup{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:18px;
}
.phone-frame{
  position:relative;
  width:300px;
  height:600px;
  background:#1a1a1a;
  border-radius:42px;
  padding:14px 10px;
  box-shadow:
    0 30px 60px rgba(15,29,58,.25),
    0 0 0 2px #2a2a2a,
    inset 0 0 0 2px #0a0a0a;
}
.phone-notch{
  position:absolute;
  top:14px;
  left:50%;
  transform:translateX(-50%);
  width:90px;height:24px;
  background:#0a0a0a;
  border-radius:0 0 14px 14px;
  z-index:3;
}
.phone-screen{
  position:relative;
  width:100%;
  height:100%;
  background:#fff;
  border-radius:30px;
  overflow:hidden;
}
.phone-scroll-wrap{
  position:relative;
  width:100%;
  height:100%;
  overflow:hidden;
}
.phone-iframe{
  /* Render at mobile viewport (~375px), then scale down to fit the 280px screen */
  width:375px;
  height:1600px; /* tall enough to capture lots of content for scrolling */
  border:0;
  display:block;
  transform-origin:top left;
  transform:scale(0.747);
  pointer-events:none;
  /* Start position skips past the very top so the phone number bar in header is hidden */
  animation:phoneScroll 24s ease-in-out infinite;
}
@keyframes phoneScroll{
  0%, 8%   { transform:scale(0.747) translateY(-180px); } /* skip top header w/ phone number */
  35%      { transform:scale(0.747) translateY(-600px); } /* mid section */
  60%      { transform:scale(0.747) translateY(-1100px); } /* lower content */
  85%      { transform:scale(0.747) translateY(-1500px); } /* near bottom */
  92%,100% { transform:scale(0.747) translateY(-180px); } /* loop back */
}
/* Overlay to permanently mask the top header stripe (where phone number lives) */
.phone-overlay{
  position:absolute;
  top:0;left:0;right:0;
  height:64px;
  background:#fff;
  pointer-events:none;
  z-index:2;
  /* Soft fade-out at bottom so the mask blends naturally */
  -webkit-mask-image:linear-gradient(180deg, #000 70%, transparent);
  mask-image:linear-gradient(180deg, #000 70%, transparent);
}
.phone-home-indicator{
  position:absolute;
  bottom:7px;
  left:50%;
  transform:translateX(-50%);
  width:100px;height:4px;
  background:#fff;
  opacity:.5;
  border-radius:50px;
  z-index:3;
}
.phone-caption{
  font-size:.85rem;
  color:var(--muted);
  font-weight:500;
  margin-top:4px;
  text-align:center;
  display:flex;
  align-items:center;
  gap:8px;
}
.phone-caption::before{
  content:'';
  display:inline-block;
  width:8px;height:8px;
  background:#22c55e;
  border-radius:50%;
  box-shadow:0 0 0 3px rgba(34,197,94,.2);
}
@media (max-width:768px){
  .phone-frame{width:260px;height:520px}
  .phone-iframe{transform:scale(0.64) translateY(-180px)}
  @keyframes phoneScroll{
    0%, 8%   { transform:scale(0.64) translateY(-180px); }
    35%      { transform:scale(0.64) translateY(-600px); }
    60%      { transform:scale(0.64) translateY(-1100px); }
    85%      { transform:scale(0.64) translateY(-1500px); }
    92%,100% { transform:scale(0.64) translateY(-180px); }
  }
}
