/*
Theme Name: รับทำ Presentation วิชาการ
Theme URI: https://www.xn--72cb1blm7cs3b8cmc1t6b8bj.com/
Author: รับจ้างทำสไลด์.com
Author URI: https://www.xn--72cb1blm7cs3b8cmc1t6b8bj.com/
Description: Custom WordPress Theme สำหรับบริการรับทำ Presentation วิชาการ - ออกแบบเฉพาะสำหรับ Landing Page คุณภาพสูง
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.9
Requires PHP: 8.0
License: Private
Text Domain: slide-theme
*/

/* === CSS Variables === */
:root {
  --navy: #0f1b35;
  --navy-light: #1a2d52;
  --blue: #1e40af;
  --blue-light: #2563eb;
  --accent: #f59e0b;
  --accent-light: #fcd34d;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-400: #94a3b8;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --green: #10b981;
  --font-main: 'Sarabun', sans-serif;
  --font-display: 'Kanit', sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(15,27,53,0.10);
  --shadow-lg: 0 8px 48px rgba(15,27,53,0.16);
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-main);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
}
img { max-width: 100%; height: auto; display: block; }
a { transition: all 0.2s; }

/* === WordPress Core Alignment Classes === */
.aligncenter { display: block; margin: 0 auto; }
.alignleft { float: left; margin-right: 1.5em; }
.alignright { float: right; margin-left: 1.5em; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 0.85rem; color: var(--gray-600); text-align: center; margin-top: 6px; }

/* === NAVBAR === */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(15,27,53,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0 24px;
  height: 64px;
  display: flex; align-items: center; justify-content: space-between;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.nav-brand {
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 700;
  color: var(--white); text-decoration: none;
  display: flex; align-items: center; gap: 8px;
}
.nav-brand span { color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,0.82); text-decoration: none;
  font-size: 0.875rem; font-weight: 500;
  padding: 6px 12px; border-radius: 8px; transition: all 0.2s;
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.1); }
.nav-cta {
  background: var(--accent) !important; color: var(--navy) !important;
  font-weight: 700 !important; padding: 8px 18px !important; border-radius: 8px !important;
}
.nav-cta:hover { background: var(--accent-light) !important; transform: translateY(-1px); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; border: none; background: none; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: 0.3s; }
.nav-mobile {
  display: none; position: fixed; top: 64px; left: 0; right: 0;
  background: var(--navy); padding: 16px; z-index: 999;
  flex-direction: column; gap: 4px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  color: rgba(255,255,255,0.85); text-decoration: none;
  font-size: 0.95rem; font-weight: 500;
  padding: 10px 16px; border-radius: 8px; display: block;
}
.nav-mobile a:hover { background: rgba(255,255,255,0.08); }
.nav-mobile .nav-line-link { color: #06c755 !important; font-weight: 700 !important; }

/* === HERO === */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, #162447 100%);
  display: flex; align-items: center;
  padding: 100px 24px 60px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -50%; right: -20%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(37,99,235,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; bottom: -30%; left: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(245,158,11,0.10) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1100px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(245,158,11,0.15); border: 1px solid rgba(245,158,11,0.3);
  color: var(--accent-light); font-size: 0.8rem; font-weight: 600;
  padding: 6px 14px; border-radius: 100px; margin-bottom: 20px; letter-spacing: 0.05em;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 800;
  color: var(--white); line-height: 1.25; margin-bottom: 20px;
}
.hero h1 em { font-style: normal; color: var(--accent); }
.hero-desc { color: rgba(255,255,255,0.75); font-size: 1.05rem; margin-bottom: 32px; max-width: 480px; }
.hero-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; }
.pill {
  display: flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.85); font-size: 0.82rem; font-weight: 500;
  padding: 5px 12px; border-radius: 100px;
}
.pill-check { color: var(--green); }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* Hero Stats */
.hero-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: rgba(255,255,255,0.1); border-radius: 14px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1); margin-top: 20px;
}
.stat { background: rgba(255,255,255,0.05); padding: 20px 16px; text-align: center; }
.stat-num {
  font-family: var(--font-display); font-size: 1.6rem; font-weight: 800;
  color: var(--accent); line-height: 1; margin-bottom: 4px;
}
.stat-label { font-size: 0.72rem; color: rgba(255,255,255,0.6); font-weight: 500; line-height: 1.3; }

