/* =============================================
   AT Mobile — style.css (Apple Minimal production)
   AESTHETIC: Apple-style Minimal
   Off-white · IBM Plex Sans Thai · Soft shadow · Subtle red
   ============================================= */

/* ----- Reset ----- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  font-family: 'IBM Plex Sans Thai', 'IBM Plex Sans', 'Noto Sans Thai', -apple-system, system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  letter-spacing: -0.005em;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }
button { border: 0; background: 0; cursor: pointer; font: inherit; color: inherit; }
::selection { background: var(--ink); color: var(--paper); }

/* ----- Tokens ----- */
:root {
  /* Surfaces */
  --paper:        #FAFAFA;
  --paper-pure:   #FFFFFF;
  --paper-soft:   #F4F4F2;
  --paper-warm:   #F8F5F0;

  /* Ink */
  --ink:          #0A0A0A;
  --ink-2:        #1A1A1A;
  --ink-soft:     #4A4A4A;
  --ink-muted:    #737373;
  --ink-faint:    #A3A3A3;

  /* Accents (used sparingly) */
  --red:          #DC2626;
  --red-deep:     #991B1B;
  --red-soft:     #FEE2E2;
  --gold:         #B8945F;
  --green:        #16A34A;
  --line-green:   #06C755;

  /* Lines */
  --line:         #E5E5E5;
  --line-soft:    #EFEFEF;

  /* Type */
  --font-display: 'IBM Plex Sans Thai', 'IBM Plex Sans', 'Noto Sans Thai', -apple-system, system-ui, sans-serif;
  --font-body:    'IBM Plex Sans Thai', 'IBM Plex Sans', 'Noto Sans Thai', -apple-system, system-ui, sans-serif;

  /* Radius */
  --r-sm:         8px;
  --r-md:         12px;
  --r-lg:         16px;
  --r-xl:         24px;
  --r-2xl:        32px;
  --r-pill:       999px;

  /* Shadow */
  --shadow-xs:    0 1px 2px rgba(10, 10, 10, 0.04);
  --shadow-sm:    0 1px 2px rgba(10,10,10,.05), 0 2px 6px rgba(10,10,10,.04);
  --shadow-md:    0 2px 4px rgba(10,10,10,.04), 0 8px 24px rgba(10,10,10,.06);
  --shadow-lg:    0 4px 8px rgba(10,10,10,.04), 0 16px 48px rgba(10,10,10,.08);

  /* Layout */
  --container:    1180px;
  --pad-x:        24px;
}

/* ----- Container ----- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--pad-x); }

/* =============================================
   HEADER
   ============================================= */
#header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 250, 250, 0.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--line-soft);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
  gap: 16px;
}
.logo-link { flex-shrink: 0; display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-img { height: 40px; width: auto; object-fit: contain; }
.logo-text {
  font-weight: 700;
  font-size: 21px;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1;
  white-space: nowrap;
}

.nav-links { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav-links a {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--ink-soft);
  padding: 8px 14px;
  border-radius: var(--r-pill);
  transition: color .15s ease, background .15s ease;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--ink); background: rgba(0,0,0,0.04); }

.header-phone {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.92rem;
  padding: 9px 16px;
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--r-pill);
  transition: background .15s ease, transform .15s ease;
  white-space: nowrap;
}
.header-phone:hover { background: var(--ink-2); transform: translateY(-1px); }

.menu-btn {
  display: none;
  width: 40px; height: 40px;
  border-radius: var(--r-md);
  align-items: center; justify-content: center;
  color: var(--ink);
  transition: background .15s ease;
}
.menu-btn:hover { background: rgba(0,0,0,0.05); }

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--paper-pure);
  border-top: 1px solid var(--line-soft);
  padding: 12px var(--pad-x) 20px;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1rem;
  color: var(--ink);
  padding: 14px 8px;
  border-bottom: 1px solid var(--line-soft);
}
.mobile-nav a:last-child { border-bottom: 0; }
.mobile-nav .mobile-phone-link {
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--r-pill);
  text-align: center;
  margin-top: 12px;
  padding: 12px;
  border-bottom: 0;
}
.mobile-nav.open { display: flex; }

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  padding: 96px 0 40px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background:
    radial-gradient(80% 60% at 20% 0%, rgba(220, 38, 38, 0.05) 0%, transparent 60%),
    radial-gradient(60% 50% at 100% 100%, rgba(184, 148, 95, 0.06) 0%, transparent 60%),
    var(--paper);
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(50% 40% at 80% 20%, rgba(220, 38, 38, 0.08) 0%, transparent 50%),
    radial-gradient(40% 30% at 10% 80%, rgba(184, 148, 95, 0.08) 0%, transparent 50%);
  animation: heroMeshFloat 14s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}
