/*
Theme Name: Centre For Lasik
Theme URI: https://laser.fyi
Author: Centre For Lasik
Author URI: https://laser.fyi
Description: A fully responsive, one-page LASIK eye surgery centre theme with modern design, lead forms, procedure cards, comparison table, testimonials, FAQ, blog posts, and WordPress Customizer integration. Works out-of-the-box — no build tools needed.
Version: 1.0.0
Requires at least: 5.9
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: centre-for-lasik
Tags: one-page, one-column, custom-logo, custom-colors, custom-menu, featured-images, threaded-comments, translation-ready, blog, medical, healthcare
*/

/*
 * ============================================================
 *  TABLE OF CONTENTS
 * ============================================================
 *  1.  Google Fonts
 *  2.  CSS Custom Properties (Variables)
 *  3.  Reset & Base Styles
 *  4.  Utility Classes
 *  5.  Buttons
 *  6.  Section Labels & Titles
 *  7.  Navbar
 *  8.  Hero Section
 *  9.  Lead Form
 * 10.  Stats Bar
 * 11.  Procedures Cards
 * 12.  Comparison Table
 * 13.  Why Us Section
 * 14.  Testimonials
 * 15.  Lead Form Section
 * 16.  Content Write-Up
 * 17.  FAQ Section
 * 18.  YouTube Videos
 * 19.  Blog Posts
 * 20.  CTA Section
 * 21.  Footer
 * 22.  Accessibility & Print
 * ============================================================
 */

/* ==========================================================================
   1. Google Fonts
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* ==========================================================================
   2. CSS Custom Properties
   ========================================================================== */
:root {
  /* Colors — these are overridden by Customizer via inline CSS */
  --bg: #fbfcfc;
  --fg: #192a2e;
  --card: #ffffff;
  --card-fg: #192a2e;
  --primary: #0d7377;
  --primary-fg: #ffffff;
  --secondary: #eef3f3;
  --secondary-fg: #192a2e;
  --muted: #e9eded;
  --muted-fg: #697478;
  --accent: #e87030;
  --accent-fg: #ffffff;
  --border: #dfe6e6;

  /* Layout */
  --radius: 0.75rem;

  /* Gradients */
  --gradient-hero: linear-gradient(135deg, #0d7377, #0c6368);
  --gradient-accent: linear-gradient(135deg, #e87030, #d96020);
  --gradient-card: linear-gradient(180deg, #fbfcfc, #f0f4f4);

  /* Shadows */
  --shadow-soft: 0 4px 30px rgba(20, 80, 80, 0.08);
  --shadow-elevated: 0 12px 40px rgba(20, 80, 80, 0.12);

  /* Typography */
  --font-heading: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
}

/* ==========================================================================
   3. Reset & Base
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); line-height: 1.2; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* Container */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ==========================================================================
   4. Utility Classes
   ========================================================================== */
.text-center { text-align: center; }

.text-gradient-primary {
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-accent {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Screen-reader only */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  word-wrap: normal !important;
}

/* ==========================================================================
   5. Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-primary {
  background: var(--gradient-accent);
  color: var(--accent-fg);
}
.btn-primary:hover { opacity: 0.9; transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover { background: var(--primary); color: var(--primary-fg); }

.btn-outline-white {
  background: transparent;
  color: var(--primary-fg);
  border: 2px solid rgba(255,255,255,0.3);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); }

.btn-lg { padding: 1rem 2rem; font-size: 1rem; }

/* ==========================================================================
   6. Section Labels & Titles
   ========================================================================== */
.section-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 700;
  margin-top: 0.75rem;
  margin-bottom: 1rem;
}

.section-desc {
  color: var(--muted-fg);
  font-size: 1.1rem;
  max-width: 640px;
  margin: 0 auto;
}

/* ==========================================================================
   7. Navbar
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.navbar-logo img { height: 48px; width: auto; }

/* Custom logo WordPress class */
.navbar-logo .custom-logo { height: 48px; width: auto; }

.navbar-links {
  display: none;
  align-items: center;
  gap: 0;
}

.navbar-links a,
.navbar-links .dropdown > button {
  padding: 0.5rem 1rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  transition: color 0.2s;
}

.navbar-links a:hover,
.navbar-links .dropdown > button:hover { color: var(--accent); }

.navbar-links .separator { color: var(--border); padding: 0 0.25rem; }

.navbar-phone {
  display: none;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
}

/* Dropdown */
.dropdown { position: relative; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-elevated);
  padding: 0.5rem 0;
  z-index: 50;
}
.dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--muted-fg);
}
.dropdown-menu a:hover { color: var(--primary); background: rgba(14,115,119,0.05); }

