/* ========================================
   AKPRINTEASY — GLOBAL STYLES
   Design: Dark navy + electric teal accent
   Font: Plus Jakarta Sans + DM Mono
======================================== */

:root {
  --navy: #0B1220;
  --navy-2: #111827;
  --navy-3: #1a2540;
  --navy-4: #1e2d4a;
  --teal: #00C9A7;
  --teal-dark: #00A888;
  --teal-glow: rgba(0, 201, 167, 0.15);
  --amber: #F59E0B;
  --red-soft: #FEF2F2;
  --red-border: #FECACA;
  --white: #FFFFFF;
  --off-white: #F8FAFC;
  --text-main: #1E293B;
  --text-muted: #64748B;
  --text-light: #94A3B8;
  --border: #E2E8F0;
  --border-dark: #1E3A5F;
  --card-bg: #FFFFFF;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.04);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.12);
  --radius: 14px;
  --radius-sm: 8px;
  --radius-pill: 100px;
  --font: 'Plus Jakarta Sans', sans-serif;
  --mono: 'DM Mono', monospace;
  --max-w: 1160px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text-main);
  background: var(--off-white);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

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

/* ===== DISCLAIMER BAR ===== */
.disclaimer-bar {
  background: var(--navy);
  color: rgba(255,255,255,.75);
  font-size: 12.5px;
  text-align: center;
  padding: 9px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.disclaimer-bar strong { color: var(--teal); }
.disclaimer-dot {
  width: 7px; height: 7px;
  background: var(--teal);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100%{opacity:1;transform:scale(1)}
  50%{opacity:.5;transform:scale(1.3)}
}

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
}
.logo-icon { font-size: 22px; }
.logo-accent { color: var(--teal-dark); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links li a {
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color .2s, background .2s;
}
.nav-links li a:hover,
.nav-links li a.active { color: var(--navy); background: var(--off-white); }
.nav-cta {
  background: var(--navy) !important;
  color: var(--white) !important;
  font-weight: 600 !important;
  padding: 8px 18px !important;
  border-radius: var(--radius-pill) !important;
  transition: background .2s !important;
}
.nav-cta:hover { background: var(--navy-3) !important; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all .3s;
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #0d1e38 50%, #0a2040 100%);
  color: var(--white);
  padding: 80px 0 90px;
  position: relative;
  overflow: hidden;
}
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.shape {
  position: absolute;
  border-radius: 50%;
  background: var(--teal);
  opacity: .06;
  filter: blur(60px);
}
.shape-1 { width: 500px; height: 500px; top: -150px; right: -100px; }
.shape-2 { width: 300px; height: 300px; bottom: -80px; left: 10%; }
.shape-3 { width: 200px; height: 200px; top: 30%; left: 40%; opacity: .04; }

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal-glow);
  border: 1px solid rgba(0,201,167,.3);
  color: var(--teal);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
}
.badge-dot {
  width: 6px; height: 6px;
  background: var(--teal);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -1px;
  margin-bottom: 18px;
}
.hero-highlight {
  background: linear-gradient(90deg, var(--teal), #4ADE80);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 16.5px;
  color: rgba(255,255,255,.7);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 32px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ===== HERO CARD ===== */
.hero-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  padding: 28px;
  backdrop-filter: blur(8px);
}
.card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.card-icon { font-size: 32px; }
.card-title { font-size: 15px; font-weight: 700; }
.card-sub { font-size: 12.5px; color: rgba(255,255,255,.55); }
.card-badge-green {
  margin-left: auto;
  background: rgba(34,197,94,.15);
  color: #4ADE80;
  border: 1px solid rgba(34,197,94,.3);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}
.card-steps { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.card-steps li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,.8);
}
.step-num {
  width: 24px; height: 24px;
  background: var(--teal);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}
.card-footer { display: flex; gap: 8px; }
.card-tag {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-pill);
  font-size: 12px;
  padding: 4px 12px;
  color: rgba(255,255,255,.7);
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  background: var(--teal);
  color: var(--navy);
  font-weight: 700;
  font-size: 15px;
  padding: 12px 26px;
  border-radius: var(--radius-pill);
  transition: background .2s, transform .15s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--teal-dark); transform: translateY(-1px); }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 15px;
  padding: 12px 26px;
  border-radius: var(--radius-pill);
  border: 1.5px solid rgba(255,255,255,.25);
  transition: border-color .2s, background .2s;
}
.btn-ghost:hover { border-color: rgba(255,255,255,.5); background: rgba(255,255,255,.06); }