@keyframes heroMeshFloat {
  0%   { transform: translate(0, 0) scale(1); opacity: 0.6; }
  50%  { transform: translate(-2%, 1%) scale(1.05); opacity: 0.9; }
  100% { transform: translate(2%, -1%) scale(1); opacity: 0.7; }
}
.hero > .container { position: relative; z-index: 1; width: 100%; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 760px;
  margin: 0 auto;
  text-align: left;
}
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.82rem;
  color: var(--ink-soft);
  padding: 6px 14px;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  background: var(--paper-pure);
  margin-bottom: 24px;
}
.badge-dot {
  width: 6px; height: 6px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.15);
  animation: dotPulse 2.5s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.15); }
  50% { box-shadow: 0 0 0 6px rgba(22, 163, 74, 0.05); }
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.8rem, 5.6vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 24px;
}
.hero-h1-accent {
  background: linear-gradient(120deg, var(--red) 0%, #F43F5E 50%, var(--red) 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: accentShimmer 6s ease-in-out infinite;
}
@keyframes accentShimmer {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}
.hero-devices {
  display: flex; flex-wrap: wrap; align-items: center;
  margin: -8px 0 20px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(0.95rem, 1.3vw, 1.1rem);
  letter-spacing: 0.01em;
  color: var(--ink);
}
.hero-devices span:not(:first-child)::before {
  content: "·";
  margin: 0 12px;
  color: var(--red);
  font-weight: 700;
}
/* บนมือถือ: ซ่อน Samsung/Android กันบรรทัดล้น (จอใหญ่ยังครบ 5) */
@media (max-width: 600px) {
  .hero-devices .dev-opt { display: none; }
}
.hero-sub {
  font-size: clamp(1.05rem, 1.5vw, 1.18rem);
  color: var(--ink-soft);
  max-width: 520px;
  line-height: 1.6;
  margin-bottom: 28px;
}

.hero-guarantee {
  display: flex; align-items: center; gap: 14px;
  background: var(--paper-pure);
  border: 1px solid var(--line);
  padding: 14px 18px;
  border-radius: var(--r-lg);
  margin-bottom: 28px;
  box-shadow: var(--shadow-xs);
  max-width: 100%;
  align-self: flex-start;
}
.hero-guarantee-seal {
  width: 40px; height: 40px;
  border-radius: var(--r-md);
  background: var(--red-soft);
  color: var(--red);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero-guarantee-text { display: flex; flex-direction: column; gap: 2px; }
.hero-guarantee-text strong {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.94rem;
  color: var(--ink);
}
.hero-guarantee-text span {
  font-size: 0.82rem;
  color: var(--ink-muted);
}

.hero-stats {
  display: flex; align-items: center; gap: 8px;
  flex-wrap: wrap;
  padding: 16px 0;
  margin-bottom: 28px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat { display: flex; flex-direction: column; gap: 2px; padding: 0 16px; }
.stat:first-child { padding-left: 0; }
.stat strong {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--ink);
}
.stat span {
  font-size: 0.78rem;
  color: var(--ink-muted);
}
.stat-divider { width: 1px; height: 28px; background: var(--line); }

.hero-ctas { display: flex; gap: 12px; flex-wrap: nowrap; width: 100%; }
.hero-ctas .btn { flex: 1 1 0; min-width: 0; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.96rem;
  padding: 14px 24px;
  border-radius: var(--r-pill);
  transition: transform .15s ease, box-shadow .2s ease, background .15s ease, border-color .15s ease;
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.btn-white, .btn-primary {
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.btn-white:hover, .btn-primary:hover {
  background: var(--ink-2); transform: translateY(-1px); box-shadow: var(--shadow-md);
}
.btn-white::before, .btn-primary::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 0;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s ease, height 0.5s ease;
  pointer-events: none;
}
.btn-white:hover::before, .btn-primary:hover::before { width: 360px; height: 360px; }
.btn-white > *, .btn-primary > * { position: relative; z-index: 1; }

.btn-line {
  background: var(--line-green);
  color: white;
}
.btn-line:hover { background: #05B048; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(6, 199, 85, 0.25); }

.btn-outline {
  background: var(--paper-pure);
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn-outline:hover { border-color: var(--ink); transform: translateY(-1px); }

.btn-outline-white {
  background: transparent;
  color: var(--paper);
  border: 1px solid rgba(255,255,255,0.3);
}
.btn-outline-white:hover { border-color: var(--paper); background: rgba(255,255,255,0.1); transform: translateY(-1px); }

.btn-red {
  background: var(--red);
  color: white;
}
.btn-red:hover { background: var(--red-deep); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(220, 38, 38, 0.25); }

/* Hero visual — phone mockups */
.hero-phones {
  position: relative;
  aspect-ratio: 1/1;
  display: flex; align-items: center; justify-content: center;
}
.phone-wrap {
  position: absolute;
  width: 56%;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.phone-wrap--left {
  left: 8%; top: 50%;
  transform: translateY(-50%) rotate(-6deg);
  animation: phoneFloat 7s ease-in-out infinite;
  z-index: 2;
}
.phone-wrap--right {
  right: 8%; top: 50%;
  transform: translateY(-46%) rotate(6deg);
  animation: phoneFloatAlt 8s ease-in-out infinite;
  z-index: 1;
}
@keyframes phoneFloat {
  0%, 100% { transform: translateY(-50%) rotate(-6deg); }
  50%      { transform: translateY(calc(-50% - 10px)) rotate(-7deg); }
}
@keyframes phoneFloatAlt {
  0%, 100% { transform: translateY(-46%) rotate(6deg); }
  50%      { transform: translateY(calc(-46% - 8px)) rotate(7deg); }
}
.phone-mockup {
  width: 100%;
  aspect-ratio: 9/19;
  position: relative;
}
.phone-shell {
  width: 100%; height: 100%;
  border-radius: 36px;
  background: linear-gradient(160deg, #1F1F1F 0%, #0A0A0A 100%);
  padding: 8px;
  box-shadow:
    0 30px 60px -20px rgba(0,0,0,0.4),
    0 18px 36px -18px rgba(0,0,0,0.5),
    inset 0 0 0 1.5px rgba(255,255,255,0.06);
  position: relative;
}
.phone-screen-wrap {
  width: 100%; height: 100%;
  border-radius: 28px;
  background:
    radial-gradient(70% 50% at 50% 30%, rgba(220, 38, 38, 0.22) 0%, transparent 60%),
    linear-gradient(180deg, #1A1A1A 0%, #0A0A0A 100%);
  position: relative;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 18px 16px;
  overflow: hidden;
}
.phone-wrap--right .phone-screen-wrap {
  background:
    radial-gradient(70% 50% at 50% 30%, rgba(184, 148, 95, 0.22) 0%, transparent 60%),
    linear-gradient(180deg, #1A1A1A 0%, #0A0A0A 100%);
}
.phone-screen-wrap::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(60% 40% at 50% 30%, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
  animation: screenGlow 4s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes screenGlow {
  0%   { opacity: 0.4; }
  100% { opacity: 1; }
}
.phone-di, .phone-punch {
  position: absolute; top: 12px; left: 50%;
  transform: translateX(-50%);
  background: #000;
  z-index: 2;
}
.phone-di { width: 70px; height: 22px; border-radius: 999px; }
.phone-punch { width: 12px; height: 12px; border-radius: 999px; }
.phone-screen-text {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; gap: 2px;
}
.phone-screen-text span {
  color: white;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: -0.01em;
}
.phone-screen-text small {
  color: rgba(255,255,255,0.55);
  font-size: 0.62rem;
}
.phone-home-indicator {
  position: absolute; bottom: 8px; left: 50%;
  transform: translateX(-50%);
  width: 100px; height: 4px;
  background: rgba(255,255,255,0.3);
  border-radius: 999px;
}
.phone-tag {
  background: var(--paper-pure);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  padding: 6px 12px;
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.74rem;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
}
.phone-tag-dot { width: 6px; height: 6px; border-radius: 999px; background: var(--red); }
.phone-tag-dot--blue { background: #3B82F6; }
.phone-tag-brand { font-weight: 600; }
.phone-tag-sub { color: var(--ink-muted); font-size: 0.7rem; }

/* Hide brutalist hero decorations */
.hero-noise, .hero-glow-bl, .hero-glow-tr, .hero-bg-shape { display: none; }
.phone-side-btn, .phone-usbc, .phone-shine, .phone-bg, .phone-overlay-glow, .phone-s-pen { display: none; }

/* Hero entrance — staggered fade-up */
.hero-badge, .hero h1, .hero-devices, .hero-sub, .hero-guarantee, .hero-stats, .hero-ctas, .hero-phones {
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero-badge     { animation-delay: 0.05s; }
.hero h1        { animation-delay: 0.16s; }
.hero-devices   { animation-delay: 0.22s; }
.hero-sub       { animation-delay: 0.28s; }
.hero-guarantee { animation-delay: 0.38s; }
.hero-stats     { animation-delay: 0.46s; }
.hero-ctas      { animation-delay: 0.54s; }
.hero-phones    { animation-delay: 0.40s; animation-duration: 1.1s; }
@keyframes heroFadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* =============================================
   SECTIONS
   ============================================= */
.section {
  padding: 80px 0;
}
/* Tighter top spacing for the section that sits right under the hero */
#brands.section { padding-top: 32px; }
.section--light {
  background: var(--paper-pure);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.section-head {
  max-width: 680px;
  margin: 0 auto 48px;
  text-align: center;
}
.section-eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
.section h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.9rem, 3.6vw, 2.6rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 14px;
  word-break: keep-all;
  overflow-wrap: break-word;
}
.section-h2-mark {
  color: var(--red);
}
.section-sub {
  color: var(--ink-soft);
  font-size: 1.02rem;
  max-width: 580px;
  margin: 0 auto;
}

/* =============================================
   BRANDS
   ============================================= */
.brand-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.brand-card {
  background: var(--paper-pure);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  padding: 0;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  display: flex; flex-direction: column;
  min-width: 0;
  overflow: hidden;
}
.brand-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--line);
}
.brand-visual {
  height: 140px;
  background: linear-gradient(135deg, #1F1F1F 0%, #0A0A0A 100%);
  position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.brand-visual--apple { background: linear-gradient(135deg, #2A2A2A 0%, #0A0A0A 100%); }
.brand-visual--samsung { background: linear-gradient(135deg, #1428A0 0%, #0A1654 100%); }
.brand-visual--android { background: linear-gradient(135deg, #34A853 0%, #0F7B2A 100%); }
.brand-photo {
  position: absolute; inset: 0; z-index: 3;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
}
.brand-logo-wrap {
  position: relative; z-index: 2;
  opacity: 0.95;
}
.brand-bg-text {
  position: absolute;
  bottom: -8px; right: -8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 3.4rem;
  letter-spacing: -0.04em;
  color: rgba(255,255,255,0.06);
  pointer-events: none;
  z-index: 1;
}
.brand-deco-phone { display: none; }
.brand-body { padding: 24px 24px 28px; display: flex; flex-direction: column; flex: 1; }
.brand-body h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 8px;
  word-break: keep-all;
  overflow-wrap: break-word;
}
.brand-body p {
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.55;
  margin-bottom: 18px;
}
.brand-model-list {
  display: flex; flex-direction: column; gap: 6px;
  margin-top: auto;
}
.brand-model-list li {
  font-size: 0.88rem;
  color: var(--ink-muted);
  display: flex; align-items: center; gap: 8px;
}
.brand-model-list li::before {
  content: '';
  width: 4px; height: 4px;
  border-radius: 999px;
  background: var(--ink-faint);
  flex-shrink: 0;
}
.brands-note {
  text-align: center;
  margin-top: 32px;
  color: var(--ink-muted);
  font-size: 0.95rem;
  overflow-wrap: break-word;
}
.brands-note a {
  color: var(--ink);
  font-weight: 500;
  border-bottom: 1px solid var(--ink);
}
.brands-note a .tel-num { white-space: nowrap; }

/* =============================================
   PICKUP SERVICE (dark section)
   ============================================= */
.section-pickup {
  background: var(--ink);
  color: var(--paper);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.section-pickup::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(50% 40% at 100% 0%, rgba(220, 38, 38, 0.18) 0%, transparent 60%),
    radial-gradient(40% 30% at 0% 100%, rgba(184, 148, 95, 0.12) 0%, transparent 60%);
  pointer-events: none;
  animation: heroMeshFloat 14s ease-in-out infinite alternate;
}
.pickup-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: center;
}
.pickup-icon {
  width: 96px; height: 96px;
  border-radius: var(--r-lg);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--paper);
  flex-shrink: 0;
}
.pickup-content { min-width: 0; }
.pickup-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.pickup-content h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.8rem, 3.4vw, 2.4rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  color: var(--paper);
}
.pickup-content p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.02rem;
  max-width: 580px;
  margin-bottom: 22px;
}
.pickup-content p strong { color: var(--paper); font-weight: 600; }
.pickup-features {
  display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 28px;
}
.pickup-features li {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.96rem;
}
.pickup-features svg {
  color: var(--green);
  flex-shrink: 0;
  background: rgba(22, 163, 74, 0.18);
  border-radius: 999px;
  padding: 3px;
  box-sizing: content-box;
  width: 14px; height: 14px;
}
.pickup-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.pickup-ctas .btn-white {
  background: var(--paper);
  color: var(--ink);
}
.pickup-ctas .btn-white:hover { background: white; color: var(--ink); }

/* =============================================
   PROCESS (3 steps)
   ============================================= */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.step {
  background: var(--paper-pure);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  padding: 28px;
  text-align: center;
  position: relative;
  min-width: 0;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line); }
.step-num {
  position: absolute;
  top: -16px; left: 50%;
  transform: translateX(-50%);
  width: 36px; height: 36px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
}
.step-icon {
  width: 56px; height: 56px;
  border-radius: var(--r-md);
  background: var(--paper-soft);
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  margin: 16px auto 18px;
  transition: background .25s ease, color .25s ease;
}
.step:hover .step-icon { background: var(--ink); color: var(--paper); }
.step-icon svg { width: 26px; height: 26px; }
.step h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.18rem;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 10px;
  word-break: keep-all;
  overflow-wrap: break-word;
}
.step p {
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.55;
}
.step p strong { color: var(--ink); font-weight: 600; }
.process-cta { text-align: center; margin-top: 40px; }

/* =============================================
   WHY US (6 features grid)
   ============================================= */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature {
  background: var(--paper-pure);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  padding: 28px;
  position: relative;
  min-width: 0;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line); }
.feature-icon {
  width: 48px; height: 48px;
  border-radius: var(--r-md);
  background: var(--red-soft);
  color: var(--red);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  transition: background .25s ease, color .25s ease;
}
.feature:hover .feature-icon { background: var(--red); color: white; }
.feature h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.12rem;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 8px;
  word-break: keep-all;
  overflow-wrap: break-word;
}
.feature p {
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.55;
}

/* =============================================
   REVIEWS / TRUST
   ============================================= */
.trust-banner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--paper-pure);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  padding: 36px;
  margin-bottom: 40px;
}
.trust-stat {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  position: relative;
  min-width: 0;
}
.trust-divider-v {
  position: absolute; left: 0; top: 50%;
  transform: translate(-50%, -50%);
  width: 1px; height: 48px;
  background: var(--line);
}
.trust-stat:first-child .trust-divider-v { display: none; }
.trust-num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  letter-spacing: -0.025em;
  color: var(--ink);
  line-height: 1;
  white-space: nowrap;
}
.trust-stat:last-child .trust-num { color: var(--gold); }
.trust-stat span:not(.trust-divider-v) {
  font-size: 0.86rem;
  color: var(--ink-muted);
  text-align: center;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--paper-pure);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  padding: 28px;
  position: relative;
  min-width: 0;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line); }
.review-stars {
  color: var(--red);
  letter-spacing: 0.04em;
  font-size: 0.95rem;
  margin-bottom: 14px;
  line-height: 1;
}
.review-text {
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.6;
  margin-bottom: 24px;
}
.review-footer {
  display: flex; align-items: center; gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--line-soft);
}
.review-avatar {
  width: 40px; height: 40px;
  border-radius: 999px;
  background: var(--paper-soft);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink);
  font-size: 1rem;
  flex-shrink: 0;
}
.review-avatar--blue  { background: #DBEAFE; color: #1D4ED8; }
.review-avatar--green { background: #DCFCE7; color: var(--green); }
.review-footer strong {
  display: block;
  font-weight: 500;
  color: var(--ink);
  font-size: 0.92rem;
  line-height: 1.3;
}
.review-footer small {
  display: block;
  color: var(--ink-muted);
  font-size: 0.78rem;
  line-height: 1.3;
}
.reviews-cta { text-align: center; margin-top: 40px; }

/* =============================================
   FAQ (accordion)
   ============================================= */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex; flex-direction: column; gap: 12px;
}
.faq-item {
  background: var(--paper-pure);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.faq-item[open] { border-color: var(--line); box-shadow: var(--shadow-sm); }
.faq-item summary {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1rem;
  color: var(--ink);
  padding: 20px 56px 20px 24px;
  cursor: pointer;
  position: relative;
  list-style: none;
  transition: background .15s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { background: var(--paper-soft); }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 24px; top: 50%;
  transform: translateY(-50%);
  width: 28px; height: 28px;
  border-radius: 999px;
  background: var(--paper-soft);
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-weight: 400;
  font-size: 1.2rem;
  transition: transform .25s ease, background .15s ease;
}
.faq-item[open] summary::after {
  content: '−';
  transform: translateY(-50%) rotate(180deg);
  background: var(--ink);
  color: var(--paper);
}
.faq-answer {
  padding: 0 24px 22px;
  color: var(--ink-soft);
  font-size: 0.96rem;
  line-height: 1.65;
}
.faq-answer p strong { color: var(--ink); font-weight: 600; }

/* =============================================
   BLOG PREVIEW
   ============================================= */
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.article-card {
  background: var(--paper-pure);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  overflow: hidden;
  min-width: 0;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  display: flex; flex-direction: column;
}
.article-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line); }
.article-card-img {
  height: 180px;
  background: linear-gradient(135deg, #1F1F1F 0%, #0A0A0A 100%);
  position: relative;
  overflow: hidden;
}
.article-card-img::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(60% 50% at 50% 50%, rgba(220, 38, 38, 0.18) 0%, transparent 70%);
}
.article-card-img--check::before {
  background: radial-gradient(60% 50% at 50% 50%, rgba(184, 148, 95, 0.22) 0%, transparent 70%);
}
.article-card-img--prep::before {
  background: radial-gradient(60% 50% at 50% 50%, rgba(22, 163, 74, 0.22) 0%, transparent 70%);
}
.article-card-img--iphone::before {
  background: radial-gradient(60% 50% at 50% 50%, rgba(124, 58, 237, 0.22) 0%, transparent 70%);
}
.article-card-body {
  padding: 28px;
  display: flex; flex-direction: column; flex: 1;
}
.article-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
  align-self: flex-start;
}
.article-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.35;
  word-break: keep-all;
  overflow-wrap: break-word;
}
.article-excerpt {
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.55;
  margin-bottom: 16px;
  flex: 1;
}
.article-read-more {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink);
  display: inline-flex; align-items: center; gap: 4px;
  align-self: flex-start;
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, gap .2s ease;
}
.article-card:hover .article-read-more {
  border-color: var(--ink);
  gap: 8px;
}