/* Mobile toggle */
.mobile-toggle {
  display: flex;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--fg);
  cursor: pointer;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 1rem 2rem 1.5rem;
  max-height: 80vh;
  overflow-y: auto;
}

.mobile-menu.active { display: block; }

.mobile-menu a {
  display: block;
  padding: 0.5rem 0;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
}

.mobile-menu .sub-links a {
  padding-left: 1rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.85rem;
  color: var(--muted-fg);
}

.mobile-submenu-toggle {
  padding: 0.5rem 0;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  width: 100%;
  text-align: left;
  border: none;
  background: none;
  cursor: pointer;
}

@media (min-width: 1024px) {
  .navbar-links { display: flex; }
  .navbar-phone { display: flex; }
  .mobile-toggle { display: none; }
}

/* ==========================================================================
   8. Hero Section
   ========================================================================== */
.hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
  padding-bottom: 1.5rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(25,42,46,0.8), rgba(25,42,46,0.7), rgba(25,42,46,0.4));
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(13,115,119,0.2);
  backdrop-filter: blur(8px);
  padding: 0.375rem 1rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary-fg);
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: clamp(2.25rem, 5vw, 4.25rem);
  font-weight: 700;
  color: var(--primary-fg);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero h1 span { color: var(--accent); }

.hero-desc {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.7);
  margin-bottom: 2rem;
  max-width: 32rem;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.hero-avatars { display: flex; }

.hero-avatars span {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(13,115,119,0.3);
  border: 2px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary-fg);
  margin-left: -12px;
}

.hero-avatars span:first-child { margin-left: 0; }

.hero-trust-text p:first-child {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary-fg);
}
.hero-trust-text p:last-child {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
}

@media (min-width: 768px) {
  .hero-grid { grid-template-columns: 3fr 2fr; }
}

/* ==========================================================================
   9. Lead Form
   ========================================================================== */
.lead-form {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2.5rem;
  box-shadow: var(--shadow-elevated);
  max-width: 400px;
  margin: 0 auto;
}

.lead-form h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.25rem;
}

.lead-form p {
  font-size: 0.875rem;
  color: var(--muted-fg);
  margin-bottom: 1rem;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  padding: 0.625rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid var(--border);
  background: var(--secondary);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 0.875rem;
  margin-bottom: 1rem;
  outline: none;
  transition: box-shadow 0.2s;
}

.lead-form input:focus,
.lead-form textarea:focus {
  box-shadow: 0 0 0 3px rgba(13,115,119,0.2);
}

.lead-form .btn { width: 100%; }

/* Section variant */
.lead-form-section {
  background: var(--card);
  backdrop-filter: none;
  max-width: 28rem;
}

.lead-form-section input {
  padding: 0.875rem 1rem;
  font-size: 1rem;
}

/* ==========================================================================
   10. Stats Bar
   ========================================================================== */
.stats-bar {
  position: relative;
  z-index: 10;
  margin-top: -3rem;
}

.stats-card {
  background: var(--card);
  border-radius: 1rem;
  box-shadow: var(--shadow-elevated);
  border: 1px solid var(--border);
  padding: 1.5rem 2rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 0.75rem;
  background: rgba(13,115,119,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
  font-size: 1.5rem;
}

.stat-value {
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--fg);
}

.stat-label {
  font-size: 0.875rem;
  color: var(--muted-fg);
}

@media (min-width: 768px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ==========================================================================
   11. Procedures Cards
   ========================================================================== */
.procedures { padding: 4rem 0; background: rgba(238,243,243,0.5); }

.procedures-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.proc-card {
  position: relative;
  background: var(--card);
  border-radius: 1rem;
  border: 1px solid var(--border);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s;
}

.proc-card:hover { box-shadow: var(--shadow-elevated); }
.proc-card.popular { border-color: var(--primary); box-shadow: var(--shadow-soft); }

.proc-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-accent);
  color: var(--accent-fg);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 1rem;
  border-radius: 999px;
}

.proc-name {
  font-size: 1.125rem;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--fg);
  margin-bottom: 0.25rem;
}

