/* ============================================================
   QueboStream.ca — Shared Stylesheet
   Design DNA cloned from quebeciptv.tv inspiration:
   Modern high-contrast aesthetic, white/black/dark-grey base
   with vibrant orange (#ff6900) + indigo blue (#0b1fa3) accents.
   ============================================================ */

:root {
  --white: #ffffff;
  --black: #000000;
  --dark: #32373c;          /* primary dark text */
  --dark-2: #1f2429;        /* dark footer/nav variant */
  --orange: #ff6900;        /* primary CTA accent */
  --orange-dark: #e55a00;
  --orange-light: rgba(255, 105, 0, 0.1);
  --indigo: #0b1fa3;        /* secondary/badge accent */
  --indigo-dark: #081780;
  --indigo-light: rgba(11, 31, 163, 0.08);
  --grey-50: #fafafa;
  --grey-100: #f5f5f7;
  --grey-200: #e9ecef;
  --grey-300: #dee2e6;
  --grey-500: #adb5bd;
  --grey-700: #495057;
  --grey-900: #212529;
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.06);
  --shadow-md: 0 6px 18px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 36px rgba(0,0,0,0.12);
  --shadow-orange: 0 8px 24px rgba(255,105,0,0.25);
  --shadow-indigo: 0 8px 24px rgba(11,31,163,0.18);
  --font: 'Poppins', 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-display: 'Poppins', 'Inter', system-ui, sans-serif;
  --max-w: 1200px;
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-pill: 50px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* , *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--font);
  background: var(--white);
  color: var(--dark);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: var(--indigo); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--orange); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