/* Hero Visual */
.hero-visual { display: flex; flex-direction: column; gap: 16px; }
.slide-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px; padding: 20px 24px;
  display: flex; align-items: center; gap: 16px; backdrop-filter: blur(10px); transition: all 0.3s;
}
.slide-card:hover { background: rgba(255,255,255,0.10); transform: translateX(4px); }
.slide-icon {
  width: 46px; height: 46px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; flex-shrink: 0;
}
.slide-icon.blue { background: rgba(37,99,235,0.25); }
.slide-icon.amber { background: rgba(245,158,11,0.2); }
.slide-icon.green { background: rgba(16,185,129,0.2); }
.slide-icon.purple { background: rgba(139,92,246,0.2); }
.slide-title { font-weight: 700; font-size: 0.9rem; color: var(--white); }
.slide-sub { font-size: 0.78rem; color: rgba(255,255,255,0.55); margin-top: 2px; }
.slide-price { margin-left: auto; font-family: var(--font-display); font-weight: 700; color: var(--accent); font-size: 0.88rem; white-space: nowrap; }

/* === BUTTONS === */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: var(--navy);
  font-weight: 700; font-size: 0.95rem; padding: 13px 28px;
  border-radius: 10px; text-decoration: none; transition: all 0.2s;
  box-shadow: 0 4px 20px rgba(245,158,11,0.4); border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--accent-light); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(245,158,11,0.5); color: var(--navy); text-decoration: none; }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.25);
  color: var(--white); font-weight: 600; font-size: 0.95rem;
  padding: 13px 24px; border-radius: 10px; text-decoration: none; transition: all 0.2s;
}
.btn-secondary:hover { background: rgba(255,255,255,0.18); transform: translateY(-2px); color: var(--white); text-decoration: none; }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; border: 2px solid var(--blue-light);
  color: var(--blue-light); font-weight: 700; font-size: 0.9rem;
  padding: 11px 22px; border-radius: 10px; text-decoration: none; transition: all 0.2s;
}
.btn-outline:hover { background: var(--blue-light); color: var(--white); text-decoration: none; }

/* === SECTIONS === */
.section { padding: 80px 24px; }
.section-alt { background: var(--gray-50); }
.container { max-width: 1100px; margin: 0 auto; }
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(37,99,235,0.08); color: var(--blue-light);
  font-size: 0.78rem; font-weight: 700; padding: 5px 14px; border-radius: 100px;
  letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800; color: var(--navy); margin-bottom: 14px; line-height: 1.3;
}
.section-title em { font-style: normal; color: var(--blue-light); }
.section-desc { color: var(--gray-600); max-width: 560px; font-size: 1rem; }
.section-header { margin-bottom: 48px; }
.section-header-center { text-align: center; }
.section-header-center .section-desc { margin: 0 auto; }
.subsection-label {
  font-family: var(--font-display); font-weight: 700; font-size: 0.85rem;
  color: var(--gray-600); margin-bottom: 14px; text-transform: uppercase;
  letter-spacing: 0.08em; display: flex; align-items: center; gap: 8px;
}

/* === SERVICE CARDS === */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.service-card {
  background: var(--white); border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 28px;
  text-decoration: none; color: inherit; transition: all 0.25s;
  display: block; position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue-light), var(--accent));
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
}
.service-card:hover { border-color: var(--blue-light); box-shadow: var(--shadow-lg); transform: translateY(-4px); text-decoration: none; color: inherit; }
.service-card:hover::before { transform: scaleX(1); }
.service-emoji { font-size: 2rem; margin-bottom: 14px; display: block; }
.service-name { font-family: var(--font-display); font-weight: 700; font-size: 1rem; color: var(--navy); margin-bottom: 8px; }
.service-desc { font-size: 0.875rem; color: var(--gray-600); line-height: 1.6; margin-bottom: 16px; }
.service-price { font-family: var(--font-display); font-weight: 700; font-size: 0.9rem; color: var(--blue-light); display: flex; align-items: center; gap: 6px; }
.service-arrow { color: var(--gray-400); font-size: 0.8rem; margin-left: auto; }

/* === SOFTWARE === */
.software-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 16px; }
.software-card {
  background: var(--white); border: 1.5px solid var(--gray-200);
  border-radius: var(--radius); padding: 22px 24px;
  display: flex; align-items: center; gap: 16px; transition: all 0.2s;
}
.software-card:hover { border-color: var(--blue-light); box-shadow: var(--shadow); }
.sw-icon { font-size: 1.8rem; }
.sw-name { font-weight: 700; font-size: 0.95rem; color: var(--navy); }
.sw-desc { font-size: 0.8rem; color: var(--gray-600); margin-top: 2px; }