.proc-price-row {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.proc-price { font-size: 1.875rem; font-weight: 700; color: var(--primary); }
.proc-per-eye { font-size: 0.875rem; color: var(--muted-fg); }

.proc-discount {
  margin-left: auto;
  font-size: 0.7rem;
  font-weight: 600;
  background: rgba(232,112,48,0.1);
  color: var(--accent);
  padding: 0.125rem 0.5rem;
  border-radius: 999px;
}

.proc-desc {
  font-size: 0.875rem;
  color: var(--muted-fg);
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.proc-features { margin-bottom: 1.5rem; }

.proc-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--fg);
  margin-bottom: 0.5rem;
}

.proc-features li::before {
  content: '✓';
  color: var(--primary);
  font-weight: 700;
}

@media (min-width: 768px) {
  .procedures-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .procedures-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ==========================================================================
   12. Comparison Table
   ========================================================================== */
.comparison { padding: 6rem 0; }

.comparison-wrapper {
  overflow-x: auto;
  border-radius: 1rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.comparison table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.comparison thead th {
  padding: 1rem;
  text-align: center;
  font-weight: 700;
  color: var(--fg);
  background: var(--secondary);
  min-width: 140px;
}

.comparison thead th:first-child {
  text-align: left;
  min-width: 160px;
}

.comparison thead th.recommended { background: rgba(13,115,119,0.1); }
.comparison thead th.elita {
  background: linear-gradient(to bottom, rgba(245,158,11,0.2), rgba(245,158,11,0.05));
  border-left: 2px solid rgba(245,158,11,0.4);
  border-right: 2px solid rgba(245,158,11,0.4);
  border-top: 2px solid rgba(245,158,11,0.4);
}

.comparison tbody td {
  padding: 1rem;
  text-align: center;
  border-top: 1px solid var(--border);
}

.comparison tbody td:first-child {
  text-align: left;
  font-weight: 500;
  color: var(--fg);
}

.comparison tbody tr:nth-child(even) { background: rgba(238,243,243,0.3); }

.comparison td.recommended { background: rgba(13,115,119,0.05); }
.comparison td.elita {
  background: rgba(245,158,11,0.05);
  border-left: 2px solid rgba(245,158,11,0.4);
  border-right: 2px solid rgba(245,158,11,0.4);
}

.comp-check { color: var(--primary); font-weight: 700; }
.comp-cross { color: rgba(105,116,120,0.4); }
.comp-price { font-weight: 700; color: var(--primary); }
.comp-original { text-decoration: line-through; color: var(--muted-fg); }
.comp-rec-badge { font-size: 0.6rem; font-weight: 700; color: var(--accent); }
.comp-elita-badge {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 700;
  color: #b45309;
  background: rgba(245,158,11,0.2);
  padding: 0.125rem 0.5rem;
  border-radius: 999px;
}

/* ==========================================================================
   13. Why Us
   ========================================================================== */
.why-us { padding: 6rem 0; }

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.why-card {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: 1rem;
  background: var(--gradient-card);
  border: 1px solid var(--border);
  transition: box-shadow 0.3s;
}

.why-card:hover { box-shadow: var(--shadow-soft); }

.why-icon {
  width: 48px;
  height: 48px;
  border-radius: 0.75rem;
  background: rgba(13,115,119,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.5rem;
  color: var(--primary);
  transition: all 0.3s;
}

.why-card:hover .why-icon {
  background: var(--gradient-hero);
  color: var(--primary-fg);
}

.why-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.25rem;
}

.why-card p {
  font-size: 0.875rem;
  color: var(--muted-fg);
  line-height: 1.6;
}

@media (min-width: 768px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .why-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ==========================================================================
   14. Testimonials
   ========================================================================== */
.testimonials { padding: 6rem 0; background: rgba(238,243,243,0.5); }

.testimonials-scroll {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.testimonials-scroll::-webkit-scrollbar { display: none; }

.testimonial-card {
  min-width: 300px;
  max-width: 320px;
  flex-shrink: 0;
  scroll-snap-align: start;
  background: var(--card);
  border-radius: 1rem;
  border: 1px solid var(--border);
  padding: 1.5rem;
  transition: box-shadow 0.3s;
}

.testimonial-card:hover { box-shadow: var(--shadow-soft); }

.testimonial-quote {
  font-size: 2rem;
  color: rgba(13,115,119,0.2);
  margin-bottom: 0.75rem;
  line-height: 1;
}

.testimonial-text {
  font-size: 0.875rem;
  color: var(--fg);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(13,115,119,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--primary);
  font-size: 0.875rem;
}

.testimonial-name { font-weight: 600; font-size: 0.875rem; color: var(--fg); }
.testimonial-age { font-size: 0.75rem; color: var(--muted-fg); }

.testimonial-stars {
  display: flex;
  gap: 2px;
  color: var(--accent);
  font-size: 0.875rem;
}

/* ==========================================================================
   15. Lead Form Section
   ========================================================================== */
.lead-section { padding: 6rem 0; background: rgba(238,243,243,0.5); }

.lead-section-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
  max-width: 64rem;
  margin: 0 auto;
}

.lead-section-checks li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--fg);
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .lead-section-grid { grid-template-columns: 1fr 1fr; }
}

/* ==========================================================================
   16. Content Write-Up
   ========================================================================== */
.content-writeup { padding: 6rem 0; background: rgba(238,243,243,0.3); }

.content-writeup h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: var(--fg);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.content-writeup p {
  color: var(--muted-fg);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.content-writeup strong { color: var(--fg); }

.content-writeup ul {
  list-style: disc;
  padding-left: 1.5rem;
}

.content-writeup ul li {
  color: var(--muted-fg);
  margin-bottom: 0.75rem;
  line-height: 1.7;
}

/* ==========================================================================
   17. FAQ Section
   ========================================================================== */
.faq-section { padding: 6rem 0; }

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 64rem;
  margin: 0 auto;
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  overflow: hidden;
  transition: box-shadow 0.3s;
}

.faq-item.open { box-shadow: var(--shadow-soft); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--fg);
}