/* =============================================
   CONTACT
   ============================================= */
.contact-section { background: var(--paper-pure); border-top: 1px solid var(--line-soft); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: stretch;
}
.contact-channels { display: flex; flex-direction: column; gap: 12px; }
.contact-btn {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 20px;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  transition: transform .15s ease, border-color .15s ease, box-shadow .2s ease;
}
.contact-btn:hover {
  transform: translateY(-2px);
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.contact-icon {
  width: 44px; height: 44px;
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 22px; height: 22px; }
.contact-btn--phone .contact-icon { background: var(--ink); color: var(--paper); }
.contact-btn--line .contact-icon { background: var(--line-green); color: white; }
.contact-btn--facebook .contact-icon { background: #1877F2; color: white; }
.contact-btn--google-review .contact-icon { background: #F8F5F0; color: var(--gold); }
.contact-btn strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
}
.contact-btn small {
  display: block;
  font-size: 0.85rem;
  color: var(--ink-muted);
}
.contact-info-box {
  margin-top: 8px;
  padding: 18px 20px;
  background: var(--paper-soft);
  border-radius: var(--r-lg);
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.contact-info-box p {
  display: flex; align-items: flex-start; gap: 10px;
  margin-bottom: 8px;
}
.contact-info-box p:last-child { margin-bottom: 0; }
.contact-info-box svg {
  color: var(--ink-muted);
  flex-shrink: 0;
  margin-top: 4px;
}
.map-container {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line-soft);
  min-height: 420px;
}
.map-container iframe {
  width: 100%; height: 100%;
  min-height: 420px;
  border: 0;
  display: block;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--ink);
  color: var(--paper);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .footer-logo {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 16px; text-decoration: none;
}
.footer-brand .footer-logo img { height: 40px; width: auto; object-fit: contain; }
.footer-brand .footer-logo span {
  font-weight: 700; font-size: 20px; color: var(--paper); line-height: 1;
}
.footer-brand p {
  color: rgba(250,250,250,0.6);
  font-size: 0.92rem;
  line-height: 1.6;
  max-width: 320px;
  margin-bottom: 18px;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.88rem;
  color: rgba(250,250,250,0.7);
  padding: 8px 14px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(250,250,250,0.15);
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.footer-social a:hover {
  color: var(--paper);
  background: rgba(250,250,250,0.05);
  border-color: rgba(250,250,250,0.3);
}
.footer h4 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(250,250,250,0.5);
  margin-bottom: 18px;
}
.footer-services ul, .footer-contact address { display: flex; flex-direction: column; gap: 10px; }
.footer-services li, .footer-contact p {
  color: rgba(250,250,250,0.8);
  font-size: 0.92rem;
}
.footer-contact a {
  color: rgba(250,250,250,0.85);
  transition: color .15s ease;
}
.footer-contact a:hover { color: var(--paper); }
.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(250,250,250,0.1);
  font-size: 0.84rem;
  color: rgba(250,250,250,0.5);
  text-align: center;
}

/* =============================================
   CONTACT FAB — floating right-bottom popup
   ============================================= */
.contact-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  transition: opacity .3s ease, transform .3s ease;
}
.contact-fab.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
}