/* === WHY US === */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.why-card { background: var(--white); border: 1.5px solid var(--gray-200); border-radius: var(--radius-lg); padding: 28px; }
.why-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(37,99,235,0.12), rgba(245,158,11,0.08));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 16px;
}
.why-title { font-family: var(--font-display); font-weight: 700; font-size: 1rem; color: var(--navy); margin-bottom: 8px; }
.why-desc { font-size: 0.875rem; color: var(--gray-600); line-height: 1.6; }

/* === PRICING === */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; align-items: stretch; }
.price-card {
  background: var(--white); border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 32px 28px;
  position: relative; transition: all 0.2s;
}
.price-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.price-card.featured {
  border-color: var(--blue-light);
  background: linear-gradient(160deg, #f0f7ff 0%, var(--white) 100%);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.15), var(--shadow);
}
.price-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--blue-light); color: var(--white);
  font-size: 0.72rem; font-weight: 700; padding: 4px 14px; border-radius: 100px;
  letter-spacing: 0.05em; white-space: nowrap;
}
.price-name { font-family: var(--font-display); font-weight: 800; font-size: 1.05rem; color: var(--navy); margin-bottom: 6px; }
.price-slides { font-size: 0.82rem; color: var(--gray-600); margin-bottom: 20px; }
.price-amount { font-family: var(--font-display); font-size: 2.2rem; font-weight: 800; color: var(--navy); line-height: 1; margin-bottom: 4px; }
.price-amount sup { font-size: 1rem; vertical-align: super; }
.price-amount.custom { font-size: 1.5rem; }
.price-note { font-size: 0.78rem; color: var(--gray-400); margin-bottom: 24px; }
.price-features { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.price-features li { display: flex; align-items: center; gap: 8px; font-size: 0.875rem; color: var(--gray-700); }
.price-features li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }
.pricing-note {
  margin-top: 32px; background: rgba(245,158,11,0.08);
  border: 1.5px solid rgba(245,158,11,0.25); border-radius: var(--radius);
  padding: 16px 20px; font-size: 0.875rem; color: var(--gray-700);
  display: flex; align-items: center; gap: 12px;
}

/* === STEPS === */
.steps-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; position: relative; }
.steps-row::before {
  content: ''; position: absolute;
  top: 28px; left: calc(16.67% + 24px); right: calc(16.67% + 24px);
  height: 2px; background: linear-gradient(90deg, var(--blue-light), var(--accent)); z-index: 0;
}
.step {
  text-align: center; position: relative; z-index: 1;
  background: var(--white); border-radius: var(--radius-lg);
  padding: 32px 24px; border: 1.5px solid var(--gray-200);
}
.step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: var(--white); font-family: var(--font-display); font-weight: 800; font-size: 1.3rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px; box-shadow: 0 4px 16px rgba(37,99,235,0.35);
}
.step-title { font-family: var(--font-display); font-weight: 700; font-size: 1rem; color: var(--navy); margin-bottom: 8px; }
.step-desc { font-size: 0.875rem; color: var(--gray-600); line-height: 1.6; }

/* === CLUSTER === */
.cluster-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 14px; }
.cluster-item {
  background: var(--white); border: 1.5px solid var(--gray-200);
  border-radius: var(--radius); padding: 18px 20px;
  text-decoration: none; color: inherit; transition: all 0.2s;
  display: flex; align-items: center; gap: 12px;
}
.cluster-item:hover { border-color: var(--blue-light); box-shadow: var(--shadow); transform: translateY(-2px); text-decoration: none; color: inherit; }
.cluster-emoji { font-size: 1.4rem; flex-shrink: 0; }
.cluster-text-title { font-weight: 700; font-size: 0.875rem; color: var(--navy); }
.cluster-text-sub { font-size: 0.75rem; color: var(--gray-600); margin-top: 2px; }