/* ===== SECTION HEADERS ===== */
.section-tag {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--teal-dark);
  background: rgba(0,168,136,.08);
  border: 1px solid rgba(0,168,136,.2);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
}
section h2 {
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -.5px;
  margin-bottom: 10px;
}
.section-sub {
  color: var(--text-muted);
  font-size: 16px;
  max-width: 560px;
  line-height: 1.65;
}

/* ===== NOTICE SECTION ===== */
.notice-section {
  padding: 72px 0;
  background: var(--white);
  text-align: center;
}
.notice-section .section-sub { margin: 0 auto 32px; }
.notice-box {
  text-align: left;
  background: #FFFBEB;
  border: 1.5px solid #FDE68A;
  border-radius: var(--radius);
  padding: 28px 32px;
  max-width: 820px;
  margin: 0 auto;
}
.notice-box h3 {
  font-size: 17px;
  font-weight: 700;
  color: #92400E;
  margin-bottom: 10px;
}
.notice-box p { color: #78350F; margin-bottom: 12px; font-size: 15px; }
.notice-box ul { display: flex; flex-direction: column; gap: 8px; }
.notice-box li {
  color: #78350F;
  font-size: 14.5px;
  padding-left: 16px;
  position: relative;
}
.notice-box li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #D97706;
}

/* ===== GUIDE SECTION ===== */
.guide-section {
  padding: 80px 0;
  background: var(--off-white);
}
.guide-section .section-tag { display: block; margin-bottom: 12px; }
.guide-section h2 { margin-bottom: 10px; }
.guide-section .section-sub { margin-bottom: 32px; }
.guide-intro-box {
  background: var(--white);
  border-left: 4px solid var(--teal);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  margin-bottom: 40px;
  color: var(--text-muted);
  font-size: 15.5px;
  line-height: 1.7;
}
.guide-step {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}
.step-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.step-circle {
  width: 40px; height: 40px;
  background: var(--navy);
  color: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  flex-shrink: 0;
}
.alert-circle { background: #FEF3C7; color: #D97706; }
.step-header h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
}
.guide-step p {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 16px;
  line-height: 1.7;
}
.guide-step ol {
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.guide-step li {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.65;
}
.tip-box {
  background: #EFF6FF;
  border: 1px solid #BFDBFE;
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 14px;
  color: #1E40AF;
  margin-top: 16px;
}
.note-box {
  background: #FFFBEB;
  border: 1px solid #FDE68A;
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 14px;
  color: #92400E;
  margin-top: 12px;
}
.issues-step { border-left: 4px solid #F59E0B; }

/* ===== FEATURES ===== */
.features-section {
  padding: 80px 0;
  background: var(--navy);
  color: var(--white);
}
.features-section .section-tag {
  color: var(--teal);
  background: rgba(0,201,167,.1);
  border-color: rgba(0,201,167,.25);
}
.features-section h2 { color: var(--white); }
.features-section .section-sub { color: rgba(255,255,255,.6); margin-bottom: 48px; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--radius);
  padding: 28px;
  transition: background .2s, transform .2s;
}
.feature-card:hover {
  background: rgba(255,255,255,.08);
  transform: translateY(-2px);
}
.feature-icon { font-size: 28px; margin-bottom: 14px; }
.feature-card h4 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: rgba(255,255,255,.6); line-height: 1.6; }