/* Menu — hidden by default, expands above the toggle */
.contact-fab-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  opacity: 0;
  transform: translateY(8px) scale(0.96);
  transform-origin: bottom right;
  pointer-events: none;
  transition:
    opacity .25s ease,
    transform .25s cubic-bezier(0.16, 1, 0.3, 1);
}
.contact-fab.is-open .contact-fab-menu {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

/* Stagger item entrance */
.contact-fab-item {
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity .25s ease,
    transform .25s cubic-bezier(0.16, 1, 0.3, 1),
    background .15s ease,
    box-shadow .2s ease;
}
.contact-fab.is-open .contact-fab-item {
  opacity: 1;
  transform: translateY(0);
}
.contact-fab.is-open .contact-fab-item:nth-child(1) { transition-delay: .04s; }
.contact-fab.is-open .contact-fab-item:nth-child(2) { transition-delay: .1s; }

.contact-fab-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.94rem;
  padding: 11px 18px 11px 12px;
  border-radius: var(--r-pill);
  box-shadow:
    0 2px 4px rgba(10, 10, 10, 0.08),
    0 8px 24px rgba(10, 10, 10, 0.12);
  white-space: nowrap;
}
.contact-fab-item:active { transform: scale(0.97) !important; }
.contact-fab-item-icon {
  width: 28px; height: 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.18);
}
.contact-fab-item--phone {
  background: var(--ink);
  color: var(--paper);
}
.contact-fab-item--phone:hover { background: var(--ink-2); }
.contact-fab-item--line {
  background: var(--line-green);
  color: white;
}
.contact-fab-item--line:hover { background: #05B048; }

/* Toggle (the main "ติดต่อ" button) */
.contact-fab-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 20px 13px 14px;
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--r-pill);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.94rem;
  box-shadow:
    0 4px 8px rgba(10, 10, 10, 0.12),
    0 12px 32px rgba(10, 10, 10, 0.18);
  transition: transform .15s ease, box-shadow .2s ease, background .15s ease;
  cursor: pointer;
}
.contact-fab-toggle:hover {
  transform: translateY(-2px);
  background: var(--ink-2);
  box-shadow:
    0 6px 12px rgba(10, 10, 10, 0.14),
    0 16px 40px rgba(10, 10, 10, 0.22);
}
.contact-fab-toggle:active { transform: scale(0.97); }
.contact-fab-icon {
  display: inline-flex;
  align-items: center; justify-content: center;
  transition: transform .25s ease, opacity .2s ease;
}
.contact-fab-icon--open { display: none; }
.contact-fab.is-open .contact-fab-icon--closed { display: none; }
.contact-fab.is-open .contact-fab-icon--open { display: inline-flex; }
.contact-fab.is-open .contact-fab-toggle {
  background: var(--paper-pure);
  color: var(--ink);
  border: 1px solid var(--line);
}
.contact-fab-label { line-height: 1; }