.faq-question .chevron {
  transition: transform 0.3s;
  font-size: 1.25rem;
  color: var(--muted-fg);
}

.faq-item.open .faq-question .chevron { transform: rotate(180deg); }

.faq-answer {
  display: none;
  padding: 0 1.5rem 1.25rem;
  color: var(--muted-fg);
  line-height: 1.7;
  font-size: 0.9rem;
}

.faq-item.open .faq-answer { display: block; }

@media (min-width: 768px) {
  .faq-grid { grid-template-columns: 1fr 1fr; }
}

/* ==========================================================================
   18. YouTube Videos
   ========================================================================== */
.videos-section { margin-top: 5rem; }

.videos-scroll {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.videos-scroll::-webkit-scrollbar { display: none; }

.video-card {
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
  background: var(--card);
  flex-shrink: 0;
  width: 80vw;
  max-width: 400px;
  scroll-snap-align: center;
}

.video-card .video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
}

.video-card iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ==========================================================================
   19. Blog Posts
   ========================================================================== */
.blog-section { padding: 6rem 0; }

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 64rem;
  margin: 0 auto;
}

.blog-card {
  background: var(--card);
  border-radius: 1rem;
  border: 1px solid var(--border);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s;
  cursor: pointer;
}

.blog-card:hover { box-shadow: var(--shadow-soft); }

.blog-category {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--accent);
  background: rgba(232,112,48,0.1);
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 1rem;
  align-self: flex-start;
}

.blog-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.75rem;
  line-height: 1.4;
  transition: color 0.2s;
}

.blog-card:hover h3 { color: var(--primary); }

.blog-excerpt {
  font-size: 0.875rem;
  color: var(--muted-fg);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--muted-fg);
}

@media (min-width: 768px) {
  .blog-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ==========================================================================
   20. CTA Section
   ========================================================================== */
.cta-section {
  padding: 6rem 0;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 2rem; left: 2rem;
  width: 18rem; height: 18rem;
  background: var(--accent);
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.1;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: 2rem; right: 2rem;
  width: 24rem; height: 24rem;
  background: white;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.1;
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--primary-fg);
  margin-bottom: 1.5rem;
}

.cta-content p {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .cta-buttons { flex-direction: row; }
}

/* ==========================================================================
   21. Footer
   ========================================================================== */
.site-footer { background: #2d2d2d; color: rgba(255,255,255,0.8); }

.footer-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  padding: 3rem 0;
}

.footer-columns h4 {
  font-weight: 700;
  color: white;
  font-size: 0.875rem;
  margin-bottom: 1.25rem;
}

.footer-columns a {
  display: block;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.625rem;
  transition: color 0.2s;
}

.footer-columns a:hover { color: white; }

