/* GalaTele - Mediterranean/Warm Design System
   Inspired by royalstreamiptv.ca — purple accent, clean corporate layout
   Fonts: Libre Baskerville + Source Sans 3
   Prefix: gt-* */

@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:wght@400;700&family=Source+Sans+3:wght@300;400;500;600;700;800&display=swap');

/* ========== CSS Variables ========== */
:root {
  --gt-bg: #ffffff;
  --gt-bg-alt: #f8f6f3;
  --gt-bg-dark: #1a1128;
  --gt-bg-card: #ffffff;
  --gt-primary: #6c2dda;
  --gt-primary-hover: #5a21c0;
  --gt-secondary: #800080;
  --gt-text: #333333;
  --gt-text-light: #666666;
  --gt-text-muted: #999999;
  --gt-text-white: #ffffff;
  --gt-border: #e5e2dd;
  --gt-shadow: rgba(108, 45, 218, 0.12);
  --gt-gradient: linear-gradient(135deg, #6c2dda 0%, #800080 100%);
  --gt-nav-bg: #ffffff;
  --gt-footer-bg: #1a1128;
  --gt-radius: 12px;
  --gt-radius-sm: 8px;
  --gt-font-heading: 'Libre Baskerville', Georgia, serif;
  --gt-font-body: 'Source Sans 3', 'Source Sans Pro', sans-serif;
  --gt-max-width: 1200px;
  --gt-transition: 0.3s ease;
}

/* ========== Reset & Base ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--gt-font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--gt-text);
  background: var(--gt-bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gt-primary); text-decoration: none; transition: color var(--gt-transition); }
a:hover { color: var(--gt-primary-hover); }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--gt-font-heading);
  color: var(--gt-text);
  line-height: 1.3;
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
p { margin-bottom: 1rem; }

/* ========== Container ========== */
.gt-container {
  max-width: var(--gt-max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* ========== Navigation ========== */
.gt-nav {
  background: var(--gt-nav-bg);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--gt-border);
}
.gt-nav .gt-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0;
  padding-bottom: 0;
  min-height: 70px;
}
.gt-logo {
  font-family: var(--gt-font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gt-text);
  text-decoration: none;
}
.gt-logo span { color: var(--gt-primary); }
.gt-nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}
.gt-nav-links a {
  font-family: var(--gt-font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gt-text);
  text-decoration: none;
  transition: color var(--gt-transition);
  white-space: nowrap;
}
.gt-nav-links a:hover { color: var(--gt-primary); }
.gt-nav-cta {
  background: var(--gt-gradient);
  color: var(--gt-text-white) !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 700 !important;
  font-size: 0.9rem !important;
  transition: transform var(--gt-transition), box-shadow var(--gt-transition);
}
.gt-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--gt-shadow);
  color: var(--gt-text-white) !important;
}
.gt-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
}
.gt-hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--gt-text);
  border-radius: 2px;
  transition: var(--gt-transition);
}

/* ========== Buttons ========== */
.gt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--gt-font-body);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 36px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all var(--gt-transition);
  text-decoration: none;
  line-height: 1.4;
}
.gt-btn-primary {
  background: var(--gt-gradient);
  color: var(--gt-text-white);
}
.gt-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px var(--gt-shadow);
  color: var(--gt-text-white);
}
.gt-btn-outline {
  background: transparent;
  color: var(--gt-primary);
  border: 2px solid var(--gt-primary);
}
.gt-btn-outline:hover {
  background: var(--gt-primary);
  color: var(--gt-text-white);
}
.gt-btn-white {
  background: var(--gt-text-white);
  color: var(--gt-primary);
}
.gt-btn-white:hover {
  background: var(--gt-bg-alt);
  transform: translateY(-2px);
}