/* Gentle pulse to hint "tap me" — once every few seconds */
.contact-fab-toggle::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.4);
  animation: fabPulse 3.2s ease-out infinite;
  pointer-events: none;
}
.contact-fab.is-open .contact-fab-toggle::before { animation: none; }
.contact-fab-toggle { position: relative; overflow: visible; }
@keyframes fabPulse {
  0%, 60%, 100% { box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.35); opacity: 0.8; }
  30%           { box-shadow: 0 0 0 14px rgba(220, 38, 38, 0); opacity: 0; }
}

/* =============================================
   SCROLL REVEAL
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Brand dot pulse on header — none for now (logo image used) */

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 960px) {
  .nav-links, .header-phone { display: none; }
  .menu-btn { display: inline-flex; }

  .hero { padding: 72px 0 44px; min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-phones { max-width: 380px; margin: 0 auto; aspect-ratio: 1/1; width: 100%; }
  .phone-wrap { width: 50%; }

  .brand-cards, .features, .article-grid, .reviews-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 36px; }
  .trust-banner { grid-template-columns: repeat(2, 1fr); gap: 28px 0; padding: 28px; }
  .trust-stat:nth-child(3) .trust-divider-v { display: none; }

  .pickup-inner { grid-template-columns: 1fr; gap: 28px; text-align: left; }
  .contact-grid { grid-template-columns: 1fr; gap: 24px; }
  .map-container, .map-container iframe { min-height: 320px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .section, .section-pickup { padding: 72px 0; }
  .section-head { margin-bottom: 48px; }

  /* Contact FAB is always available — no change needed for mobile breakpoint */
}
@media (max-width: 600px) {
  :root { --pad-x: 18px; }

  /* Header */
  .header-inner { height: 60px; }
  .logo-img { height: 34px; }
  .logo-text { font-size: 18px; }

  /* Section spacing tighter */
  .section, .section-pickup { padding: 56px 0; }
  .section-head { margin-bottom: 36px; }
  .section h2 {
    font-size: clamp(1.7rem, 6.5vw, 2rem);
    line-height: 1.2;
    margin-bottom: 10px;
  }
  .section-sub { font-size: 0.96rem; line-height: 1.55; }
  .section-eyebrow { font-size: 0.72rem; letter-spacing: 0.16em; margin-bottom: 10px; }

  /* Hero */
  .hero {
    padding: 40px 0 24px;
    min-height: auto;
  }
  .hero-grid { gap: 32px; }
  .hero-badge {
    font-size: 0.74rem;
    padding: 5px 11px;
    margin-bottom: 18px;
    line-height: 1.3;
  }
  .hero h1 {
    font-size: clamp(2.2rem, 9vw, 2.8rem);
    line-height: 1.06;
    letter-spacing: -0.025em;
    margin-bottom: 16px;
  }
  .hero-sub {
    font-size: 0.98rem;
    line-height: 1.55;
    margin-bottom: 22px;
  }
  .hero-guarantee {
    display: flex;
    width: 100%;
    padding: 11px 13px;
    margin-bottom: 18px;
    gap: 11px;
    border-radius: var(--r-md);
  }
  .hero-guarantee-seal { width: 34px; height: 34px; border-radius: var(--r-sm); }
  .hero-guarantee-seal svg { width: 20px; height: 20px; }
  .hero-guarantee-text strong { font-size: 0.88rem; }
  .hero-guarantee-text span { font-size: 0.76rem; }
  .hero-stats {
    padding: 14px 0;
    margin-bottom: 22px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    width: 100%;
  }
  .stat {
    padding: 0;
    align-items: flex-start;
    text-align: left;
    min-width: 0;
  }
  .stat:first-child { padding-left: 0; }
  .stat strong { font-size: 0.86rem; }
  .stat span { font-size: 0.66rem; line-height: 1.25; }
  .stat-divider { display: none; }

  .hero-ctas { gap: 8px; width: 100%; flex-wrap: nowrap; }
  .hero-ctas .btn {
    flex: 1 1 0;
    min-width: 0;
    padding: 13px 12px;
    font-size: 0.9rem;
    gap: 6px;
  }
  .hero-ctas .btn svg { width: 14px; height: 14px; }
  .hero-ctas .btn-outline { flex: 1 1 100%; }

  .hero-phones { max-width: 320px; aspect-ratio: 1/1; }
  .phone-wrap { width: 48%; }
  .phone-tag { font-size: 0.66rem; padding: 4px 9px; gap: 4px; }
  .phone-tag-sub { font-size: 0.6rem; }

  /* Brand cards */
  .brand-visual { height: 120px; }
  .brand-bg-text { font-size: 2.8rem; }
  .brand-body { padding: 20px 20px 22px; }
  .brand-body h3 { font-size: 1.15rem; margin-bottom: 6px; }
  .brand-body p { font-size: 0.9rem; margin-bottom: 14px; }
  .brand-model-list li { font-size: 0.84rem; }
  .brands-note { font-size: 0.9rem; margin-top: 24px; }
  .brands-note .bn-q { display: block; margin-bottom: 4px; }

  /* Pickup */
  .pickup-inner { gap: 24px; }
  .pickup-icon { width: 64px; height: 64px; border-radius: var(--r-md); }
  .pickup-icon svg { width: 36px; height: 36px; }
  .pickup-badge { font-size: 0.72rem; letter-spacing: 0.13em; margin-bottom: 10px; }
  .pickup-content h2 { font-size: clamp(1.6rem, 6vw, 1.9rem); margin-bottom: 12px; color: var(--paper); }
  .pickup-content p { font-size: 0.95rem; margin-bottom: 18px; }
  .pickup-features { margin-bottom: 22px; gap: 8px; }
  .pickup-features li { font-size: 0.9rem; }
  .pickup-ctas { gap: 8px; flex-direction: column; }
  .pickup-ctas .btn { width: 100%; }

  /* Process */
  .steps { gap: 28px; }
  .step { padding: 24px 20px 22px; }
  .step-num { width: 32px; height: 32px; font-size: 0.88rem; top: -14px; }
  .step-icon { width: 48px; height: 48px; margin: 12px auto 14px; }
  .step-icon svg { width: 22px; height: 22px; }
  .step h3 { font-size: 1.08rem; margin-bottom: 8px; }
  .step p { font-size: 0.9rem; }
  .process-cta { margin-top: 32px; }

  /* Features */
  .feature { padding: 22px 20px; }
  .feature-icon { width: 42px; height: 42px; margin-bottom: 16px; }
  .feature-icon svg { width: 22px; height: 22px; }
  .feature h3 { font-size: 1.04rem; margin-bottom: 6px; }
  .feature p { font-size: 0.88rem; line-height: 1.5; }

  /* Trust banner */
  .trust-banner { padding: 22px 16px; margin-bottom: 36px; gap: 16px 0; }
  .trust-num { font-size: 1.5rem; }
  .trust-stat span:not(.trust-divider-v) { font-size: 0.76rem; line-height: 1.35; }

  /* Reviews */
  .review-card { padding: 22px 20px; }
  .review-stars { font-size: 0.88rem; margin-bottom: 12px; }
  .review-text { font-size: 0.94rem; margin-bottom: 18px; line-height: 1.55; }
  .review-footer { padding-top: 14px; gap: 10px; }
  .review-avatar { width: 36px; height: 36px; font-size: 0.92rem; }
  .review-footer strong { font-size: 0.88rem; }
  .review-footer small { font-size: 0.74rem; }
  .reviews-cta { margin-top: 28px; }
  .reviews-cta .btn { width: 100%; }

  /* FAQ */
  .faq-list { gap: 10px; }
  .faq-item summary {
    font-size: 0.94rem;
    padding: 16px 48px 16px 18px;
    line-height: 1.45;
  }
  .faq-item summary::after {
    width: 24px; height: 24px;
    right: 16px;
    font-size: 1.05rem;
  }
  .faq-answer {
    padding: 0 18px 18px;
    font-size: 0.9rem;
    line-height: 1.6;
  }

  /* Blog */
  .article-card-img { height: 160px; }
  .article-card-body { padding: 20px; }
  .article-tag { font-size: 0.7rem; margin-bottom: 10px; }
  .article-card h3 { font-size: 1.04rem; margin-bottom: 6px; }
  .article-excerpt { font-size: 0.88rem; margin-bottom: 12px; }

  /* Contact */
  .contact-grid { gap: 18px; }
  .contact-channels { gap: 8px; }
  .contact-btn { padding: 13px 16px; gap: 12px; border-radius: var(--r-md); }
  .contact-icon { width: 38px; height: 38px; border-radius: var(--r-sm); }
  .contact-icon svg { width: 19px; height: 19px; }
  .contact-btn strong { font-size: 0.94rem; }
  .contact-btn small { font-size: 0.78rem; }
  .contact-info-box {
    padding: 14px 16px;
    font-size: 0.88rem;
    border-radius: var(--r-md);
  }
  .contact-info-box p { gap: 8px; margin-bottom: 6px; }
  .map-container, .map-container iframe { min-height: 260px; border-radius: var(--r-md); }

  /* Footer */
  .footer { padding: 48px 0 80px; }
  .footer-grid { gap: 32px; margin-bottom: 32px; }
  .footer-brand p { font-size: 0.88rem; }
  .footer h4 { margin-bottom: 14px; font-size: 0.74rem; }
  .footer-services li, .footer-contact p { font-size: 0.88rem; }
  .footer-bottom { font-size: 0.78rem; line-height: 1.5; }

  /* Contact FAB — smaller on phones */
  .contact-fab { bottom: 18px; right: 16px; gap: 8px; }
  .contact-fab-toggle {
    padding: 12px 18px 12px 13px;
    font-size: 0.9rem;
    gap: 7px;
  }
  .contact-fab-item {
    padding: 10px 16px 10px 10px;
    font-size: 0.9rem;
    gap: 9px;
  }
  .contact-fab-item-icon { width: 26px; height: 26px; }
}
@media (max-width: 400px) {
  .hero h1 { font-size: clamp(2rem, 9.5vw, 2.4rem); }
  .hero-ctas .btn {
    flex: 1 1 0;
    min-width: 0;
    padding: 12px 10px;
    font-size: 0.84rem;
    gap: 5px;
  }
  .hero-stats { gap: 4px; }
  .stat strong { font-size: 0.78rem; }
  .stat span { font-size: 0.6rem; line-height: 1.2; }
  .pickup-content h2 { font-size: 1.5rem; }
  .section h2 { font-size: 1.6rem; }
  .trust-num { font-size: 1.35rem; }
}

/* =============================================
   BLOG PAGES — article + index
   ============================================= */

/* ----- A. Page shell ----- */
.article-page {
  padding: 56px 0 96px;
  background: var(--paper);
}
.article-container {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.article-header { margin: 24px 0 32px; }
.article-header h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.9rem, 4.4vw, 2.6rem);
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 14px 0 18px;
  word-break: keep-all;
  overflow-wrap: break-word;
}
.article-section { margin: 40px 0; }
.article-section h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.35rem, 2.6vw, 1.7rem);
  line-height: 1.3;
  letter-spacing: -0.018em;
  color: var(--ink);
  margin: 0 0 16px;
  word-break: keep-all;
  overflow-wrap: break-word;
}
.article-section h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin: 0 0 8px;
  word-break: keep-all;
  overflow-wrap: break-word;
}
.article-section p {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.75;
  margin: 0 0 14px;
}
.article-section p strong { color: var(--ink); font-weight: 600; }
.article-section ul, .article-section ol {
  margin: 0 0 16px;
  padding-left: 22px;
  color: var(--ink-soft);
  line-height: 1.7;
}
.article-section ul li { list-style: disc; margin-bottom: 8px; }
.article-section ol li { list-style: decimal; margin-bottom: 8px; }
.article-section a {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color .2s ease;
}
.article-section a:hover { color: var(--red-deep); }

