/* =============================================
   AT Mobile — style.css
   โทนสี: แดง (#C62828) + ขาว + Obsidian Dark
   ============================================= */

/* ----- Reset ----- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Sarabun', 'Noto Sans Thai', Arial, sans-serif;
  line-height: 1.75;
  color: #1a1a1a;
  background: #fff;
  padding-bottom: 68px;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }

/* ----- Variables ----- */
:root {
  --red:          #C62828;
  --red-dark:     #8E1A1A;
  --red-deep:     #5C0A0A;
  --red-mid:      #EF5350;
  --red-light:    #FFEBEE;
  --gold:         #E6820A;
  --gold-warm:    #F5C518;
  --obsidian:     #080206;
  --font-display: 'Kanit', 'Sarabun', sans-serif;
  --text:         #1a1a1a;
  --text-muted:   #64748B;
  --bg:           #fff;
  --bg-light:     #FFF8F8;
  --border:       #F0E0E0;
  --radius:       12px;
  --radius-lg:    18px;
  --shadow:       0 2px 20px rgba(198,40,40,0.08);
  --shadow-lg:    0 8px 48px rgba(198,40,40,0.22);
  --shadow-card:  0 1px 3px rgba(0,0,0,0.06), 0 4px 16px rgba(198,40,40,0.07);
  --max-w:        1100px;
}

/* ----- Container ----- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* =============================================
   HEADER
   ============================================= */