/* ========== Sections ========== */
.gt-section {
  padding: 80px 0;
}
.gt-section-alt {
  background: var(--gt-bg-alt);
}
.gt-section-dark {
  background: var(--gt-bg-dark);
  color: var(--gt-text-white);
}
.gt-section-dark h2,
.gt-section-dark h3 { color: var(--gt-text-white); }
.gt-section-gradient {
  background: var(--gt-gradient);
  color: var(--gt-text-white);
}
.gt-section-gradient h2 { color: var(--gt-text-white); }
.gt-section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}
.gt-section-header p {
  color: var(--gt-text-light);
  font-size: 1.1rem;
  margin-top: 12px;
}

/* ========== Hero ========== */
.gt-hero {
  background: var(--gt-bg-dark);
  color: var(--gt-text-white);
  padding: 100px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.gt-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 50%, rgba(108,45,218,0.15) 0%, transparent 50%),
              radial-gradient(circle at 70% 50%, rgba(128,0,128,0.1) 0%, transparent 50%);
  pointer-events: none;
}
.gt-hero-content { position: relative; z-index: 1; max-width: 850px; margin: 0 auto; }
.gt-hero h1 { color: var(--gt-text-white); margin-bottom: 20px; }
.gt-hero h1 .gt-highlight { color: var(--gt-primary); background: none; }
.gt-hero p { font-size: 1.2rem; color: rgba(255,255,255,0.85); margin-bottom: 30px; max-width: 650px; margin-left: auto; margin-right: auto; }
.gt-hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.gt-hero-badge {
  display: inline-block;
  background: rgba(108,45,218,0.2);
  border: 1px solid rgba(108,45,218,0.4);
  color: #d4b8ff;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}
.gt-hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 50px;
  flex-wrap: wrap;
}
.gt-hero-stat { text-align: center; }
.gt-hero-stat strong { display: block; font-size: 2rem; font-family: var(--gt-font-heading); color: var(--gt-text-white); }
.gt-hero-stat span { font-size: 0.9rem; color: rgba(255,255,255,0.7); }

/* ========== Stats Bar ========== */
.gt-stats-bar {
  background: var(--gt-gradient);
  padding: 30px 0;
}
.gt-stats-bar .gt-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}
.gt-stat-item { text-align: center; color: var(--gt-text-white); }
.gt-stat-item strong { display: block; font-size: 1.8rem; font-family: var(--gt-font-heading); }
.gt-stat-item span { font-size: 0.9rem; opacity: 0.9; }

/* ========== Content Grid ========== */
.gt-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.gt-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.gt-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ========== Cards ========== */
.gt-card {
  background: var(--gt-bg-card);
  border: 1px solid var(--gt-border);
  border-radius: var(--gt-radius);
  padding: 30px;
  transition: all var(--gt-transition);
}
.gt-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px var(--gt-shadow);
  border-color: var(--gt-primary);
}
.gt-card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--gt-radius-sm);
  background: rgba(108,45,218,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
}
.gt-card h3 { margin-bottom: 10px; font-size: 1.15rem; }
.gt-card p { color: var(--gt-text-light); font-size: 0.95rem; margin-bottom: 0; }

/* ========== Pricing ========== */
.gt-pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.gt-price-card {
  background: var(--gt-bg-card);
  border: 2px solid var(--gt-border);
  border-radius: var(--gt-radius);
  padding: 36px 24px;
  text-align: center;
  transition: all var(--gt-transition);
  position: relative;
}
.gt-price-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 50px var(--gt-shadow);
}
.gt-price-card.gt-featured {
  border-color: var(--gt-primary);
  background: linear-gradient(180deg, rgba(108,45,218,0.03) 0%, var(--gt-bg-card) 100%);
}
.gt-price-card.gt-featured::before {
  content: 'TOP';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gt-gradient);
  color: var(--gt-text-white);
  padding: 4px 20px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
}
.gt-price-card h3 {
  font-family: var(--gt-font-body);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gt-primary);
  margin-bottom: 4px;
}
.gt-price-duration {
  font-size: 0.9rem;
  color: var(--gt-text-muted);
  margin-bottom: 16px;
}
.gt-price-amount {
  font-family: var(--gt-font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gt-text);
  line-height: 1.1;
  margin-bottom: 4px;
}
.gt-price-amount .gt-currency { font-size: 1.4rem; vertical-align: super; }
.gt-price-period { font-size: 0.85rem; color: var(--gt-text-muted); margin-bottom: 24px; }
.gt-price-features { margin-bottom: 24px; }
.gt-price-features li {
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--gt-text-light);
  display: flex;
  align-items: center;
  gap: 10px;
}
.gt-price-features li::before {
  content: '\2713';
  color: var(--gt-primary);
  font-weight: 700;
  flex-shrink: 0;
}
.gt-price-card .gt-btn { width: 100%; }