/* ----- B. Breadcrumb + meta ----- */
.breadcrumb {
  display: flex; align-items: center; flex-wrap: wrap;
  gap: 6px;
  font-size: 0.86rem;
  color: var(--ink-muted);
  font-family: var(--font-display);
}
.breadcrumb a {
  color: var(--ink-muted);
  transition: color .2s ease;
}
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb span { color: var(--ink-faint); }
.breadcrumb span[aria-current="page"] {
  color: var(--ink);
  font-weight: 500;
}
.article-meta-row {
  display: flex; align-items: center; flex-wrap: wrap;
  gap: 16px;
  font-size: 0.86rem;
  color: var(--ink-muted);
  font-family: var(--font-display);
  margin-top: 8px;
}
.article-meta-row span {
  display: inline-flex; align-items: center; gap: 6px;
}
.article-meta-row svg { color: var(--ink-faint); }
.article-h1-sub {
  display: block;
  font-weight: 400;
  font-size: 0.7em;
  color: var(--ink-soft);
  letter-spacing: -0.015em;
  margin-top: 6px;
}

/* ----- C. Tag wrapper (extend, .article-tag itself stays at line 1041) ----- */
.article-tags-row {
  display: flex; flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 4px;
}
.article-tags-row .article-tag { margin-bottom: 0; }

