/*
Theme Name: GetBanner
Theme URI: https://getbanner.com.tr
Author: GETMEDIA & D Plus Anatolia
Author URI: https://getbanner.com.tr
Description: GETMEDIA yayın ağının doğrudan marka görünürlüğü platformu için özel geliştirilmiş WordPress teması. Eklenti bağımsız, saf PHP/HTML/CSS/JS.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
License: Proprietary
Text Domain: getbanner
*/

/* ============================================
   1. RESET & BASE
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1a2332;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: #ff6b1a; text-decoration: none; transition: color .2s ease; }
a:hover { color: #e55a0e; }
button { cursor: pointer; font-family: inherit; }

/* ============================================
   2. CSS VARIABLES (Brand Colors)
   ============================================ */
:root {
  --navy: #1a2332;
  --navy-dark: #0f1724;
  --navy-light: #2c3e50;
  --orange: #ff6b1a;
  --orange-dark: #e55a0e;
  --orange-light: #ff8533;
  --white: #ffffff;
  --gray-50: #f8f9fa;
  --gray-100: #f1f3f5;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-400: #ced4da;
  --gray-500: #adb5bd;
  --gray-600: #6c757d;
  --gray-700: #495057;
  --gray-800: #343a40;
  --gray-900: #212529;
  --container: 1200px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,.08);
  --shadow-lg: 0 12px 32px rgba(0,0,0,.12);
}

/* ============================================
   3. CONTAINER & LAYOUT
   ============================================ */
.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.section-alt { background: var(--gray-50); }
.section-dark { background: var(--navy); color: var(--white); }
.section-dark h1, .section-dark h2, .section-dark h3 { color: var(--white); }

/* ============================================
   4. TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.25; color: var(--navy); margin-bottom: 16px; }
h1 { font-size: 48px; letter-spacing: -.02em; }
h2 { font-size: 36px; letter-spacing: -.01em; }
h3 { font-size: 24px; }
h4 { font-size: 20px; }
h5 { font-size: 18px; }
h6 { font-size: 16px; }
p { margin-bottom: 16px; }
.lead { font-size: 18px; color: var(--gray-700); }
.eyebrow { display: inline-block; background: rgba(255,107,26,.1); color: var(--orange); padding: 6px 14px; border-radius: 100px; font-size: 13px; font-weight: 600; letter-spacing: .02em; margin-bottom: 20px; text-transform: uppercase; }
.text-center { text-align: center; }

/* ============================================
   5. BUTTONS
   ============================================ */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 28px; border: 2px solid transparent; border-radius: var(--radius-md); font-weight: 600; font-size: 15px; transition: all .2s ease; cursor: pointer; text-align: center; }
.btn-primary { background: var(--orange); color: var(--white); }
.btn-primary:hover { background: var(--orange-dark); color: var(--white); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-secondary { background: var(--navy); color: var(--white); }
.btn-secondary:hover { background: var(--navy-dark); color: var(--white); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--gray-300); }
.btn-outline:hover { border-color: var(--navy); color: var(--navy); }
.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,.3); }
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,.1); color: var(--white); }
.btn-lg { padding: 18px 36px; font-size: 16px; }
.btn-sm { padding: 10px 20px; font-size: 13px; }

/* ============================================
   6. HEADER & NAVIGATION
   ============================================ */
.site-header { background: var(--white); border-bottom: 1px solid var(--gray-200); position: sticky; top: 0; z-index: 100; }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; }
.site-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.site-logo img { height: 40px; width: auto; }
.site-logo-text { font-weight: 700; font-size: 20px; color: var(--navy); letter-spacing: -.01em; }
.site-logo-text span { color: var(--orange); }
.main-nav { display: flex; align-items: center; gap: 32px; }
.main-nav ul { list-style: none; display: flex; gap: 28px; }
.main-nav a { color: var(--navy); font-weight: 500; font-size: 15px; transition: color .2s; }
.main-nav a:hover, .main-nav .current_page_item a { color: var(--orange); }
.header-cta { display: flex; gap: 10px; align-items: center; }
.menu-toggle { display: none; background: none; border: none; padding: 8px; }
.menu-toggle span { display: block; width: 24px; height: 2px; background: var(--navy); margin: 5px 0; transition: all .2s; }

/* ============================================
   7. HERO SECTION
   ============================================ */