/* ========== Comparison Table ========== */
.gt-comparison {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.gt-compare-col {
  background: var(--gt-bg-card);
  border: 2px solid var(--gt-border);
  border-radius: var(--gt-radius);
  padding: 30px;
  text-align: center;
}
.gt-compare-col.gt-compare-highlight {
  border-color: var(--gt-primary);
  box-shadow: 0 8px 30px var(--gt-shadow);
}
.gt-compare-col h3 { margin-bottom: 20px; font-size: 1.1rem; }
.gt-compare-col ul { text-align: left; }
.gt-compare-col li {
  padding: 8px 0;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.gt-compare-col li .gt-icon-check { color: #22c55e; font-weight: 700; }
.gt-compare-col li .gt-icon-x { color: #ef4444; font-weight: 700; }

/* ========== FAQ ========== */
.gt-faq-list { max-width: 800px; margin: 0 auto; }
.gt-faq-item {
  border: 1px solid var(--gt-border);
  border-radius: var(--gt-radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
}
.gt-faq-q {
  width: 100%;
  background: var(--gt-bg-card);
  border: none;
  padding: 18px 24px;
  text-align: left;
  font-family: var(--gt-font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gt-text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background var(--gt-transition);
}
.gt-faq-q:hover { background: var(--gt-bg-alt); }
.gt-faq-q::after { content: '+'; font-size: 1.4rem; color: var(--gt-primary); font-weight: 700; }
.gt-faq-item.active .gt-faq-q::after { content: '\2212'; }
.gt-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 24px;
  font-size: 0.95rem;
  color: var(--gt-text-light);
  line-height: 1.7;
}
.gt-faq-item.active .gt-faq-a {
  max-height: 600px;
  padding: 0 24px 18px;
}

/* ========== Forms ========== */
.gt-form { max-width: 540px; margin: 0 auto; }
.gt-form-group { margin-bottom: 18px; }
.gt-form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: var(--gt-text);
}
.gt-form-group input,
.gt-form-group select,
.gt-form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--gt-border);
  border-radius: var(--gt-radius-sm);
  font-family: var(--gt-font-body);
  font-size: 1rem;
  color: var(--gt-text);
  background: var(--gt-bg);
  transition: border-color var(--gt-transition);
  min-height: 48px;
}
.gt-form-group input:focus,
.gt-form-group select:focus,
.gt-form-group textarea:focus {
  outline: none;
  border-color: var(--gt-primary);
  box-shadow: 0 0 0 3px rgba(108,45,218,0.1);
}
.gt-form-group textarea { resize: vertical; min-height: 120px; }
.gt-form .gt-btn { width: 100%; padding: 16px; font-size: 1.05rem; }
.gt-form-trust {
  text-align: center;
  margin-top: 12px;
  font-size: 0.85rem;
  color: var(--gt-text-muted);
}

/* Form messages */
.form-message {
  padding: 14px 18px;
  border-radius: var(--gt-radius-sm);
  margin-top: 16px;
  font-weight: 600;
  font-size: 0.95rem;
  text-align: center;
}
.form-message--success {
  background: rgba(34,197,94,0.1);
  color: #16a34a;
  border: 1px solid rgba(34,197,94,0.3);
}
.form-message--error {
  background: rgba(239,68,68,0.1);
  color: #dc2626;
  border: 1px solid rgba(239,68,68,0.3);
}

/* ========== Channels Grid ========== */
.gt-channel-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }
.gt-channel-card {
  background: var(--gt-bg-card);
  border: 1px solid var(--gt-border);
  border-radius: var(--gt-radius-sm);
  padding: 24px;
  text-align: center;
  transition: all var(--gt-transition);
}
.gt-channel-card:hover {
  border-color: var(--gt-primary);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px var(--gt-shadow);
}
.gt-channel-card .gt-ch-icon { font-size: 2rem; margin-bottom: 12px; }
.gt-channel-card h3 { font-size: 1rem; margin-bottom: 6px; }
.gt-channel-card p { font-size: 0.85rem; color: var(--gt-text-muted); margin-bottom: 0; }

/* ========== Image Gallery ========== */
.gt-gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gt-gallery img { border-radius: var(--gt-radius-sm); width: 100%; aspect-ratio: 16/10; object-fit: cover; }

/* ========== Footer ========== */
.gt-footer {
  background: var(--gt-footer-bg);
  color: rgba(255,255,255,0.8);
  padding: 60px 0 30px;
}
.gt-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.gt-footer-brand .gt-logo { color: var(--gt-text-white); font-size: 1.4rem; display: inline-block; margin-bottom: 12px; }
.gt-footer-brand p { font-size: 0.9rem; color: rgba(255,255,255,0.65); line-height: 1.6; }
.gt-footer h4 { color: var(--gt-text-white); font-family: var(--gt-font-body); font-size: 1rem; font-weight: 700; margin-bottom: 16px; }
.gt-footer-links a {
  display: block;
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  padding: 4px 0;
  transition: color var(--gt-transition);
}
.gt-footer-links a:hover { color: var(--gt-text-white); }
.gt-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}
.gt-footer-address { font-style: normal; font-size: 0.85rem; color: rgba(255,255,255,0.55); margin-top: 10px; line-height: 1.5; }