/* ----- D. Content blocks ----- */
.article-intro-box {
  background: var(--paper-soft);
  border-radius: var(--r-md);
  padding: 20px 22px;
  margin: 24px 0 28px;
}
.article-intro-box p {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--ink);
}
.article-intro-box p strong { color: var(--ink); font-weight: 600; }

.article-highlight-box {
  background: var(--red-soft);
  border-left: 3px solid var(--red);
  border-radius: var(--r-sm);
  padding: 18px 20px;
  margin: 20px 0;
}
.article-highlight-box strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}
.article-highlight-box ul {
  margin: 0; padding-left: 18px;
  color: var(--ink-soft);
  font-size: 0.96rem;
  line-height: 1.65;
}
.article-highlight-box ul li {
  margin-bottom: 6px;
  list-style: disc;
}

.article-note-box {
  display: flex;
  gap: 12px;
  background: var(--paper-warm);
  border-radius: var(--r-md);
  padding: 16px 18px;
  margin: 20px 0;
  border: 1px solid var(--line-soft);
}
.article-note-box svg {
  flex-shrink: 0;
  color: var(--gold);
  margin-top: 2px;
}
.article-note-box p {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.6;
  color: var(--ink-soft);
}
.article-note-box a {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.article-why-list {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}
.article-why-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line-soft);
  color: var(--ink-soft);
  line-height: 1.6;
}
.article-why-list li:last-child { border-bottom: none; }
.article-why-list svg {
  flex-shrink: 0;
  color: var(--red);
  margin-top: 4px;
}

/* ----- E. Factor grid ----- */
.factor-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin: 18px 0 22px;
}
.factor-card {
  background: var(--paper-pure);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  padding: 20px;
  min-width: 0;
  display: flex; flex-direction: column;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.factor-card:hover {
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.factor-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
  margin: 8px 0 6px;
  word-break: keep-all;
  overflow-wrap: break-word;
}
.factor-card p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
}
.factor-icon {
  width: 40px; height: 40px;
  border-radius: var(--r-sm);
  background: var(--paper-soft);
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  line-height: 1;
  flex-shrink: 0;
}
.factor-icon svg { width: 20px; height: 20px; display: block; }
.factor-icon--apple {
  background: var(--paper-soft);
  color: var(--ink);
}
.factor-icon--android {
  background: rgba(22, 163, 74, 0.10);
  color: var(--green);
}