.hero { padding: 100px 0 80px; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%); color: var(--white); position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -50%; right: -20%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(255,107,26,.15) 0%, transparent 70%); border-radius: 50%; }
.hero-content { position: relative; z-index: 2; max-width: 900px; }
.hero h1 { color: var(--white); font-size: 56px; margin-bottom: 24px; }
.hero .lead { color: rgba(255,255,255,.85); font-size: 20px; margin-bottom: 36px; max-width: 700px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-logos { margin-top: 60px; padding-top: 40px; border-top: 1px solid rgba(255,255,255,.1); }
.hero-logos-label { color: rgba(255,255,255,.6); font-size: 13px; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 16px; }
.hero-logos-list { display: flex; flex-wrap: wrap; gap: 32px; align-items: center; }
.hero-logos-list span { color: rgba(255,255,255,.75); font-weight: 500; font-size: 15px; }

/* ============================================
   8. VALUE PROPS (4 cards)
   ============================================ */
.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 48px; }
.value-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 32px 24px; transition: all .2s; }
.value-card:hover { border-color: var(--orange); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.value-icon { width: 48px; height: 48px; background: rgba(255,107,26,.1); color: var(--orange); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; font-size: 22px; }
.value-card h3 { font-size: 18px; margin-bottom: 10px; }
.value-card p { color: var(--gray-700); font-size: 14px; margin: 0; line-height: 1.6; }

/* ============================================
   9. SITES GRID (5 sites)
   ============================================ */
.sites-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin-top: 48px; }
.site-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 24px; text-align: left; transition: all .2s; display: flex; flex-direction: column; }
.site-card:hover { border-color: var(--navy); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.site-card-logo { height: 48px; background: var(--gray-100); border-radius: var(--radius-sm); margin-bottom: 16px; display: flex; align-items: center; justify-content: center; color: var(--gray-600); font-weight: 700; font-size: 14px; }
.site-card h4 { font-size: 16px; margin-bottom: 8px; }
.site-card p { color: var(--gray-600); font-size: 13px; margin-bottom: 14px; flex: 1; }
.site-card-stat { color: var(--orange); font-weight: 600; font-size: 13px; }
.site-card-link { color: var(--navy); font-weight: 600; font-size: 13px; margin-top: 12px; }

/* ============================================
   10. HOW IT WORKS (3 steps)
   ============================================ */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.step-card { text-align: left; padding: 32px; background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--gray-200); }
.step-number { width: 40px; height: 40px; background: var(--navy); color: var(--white); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-weight: 700; margin-bottom: 20px; }
.step-card h3 { font-size: 20px; margin-bottom: 12px; }
.step-card p { color: var(--gray-700); margin: 0; }

/* ============================================
   11. PACKAGES (4 cards)
   ============================================ */
.packages-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 48px; }
.package-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 28px 24px; position: relative; display: flex; flex-direction: column; }
.package-card.featured { border-color: var(--orange); border-width: 2px; transform: scale(1.02); box-shadow: var(--shadow-md); }
.package-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--orange); color: var(--white); padding: 4px 14px; border-radius: 100px; font-size: 11px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.package-name { font-size: 13px; color: var(--gray-600); text-transform: uppercase; letter-spacing: .05em; font-weight: 600; margin-bottom: 8px; }
.package-tagline { font-size: 15px; color: var(--navy); margin-bottom: 20px; min-height: 44px; }
.package-price { font-size: 32px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.package-price small { font-size: 14px; font-weight: 500; color: var(--gray-600); }
.package-price-note { font-size: 12px; color: var(--gray-500); margin-bottom: 24px; }
.package-features { list-style: none; margin-bottom: 24px; flex: 1; }
.package-features li { padding: 8px 0; font-size: 14px; color: var(--gray-700); display: flex; gap: 10px; align-items: flex-start; border-bottom: 1px solid var(--gray-100); }
.package-features li:last-child { border-bottom: none; }
.package-features li::before { content: '✓'; color: var(--orange); font-weight: 700; flex-shrink: 0; }

/* ============================================
   12. PROOF / STATS
   ============================================ */
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.stat-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 40px 32px; text-align: center; }
.stat-number { font-size: 48px; font-weight: 800; color: var(--orange); line-height: 1; margin-bottom: 8px; }
.stat-label { color: var(--gray-700); font-size: 14px; }

/* ============================================
   13. BLOG CARDS
   ============================================ */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.blog-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); overflow: hidden; transition: all .2s; }
.blog-card:hover { border-color: var(--orange); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-card-image { height: 180px; background: var(--gray-200); background-size: cover; background-position: center; }
.blog-card-body { padding: 24px; }
.blog-card-category { display: inline-block; font-size: 12px; color: var(--orange); font-weight: 600; letter-spacing: .05em; text-transform: uppercase; margin-bottom: 10px; }
.blog-card h4 { font-size: 17px; margin-bottom: 8px; line-height: 1.35; }
.blog-card h4 a { color: var(--navy); }
.blog-card h4 a:hover { color: var(--orange); }
.blog-card-excerpt { color: var(--gray-600); font-size: 14px; margin-bottom: 12px; }
.blog-card-meta { color: var(--gray-500); font-size: 12px; }

/* ============================================
   14. CTA SECTION
   ============================================ */
.cta-box { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%); color: var(--white); padding: 64px 48px; border-radius: var(--radius-lg); text-align: center; position: relative; overflow: hidden; }
.cta-box::before { content: ''; position: absolute; top: -50%; left: -20%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(255,107,26,.2) 0%, transparent 70%); border-radius: 50%; }
.cta-box h2 { color: var(--white); position: relative; z-index: 2; }
.cta-box p { color: rgba(255,255,255,.85); position: relative; z-index: 2; margin-bottom: 32px; }
.cta-box .btn { position: relative; z-index: 2; }