/* ========== Breadcrumbs ========== */
.gt-breadcrumbs {
  padding: 16px 0;
  background: var(--gt-bg-alt);
  border-bottom: 1px solid var(--gt-border);
}
.gt-breadcrumbs a { font-size: 0.85rem; color: var(--gt-primary); }
.gt-breadcrumbs span { font-size: 0.85rem; color: var(--gt-text-muted); }

/* ========== Page Header ========== */
.gt-page-header {
  background: var(--gt-bg-dark);
  color: var(--gt-text-white);
  text-align: center;
  padding: 60px 0 50px;
}
.gt-page-header h1 { color: var(--gt-text-white); margin-bottom: 12px; }
.gt-page-header p { color: rgba(255,255,255,0.75); max-width: 600px; margin: 0 auto; }

/* ========== Legal Pages ========== */
.gt-legal-content { max-width: 800px; margin: 0 auto; padding: 40px 20px 60px; }
.gt-legal-content h2 { font-size: 1.4rem; margin-top: 36px; margin-bottom: 14px; color: var(--gt-text); }
.gt-legal-content h3 { font-size: 1.15rem; margin-top: 24px; margin-bottom: 10px; }
.gt-legal-content p { color: var(--gt-text-light); }
.gt-legal-content ul { padding-left: 24px; margin-bottom: 16px; }
.gt-legal-content li { list-style: disc; color: var(--gt-text-light); padding: 4px 0; }
.gt-legal-content table { width: 100%; border-collapse: collapse; margin: 16px 0; }
.gt-legal-content th, .gt-legal-content td {
  padding: 10px 14px;
  border: 1px solid var(--gt-border);
  text-align: left;
  font-size: 0.9rem;
}
.gt-legal-content th { background: var(--gt-bg-alt); font-weight: 600; }
.gt-legal-content strong { color: var(--gt-text); }