/* Platform-tagged section heading (iPhone / Android) */
.article-section-platform {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.article-section-platform .platform-mark {
  width: 36px; height: 36px;
  border-radius: var(--r-sm);
  background: var(--paper-soft);
  color: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.article-section-platform .platform-mark svg { width: 20px; height: 20px; display: block; }
.article-section-platform--android .platform-mark {
  background: rgba(22, 163, 74, 0.10);
  color: var(--green);
}

/* ----- F. Prep steps (numbered list) ----- */
.prep-steps {
  counter-reset: prep;
  list-style: none;
  padding: 0;
  margin: 16px 0 24px;
}
.prep-steps > li {
  counter-increment: prep;
  position: relative;
  padding: 10px 0 14px 48px;
  border-bottom: 1px solid var(--line-soft);
  list-style: none;
  margin-bottom: 0;
}
.prep-steps > li:last-child { border-bottom: none; }
.prep-steps > li::before {
  content: counter(prep);
  position: absolute;
  left: 0; top: 8px;
  width: 32px; height: 32px;
  border-radius: 999px;
  background: var(--red-soft);
  color: var(--red);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  display: flex; align-items: center; justify-content: center;
}
.prep-steps > li strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}
.prep-steps > li p {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* ----- G. Price table ----- */
.price-table-wrap {
  margin: 20px 0 24px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  background: var(--paper-pure);
}
.price-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  font-family: var(--font-display);
  font-size: 0.92rem;
}
.price-table th, .price-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--line-soft);
  vertical-align: middle;
  color: var(--ink-soft);
}
.price-table th:first-child, .price-table td:first-child {
  text-align: left;
}
.price-table th:not(:first-child), .price-table td:not(:first-child) {
  text-align: center;
}
.price-table thead th {
  background: var(--paper-soft);
  color: var(--ink);
  font-weight: 600;
  letter-spacing: 0.01em;
}
.price-table tbody tr:last-child td { border-bottom: none; }
.price-table tbody tr:hover { background: var(--paper-soft); }
.price-good, .price-mid, .price-low {
  display: inline-block;
  padding: 3px 12px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.86rem;
  min-width: 96px;
  text-align: center;
}
.price-good { background: rgba(22, 163, 74, 0.12); color: var(--green); }
.price-mid { background: rgba(184, 148, 95, 0.14); color: var(--gold); }
.price-low { background: var(--red-soft); color: var(--red-deep); }
.price-table .price-table-sub {
  background: var(--paper-soft);
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.005em;
  padding: 12px 16px;
  border-bottom: 1.5px solid var(--ink);
  color: var(--ink);
  text-align: left;
}

/* ----- H. Related articles ----- */
.article-related {
  margin: 64px 0 0;
  padding-top: 40px;
  border-top: 1px solid var(--line-soft);
}
.article-related h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.4rem;
  letter-spacing: -0.018em;
  color: var(--ink);
  margin: 0 0 24px;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.related-card {
  background: var(--paper-pure);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  overflow: hidden;
  min-width: 0;
  display: flex; flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.related-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--line);
}
.related-card-img {
  height: 140px;
  background: linear-gradient(135deg, #1F1F1F 0%, #0A0A0A 100%);
  position: relative;
  overflow: hidden;
}
.related-card-img span {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
  color: rgba(255,255,255,0.92);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  padding: 0 14px;
  text-align: center;
  word-break: keep-all;
  overflow-wrap: break-word;
  line-height: 1.35;
}
.related-card-img::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(60% 50% at 50% 50%, rgba(220, 38, 38, 0.18) 0%, transparent 70%);
}
.related-card-img--iphone::before {
  background: radial-gradient(60% 50% at 50% 50%, rgba(124, 58, 237, 0.22) 0%, transparent 70%);
}
.related-card-img--samsung::before {
  background: radial-gradient(60% 50% at 50% 50%, rgba(20, 40, 160, 0.30) 0%, transparent 70%);
}
.related-card-img--broken::before {
  background: radial-gradient(60% 50% at 50% 50%, rgba(220, 38, 38, 0.28) 0%, transparent 70%);
}
.related-card-img--prep::before {
  background: radial-gradient(60% 50% at 50% 50%, rgba(22, 163, 74, 0.22) 0%, transparent 70%);
}
.related-card-img--check::before {
  background: radial-gradient(60% 50% at 50% 50%, rgba(184, 148, 95, 0.22) 0%, transparent 70%);
}
.related-card-img--compare::before {
  background: radial-gradient(60% 50% at 50% 50%, rgba(245, 197, 24, 0.20) 0%, transparent 70%);
}
.related-card-img--oppo::before {
  background: radial-gradient(60% 50% at 50% 50%, rgba(0, 200, 130, 0.22) 0%, transparent 70%);
}
.related-card-body {
  padding: 20px 22px 22px;
  display: flex; flex-direction: column; flex: 1;
}
.related-card-body h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0 0 6px;
  line-height: 1.35;
  word-break: keep-all;
  overflow-wrap: break-word;
}
.related-card-body p {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0;
}

/* ----- I. Blog index hero ----- */
.blog-hero {
  padding: 72px 0 32px;
  background: var(--paper);
  border-bottom: 1px solid var(--line-soft);
}
.blog-hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 5vw, 2.8rem);
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0 0 12px;
  line-height: 1.18;
  word-break: keep-all;
  overflow-wrap: break-word;
}
.blog-hero p {
  font-size: 1.05rem;
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 640px;
}

/* ----- J. Article card variants for blog/index (extend line 1028-1034) ----- */
.article-card-img--samsung::before {
  background: radial-gradient(60% 50% at 50% 50%, rgba(20, 40, 160, 0.30) 0%, transparent 70%);
}
.article-card-img--broken::before {
  background: radial-gradient(60% 50% at 50% 50%, rgba(220, 38, 38, 0.28) 0%, transparent 70%);
}
.article-card-img--compare::before {
  background: radial-gradient(60% 50% at 50% 50%, rgba(245, 197, 24, 0.20) 0%, transparent 70%);
}
.article-card-img--oppo::before {
  background: radial-gradient(60% 50% at 50% 50%, rgba(0, 200, 130, 0.22) 0%, transparent 70%);
}
.article-card-img span {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
  color: rgba(255,255,255,0.92);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.015em;
  padding: 0 16px;
  text-align: center;
  word-break: keep-all;
  overflow-wrap: break-word;
}
.article-card-meta {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}
.article-card-meta .article-tag { margin-bottom: 0; }
.article-date {
  font-size: 0.78rem;
  color: var(--ink-muted);
  font-family: var(--font-display);
}
.article-card-link {
  display: flex; flex-direction: column;
  height: 100%;
  color: inherit;
}
.article-card-body h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0 0 8px;
  line-height: 1.35;
  word-break: keep-all;
  overflow-wrap: break-word;
}
.article-card-body p {
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.55;
  margin: 0 0 14px;
  flex: 1;
}

/* ----- K. Blog responsive ----- */
@media (max-width: 960px) {
  .factor-cards { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .article-page { padding: 32px 0 72px; }
  .article-header { margin: 16px 0 24px; }
  .article-header h1 { font-size: clamp(1.6rem, 6vw, 2rem); }
  .article-section { margin: 32px 0; }
  .article-section h2 { font-size: clamp(1.2rem, 5vw, 1.45rem); }
  .article-meta-row { gap: 12px; font-size: 0.82rem; }
  .article-intro-box, .article-highlight-box, .article-note-box {
    padding: 14px 16px;
  }
  .factor-card { padding: 16px; }
  .prep-steps > li { padding-left: 42px; }
  .prep-steps > li::before { width: 28px; height: 28px; font-size: 0.88rem; }
  .related-grid { grid-template-columns: 1fr; gap: 16px; }
  .related-card-img { height: 120px; }
  .article-related { margin-top: 48px; padding-top: 32px; }
  .article-related h2 { font-size: 1.2rem; margin-bottom: 18px; }
  .blog-hero { padding: 48px 0 24px; }
}