#header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.92);
  border-bottom: 1px solid rgba(198,40,40,0.15);
  box-shadow: 0 1px 32px rgba(0,0,0,0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.header-inner { display: flex; align-items: center; height: 68px; gap: 20px; }
.logo-link { flex-shrink: 0; display: flex; align-items: center; }
.logo-img  { height: 44px; width: auto; object-fit: contain; }

.nav-links { display: flex; align-items: center; gap: 24px; margin-left: auto; }
.nav-links a {
  font-weight: 600; font-size: 0.88rem; color: var(--text);
  padding: 4px 0; position: relative; letter-spacing: 0.01em;
  transition: color .2s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 2px; background: var(--red);
  transform: scaleX(0); transform-origin: left;
  transition: transform .25s cubic-bezier(.4,0,.2,1);
}
.nav-links a:hover { color: var(--red); }
.nav-links a:hover::after { transform: scaleX(1); }

.header-phone {
  font-family: var(--font-display);
  font-weight: 700; font-size: 0.9rem; color: var(--red);
  white-space: nowrap; flex-shrink: 0;
  background: var(--red-light); border-radius: 99px;
  padding: 6px 14px; transition: background .2s, color .2s;
  letter-spacing: 0.01em;
}
.header-phone:hover { background: var(--red); color: #fff; }

.menu-btn {
  display: none; background: none; border: 1.5px solid var(--border);
  border-radius: 8px; width: 40px; height: 40px; cursor: pointer;
  color: var(--red); align-items: center; justify-content: center;
  flex-shrink: 0; margin-left: auto;
}
.menu-btn:hover { background: var(--bg-light); }

.mobile-nav { display: none; flex-direction: column; background: rgba(255,255,255,0.97); border-top: 1px solid var(--border); padding: 8px 24px 16px; backdrop-filter: blur(14px); }
.mobile-nav.open { display: flex; }
.mobile-nav a { padding: 12px 0; font-weight: 600; border-bottom: 1px solid var(--border); transition: color .2s, padding-left .2s; }
.mobile-nav a:hover { color: var(--red); padding-left: 6px; }
.mobile-phone-link { color: var(--red) !important; font-weight: 700 !important; font-size: 1rem; margin-top: 4px; }

/* =============================================
   HERO
   ============================================= */
.hero {
  background: var(--obsidian);
  color: #fff;
  padding: 88px 0 108px;
  position: relative;
  overflow: hidden;
}

/* Atmospheric red glow — bottom-left */
.hero-glow-bl {
  position: absolute; bottom: -120px; left: -80px;
  width: 680px; height: 480px;
  background: radial-gradient(ellipse, rgba(198,40,40,0.42) 0%, rgba(198,40,40,0.08) 55%, transparent 75%);
  pointer-events: none; z-index: 0;
}

/* Subtle top-right accent */
.hero-glow-tr {
  position: absolute; top: -60px; right: -60px;
  width: 380px; height: 320px;
  background: radial-gradient(ellipse, rgba(92,10,10,0.35) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
}

/* Grain noise overlay */
.hero-noise {
  position: absolute; inset: 0; z-index: 1;
  opacity: 0.035; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 300px 300px;
}

.hero-bg-shape {
  position: absolute; top: 30%; right: 5%;
  width: 1px; height: 55%;
  background: linear-gradient(180deg, transparent 0%, rgba(198,40,40,0.25) 50%, transparent 100%);
  pointer-events: none; z-index: 1;
}
.hero-bg-shape::after {
  content: '';
  position: absolute; top: 20%; left: 12px;
  width: 1px; height: 40%;
  background: linear-gradient(180deg, transparent 0%, rgba(198,40,40,0.12) 50%, transparent 100%);
}

.hero-grid {
  display: grid; grid-template-columns: 1fr 440px;
  gap: 40px; align-items: center; position: relative; z-index: 2;
}

.hero-content { display: flex; flex-direction: column; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(198,40,40,0.2); border: 1px solid rgba(198,40,40,0.45);
  color: rgba(255,255,255,0.88); padding: 6px 16px; border-radius: 999px;
  font-size: 0.8rem; font-weight: 600; margin-bottom: 24px; width: fit-content;
  letter-spacing: 0.02em;
}
.badge-dot {
  width: 7px; height: 7px; background: #4ade80; border-radius: 50%;
  flex-shrink: 0; box-shadow: 0 0 0 3px rgba(74,222,128,.28);
  animation: pulseDot 2s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 3px rgba(74,222,128,.28); }
  50%       { box-shadow: 0 0 0 5px rgba(74,222,128,.12); }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 900; line-height: 1.15; margin-bottom: 20px;
  letter-spacing: -0.01em;
  animation: heroFadeUp .8s cubic-bezier(.4,0,.2,1) both;
}
.hero-h1-accent {
  color: var(--gold-warm);
  text-shadow: 0 0 40px rgba(245,197,24,0.3);
}
.hero-sub {
  font-size: 1.05rem; color: rgba(255,255,255,.65);
  margin-bottom: 36px; line-height: 1.85;
  animation: heroFadeUp .8s .15s cubic-bezier(.4,0,.2,1) both;
}

.hero-ctas {
  display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 36px;
  animation: heroFadeUp .8s .28s cubic-bezier(.4,0,.2,1) both;
}

.hero-stats {
  display: flex; align-items: center; flex-wrap: wrap; gap: 12px;
  animation: heroFadeUp .8s .4s cubic-bezier(.4,0,.2,1) both;
}
.stat { text-align: center; }
.stat strong {
  display: block; font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 900;
  color: var(--gold-warm); line-height: 1;
  text-shadow: 0 0 20px rgba(245,197,24,0.25);
}
.stat span   { font-size: 0.72rem; color: rgba(255,255,255,.5); letter-spacing: 0.04em; text-transform: uppercase; }
.stat-divider { width: 1px; height: 36px; background: rgba(255,255,255,.12); flex-shrink: 0; }

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* =============================================
   PREMIUM CSS PHONE MOCKUPS
   ============================================= */
.hero-phones {
  display: flex; gap: 20px;
  justify-content: center; align-items: flex-end;
  padding-bottom: 16px;
}

.phone-wrap { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.phone-wrap--left  { transform: rotate(-5deg) translateY(18px); }
.phone-wrap--right { transform: rotate(4deg) translateY(-14px); }

.phone-mockup {
  width: 168px; height: 352px;
  position: relative; flex-shrink: 0;
}

/* Outer metallic shell */
.phone-shell {
  width: 100%; height: 100%;
  border-radius: 42px;
  background: linear-gradient(165deg, #404040 0%, #1e1e1e 45%, #0e0e0e 100%);
  box-shadow:
    inset 0 0 0 0.5px rgba(255,255,255,0.18),
    inset 0 2px 4px rgba(255,255,255,0.06),
    0 0 0 0.5px rgba(0,0,0,0.9),
    0 28px 90px rgba(0,0,0,0.7),
    0 10px 30px rgba(0,0,0,0.5);
  position: relative; overflow: hidden;
}

/* Screen inset */
.phone-screen-wrap {
  position: absolute;
  top: 10px; left: 10px; right: 10px; bottom: 10px;
  border-radius: 32px; overflow: hidden; background: #000;
}

/* iPhone Dynamic Island */
.phone-di {
  position: absolute;
  top: 13px; left: 50%; transform: translateX(-50%);
  width: 80px; height: 26px;
  background: #000; border-radius: 22px;
  z-index: 10;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.05), inset 0 0 0 1px rgba(255,255,255,0.04);
}

/* Samsung punch hole */
.phone-punch {
  position: absolute;
  top: 16px; left: 50%; transform: translateX(-50%);
  width: 14px; height: 14px;
  background: #000; border-radius: 50%;
  z-index: 10;
  box-shadow: 0 0 0 2px rgba(255,255,255,0.05);
}

/* Screen wallpaper backgrounds */
.phone-bg { position: absolute; inset: 0; }

.phone-bg--iphone {
  background:
    radial-gradient(ellipse at 20% 20%, #9b1dca 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, #d50063 0%, transparent 50%),
    radial-gradient(ellipse at 60% 30%, #5521b5 0%, transparent 55%),
    #08061a;
}

.phone-bg--samsung {
  background:
    radial-gradient(ellipse at 25% 25%, #005acd 0%, transparent 50%),
    radial-gradient(ellipse at 75% 75%, #00b4e0 0%, transparent 50%),
    radial-gradient(ellipse at 50% 60%, #20124d 0%, transparent 55%),
    #020b1a;
}

/* Animated glow overlay */
.phone-overlay-glow {
  position: absolute; inset: 0;
  opacity: 0.35;
  animation: glowPulse 4s ease-in-out infinite alternate;
}
.phone-glow--purple {
  background: radial-gradient(ellipse at 50% 40%, #b040ff 0%, transparent 65%);
}
.phone-glow--blue {
  background: radial-gradient(ellipse at 50% 40%, #0088ff 0%, transparent 65%);
}
@keyframes glowPulse {
  from { opacity: 0.25; }
  to   { opacity: 0.5; }
}

/* Screen text overlay */
.phone-screen-text {
  position: absolute; bottom: 36px; left: 0; right: 0;
  text-align: center; z-index: 5;
  padding: 0 10px;
}
.phone-screen-text span {
  display: block; font-size: 0.68rem; font-weight: 700;
  color: rgba(255,255,255,0.92); letter-spacing: 0.02em;
  margin-bottom: 5px; text-shadow: 0 1px 10px rgba(0,0,0,0.8);
}
.phone-screen-text small {
  display: block; font-size: 0.52rem; color: rgba(255,255,255,0.45);
  letter-spacing: 0.07em; text-transform: uppercase;
}

/* iPhone Home Indicator */
.phone-home-indicator {
  position: absolute; bottom: 10px;
  left: 50%; transform: translateX(-50%);
  width: 56px; height: 4px;
  background: rgba(255,255,255,0.36); border-radius: 4px;
  z-index: 10;
}

/* Samsung S-Pen slot */
.phone-s-pen {
  position: absolute; right: 9px; top: 35%; bottom: 35%;
  width: 3px;
  background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.22), rgba(255,255,255,0.12));
  border-radius: 2px; z-index: 10;
}

/* USB-C port */
.phone-usbc {
  position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%);
  width: 32px; height: 7px; background: #060606;
  border-radius: 4px; border: 1px solid rgba(255,255,255,0.07); z-index: 5;
}

/* Glass shine */
.phone-shine {
  position: absolute; top: 0; left: 0; right: 0; height: 40%;
  background: linear-gradient(180deg, rgba(255,255,255,0.055) 0%, rgba(255,255,255,0.01) 70%, transparent 100%);
  border-radius: 42px 42px 24px 24px; pointer-events: none;
}

/* Side buttons */
.phone-side-btn {
  position: absolute; border-radius: 2px;
  background: linear-gradient(to right, #222, #3a3a3a, #222);
}
/* iPhone buttons */
.phone-iphone .phone-silent  { left: -3.5px; top: 90px;  width: 3.5px; height: 22px; border-radius: 2px 0 0 2px; }
.phone-iphone .phone-vol-up  { left: -3.5px; top: 124px; width: 3.5px; height: 36px; border-radius: 2px 0 0 2px; }
.phone-iphone .phone-vol-dn  { left: -3.5px; top: 170px; width: 3.5px; height: 36px; border-radius: 2px 0 0 2px; }
.phone-iphone .phone-power   { right: -3.5px; top: 136px; width: 3.5px; height: 54px; border-radius: 0 2px 2px 0; }
/* Samsung buttons */
.phone-samsung .phone-vol-up { left: -3.5px; top: 106px; width: 3.5px; height: 36px; border-radius: 2px 0 0 2px; }
.phone-samsung .phone-vol-dn { left: -3.5px; top: 152px; width: 3.5px; height: 36px; border-radius: 2px 0 0 2px; }
.phone-samsung .phone-power  { right: -3.5px; top: 126px; width: 3.5px; height: 48px; border-radius: 0 2px 2px 0; }

/* Phone tag label */
.phone-tag {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 99px; padding: 8px 16px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.phone-tag-dot {
  width: 8px; height: 8px; background: #4ade80; border-radius: 50%;
  flex-shrink: 0; box-shadow: 0 0 0 3px rgba(74,222,128,.25);
}
.phone-tag-dot--blue { background: #38bdf8; box-shadow: 0 0 0 3px rgba(56,189,248,.25); }
.phone-tag-brand { font-size: 0.85rem; color: #fff; font-weight: 800; }
.phone-tag-sub   { font-size: 0.7rem; color: rgba(255,255,255,.55); }

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 24px; border-radius: 999px;
  font-family: var(--font-display); font-weight: 700; font-size: 0.95rem;
  cursor: pointer; border: 2px solid transparent;
  transition: transform .2s cubic-bezier(.4,0,.2,1), box-shadow .2s, background .2s, color .2s;
  white-space: nowrap; letter-spacing: 0.01em;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn:active { transform: translateY(0); }

.btn-white   { background: #fff; color: var(--red); border-color: #fff; }
.btn-white:hover { background: #fff5f5; box-shadow: 0 8px 32px rgba(255,255,255,0.25); }
.btn-line    { background: #06C755; color: #fff; border-color: #06C755; }
.btn-line:hover { background: #05A547; border-color: #05A547; }
.btn-outline { background: rgba(255,255,255,0.08); color: #fff; border-color: rgba(255,255,255,.32); }
.btn-outline:hover { background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.65); }
.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,.45); }
.btn-outline-white:hover { background: rgba(255,255,255,.15); border-color: #fff; }
.btn-red   { background: var(--red); color: #fff; border-color: var(--red); }
.btn-red:hover { background: var(--red-dark); border-color: var(--red-dark); box-shadow: 0 8px 32px rgba(198,40,40,0.4); }

/* =============================================
   SECTION BASE
   ============================================= */
.section { padding: 88px 0; }
.section--light { background: var(--bg-light); }
.section h2 {
  font-family: var(--font-display);
  text-align: center; font-size: clamp(1.6rem, 3.2vw, 2.3rem);
  font-weight: 800; color: var(--red-dark); margin-bottom: 10px;
  letter-spacing: -0.01em; line-height: 1.2;
}
.section h2::after {
  content: ''; display: block; width: 40px; height: 3px;
  background: var(--red); margin: 12px auto 0; border-radius: 99px;
}
/* Suppress decorative bar for exceptions */
.pickup-content h2::after,
.blog-hero h1::after,
.toc-title::after { display: none; }
.section-sub { text-align: center; color: var(--text-muted); margin-bottom: 56px; font-size: 1rem; }

/* =============================================
   BRAND CARDS (Premium — No Images Needed)
   ============================================= */
.brand-cards {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-bottom: 24px;
}

.brand-card {
  min-width: 0;
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  transition: transform .3s cubic-bezier(.4,0,.2,1), box-shadow .3s cubic-bezier(.4,0,.2,1), border-color .3s;
  background: #fff;
}
.brand-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(198,40,40,0.18), 0 4px 16px rgba(0,0,0,0.08);
  border-color: rgba(198,40,40,0.25);
}

/* Visual header area */
.brand-visual {
  height: 210px; position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.brand-visual--apple   { background: linear-gradient(140deg, #161616 0%, #2a2a2a 55%, #161616 100%); }
.brand-visual--samsung { background: linear-gradient(140deg, #050e2a 0%, #0a2462 55%, #050e2a 100%); }
.brand-visual--android { background: linear-gradient(140deg, #0d280d 0%, #1a5c1a 55%, #0d280d 100%); }

/* Decorative phone silhouettes */
.brand-deco-phone {
  position: absolute;
  width: 64px; height: 120px;
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  pointer-events: none;
}
.brand-deco-phone--1 { left: 14px; top: 18px; transform: rotate(-16deg); }
.brand-deco-phone--2 { right: 14px; bottom: -24px; transform: rotate(12deg); opacity: .55; }
.brand-deco-phone::after {
  content: ''; position: absolute; top: 10px; left: 50%; transform: translateX(-50%);
  width: 22px; height: 3px; background: rgba(255,255,255,0.15); border-radius: 2px;
}

/* Logo circle */
.brand-logo-wrap {
  width: 72px; height: 72px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 2;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
  transition: transform .25s, background .25s;
}
.brand-card:hover .brand-logo-wrap { transform: scale(1.08); background: rgba(255,255,255,0.16); }

/* Large ghost text */
.brand-bg-text {
  position: absolute; bottom: 8px; right: 12px;
  font-size: 3.8rem; font-weight: 900;
  color: rgba(255,255,255,0.055);
  line-height: 1; letter-spacing: -2px;
  user-select: none; z-index: 1;
  pointer-events: none;
}

/* Card body */
.brand-body { padding: 22px 24px; }
.brand-body h3 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 800; color: var(--red-dark); margin-bottom: 8px; word-break: keep-all; overflow-wrap: break-word; }
.brand-body p  { color: var(--text-muted); font-size: 0.875rem; margin-bottom: 14px; line-height: 1.6; }

.brand-model-list { display: flex; flex-direction: column; gap: 5px; }
.brand-model-list li {
  font-size: 0.82rem; color: var(--text-muted);
  padding-left: 14px; position: relative;
}
.brand-model-list li::before { content: '›'; position: absolute; left: 0; color: var(--red); font-weight: 700; }

.brands-note { text-align: center; color: var(--text-muted); font-size: 0.875rem; }
.brands-note a { color: var(--red); font-weight: 700; text-decoration: underline; }

/* =============================================
   PICKUP SERVICE
   ============================================= */
.section-pickup {
  background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 100%);
  color: #fff; padding: 64px 0;
}
.pickup-inner { display: grid; grid-template-columns: auto 1fr; gap: 40px; align-items: start; }
.pickup-icon {
  width: 96px; height: 96px;
  background: rgba(255,255,255,.15); border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: #FFD580;
}
.pickup-badge {
  display: inline-block; background: rgba(255,213,128,.18);
  border: 1px solid rgba(255,213,128,.35); color: #FFD580;
  padding: 4px 12px; border-radius: 999px; font-size: 0.78rem;
  font-weight: 700; margin-bottom: 12px; text-transform: uppercase; letter-spacing: .05em;
}
.pickup-content h2 { text-align: left; color: #fff; font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 800; margin-bottom: 12px; }
.pickup-content p  { color: rgba(255,255,255,.82); font-size: 1rem; line-height: 1.75; margin-bottom: 20px; }
.pickup-features { display: flex; flex-direction: column; gap: 8px; margin-bottom: 28px; }
.pickup-features li { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.9); font-size: 0.95rem; font-weight: 600; }
.pickup-features li svg { color: #4ade80; flex-shrink: 0; }
.pickup-ctas { display: flex; flex-wrap: wrap; gap: 12px; }

/* =============================================
   PROCESS / STEPS
   ============================================= */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.step {
  min-width: 0;
  background: #fff; border-radius: var(--radius-lg);
  padding: 52px 28px 32px; text-align: center;
  box-shadow: var(--shadow-card); position: relative;
  border: 1px solid var(--border);
  /* ไม่ใช้ overflow:hidden เพราะทำให้ badge วงกลม (top:-18px) ถูกตัด */
  transition: transform .3s cubic-bezier(.4,0,.2,1), box-shadow .3s;
}
.step::before {
  content: attr(data-step);
  position: absolute; bottom: 0; right: 10px;
  font-family: var(--font-display); font-size: 6rem; font-weight: 900;
  color: rgba(198,40,40,0.05); line-height: 1; pointer-events: none;
  user-select: none; letter-spacing: -4px;
}
.step:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(198,40,40,0.14);
}
.step-num {
  position: absolute; top: -18px; left: 50%; transform: translateX(-50%);
  width: 40px; height: 40px; background: var(--red); color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 900; font-size: 1.1rem;
  box-shadow: 0 4px 20px rgba(198,40,40,.45);
}
.step-icon { color: var(--red); margin-bottom: 14px; display: flex; justify-content: center; }
.step h3 { font-family: var(--font-display); font-size: 1.05rem; font-weight: 800; color: var(--red-dark); margin-bottom: 10px; word-break: keep-all; overflow-wrap: break-word; }
.step p   { color: var(--text-muted); font-size: 0.875rem; line-height: 1.7; }
.process-cta { text-align: center; margin-top: 48px; }

/* =============================================
   WHY US / FEATURES
   ============================================= */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature {
  min-width: 0;
  padding: 30px 28px; border: 1px solid var(--border);
  border-radius: var(--radius-lg); background: #fff;
  box-shadow: var(--shadow-card);
  transition: box-shadow .3s cubic-bezier(.4,0,.2,1), transform .3s cubic-bezier(.4,0,.2,1), border-color .3s;
  position: relative; overflow: hidden;
}
.feature::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--red), var(--red-mid));
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s cubic-bezier(.4,0,.2,1);
}
.feature:hover {
  box-shadow: 0 12px 40px rgba(198,40,40,0.13);
  transform: translateY(-4px);
  border-color: rgba(198,40,40,0.2);
}
.feature:hover::after { transform: scaleX(1); }
.feature-icon {
  width: 52px; height: 52px; border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.feature-icon--red { background: var(--red-light); color: var(--red); }
.feature h3 { font-family: var(--font-display); font-size: 1rem; font-weight: 800; color: var(--red-dark); margin-bottom: 8px; word-break: keep-all; overflow-wrap: break-word; }
.feature p  { color: var(--text-muted); font-size: 0.875rem; line-height: 1.7; }

/* =============================================
   FAQ
   ============================================= */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-card);
  transition: border-color .2s, box-shadow .2s;
}
.faq-item[open] {
  border-color: rgba(198,40,40,0.35);
  box-shadow: 0 4px 24px rgba(198,40,40,0.1);
}
.faq-item summary {
  padding: 20px 24px; font-weight: 700; font-size: 0.95rem; cursor: pointer;
  list-style: none; display: flex; justify-content: space-between; align-items: center;
  color: var(--text); user-select: none; gap: 12px;
  transition: background .15s, color .15s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item[open] summary { color: var(--red-dark); }
.faq-item summary:hover { background: var(--bg-light); color: var(--red-dark); }
.faq-item summary::after {
  content: '+'; width: 28px; height: 28px; border-radius: 50%;
  background: var(--red-light); color: var(--red);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 400; flex-shrink: 0; line-height: 1;
  transition: background .2s, transform .25s;
}
.faq-item[open] summary::after {
  content: '\2212'; background: var(--red); color: #fff;
  transform: rotate(180deg);
}
.faq-answer { padding: 4px 24px 22px; color: var(--text-muted); font-size: 0.925rem; line-height: 1.85; border-top: 1px solid var(--border); }
.faq-answer strong { color: var(--red-dark); }

/* =============================================
   CONTACT
   ============================================= */
.contact-section { background: var(--red-dark); }
.contact-section h2 { color: #fff; }
.contact-section .section-sub { color: rgba(255,255,255,.6); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 40px; align-items: start; }
.contact-channels { display: flex; flex-direction: column; gap: 14px; }
.contact-btn {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 20px; border-radius: var(--radius); color: #fff;
  font-size: 1rem; transition: transform .15s, opacity .15s;
}
.contact-btn:hover { transform: translateX(4px); opacity: .9; }
.contact-icon { width: 44px; height: 44px; background: rgba(255,255,255,.15); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-btn span:last-child { display: flex; flex-direction: column; gap: 2px; }
.contact-btn strong { font-size: 1rem; }
.contact-btn small  { font-size: 0.82rem; opacity: .8; }
.contact-btn--phone    { background: var(--red-mid); }
.contact-btn--line     { background: #06C755; }
.contact-btn--facebook { background: #1877F2; }
.contact-btn--google-review { background: #1a1a1a; border: 1px solid rgba(245,197,24,0.4); }
.contact-btn--google-review strong { color: var(--gold-warm); }
.contact-btn--phone:hover    { background: #E53935; }
.contact-btn--line:hover     { background: #05A547; }
.contact-btn--facebook:hover { background: #0D6AD4; }
.contact-btn--google-review:hover { background: #2a2a2a; border-color: var(--gold-warm); }

.contact-info-box {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius); padding: 20px 22px;
}
.contact-info-box p { display: flex; align-items: flex-start; gap: 10px; color: rgba(255,255,255,.8); font-size: 0.875rem; margin-bottom: 10px; line-height: 1.6; }
.contact-info-box p:last-child { margin-bottom: 0; }
.contact-info-box svg { flex-shrink: 0; margin-top: 3px; color: #FFD580; }

.map-container iframe {
  width: 100%; height: 380px;
  border-radius: var(--radius-lg); border: 2px solid rgba(255,255,255,.15); display: block;
}

/* =============================================
   FOOTER
   ============================================= */
.footer { background: var(--red-deep); color: rgba(255,255,255,.75); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.5fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-logo { height: 44px; width: auto; object-fit: contain; margin-bottom: 14px; }
.footer-brand p { font-size: 0.875rem; line-height: 1.8; margin-bottom: 16px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,.1); border-radius: 8px; padding: 7px 12px; font-size: 0.78rem; font-weight: 700; color: #fff; transition: background .2s; }
.footer-social a:hover { background: var(--red-mid); }
.footer-services h4, .footer-contact h4 { color: #FFD580; font-size: 0.78rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 16px; font-weight: 700; }
.footer-services li { font-size: 0.875rem; padding: 4px 0; color: rgba(255,255,255,.65); }
.footer-services li::before { content: '› '; color: var(--red-mid); }
.footer-contact p { font-size: 0.875rem; margin-bottom: 8px; line-height: 1.6; }
.footer-contact a { color: rgba(255,255,255,.75); transition: color .2s; }
.footer-contact a:hover { color: #fff; }
.footer-bottom { padding: 20px 0; text-align: center; font-size: 0.78rem; color: rgba(255,255,255,.3); }

/* =============================================
   STICKY MOBILE CTA
   ============================================= */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0;
  display: grid; grid-template-columns: 1fr 1fr;
  z-index: 200; box-shadow: 0 -4px 24px rgba(198,40,40,.3);
}
.sticky-btn {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; padding: 16px 12px; color: #fff;
  font-family: inherit; font-weight: 700; font-size: 0.95rem; transition: opacity .15s;
}
.sticky-btn:active { opacity: .85; }
.sticky-btn--phone { background: var(--red); }
.sticky-btn--line  { background: #06C755; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (min-width: 769px) {
  .sticky-cta { display: none; }
  body { padding-bottom: 0; }
}

@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-phones { display: none; }
  .hero { padding: 64px 0; text-align: center; }
  .hero-badge { margin: 0 auto 20px; }
  .hero-ctas { justify-content: center; }
  .hero-stats { justify-content: center; }
  .features { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .header-phone { display: none; }
  .menu-btn { display: flex; }
  .brand-cards { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
  .steps { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 24px; }
  .contact-channels { gap: 10px; }
  .contact-btn { padding: 12px 14px; gap: 12px; }
  .contact-icon { width: 36px; height: 36px; border-radius: 8px; }
  .contact-icon svg { width: 18px; height: 18px; }
  .contact-btn strong { font-size: 0.92rem; }
  .contact-btn small  { font-size: 0.75rem; }
  .contact-info-box { padding: 16px 18px; }
  .contact-info-box p { font-size: 0.82rem; margin-bottom: 8px; }
  .map-container iframe { height: 240px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .pickup-inner { grid-template-columns: 1fr; }
  .pickup-icon { display: none; }
}

@media (max-width: 480px) {
  .features { grid-template-columns: 1fr; }
  .hero h1 { font-size: 1.75rem; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { justify-content: center; }
}

/* =============================================
   BLOG — SHARED
   ============================================= */
.breadcrumb {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  font-size: 0.82rem; color: var(--text-muted); margin-bottom: 20px;
}
.breadcrumb a { color: var(--text-muted); transition: color .15s; }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb span[aria-current] { color: var(--text); font-weight: 600; }

.article-tag {
  display: inline-block; background: var(--red-light); color: var(--red);
  padding: 3px 10px; border-radius: 99px; font-size: 0.75rem; font-weight: 700;
}
.article-tag--soon { background: #FEF3C7; color: #92400E; }

/* =============================================
   BLOG — INDEX PAGE
   ============================================= */
.blog-hero {
  background: linear-gradient(135deg, var(--red-deep) 0%, var(--red-dark) 100%);
  color: #fff; padding: 56px 0 48px;
}
.blog-hero .breadcrumb { color: rgba(255,255,255,.6); margin-bottom: 14px; }
.blog-hero .breadcrumb a { color: rgba(255,255,255,.6); }
.blog-hero .breadcrumb a:hover { color: #fff; }
.blog-hero .breadcrumb span[aria-current] { color: rgba(255,255,255,.9); }
.blog-hero h1 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); font-weight: 800; margin-bottom: 10px; }
.blog-hero p  { color: rgba(255,255,255,.75); font-size: 1rem; }

.article-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.article-card {
  min-width: 0;
  display: block; color: inherit; text-decoration: none;
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .22s, box-shadow .22s;
}
.article-card:not(.article-card--soon):hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.article-card--soon { opacity: .72; cursor: default; }
.article-card-link { display: block; color: inherit; text-decoration: none; }

.article-card-img {
  height: 160px; display: flex; align-items: flex-end;
  padding: 16px; position: relative; overflow: hidden;
}
.article-card-img span {
  position: relative; z-index: 2; font-size: 0.82rem; font-weight: 800;
  color: rgba(255,255,255,.9); text-shadow: 0 1px 8px rgba(0,0,0,.5);
}
.article-card-img--iphone  { background: linear-gradient(140deg,#161616 0%,#3a1a6b 60%,#d50063 100%); }
.article-card-img--samsung { background: linear-gradient(140deg,#050e2a 0%,#0a2462 60%,#00b4e0 100%); }
.article-card-img--broken  { background: linear-gradient(140deg,#1a0000 0%,#5c0a0a 60%,#C62828 100%); }
.article-card-img--prep    { background: linear-gradient(140deg,#0d1a00 0%,#1a5c1a 60%,#4ade80 100%); }
.article-card-img--compare { background: linear-gradient(140deg,#1a1400 0%,#6b5000 60%,#E6820A 100%); }
.article-card-img--check   { background: linear-gradient(140deg,#001a1a 0%,#005c5c 60%,#06b6d4 100%); }

.article-card-body { padding: 20px; }
.article-card-meta { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; flex-wrap: wrap; }
.article-date { font-size: 0.75rem; color: var(--text-muted); }
.article-card-body h2,
.article-card-body h3 { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 8px; line-height: 1.5; }
.article-card-body p  { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 14px; }
.article-excerpt { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 12px; }
.article-read-more { font-size: 0.85rem; font-weight: 700; color: var(--red); }

/* =============================================
   BLOG — ARTICLE PAGE
   ============================================= */
.article-page { padding: 48px 0 80px; }
.article-container { max-width: 820px; }

.article-header { margin-bottom: 28px; }
.article-tags-row { display: flex; gap: 8px; margin-bottom: 14px; flex-wrap: wrap; }
.article-header h1 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.8vw, 2.5rem); font-weight: 900;
  color: var(--red-dark); line-height: 1.2; margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.article-h1-sub { display: block; color: var(--text); font-size: 0.85em; font-weight: 700; }
.article-meta-row {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  font-size: 0.82rem; color: var(--text-muted);
}
.article-meta-row span { display: flex; align-items: center; gap: 5px; }

.article-intro-box {
  background: var(--red-light); border-left: 4px solid var(--red);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 18px 22px; margin-bottom: 32px;
  font-size: 1rem; line-height: 1.8; color: var(--text);
}
.article-intro-box strong { color: var(--red-dark); }

/* TOC */
.article-toc {
  background: var(--bg-light); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px 28px; margin-bottom: 40px;
}
.toc-title { font-size: 0.85rem; text-transform: uppercase; letter-spacing: .07em; color: var(--text-muted); font-weight: 700; margin-bottom: 12px; }
.toc-list { display: flex; flex-direction: column; gap: 8px; counter-reset: toc; padding-left: 0; }
.toc-list li { list-style: none; }
.toc-list a {
  font-size: 0.9rem; color: var(--text); font-weight: 600;
  transition: color .15s; text-decoration: none;
}
.toc-list a:hover { color: var(--red); }

/* Article sections */
.article-section { margin-bottom: 48px; }
.article-section h2 {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 800; color: var(--red-dark);
  margin-bottom: 18px; padding-bottom: 12px;
  border-bottom: 2px solid var(--red-light);
  letter-spacing: -0.01em;
}
.article-section h2::after { display: none; }
.article-section p { font-size: 0.975rem; line-height: 1.9; color: var(--text); margin-bottom: 14px; }
.article-section ul, .article-section ol { padding-left: 20px; }
.article-section li { margin-bottom: 8px; font-size: 0.95rem; line-height: 1.75; }

/* Factor cards */
.factor-cards {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; margin-top: 20px;
}
.factor-card {
  background: var(--bg-light); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px;
}
.factor-icon { font-size: 1.6rem; margin-bottom: 8px; }
.factor-card h3 { font-size: 0.95rem; font-weight: 700; color: var(--red-dark); margin-bottom: 6px; }
.factor-card p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; margin: 0; }

/* Price table */
.price-table-wrap { overflow-x: auto; margin: 20px 0; border-radius: var(--radius); border: 1px solid var(--border); }
.price-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.price-table th {
  background: var(--red-dark); color: #fff; padding: 12px 16px;
  text-align: left; font-weight: 700; font-size: 0.85rem;
}
.price-table td { padding: 12px 16px; border-bottom: 1px solid var(--border); }
.price-table tr:last-child td { border-bottom: none; }
.price-table tr:nth-child(even) td { background: var(--bg-light); }
.price-good { color: #15803D; font-weight: 700; }
.price-mid  { color: var(--gold); font-weight: 700; }
.price-low  { color: var(--text-muted); font-weight: 600; }

/* Highlight / Note boxes */
.article-highlight-box {
  background: #EFF6FF; border: 1px solid #BFDBFE;
  border-radius: var(--radius); padding: 16px 20px; margin: 16px 0;
}
.article-highlight-box strong { display: block; color: #1D4ED8; font-size: 0.9rem; margin-bottom: 8px; }
.article-highlight-box ul { padding-left: 16px; margin: 0; }
.article-highlight-box li { font-size: 0.875rem; color: #1e3a5f; margin-bottom: 4px; }

.article-note-box {
  display: flex; gap: 12px; align-items: flex-start;
  background: #FFF8F0; border: 1px solid #FED7AA;
  border-radius: var(--radius); padding: 16px 18px; margin-top: 16px;
}
.article-note-box svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.article-note-box p { font-size: 0.875rem; color: #92400E; line-height: 1.7; margin: 0; }
.article-note-box a { color: var(--red); font-weight: 700; }

/* Prep steps */
.prep-steps { padding-left: 0; counter-reset: prep; display: flex; flex-direction: column; gap: 16px; }
.prep-steps li {
  list-style: none; counter-increment: prep;
  display: grid; grid-template-columns: auto 1fr;
  gap: 14px; align-items: start;
  background: var(--bg-light); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 16px 20px;
  position: relative;
}
.prep-steps li::before {
  content: counter(prep);
  width: 28px; height: 28px; background: var(--red); color: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.85rem; flex-shrink: 0;
}
.prep-steps strong { display: block; font-size: 0.95rem; color: var(--red-dark); margin-bottom: 4px; }
.prep-steps p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; margin: 0; }

/* Inline CTA box */
.article-cta-box {
  background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 100%);
  border-radius: var(--radius-lg); padding: 36px 40px; margin: 40px 0; color: #fff;
}
.article-cta-content h3 { font-size: 1.3rem; font-weight: 800; margin-bottom: 8px; }
.article-cta-content p  { color: rgba(255,255,255,.8); margin-bottom: 20px; font-size: 0.975rem; }
.article-cta-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* Why list */
.article-why-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.article-why-list li { display: flex; gap: 14px; align-items: flex-start; }
.article-why-list svg { color: #4ade80; flex-shrink: 0; margin-top: 2px; }
.article-why-list div { display: flex; flex-direction: column; gap: 3px; }
.article-why-list strong { font-size: 0.975rem; color: var(--text); }
.article-why-list span   { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; }

/* Related articles */
.article-related { border-top: 2px solid var(--border); padding-top: 40px; margin-top: 48px; }
.article-related h2 { font-size: 1.2rem; font-weight: 800; color: var(--red-dark); margin-bottom: 20px; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.related-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: transform .2s, box-shadow .2s; color: inherit;
}
.related-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.related-card-img { height: 100px; }
.related-card-img--broken  { background: linear-gradient(140deg,#1a0000,#C62828); }
.related-card-img--prep    { background: linear-gradient(140deg,#0d1a00,#4ade80); }
.related-card-img--compare { background: linear-gradient(140deg,#1a1400,#E6820A); }
.related-card-img--check   { background: linear-gradient(140deg,#001a1a,#06b6d4); }
.related-card-body { padding: 14px; display: flex; flex-direction: column; gap: 6px; }
.related-card-body h3 { font-size: 0.875rem; font-weight: 700; color: var(--text); line-height: 1.5; }

/* Responsive: Blog */
@media (max-width: 960px) {
  .article-grid { grid-template-columns: repeat(2, 1fr); }
  .factor-cards  { grid-template-columns: repeat(2, 1fr); }
  .related-grid  { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .article-grid  { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .factor-cards  { grid-template-columns: 1fr; }
  .related-grid  { grid-template-columns: 1fr; }
  .article-cta-box { padding: 24px 20px; }
  .article-cta-btns { flex-direction: column; }
  .article-cta-btns .btn { justify-content: center; }
  .prep-steps li { grid-template-columns: 1fr; }
  .prep-steps li::before { width: 24px; height: 24px; font-size: 0.78rem; }
}

/* =============================================
   SCROLL REVEAL
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   REVIEWS / SOCIAL PROOF
   ============================================= */

/* Trust Banner */
.trust-banner {
  display: flex; align-items: center;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E"),
    linear-gradient(130deg, var(--red-deep) 0%, var(--red-dark) 40%, var(--red) 100%);
  background-size: 300px 300px, auto;
  border-radius: var(--radius-lg);
  padding: 40px 52px;
  margin-bottom: 56px;
  flex-wrap: wrap; gap: 0;
  box-shadow: 0 16px 64px rgba(92,10,10,0.45), 0 4px 16px rgba(0,0,0,0.2);
  position: relative; overflow: hidden;
}
.trust-banner::before {
  content: '';
  position: absolute; top: -30px; right: -30px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.trust-stat {
  flex: 1; min-width: 120px;
  text-align: center; padding: 8px 12px;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.trust-num {
  display: block;
  font-family: var(--font-display);
  font-size: 3rem; font-weight: 900;
  color: var(--gold-warm); line-height: 1;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 0 30px rgba(245,197,24,0.35);
}
.trust-stat span {
  font-size: 0.78rem; color: rgba(255,255,255,.65); font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
}
.trust-divider-v {
  width: 1px; height: 56px;
  background: rgba(255,255,255,.14); flex-shrink: 0;
}

/* Reviews Grid */
.reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-bottom: 36px;
}
.review-card {
  min-width: 0;
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 26px;
  display: flex; flex-direction: column; gap: 14px;
  box-shadow: var(--shadow-card);
  transition: transform .28s cubic-bezier(.4,0,.2,1), box-shadow .28s, border-color .28s, opacity .55s ease;
  position: relative;
}
.review-card::before {
  content: '\201C';
  position: absolute; top: 16px; right: 22px;
  font-family: Georgia, serif; font-size: 4rem; line-height: 1;
  color: rgba(198,40,40,0.08); pointer-events: none;
}
.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(198,40,40,0.13);
  border-color: rgba(198,40,40,0.2);
}

.review-stars { color: #F59E0B; font-size: 1rem; letter-spacing: 2px; line-height: 1; }

.review-text {
  font-size: 0.9rem; color: var(--text-muted); line-height: 1.85; flex: 1;
  font-style: italic;
}
.review-footer {
  display: flex; align-items: center; gap: 12px;
  border-top: 1px solid var(--border); padding-top: 16px;
}
.review-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--red-light); color: var(--red);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; font-size: 1rem; flex-shrink: 0;
}
.review-avatar--blue  { background: #EFF6FF; color: #1D4ED8; }
.review-avatar--green { background: #F0FDF4; color: #15803D; }
.review-footer > div:last-child { display: flex; flex-direction: column; gap: 3px; }
.review-footer strong { font-size: 0.88rem; color: var(--text); font-weight: 700; }
.review-footer small  { font-size: 0.75rem; color: var(--text-muted); }

/* CTA below reviews */
.reviews-cta { text-align: center; }

/* Responsive */
@media (max-width: 960px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .trust-banner { padding: 22px 16px; gap: 0; }
  .trust-divider-v { display: none; }
  .trust-stat {
    min-width: 50%;
    border-bottom: 1px solid rgba(255,255,255,.12);
    padding: 14px 6px;
    min-width: 0;
    flex: 0 0 50%;
    box-sizing: border-box;
  }
  .trust-stat:nth-child(5),
  .trust-stat:nth-child(7) { border-bottom: none; }
  .trust-num {
    font-size: clamp(1.6rem, 8vw, 2.2rem);
    word-break: keep-all;
    white-space: nowrap;
  }
  .trust-stat span {
    font-size: 0.68rem;
    letter-spacing: 0.04em;
    line-height: 1.3;
  }
  .reviews-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
}
@media (max-width: 400px) {
  .trust-num { font-size: clamp(1.4rem, 7.5vw, 1.85rem); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
  .phone-overlay-glow { animation: none; }
  .reveal { opacity: 1 !important; transform: none !important; }
}