/* ========== Setup Guide ========== */
.gt-guide-content { max-width: 800px; margin: 0 auto; padding: 40px 20px 60px; }
.gt-guide-content h2 { font-size: 1.5rem; margin-top: 40px; margin-bottom: 14px; color: var(--gt-primary); }
.gt-guide-content h3 { font-size: 1.2rem; margin-top: 24px; margin-bottom: 10px; }
.gt-guide-content p { color: var(--gt-text-light); }
.gt-guide-content ol { padding-left: 24px; margin-bottom: 16px; }
.gt-guide-content ol li { list-style: decimal; color: var(--gt-text-light); padding: 6px 0; }
.gt-guide-content img { border-radius: var(--gt-radius-sm); margin: 20px 0; box-shadow: 0 4px 12px rgba(0,0,0,0.1); }

/* ========== Testimonials ========== */
.gt-testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.gt-testimonial {
  background: var(--gt-bg-card);
  border: 1px solid var(--gt-border);
  border-radius: var(--gt-radius);
  padding: 28px;
}
.gt-testimonial-stars { color: #f59e0b; font-size: 1.1rem; margin-bottom: 12px; }
.gt-testimonial p { font-size: 0.95rem; color: var(--gt-text-light); font-style: italic; margin-bottom: 16px; }
.gt-testimonial-author { font-weight: 700; font-size: 0.9rem; color: var(--gt-text); }
.gt-testimonial-location { font-size: 0.8rem; color: var(--gt-text-muted); }

/* ========== Trial Form Section ========== */
.gt-trial-section {
  background: var(--gt-bg-dark);
  color: var(--gt-text-white);
  padding: 70px 0;
}
.gt-trial-section h2 { color: var(--gt-text-white); text-align: center; margin-bottom: 8px; }
.gt-trial-section > .gt-container > p { text-align: center; color: rgba(255,255,255,0.7); margin-bottom: 30px; }
.gt-trial-section .gt-form-group label { color: rgba(255,255,255,0.9); }
.gt-trial-section .gt-form-group input {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
  color: var(--gt-text-white);
}
.gt-trial-section .gt-form-group input::placeholder { color: rgba(255,255,255,0.4); }
.gt-trial-section .gt-form-group input:focus {
  border-color: var(--gt-primary);
  box-shadow: 0 0 0 3px rgba(108,45,218,0.25);
}
.gt-trial-section .gt-form-trust { color: rgba(255,255,255,0.5); }

/* ========== CTA Section ========== */
.gt-cta-section {
  background: var(--gt-gradient);
  padding: 60px 0;
  text-align: center;
  color: var(--gt-text-white);
}
.gt-cta-section h2 { color: var(--gt-text-white); margin-bottom: 12px; }
.gt-cta-section p { color: rgba(255,255,255,0.9); margin-bottom: 24px; }

/* ========== Honeypot ========== */
.gt-hp { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

/* ========== Responsive ========== */
@media (max-width: 1024px) {
  .gt-grid-4, .gt-pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .gt-footer-grid { grid-template-columns: 1fr 1fr; }
  .gt-comparison { grid-template-columns: 1fr; }
  .gt-gallery { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .gt-nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--gt-nav-bg);
    flex-direction: column;
    padding: 20px;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-top: 1px solid var(--gt-border);
  }
  .gt-nav-links.active { display: flex; }
  .gt-hamburger { display: flex; }
  .gt-grid-2 { grid-template-columns: 1fr; }
  .gt-grid-3, .gt-testimonial-grid { grid-template-columns: 1fr; }
  .gt-pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .gt-hero { padding: 60px 0 50px; }
  .gt-section { padding: 50px 0; }
  .gt-footer-grid { grid-template-columns: 1fr; }
  .gt-hero-stats { gap: 24px; }
}

/* ========== FAQ Toggle Script Support ========== */
/* JS adds .active class to toggle FAQ items */