.footer-disclaimer {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1rem 0;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.footer-copyright {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
}

.footer-socials a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
}

.footer-socials a:hover { background: rgba(255,255,255,0.2); }

@media (min-width: 768px) {
  .footer-columns { grid-template-columns: repeat(4, 1fr); }
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}

/* ==========================================================================
   22. Accessibility & Print
   ========================================================================== */

/* Focus visible for keyboard nav */
:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Print styles */
@media print {
  .navbar, .mobile-menu, .cta-section, .lead-form { display: none !important; }
  body { color: #000; background: #fff; }
}

/* ==========================================================================
   23. Inner Pages — Hook Landing Pages
   ========================================================================== */

/* Alerts */
.inner-alert {
  padding: 1rem 2rem;
  text-align: center;
  font-weight: 600;
  font-size: 0.95rem;
}
.inner-alert-success { background: #d4edda; color: #155724; }
.inner-alert-error { background: #f8d7da; color: #721c24; }

/* Hero */
.inner-hero {
  position: relative;
  padding: 8rem 0 5rem;
  overflow: hidden;
  min-height: 50vh;
  display: flex;
  align-items: center;
}

.inner-hero-simple { min-height: 30vh; padding: 7rem 0 3rem; }

.inner-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0a5e61, #0d7377 40%, #145f62 70%, #0c4f52);
  z-index: 0;
}

.inner-hero-bg::after {
  content: '';
  position: absolute;
  top: -30%; right: -15%;
  width: 50vw; height: 50vw;
  background: radial-gradient(circle, rgba(232,112,48,0.15), transparent 70%);
  border-radius: 50%;
}

.inner-hero-content {
  position: relative;
  z-index: 2;
  max-width: 48rem;
}

.inner-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  padding: 0.4rem 1.25rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.inner-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.inner-hero-desc {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 36rem;
}

.inner-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Stats Row */
.inner-stats {
  position: relative;
  z-index: 10;
  margin-top: -2.5rem;
}

.inner-stats-card {
  background: var(--card);
  border-radius: 1rem;
  box-shadow: var(--shadow-elevated);
  border: 1px solid var(--border);
  padding: 1.5rem 2rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.inner-stat { text-align: center; }

.inner-stat-value {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--primary);
}

.inner-stat-label {
  font-size: 0.8rem;
  color: var(--muted-fg);
  margin-top: 0.125rem;
}

@media (min-width: 640px) {
  .inner-stats-card { grid-template-columns: repeat(4, 1fr); }
}

/* Content Grid */
.inner-content { padding: 4rem 0 6rem; }

.inner-content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 900px) {
  .inner-content-grid { grid-template-columns: 1fr 340px; }
}

/* Main Content */
.inner-main { display: flex; flex-direction: column; gap: 2rem; }

.inner-section-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
  transition: box-shadow 0.3s;
}

.inner-section-card:hover { box-shadow: var(--shadow-soft); }

.inner-section-alt {
  background: var(--gradient-card);
}

.inner-section-icon {
  width: 52px;
  height: 52px;
  border-radius: 0.75rem;
  background: rgba(13,115,119,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.inner-section-card h2 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.75rem;
}

.inner-section-text {
  font-size: 1rem;
  color: var(--muted-fg);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.inner-section-points {
  list-style: none;
  padding: 0;
}

.inner-section-points li {
  position: relative;
  padding-left: 1.75rem;
  font-size: 0.95rem;
  color: var(--fg);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.inner-section-points li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

/* Sidebar Form */
.inner-sidebar {
  position: sticky;
  top: 5rem;
}

.inner-sidebar-form {
  max-width: 100% !important;
  border: 2px solid var(--primary) !important;
}

.inner-form-trust {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
  font-size: 0.7rem;
  color: var(--muted-fg);
  flex-wrap: wrap;
}

/* Trust Section */
.inner-trust {
  padding: 5rem 0;
  background: rgba(238,243,243,0.5);
}

.inner-trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .inner-trust-grid { grid-template-columns: repeat(4, 1fr); }
}

.inner-trust-item {
  text-align: center;
  padding: 1.5rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  transition: box-shadow 0.3s;
}

.inner-trust-item:hover { box-shadow: var(--shadow-soft); }

.inner-trust-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.75rem;
}

.inner-trust-item h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.25rem;
}

.inner-trust-item p {
  font-size: 0.8rem;
  color: var(--muted-fg);
  line-height: 1.5;
}