/* ===== BLOG ===== */
.blog-section { padding: 80px 0; background: var(--white); }
.blog-section .section-sub { margin-bottom: 48px; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow .2s, transform .2s;
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.blog-img {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}
.setup-img { background: linear-gradient(135deg, #0ea5e9, #0284c7); }
.trouble-img { background: linear-gradient(135deg, #f97316, #ea580c); }
.mobile-img { background: linear-gradient(135deg, #10b981, #059669); }
.driver-img { background: linear-gradient(135deg, #3b82f6, #2563eb); }
.maint-img { background: linear-gradient(135deg, #f59e0b, #d97706); }
.wired-img { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
.blog-body { padding: 20px; }
.blog-cat {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  background: #EFF6FF;
  color: #1D4ED8;
  margin-bottom: 10px;
}
.cat-trouble { background: #FFF7ED; color: #C2410C; }
.cat-mobile { background: #ECFDF5; color: #065F46; }
.cat-driver { background: #EFF6FF; color: #1D4ED8; }
.cat-maint { background: #FFFBEB; color: #92400E; }
.blog-card h4 { font-size: 15.5px; font-weight: 700; color: var(--navy); margin-bottom: 8px; line-height: 1.35; }
.blog-card p { font-size: 13.5px; color: var(--text-muted); line-height: 1.55; margin-bottom: 14px; }
.blog-read {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--teal-dark);
  display: inline-block;
  margin-bottom: 12px;
  transition: color .2s;
}
.blog-read:hover { color: var(--navy); }
.blog-meta { font-size: 12px; color: var(--text-light); }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--teal-dark) 0%, #0d9488 100%);
  padding: 64px 0;
  text-align: center;
}
.cta-banner h2 { color: var(--white); margin-bottom: 10px; }
.cta-banner p { color: rgba(255,255,255,.8); font-size: 16px; margin-bottom: 28px; max-width: 460px; margin-left: auto; margin-right: auto; }
.cta-banner .btn-primary { background: var(--white); color: var(--teal-dark); font-size: 15px; }
.cta-banner .btn-primary:hover { background: #f1f5f9; }

/* ===== FOOTER ===== */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,.65);
  padding: 56px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-logo {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.footer-brand p { font-size: 14px; line-height: 1.65; margin-bottom: 16px; }
.footer-disclaimer {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 12.5px;
  line-height: 1.55;
}
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.footer-col h5 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--white);
  margin-bottom: 14px;
}
.footer-col a {
  display: block;
  font-size: 13.5px;
  color: rgba(255,255,255,.55);
  margin-bottom: 8px;
  transition: color .2s;
}
.footer-col a:hover { color: var(--teal); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  max-width: var(--max-w);
  margin: 0 auto;
  font-size: 13px;
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,.45); transition: color .2s; }
.footer-bottom-links a:hover { color: var(--teal); }

/* ===== SCROLL TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 24px;
  width: 44px; height: 44px;
  background: var(--teal);
  color: var(--navy);
  border: none;
  border-radius: 50%;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0,201,167,.4);
  opacity: 0;
  transition: opacity .3s, transform .2s;
  z-index: 50;
}
.scroll-top.visible { opacity: 1; }
.scroll-top:hover { transform: translateY(-2px); }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #0d1e38 100%);
  color: var(--white);
  padding: 56px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  background: var(--teal);
  border-radius: 50%;
  opacity: .05;
  filter: blur(80px);
  top: -100px; right: -50px;
}
.page-hero-inner { position: relative; z-index: 1; }
.breadcrumb { font-size: 13px; color: rgba(255,255,255,.5); margin-bottom: 12px; }
.breadcrumb a { color: var(--teal); }
.breadcrumb a:hover { text-decoration: underline; }
.page-hero h1 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.5px;
  margin-bottom: 12px;
}
.page-hero p { font-size: 16px; color: rgba(255,255,255,.65); max-width: 580px; }

/* ===== BLOG PAGE ===== */
.blog-page { padding: 72px 0; background: var(--off-white); }
.blog-page-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.blog-page .blog-card {
  background: var(--white);
  display: flex;
  flex-direction: column;
}
.blog-page .blog-img { height: 180px; font-size: 56px; }
.blog-page .blog-body { flex: 1; }

/* ===== ABOUT PAGE ===== */
.about-page { padding: 72px 0; }
.about-content {
  max-width: 780px;
  margin: 0 auto;
}
.about-content h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin: 36px 0 12px;
  border-bottom: 2px solid var(--border);
  padding-bottom: 8px;
}
.about-content h2:first-child { margin-top: 0; }
.about-content p {
  color: var(--text-muted);
  font-size: 15.5px;
  line-height: 1.7;
  margin-bottom: 14px;
}
.about-content ul {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.about-content li {
  color: var(--text-muted);
  font-size: 15px;
  padding-left: 18px;
  position: relative;
  line-height: 1.6;
}
.about-content li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--teal-dark);
  font-size: 13px;
}
.warning-box {
  background: var(--red-soft);
  border: 1.5px solid var(--red-border);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 20px 0;
}
.warning-box h3 { font-size: 16px; font-weight: 700; color: #991B1B; margin-bottom: 8px; }
.warning-box p { font-size: 14.5px; color: #7F1D1D; margin: 0; }

/* ===== LEGAL PAGES ===== */
.legal-page { padding: 72px 0; }
.legal-content {
  max-width: 780px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 44px;
  box-shadow: var(--shadow-sm);
}
.legal-content .prelude {
  background: #FFFBEB;
  border: 1px solid #FDE68A;
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 14px;
  color: #78350F;
  margin-bottom: 28px;
}
.legal-content h2 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin: 28px 0 10px;
}
.legal-content h2:first-of-type { margin-top: 0; }
.legal-content p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 12px;
}
.legal-content ul {
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.legal-content li {
  color: var(--text-muted);
  font-size: 14.5px;
  padding-left: 16px;
  position: relative;
}
.legal-content li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--teal-dark);
}
.legal-date {
  margin-top: 28px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-light);
  font-style: italic;
}

/* ===== CONTACT PAGE ===== */
.contact-page { padding: 72px 0; background: var(--off-white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 36px;
  max-width: 920px;
  margin: 0 auto;
}
.contact-info-box {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 32px;
}
.contact-info-box h3 { font-size: 18px; font-weight: 700; margin-bottom: 6px; }
.contact-info-box .info-note {
  font-size: 13.5px;
  color: rgba(255,255,255,.6);
  margin-bottom: 24px;
  line-height: 1.55;
}
.info-item {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
  align-items: flex-start;
}
.info-icon {
  width: 40px; height: 40px;
  background: rgba(0,201,167,.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.info-item h4 { font-size: 13px; font-weight: 600; color: var(--teal); margin-bottom: 3px; }
.info-item p { font-size: 14px; color: rgba(255,255,255,.7); }
.contact-form-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}
.contact-form-box h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 20px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13.5px; font-weight: 600; color: var(--text-main); margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 14.5px;
  color: var(--text-main);
  background: var(--off-white);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0,201,167,.12);
  background: var(--white);
}
.form-group textarea { height: 130px; resize: vertical; }
.form-submit {
  width: 100%;
  padding: 13px;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: background .2s;
}
.form-submit:hover { background: var(--navy-3); }
.success-msg {
  display: none;
  background: #ECFDF5;
  border: 1px solid #6EE7B7;
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 14px;
  color: #065F46;
  margin-bottom: 16px;
}

/* ===== BLOG ARTICLE ===== */
.article-page { padding: 72px 0; background: var(--off-white); }
.article-inner {
  max-width: 760px;
  margin: 0 auto;
}
.article-meta-bar {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.article-body {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 44px;
}
.article-body h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin: 32px 0 12px;
}
.article-body h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin: 24px 0 10px;
}
.article-body p {
  color: var(--text-muted);
  font-size: 15.5px;
  line-height: 1.75;
  margin-bottom: 16px;
}
.article-body ul, .article-body ol {
  margin-bottom: 16px;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.article-body li { color: var(--text-muted); font-size: 15px; line-height: 1.65; }
.article-reminder {
  background: #FFFBEB;
  border-left: 4px solid #F59E0B;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 14px 18px;
  margin-top: 24px;
}
.article-reminder strong { color: #92400E; }
.article-reminder p { font-size: 14px; color: #78350F; margin: 0; }
.article-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 24px;
}
.article-nav a {
  font-size: 14px;
  font-weight: 600;
  color: var(--teal-dark);
  padding: 10px 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: background .2s;
}
.article-nav a:hover { background: var(--off-white); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-card { max-width: 400px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .blog-page-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 16px 20px 20px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
  }
  .nav-links.open { display: flex; }
  .nav-links li a { padding: 10px 12px; width: 100%; }
  .hamburger { display: flex; }
  .navbar { position: relative; }
  .features-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .guide-step { padding: 22px 18px; }
  .legal-content { padding: 28px 20px; }
  .article-body { padding: 28px 20px; }
  .hero { padding: 56px 0 64px; }
  .hero-actions { flex-direction: column; gap: 10px; }
  .hero-actions .btn-primary, .hero-actions .btn-ghost { text-align: center; justify-content: center; }
}