/* ============================================
   15. FOOTER
   ============================================ */
.site-footer { background: var(--navy-dark); color: rgba(255,255,255,.7); padding: 64px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-col h5 { color: var(--white); font-size: 14px; margin-bottom: 18px; text-transform: uppercase; letter-spacing: .05em; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col a { color: rgba(255,255,255,.7); font-size: 14px; transition: color .2s; }
.footer-col a:hover { color: var(--orange); }
.footer-about { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,.65); margin-top: 16px; max-width: 320px; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a { width: 36px; height: 36px; background: rgba(255,255,255,.08); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; color: var(--white); transition: background .2s; }
.footer-social a:hover { background: var(--orange); }
.footer-partners { text-align: center; padding: 20px 0; border-top: 1px solid rgba(255,255,255,.1); font-size: 13px; color: rgba(255,255,255,.5); }
.footer-partners p { margin: 4px 0; }
.footer-bottom { text-align: center; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); font-size: 13px; color: rgba(255,255,255,.4); }

/* ============================================
   16. SITE DETAIL PAGE
   ============================================ */
.site-hero { padding: 64px 0 48px; background: var(--gray-50); border-bottom: 1px solid var(--gray-200); }
.site-hero-inner { display: grid; grid-template-columns: 140px 1fr; gap: 32px; align-items: center; }
.site-hero-logo { width: 120px; height: 120px; background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--gray-200); display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--navy); font-size: 18px; }
.site-hero-title { font-size: 36px; margin-bottom: 12px; }
.site-hero-tagline { font-size: 18px; color: var(--gray-700); margin-bottom: 20px; }
.site-hero-tags { display: flex; gap: 10px; flex-wrap: wrap; }
.tag { background: var(--white); border: 1px solid var(--gray-300); padding: 6px 14px; border-radius: 100px; font-size: 13px; color: var(--gray-700); }

.metric-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 32px; }
.metric-card { background: var(--gray-50); border-radius: var(--radius-md); padding: 24px; }
.metric-label { font-size: 12px; color: var(--gray-600); text-transform: uppercase; letter-spacing: .05em; margin-bottom: 8px; }
.metric-value { font-size: 32px; font-weight: 700; color: var(--navy); }

.demo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 32px; }
.demo-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-md); padding: 24px; }
.demo-card h4 { font-size: 14px; color: var(--gray-600); text-transform: uppercase; margin-bottom: 16px; }
.demo-bar { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; font-size: 13px; }
.demo-bar-label { width: 60px; color: var(--gray-700); }
.demo-bar-track { flex: 1; height: 10px; background: var(--gray-200); border-radius: 100px; overflow: hidden; }
.demo-bar-fill { height: 100%; background: var(--orange); border-radius: 100px; }
.demo-bar-value { font-weight: 600; color: var(--navy); min-width: 40px; text-align: right; }

.interests-list { display: flex; flex-wrap: wrap; gap: 8px; }
.interest-tag { background: var(--gray-100); color: var(--gray-700); padding: 6px 14px; border-radius: var(--radius-sm); font-size: 13px; }

/* ============================================
   17. FAQ ACCORDION
   ============================================ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-md); margin-bottom: 10px; overflow: hidden; }
.faq-question { padding: 18px 24px; font-weight: 600; color: var(--navy); cursor: pointer; display: flex; justify-content: space-between; align-items: center; background: var(--white); border: none; width: 100%; text-align: left; font-size: 15px; }
.faq-question::after { content: '+'; font-size: 22px; color: var(--orange); font-weight: 300; transition: transform .2s; }
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer { padding: 0 24px; max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s ease; color: var(--gray-700); }
.faq-item.open .faq-answer { padding: 0 24px 20px; max-height: 500px; }

/* ============================================
   18. PACKAGE PAGE - Site Selector
   ============================================ */
.site-selector { display: flex; gap: 8px; background: var(--white); padding: 8px; border-radius: var(--radius-md); border: 1px solid var(--gray-200); margin-bottom: 32px; flex-wrap: wrap; justify-content: center; }
.site-selector button { padding: 10px 18px; background: transparent; border: none; border-radius: var(--radius-sm); font-size: 14px; font-weight: 500; color: var(--gray-700); cursor: pointer; transition: all .2s; }
.site-selector button.active { background: var(--navy); color: var(--white); }
.site-selector button:not(.active):hover { background: var(--gray-100); }