h1, h2, h3, h4, h5, h6 { color: var(--dark); line-height: 1.25; font-weight: 700; font-family: var(--font-display); }
h1 { font-size: clamp(2rem, 5vw, 3.25rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 4vw, 2.5rem); letter-spacing: -0.015em; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.2rem; }
p { color: var(--grey-700); }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }
.skip-link { position: absolute; left: -9999px; top: 0; background: var(--indigo); color: #fff; padding: 10px 16px; z-index: 9999; }
.skip-link:focus { left: 10px; top: 10px; }

/* ─── TOP BAR ─── */
.topbar { background: var(--dark-2); color: rgba(255,255,255,0.85); font-size: 0.85rem; padding: 8px 0; }
.topbar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.topbar a { color: rgba(255,255,255,0.85); }
.topbar a:hover { color: var(--orange); }
.topbar .badge-24 { display: inline-block; background: var(--orange); color: #fff; padding: 2px 10px; border-radius: 20px; font-weight: 600; font-size: 0.75rem; }

/* ─── HEADER ─── */
.header { background: var(--white); border-bottom: 1px solid var(--grey-200); position: sticky; top: 0; z-index: 1000; box-shadow: var(--shadow-sm); }
.header .container { display: flex; align-items: center; justify-content: space-between; height: 78px; }
.logo { font-size: 1.6rem; font-weight: 800; color: var(--dark); letter-spacing: -0.02em; font-family: var(--font-display); }
.logo span { color: var(--orange); }
.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links a { color: var(--dark); font-size: 0.92rem; font-weight: 600; padding: 6px 0; position: relative; transition: color var(--transition); }
.nav-links a:hover, .nav-links a.active { color: var(--orange); }
.nav-links a.active::after { content: ''; position: absolute; bottom: -2px; left: 0; right: 0; height: 3px; background: var(--orange); border-radius: 2px; }
.lang-switch { background: var(--indigo); color: #fff !important; padding: 7px 16px; border-radius: var(--radius-pill); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.04em; }
.lang-switch:hover { background: var(--orange) !important; color: #fff !important; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span { width: 26px; height: 3px; background: var(--dark); border-radius: 2px; transition: var(--transition); }

/* ─── HERO ─── */
.hero { background: linear-gradient(135deg, var(--grey-50) 0%, #ffffff 60%, var(--indigo-light) 100%); padding: 80px 0 100px; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -100px; right: -150px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(255,105,0,0.12), transparent 70%); border-radius: 50%; pointer-events: none; }
.hero::after { content: ''; position: absolute; bottom: -150px; left: -100px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(11,31,163,0.08), transparent 70%); border-radius: 50%; pointer-events: none; }
.hero .container { display: grid; grid-template-columns: 1.1fr 1fr; gap: 50px; align-items: center; position: relative; z-index: 1; }
.hero-content .price-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--orange); color: #fff; padding: 8px 18px; border-radius: var(--radius-pill); font-weight: 700; font-size: 0.85rem; margin-bottom: 22px; box-shadow: var(--shadow-orange); }
.hero-content .price-badge strong { font-size: 1.1rem; }
.hero-content h1 { margin-bottom: 22px; color: var(--dark); }
.hero-content h1 em { color: var(--orange); font-style: normal; }
.hero-content .lead { font-size: 1.15rem; color: var(--grey-700); margin-bottom: 32px; max-width: 540px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-img { position: relative; }
.hero-img img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; max-height: 460px; object-fit: cover; }
.hero-trust { display: flex; gap: 30px; margin-top: 28px; padding-top: 28px; border-top: 1px solid var(--grey-200); }
.hero-trust div { font-size: 0.85rem; color: var(--grey-700); }
.hero-trust strong { display: block; color: var(--dark); font-size: 1.6rem; font-weight: 800; line-height: 1; }
.hero-trust strong em { color: var(--orange); font-style: normal; }

/* ─── BUTTONS ─── */
.btn { display: inline-block; padding: 14px 30px; border-radius: var(--radius-pill); font-weight: 700; font-size: 0.92rem; letter-spacing: 0.02em; transition: all var(--transition); cursor: pointer; text-align: center; line-height: 1; font-family: var(--font-display); }
.btn-primary { background: var(--orange); color: #fff; box-shadow: var(--shadow-orange); }
.btn-primary:hover { background: var(--orange-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 12px 30px rgba(255,105,0,0.35); }
.btn-secondary { background: var(--indigo); color: #fff; box-shadow: var(--shadow-indigo); }
.btn-secondary:hover { background: var(--indigo-dark); color: #fff; transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--dark); border: 2px solid var(--dark); }
.btn-outline:hover { background: var(--dark); color: #fff; }
.btn-outline-orange { background: transparent; color: var(--orange); border: 2px solid var(--orange); }
.btn-outline-orange:hover { background: var(--orange); color: #fff; }
.btn-sm { padding: 10px 22px; font-size: 0.85rem; }
.btn-lg { padding: 18px 38px; font-size: 1rem; }
.btn-block { display: block; width: 100%; }

/* ─── SECTION FRAMEWORK ─── */
.section { padding: 90px 0; }
.section-grey { background: var(--grey-50); }
.section-indigo { background: var(--indigo); color: #fff; }
.section-indigo h2, .section-indigo h3, .section-indigo p { color: #fff; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header .eyebrow { display: inline-block; color: var(--orange); font-weight: 700; font-size: 0.85rem; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 14px; padding: 6px 16px; background: var(--orange-light); border-radius: var(--radius-pill); }
.section-header h2 { max-width: 720px; margin: 0 auto 14px; }
.section-header p { max-width: 640px; margin: 0 auto; font-size: 1.05rem; color: var(--grey-700); }

/* ─── CATEGORIES (movie-poster style cards) ─── */
.categories { padding: 80px 0; }
.categories-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 22px; }
.category-card { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 2/3; box-shadow: var(--shadow-md); transition: transform var(--transition); }
.category-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.category-card:hover { transform: translateY(-6px); }
.category-card:hover img { transform: scale(1.06); }
.category-card .overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 60%, transparent 100%); display: flex; align-items: flex-end; padding: 20px; }
.category-card .overlay h4 { color: #fff; font-size: 1.05rem; font-weight: 700; }
.category-card .overlay .count { display: block; color: var(--orange); font-size: 0.8rem; font-weight: 700; margin-top: 4px; }

/* ─── PRICING ─── */
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.pricing-card { background: var(--white); border: 1px solid var(--grey-200); border-radius: var(--radius-lg); padding: 38px 28px; text-align: center; transition: all var(--transition); position: relative; }
.pricing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--orange); }
.pricing-card.popular { border: 2px solid var(--orange); box-shadow: var(--shadow-orange); background: linear-gradient(180deg, #fff 0%, #fff7f0 100%); }
.pricing-card.popular::before { content: 'Most Popular'; position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--orange); color: #fff; padding: 6px 22px; border-radius: var(--radius-pill); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.06em; }
.pricing-card h3 { color: var(--dark); margin-bottom: 6px; font-size: 1.15rem; text-transform: uppercase; letter-spacing: 0.04em; }
.pricing-card .sub { color: var(--grey-500); font-size: 0.85rem; margin-bottom: 20px; }
.pricing-card .price { font-size: 3rem; font-weight: 800; color: var(--dark); margin-bottom: 4px; line-height: 1; font-family: var(--font-display); }
.pricing-card .price .currency { font-size: 1.4rem; vertical-align: super; margin-right: 2px; color: var(--orange); }
.pricing-card .price .cents { font-size: 1.4rem; }
.pricing-card .period { color: var(--grey-500); margin-bottom: 26px; font-size: 0.88rem; }
.pricing-card ul { text-align: left; margin-bottom: 28px; }
.pricing-card ul li { padding: 7px 0 7px 26px; position: relative; color: var(--grey-700); font-size: 0.9rem; }
.pricing-card ul li::before { content: '✓'; position: absolute; left: 0; color: var(--orange); font-weight: 800; }

/* ─── FEATURES ─── */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 28px; }
.feature-card { background: #fff; border: 1px solid var(--grey-200); border-radius: var(--radius); padding: 34px 26px; text-align: center; transition: all var(--transition); }
.feature-card:hover { transform: translateY(-5px); border-color: var(--orange); box-shadow: var(--shadow-md); }
.feature-card .icon { width: 64px; height: 64px; background: var(--orange-light); color: var(--orange); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; font-size: 1.6rem; font-weight: 800; }
.feature-card.indigo .icon { background: var(--indigo-light); color: var(--indigo); }
.feature-card h4 { margin-bottom: 10px; color: var(--dark); }
.feature-card p { color: var(--grey-700); font-size: 0.95rem; }

/* ─── COUNTERS ─── */
.counters { padding: 80px 0; background: linear-gradient(135deg, var(--indigo) 0%, var(--indigo-dark) 100%); color: #fff; position: relative; overflow: hidden; }
.counters::before { content: ''; position: absolute; top: -100px; right: -100px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(255,105,0,0.2), transparent 70%); border-radius: 50%; }
.counters .container { position: relative; z-index: 1; }
.counters-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; text-align: center; }
.counter-item h3 { font-size: clamp(2rem, 4vw, 3.2rem); color: var(--orange); margin-bottom: 6px; font-weight: 800; font-family: var(--font-display); line-height: 1; }
.counter-item p { color: rgba(255,255,255,0.85); font-size: 0.95rem; margin: 0; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; }

/* ─── ABOUT / TWO-COL SECTION ─── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.two-col-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.two-col-img img { width: 100%; height: auto; }
.two-col-content .eyebrow { color: var(--orange); font-weight: 700; font-size: 0.85rem; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 12px; display: block; }
.two-col-content h2 { margin-bottom: 18px; }
.two-col-content p { margin-bottom: 16px; }
.two-col-content ul { margin: 20px 0 28px; }
.two-col-content ul li { padding: 6px 0 6px 28px; position: relative; color: var(--grey-700); }
.two-col-content ul li::before { content: '→'; position: absolute; left: 0; color: var(--orange); font-weight: 800; }

/* ─── TESTIMONIALS ─── */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 26px; }
.testimonial { background: #fff; border: 1px solid var(--grey-200); border-radius: var(--radius); padding: 30px 26px; box-shadow: var(--shadow-sm); transition: var(--transition); }
.testimonial:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.testimonial .stars { color: var(--orange); margin-bottom: 14px; font-size: 1.05rem; letter-spacing: 2px; }
.testimonial p { color: var(--grey-700); font-style: italic; margin-bottom: 18px; }
.testimonial .who { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid var(--grey-200); }
.testimonial .avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--indigo); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1.1rem; }
.testimonial .who-info strong { display: block; color: var(--dark); font-size: 0.95rem; }
.testimonial .who-info span { color: var(--grey-500); font-size: 0.82rem; }

/* ─── CTA STRIP ─── */
.cta-strip { background: linear-gradient(135deg, var(--orange) 0%, #ff8a3a 100%); padding: 70px 0; text-align: center; color: #fff; }
.cta-strip h2 { color: #fff; margin-bottom: 14px; }
.cta-strip p { color: rgba(255,255,255,0.95); margin-bottom: 30px; font-size: 1.1rem; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-strip .btn-primary { background: #fff; color: var(--orange); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.cta-strip .btn-primary:hover { background: var(--dark); color: #fff; }
.cta-strip .btn-outline { color: #fff; border-color: #fff; }
.cta-strip .btn-outline:hover { background: #fff; color: var(--orange); }

/* ─── FAQ ─── */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { background: #fff; border: 1px solid var(--grey-200); border-radius: var(--radius); margin-bottom: 14px; overflow: hidden; transition: var(--transition); }
.faq-item.active { border-color: var(--orange); box-shadow: var(--shadow-md); }
.faq-question { width: 100%; text-align: left; padding: 22px 28px; font-weight: 700; color: var(--dark); font-size: 1.02rem; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-question::after { content: '+'; color: var(--orange); font-size: 1.6rem; font-weight: 800; transition: var(--transition); flex-shrink: 0; }
.faq-item.active .faq-question::after { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; padding: 0 28px; }
.faq-answer p { padding-bottom: 22px; color: var(--grey-700); }

/* ─── FORMS ─── */
.form-section { padding: 90px 0; background: var(--grey-50); }
.form-card { background: #fff; padding: 44px; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); max-width: 580px; margin: 0 auto; }
.form-card h3 { margin-bottom: 8px; }
.form-card .lead { margin-bottom: 28px; color: var(--grey-700); }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-weight: 600; color: var(--dark); margin-bottom: 8px; font-size: 0.9rem; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 13px 16px; background: #fff; border: 2px solid var(--grey-200); border-radius: var(--radius); color: var(--dark); font-size: 0.95rem; font-family: inherit; transition: var(--transition); min-height: 48px; }
.form-group textarea { min-height: 110px; resize: vertical; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(255,105,0,0.15); }
.honeypot { position: absolute; left: -10000px; opacity: 0; }
.form-trust { display: flex; align-items: center; gap: 10px; margin-top: 18px; padding: 14px 16px; background: var(--indigo-light); border-radius: var(--radius); color: var(--indigo); font-size: 0.85rem; font-weight: 600; }
.form-message { padding: 14px 18px; margin-top: 16px; border-radius: var(--radius); font-weight: 600; font-size: 0.9rem; }
.form-message--success { background: #e8f5e9; color: #1b5e20; border: 1px solid #c8e6c9; }
.form-message--error { background: #ffebee; color: #b71c1c; border: 1px solid #ffcdd2; }

/* ─── CHANNELS PAGE ─── */
.channel-tabs { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 40px; }
.channel-tab { padding: 10px 22px; background: var(--white); color: var(--dark); border: 2px solid var(--grey-200); border-radius: var(--radius-pill); font-weight: 700; font-size: 0.88rem; cursor: pointer; transition: var(--transition); }
.channel-tab:hover, .channel-tab.active { background: var(--orange); color: #fff; border-color: var(--orange); }
.channel-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 14px; }
.channel-item { background: #fff; padding: 14px 16px; border: 1px solid var(--grey-200); border-radius: var(--radius); font-weight: 600; color: var(--dark); font-size: 0.9rem; transition: var(--transition); }
.channel-item:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-2px); }

/* ─── SETUP GUIDE STYLES ─── */
.guide-toc { background: #fff; border: 1px solid var(--grey-200); border-left: 4px solid var(--orange); padding: 26px 28px; border-radius: var(--radius); margin-bottom: 40px; }
.guide-toc h4 { margin-bottom: 14px; color: var(--dark); }
.guide-toc ul li { padding: 5px 0 5px 22px; position: relative; }
.guide-toc ul li::before { content: '▸'; position: absolute; left: 0; color: var(--orange); }
.guide-toc ul li a { color: var(--indigo); font-weight: 500; }
.guide-content { max-width: 880px; margin: 0 auto; }
.guide-content h2 { margin-top: 48px; margin-bottom: 16px; padding-bottom: 14px; border-bottom: 2px solid var(--grey-200); }
.guide-content h3 { margin-top: 32px; margin-bottom: 12px; color: var(--orange); }
.guide-content p { margin-bottom: 16px; color: var(--grey-700); }
.guide-content ul, .guide-content ol { margin: 16px 0 22px 24px; }
.guide-content ul li, .guide-content ol li { color: var(--grey-700); margin-bottom: 8px; }
.guide-content ul li { list-style: disc; }
.guide-content ol li { list-style: decimal; }
.guide-step { background: var(--grey-50); border-left: 4px solid var(--indigo); padding: 22px 26px; margin-bottom: 18px; border-radius: var(--radius); }
.guide-step h4 { color: var(--indigo); margin-bottom: 8px; }
.guide-callout { background: var(--orange-light); border: 1px solid rgba(255,105,0,0.25); padding: 22px 26px; border-radius: var(--radius); margin: 24px 0; color: var(--dark); }
.guide-callout strong { color: var(--orange); }

/* ─── PAGE HEADER (legal pages, sub-pages) ─── */
.page-header { background: linear-gradient(135deg, var(--indigo) 0%, var(--indigo-dark) 100%); padding: 90px 0 70px; color: #fff; text-align: center; position: relative; overflow: hidden; }
.page-header::before { content: ''; position: absolute; top: -80px; right: -80px; width: 320px; height: 320px; background: radial-gradient(circle, rgba(255,105,0,0.25), transparent 70%); border-radius: 50%; }
.page-header .container { position: relative; z-index: 1; }
.page-header h1 { color: #fff; margin-bottom: 12px; }
.page-header p { color: rgba(255,255,255,0.9); font-size: 1.08rem; max-width: 720px; margin: 0 auto; }
.breadcrumb { display: inline-flex; gap: 10px; margin-bottom: 18px; font-size: 0.85rem; color: rgba(255,255,255,0.85); }
.breadcrumb a { color: rgba(255,255,255,0.85); }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb span { color: var(--orange); }

/* ─── LEGAL / PROSE PAGES ─── */
.prose { max-width: 860px; margin: 0 auto; }
.prose h2 { margin-top: 44px; margin-bottom: 16px; color: var(--indigo); }
.prose h3 { margin-top: 28px; margin-bottom: 12px; color: var(--dark); }
.prose p { margin-bottom: 16px; color: var(--grey-700); }
.prose ul, .prose ol { margin: 14px 0 20px 24px; color: var(--grey-700); }
.prose ul li { list-style: disc; padding: 4px 0; }
.prose ol li { list-style: decimal; padding: 4px 0; }
.prose strong { color: var(--dark); }
.prose table { width: 100%; border-collapse: collapse; margin: 20px 0; }
.prose th, .prose td { padding: 12px 16px; border: 1px solid var(--grey-200); text-align: left; }
.prose th { background: var(--grey-100); color: var(--dark); font-weight: 700; }

/* ─── BRAND LOGOS STRIP ─── */
.brands { padding: 50px 0; background: var(--white); border-top: 1px solid var(--grey-200); border-bottom: 1px solid var(--grey-200); }
.brands-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 30px; align-items: center; opacity: 0.7; }
.brands-grid img { max-height: 50px; width: auto; margin: 0 auto; filter: grayscale(1); transition: var(--transition); }
.brands-grid img:hover { filter: grayscale(0); opacity: 1; }

/* ─── FOOTER ─── */
.footer { background: var(--dark-2); color: rgba(255,255,255,0.78); padding: 70px 0 0; font-size: 0.92rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 50px; }
.footer-col h5 { color: #fff; margin-bottom: 18px; font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col a { color: rgba(255,255,255,0.72); font-size: 0.9rem; }
.footer-col a:hover { color: var(--orange); }
.footer-col p { color: rgba(255,255,255,0.72); font-size: 0.9rem; margin-bottom: 14px; }
.footer-col .footer-logo { display: inline-block; font-size: 1.6rem; font-weight: 800; color: #fff; margin-bottom: 14px; font-family: var(--font-display); }
.footer-col .footer-logo span { color: var(--orange); }
.footer-col .contact-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 10px; color: rgba(255,255,255,0.75); }
.footer-col .contact-item strong { color: var(--orange); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 24px 0; text-align: center; color: rgba(255,255,255,0.6); font-size: 0.85rem; }
.footer-bottom a { color: rgba(255,255,255,0.72); }
.footer-bottom a:hover { color: var(--orange); }

/* ─── HEADLINE / EYEBROW HELPERS ─── */
.eyebrow { display: inline-block; color: var(--orange); font-weight: 700; font-size: 0.85rem; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 12px; }
.text-center { text-align: center; }
.mt-4 { margin-top: 24px; }
.mb-4 { margin-bottom: 24px; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .categories-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .counters-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; background: #fff; padding: 24px; gap: 18px; box-shadow: var(--shadow-md); border-top: 1px solid var(--grey-200); }
  .nav-links.open { display: flex; }
  .hero .container { grid-template-columns: 1fr; gap: 36px; }
  .hero { padding: 50px 0 70px; }
  .hero-trust { flex-wrap: wrap; gap: 18px; }
  .two-col { grid-template-columns: 1fr; gap: 32px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .section { padding: 60px 0; }
  .form-card { padding: 28px 22px; }
  .counters-grid { grid-template-columns: 1fr 1fr; }
  .topbar { font-size: 0.78rem; }
  .topbar .container { justify-content: center; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .categories-grid { grid-template-columns: 1fr 1fr; }
}