/* === FAQ === */
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 760px; margin: 0 auto; }
.faq-item { background: var(--white); border: 1.5px solid var(--gray-200); border-radius: var(--radius); overflow: hidden; }
.faq-q {
  width: 100%; text-align: left; padding: 18px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-weight: 600; font-size: 0.95rem; color: var(--navy);
  background: none; border: none; cursor: pointer; font-family: var(--font-main); transition: background 0.2s;
}
.faq-q:hover { background: var(--gray-50); }
.faq-icon { font-size: 1.1rem; color: var(--blue-light); flex-shrink: 0; transition: transform 0.3s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { padding: 0 24px; max-height: 0; overflow: hidden; font-size: 0.9rem; color: var(--gray-600); line-height: 1.7; transition: max-height 0.35s ease, padding 0.35s; }
.faq-item.open .faq-a { max-height: 200px; padding: 0 24px 18px; }

/* === CONTACT === */
.contact-box {
  background: var(--white); border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 32px;
  max-width: 480px; margin: 0 auto;
}
.contact-row { display: flex; align-items: center; gap: 14px; padding: 12px 0; border-bottom: 1px solid var(--gray-100); }
.contact-row:last-child { border-bottom: none; }
.contact-icon { font-size: 1.3rem; width: 36px; text-align: center; }
.contact-info-label { font-size: 0.75rem; font-weight: 600; color: var(--gray-400); text-transform: uppercase; letter-spacing: 0.05em; }
.contact-info-value { font-weight: 700; font-size: 0.95rem; color: var(--navy); text-decoration: none; display: block; }
.contact-info-value:hover { color: var(--blue-light); }

/* === CTA BANNER === */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 60%, #162447 100%);
  padding: 72px 24px; text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; top: -50%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(245,158,11,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-title {
  font-family: var(--font-display); font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 800; color: var(--white); margin-bottom: 14px; line-height: 1.3;
}
.cta-title em { font-style: normal; color: var(--accent); }
.cta-desc { color: rgba(255,255,255,0.7); font-size: 1rem; margin-bottom: 36px; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-checks { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; margin-bottom: 36px; }
.cta-check { display: flex; align-items: center; gap: 7px; color: rgba(255,255,255,0.85); font-size: 0.875rem; font-weight: 500; }
.cta-check-icon { color: var(--green); font-size: 0.95rem; }
.cta-btns { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.cta-inner { max-width: 700px; margin: 0 auto; position: relative; z-index: 1; }

/* === FOOTER === */
.site-footer { background: var(--navy); color: rgba(255,255,255,0.65); padding: 48px 24px 24px; }
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px;
  padding-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 24px;
}
.footer-brand { font-family: var(--font-display); font-size: 1.1rem; font-weight: 800; color: var(--white); margin-bottom: 10px; }
.footer-brand span { color: var(--accent); }
.footer-tagline { font-size: 0.82rem; line-height: 1.6; max-width: 280px; }
.footer-col-title { font-family: var(--font-display); font-weight: 700; font-size: 0.9rem; color: var(--white); margin-bottom: 16px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.84rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--accent); text-decoration: none; }
.footer-bottom {
  max-width: 1100px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.78rem; flex-wrap: wrap; gap: 12px;
}

/* === STICKY BAR === */
.sticky-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 999;
  background: rgba(15,27,53,0.97); backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 10px 20px; display: flex; justify-content: center; align-items: center;
  gap: 12px; flex-wrap: wrap;
}
.sticky-bar-text { color: rgba(255,255,255,0.7); font-size: 0.82rem; }
.sticky-bar-text strong { color: var(--white); }
.sticky-btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 20px; border-radius: 8px;
  font-weight: 700; font-size: 0.85rem; text-decoration: none; transition: all 0.2s;
}
.sticky-line { background: #06c755; color: var(--white); }
.sticky-line:hover { background: #05b34b; color: var(--white); text-decoration: none; }

/* === ANIMATIONS === */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-content > * { opacity: 0; animation: fadeUp 0.6s ease forwards; }
.hero-badge { animation-delay: 0.1s; }
.hero h1    { animation-delay: 0.2s; }
.hero-desc  { animation-delay: 0.3s; }
.hero-pills { animation-delay: 0.4s; }
.hero-btns  { animation-delay: 0.5s; }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .steps-row { grid-template-columns: 1fr; }
  .steps-row::before { display: none; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 56px 20px; }
}
@media (max-width: 480px) {
  .sticky-bar-text { display: none; }
}

/* === WordPress body classes === */
body.home .site-main { padding-top: 0; }
.admin-bar .navbar { top: 32px; }
.admin-bar .nav-mobile { top: calc(64px + 32px); }
@media (max-width: 782px) {
  .admin-bar .navbar { top: 46px; }
  .admin-bar .nav-mobile { top: calc(64px + 46px); }
}