.format-selector { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 40px; }
.format-card { background: var(--white); border: 2px solid var(--gray-200); border-radius: var(--radius-md); padding: 20px; cursor: pointer; text-align: center; transition: all .2s; }
.format-card.active { border-color: var(--orange); background: rgba(255,107,26,.04); }
.format-card:hover { border-color: var(--orange); }
.format-card h4 { margin-bottom: 6px; font-size: 16px; }
.format-card p { font-size: 13px; color: var(--gray-600); margin: 0; }

/* ============================================
   19. CONTACT PAGE
   ============================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 40px; }
.contact-form { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-row-full { display: block; margin-bottom: 14px; }
.form-group label { display: block; font-size: 13px; font-weight: 500; color: var(--gray-700); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 14px; border: 1px solid var(--gray-300); border-radius: var(--radius-sm); font-size: 14px; font-family: inherit; background: var(--white); transition: border-color .2s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--orange); }
.form-group textarea { resize: vertical; min-height: 100px; }
.kvkk-check { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; color: var(--gray-700); margin: 20px 0; }
.kvkk-check input { margin-top: 3px; }

.contact-channels { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 32px; }
.channel-item { padding: 20px 0; border-bottom: 1px solid var(--gray-200); }
.channel-item:last-child { border-bottom: none; padding-bottom: 0; }
.channel-item:first-child { padding-top: 0; }
.channel-label { font-size: 12px; color: var(--gray-500); text-transform: uppercase; letter-spacing: .05em; margin-bottom: 4px; }
.channel-value { font-size: 17px; font-weight: 600; color: var(--navy); }
.channel-value a { color: var(--navy); }
.channel-value a:hover { color: var(--orange); }
.channel-note { font-size: 13px; color: var(--gray-600); margin-top: 4px; }

/* ============================================
   20. BLOG
   ============================================ */
.blog-hero { padding: 64px 0 40px; background: var(--gray-50); border-bottom: 1px solid var(--gray-200); }
.blog-categories { display: flex; gap: 8px; flex-wrap: wrap; margin: 32px 0; }
.blog-category-pill { padding: 8px 18px; background: var(--white); border: 1px solid var(--gray-300); border-radius: 100px; font-size: 13px; color: var(--gray-700); cursor: pointer; transition: all .2s; }
.blog-category-pill.active, .blog-category-pill:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }

.single-post { padding: 48px 0; }
.single-post-header { max-width: 800px; margin: 0 auto 32px; }
.single-post-header h1 { font-size: 40px; margin-bottom: 16px; }
.single-post-meta { color: var(--gray-600); font-size: 14px; }
.single-post-content { max-width: 800px; margin: 0 auto; font-size: 17px; line-height: 1.8; }
.single-post-content h2 { font-size: 28px; margin: 40px 0 16px; }
.single-post-content h3 { font-size: 22px; margin: 32px 0 12px; }
.single-post-content p { margin-bottom: 20px; }
.single-post-content blockquote { border-left: 4px solid var(--orange); padding: 16px 0 16px 24px; margin: 24px 0; color: var(--gray-700); font-style: italic; background: var(--gray-50); }

/* ============================================
   21. RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
  h1 { font-size: 38px; }
  .hero h1 { font-size: 42px; }
  h2 { font-size: 30px; }
  .value-grid, .packages-grid { grid-template-columns: repeat(2, 1fr); }
  .sites-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid, .stats-grid, .blog-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .site-hero-inner { grid-template-columns: 100px 1fr; gap: 20px; }
  .metric-grid { grid-template-columns: repeat(2, 1fr); }
  .demo-grid, .contact-grid { grid-template-columns: 1fr; }
  .format-selector { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 56px 0; }
  h1 { font-size: 32px; }
  .hero { padding: 56px 0; }
  .hero h1 { font-size: 32px; }
  .hero .lead { font-size: 17px; }
  h2 { font-size: 26px; }
  .menu-toggle { display: block; }
  .main-nav ul { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); flex-direction: column; padding: 20px; border-bottom: 1px solid var(--gray-200); }
  .main-nav ul.open { display: flex; }
  .main-nav { gap: 0; }
  .header-cta .btn-outline { display: none; }
  .value-grid, .packages-grid, .sites-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .package-card.featured { transform: scale(1); }
  .form-row { grid-template-columns: 1fr; }
  .site-hero-inner { grid-template-columns: 1fr; text-align: center; }
  .site-hero-logo { margin: 0 auto; }
  .cta-box { padding: 40px 24px; }
  .cta-box h2 { font-size: 24px; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { width: 100%; }
}
