/* ============================================
   GREEN LIFE — Main Stylesheet
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* === VARIABLES === */
:root {
  --bg-base:      #081510;
  --bg-surface:   #0d1f15;
  --bg-card:      #112519;
  --bg-card-alt:  #162d1e;
  --accent:       #4ade80;
  --accent-dark:  #22c55e;
  --accent-glow:  rgba(74, 222, 128, 0.12);
  --accent-soft:  #bbf7d0;
  --white:        #ffffff;
  --off-white:    #f0fdf4;
  --muted:        #86efac;
  --muted-dim:    #6ee7b7;
  --border:       rgba(74, 222, 128, 0.12);
  --border-md:    rgba(74, 222, 128, 0.28);
  --border-lg:    rgba(74, 222, 128, 0.55);
  --shadow-sm:    0 2px 10px rgba(0,0,0,0.35);
  --shadow:       0 4px 24px rgba(0,0,0,0.45);
  --shadow-lg:    0 10px 48px rgba(0,0,0,0.55);
  --shadow-glow:  0 0 40px rgba(74,222,128,0.15);
  --radius-sm:    6px;
  --radius:       12px;
  --radius-lg:    18px;
  --radius-xl:    26px;
  --radius-full:  9999px;
  --font:         'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --transition:   200ms ease;
  --t-md:         300ms ease;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  background: var(--bg-base);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; font-family: var(--font); background: none; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5 { font-weight: 700; line-height: 1.2; letter-spacing: -0.02em; }
h1 { font-size: clamp(2rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.5rem); }
h4 { font-size: 1.125rem; }
p  { line-height: 1.75; }

/* === LAYOUT === */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 100px 0; }
.section-sm { padding: 72px 0; }
.text-center { text-align: center; }
.text-accent { color: var(--accent); }
.text-muted  { color: var(--muted); }

.section-header { text-align: center; margin-bottom: 64px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p  { color: var(--muted); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

.tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent-glow); border: 1px solid var(--border-md);
  color: var(--accent); font-size: 0.75rem; font-weight: 700;
  padding: 6px 16px; border-radius: var(--radius-full);
  letter-spacing: 0.07em; text-transform: uppercase; margin-bottom: 16px;
}

/* === BUTTONS === */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 30px; border-radius: var(--radius); font-size: 1rem;
  font-weight: 600; transition: all var(--t-md); cursor: pointer;
  border: none; white-space: nowrap; line-height: 1;
}
.btn-primary  { background: var(--accent); color: var(--bg-base); }
.btn-primary:hover  { background: #22d162; transform: translateY(-2px); box-shadow: var(--shadow-glow); }
.btn-outline  { background: transparent; color: var(--accent); border: 2px solid var(--accent); }
.btn-outline:hover  { background: var(--accent-glow); transform: translateY(-2px); }
.btn-ghost    { background: rgba(255,255,255,0.07); color: var(--white); border: 1px solid var(--border-md); }
.btn-ghost:hover    { background: rgba(255,255,255,0.12); transform: translateY(-2px); }
.btn-lg { padding: 18px 40px; font-size: 1.1rem; border-radius: var(--radius-lg); }
.btn-sm { padding: 10px 20px; font-size: 0.875rem; }
.btn-full { width: 100%; }

/* === BADGES / TRUST === */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px; border-radius: var(--radius-full);
  font-size: 0.8rem; font-weight: 600;
}
.badge-green { background: var(--accent-glow); border: 1px solid var(--border-md); color: var(--accent); }
.badge-white { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.18); color: var(--off-white); }

.trust-strip { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 32px; }

/* ============================================
   ANNOUNCEMENT BAR
   ============================================ */
.announcement-bar {
  background: var(--accent); color: var(--bg-base);
  padding: 8px 0; overflow: hidden;
}
.announcement-bar .container {
  display: flex; justify-content: center; align-items: center;
  gap: 40px; flex-wrap: wrap;
}
.announcement-bar span {
  font-size: 0.8rem; font-weight: 700;
  display: flex; align-items: center; gap: 6px; white-space: nowrap;
}

/* ============================================
   HEADER
   ============================================ */
.header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(8, 21, 16, 0.96);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: all var(--t-md);
}
.header.scrolled { box-shadow: var(--shadow); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; gap: 32px;
}

.logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 1.25rem; font-weight: 800; letter-spacing: -0.03em; flex-shrink: 0;
}
.logo-icon {
  width: 36px; height: 36px; background: var(--accent); border-radius: 9px;
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.logo-text span { color: var(--accent); }

.nav { display: flex; align-items: center; gap: 2px; }
.nav a {
  padding: 8px 14px; font-size: 0.875rem; font-weight: 500;
  color: var(--muted); border-radius: var(--radius-sm); transition: all var(--transition);
}
.nav a:hover { color: var(--white); background: rgba(255,255,255,0.06); }

.menu-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.menu-toggle span { width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all var(--t-md); display: block; }
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-nav {
  display: none; position: absolute; top: 100%; left: 0; right: 0;
  background: var(--bg-surface); border-bottom: 1px solid var(--border);
  padding: 12px 24px 20px; flex-direction: column; gap: 4px;
}
.mobile-nav.active { display: flex; }
.mobile-nav a {
  padding: 12px 16px; font-size: 0.95rem; font-weight: 500;
  color: var(--muted); border-radius: var(--radius); transition: all var(--transition);
}
.mobile-nav a:hover { color: var(--white); background: rgba(255,255,255,0.06); }
.mobile-nav .btn { margin-top: 8px; }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative; padding: 100px 0 80px; overflow: visible;
}
.hero::before {
  content: ''; position: absolute; top: -250px; right: -200px;
  width: 750px; height: 750px;
  background: radial-gradient(circle, rgba(74,222,128,0.07) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
}
.hero::after {
  content: ''; position: absolute; bottom: -100px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(74,222,128,0.04) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.hero-content { position: relative; z-index: 1; }
.hero-content h1 {
  margin-bottom: 24px;
  background: linear-gradient(130deg, #ffffff 0%, #bbf7d0 60%, #4ade80 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-content > p { font-size: 1.1rem; color: var(--muted); margin-bottom: 36px; max-width: 520px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-visual { position: relative; z-index: 1; padding: 24px; margin: -24px; }
.hero-cards-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.hero-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 24px 20px; transition: all var(--t-md);
}
.hero-card:nth-child(1) { animation: floatA 6s ease-in-out infinite; }
.hero-card:nth-child(2) { animation: floatB 6s ease-in-out infinite 1.5s; }
.hero-card:nth-child(3) { animation: floatA 6s ease-in-out infinite 3s; }
.hero-card:nth-child(4) { animation: floatB 6s ease-in-out infinite 4.5s; }
.hero-card:hover { border-color: var(--border-md); box-shadow: var(--shadow); }
.hero-card-icon { font-size: 2.2rem; margin-bottom: 12px; }
.hero-card h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 4px; }
.hero-card p  { font-size: 0.8rem; color: var(--muted); }

@keyframes floatA { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes floatB { 0%,100% { transform: translateY(-5px); } 50% { transform: translateY(5px); } }

/* ============================================
   AUTHORITY
   ============================================ */
.authority { background: var(--bg-surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.authority-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.authority-content h2 { margin-bottom: 20px; }
.authority-content > p { color: var(--muted); font-size: 1.05rem; margin-bottom: 36px; }
.authority-features { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.authority-feature {
  display: flex; align-items: center; gap: 12px; padding: 16px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); font-size: 0.875rem; font-weight: 500;
  transition: all var(--t-md);
}
.authority-feature:hover { border-color: var(--border-md); }
.authority-feature .icon { font-size: 1.4rem; flex-shrink: 0; }

/* Authority visual side */
.authority-visual { display: flex; flex-direction: column; gap: 16px; }
.authority-stat {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 24px 28px; display: flex; align-items: center; gap: 20px;
  transition: all var(--t-md);
}
.authority-stat:hover { border-color: var(--border-md); }
.authority-stat-icon { font-size: 2.2rem; }
.authority-stat-text strong { display: block; font-size: 1.6rem; font-weight: 800; color: var(--accent); }
.authority-stat-text span  { font-size: 0.875rem; color: var(--muted); }

/* ============================================
   PLANS
   ============================================ */
.plans { background: var(--bg-base); }
.plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.plan-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-xl);
  padding: 32px 28px; display: flex; flex-direction: column; gap: 24px;
  transition: all var(--t-md); position: relative; overflow: hidden;
}
.plan-card:hover { transform: translateY(-4px); border-color: var(--border-md); box-shadow: var(--shadow-lg); }
.plan-card.featured {
  border-color: var(--accent); background: linear-gradient(150deg, #122a1e, #1c3e28);
  box-shadow: var(--shadow-glow), var(--shadow-lg);
}
.plan-card.featured:hover { box-shadow: 0 0 60px rgba(74,222,128,0.2), var(--shadow-lg); }

.plan-badge {
  position: absolute; top: 16px; right: 16px;
  background: var(--accent); color: var(--bg-base);
  font-size: 0.7rem; font-weight: 900; padding: 4px 12px;
  border-radius: var(--radius-full); letter-spacing: 0.1em; text-transform: uppercase;
}

.plan-header h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 10px; }
.plan-header p  { font-size: 0.875rem; color: var(--muted); line-height: 1.6; }

.plan-pricing { display: flex; flex-direction: column; gap: 10px; }
.price-option {
  background: rgba(0,0,0,0.25); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 14px 16px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.price-label { font-size: 0.7rem; color: var(--muted); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; }
.price-value { font-size: 1.3rem; font-weight: 900; }
.price-value sub { font-size: 0.75rem; font-weight: 500; color: var(--muted); vertical-align: baseline; }

.plan-features ul { display: flex; flex-direction: column; gap: 10px; }
.plan-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.875rem; color: var(--off-white); }
.plan-features li::before { content: '✓'; color: var(--accent); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

.plan-actions { display: flex; flex-direction: column; gap: 10px; margin-top: auto; }

/* ============================================
   ACCESS TYPES
   ============================================ */
.access-types { background: var(--bg-surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.access-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; max-width: 860px; margin: 0 auto; }
.access-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-xl);
  padding: 44px 40px; text-align: center; transition: all var(--t-md);
}
.access-card:hover { transform: translateY(-4px); border-color: var(--border-md); }
.access-icon { font-size: 3rem; margin-bottom: 16px; display: block; }
.access-card h3 { margin-bottom: 20px; }
.access-card ul { display: flex; flex-direction: column; gap: 12px; text-align: left; }
.access-card li { display: flex; align-items: flex-start; gap: 12px; font-size: 0.95rem; color: var(--muted); }
.access-card li::before { content: '→'; color: var(--accent); font-weight: 700; flex-shrink: 0; margin-top: 2px; }

/* ============================================
   WHAT'S INSIDE
   ============================================ */
.inside { background: var(--bg-base); }
.inside-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.inside-item {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 22px; display: flex; align-items: center; gap: 16px;
  transition: all var(--t-md);
}
.inside-item:hover { transform: translateY(-2px); border-color: var(--border-md); }
.inside-item-icon {
  font-size: 1.7rem; flex-shrink: 0; width: 50px; height: 50px;
  background: var(--accent-glow); border: 1px solid var(--border-md);
  border-radius: var(--radius); display: flex; align-items: center; justify-content: center;
}
.inside-item h4 { font-size: 0.9rem; font-weight: 600; }

/* ============================================
   BENEFITS
   ============================================ */
.benefits { background: var(--bg-surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.benefit-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 36px 28px; text-align: center; transition: all var(--t-md);
}
.benefit-card:hover { transform: translateY(-4px); border-color: var(--border-md); box-shadow: var(--shadow-glow); }
.benefit-icon { font-size: 2.5rem; margin-bottom: 16px; display: block; }
.benefit-card h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.benefit-card p  { font-size: 0.875rem; color: var(--muted); }

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works { background: var(--bg-base); }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; position: relative; }
.steps-grid::before {
  content: ''; position: absolute; top: 35px;
  left: calc(12.5% + 20px); right: calc(12.5% + 20px); height: 2px;
  background: linear-gradient(90deg, var(--accent) 0%, rgba(74,222,128,0.2) 100%);
}
.step { text-align: center; }
.step-number {
  width: 70px; height: 70px; background: var(--accent-glow);
  border: 2px solid var(--accent); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; font-weight: 900; color: var(--accent);
  margin: 0 auto 24px; position: relative; z-index: 1;
}
.step h4 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
.step p   { font-size: 0.875rem; color: var(--muted); }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials { background: var(--bg-surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.testimonials-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.testimonial-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px; transition: all var(--t-md);
}
.testimonial-card:hover { transform: translateY(-2px); border-color: var(--border-md); }
.testimonial-stars { display: flex; gap: 4px; margin-bottom: 16px; color: var(--accent); font-size: 1rem; }
.testimonial-text { font-size: 0.975rem; color: var(--off-white); margin-bottom: 24px; line-height: 1.8; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; font-weight: 800; color: var(--bg-base); flex-shrink: 0;
}
.testimonial-author-info strong { display: block; font-size: 0.95rem; font-weight: 700; }
.testimonial-author-info span   { font-size: 0.8rem; color: var(--muted); }

/* ============================================
   FAQ
   ============================================ */
.faq { background: var(--bg-base); }
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: border-color var(--t-md);
}
.faq-item.active { border-color: var(--border-md); }
.faq-question {
  width: 100%; background: none; border: none; padding: 22px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  text-align: left; cursor: pointer; color: var(--white);
  font-size: 0.975rem; font-weight: 600; transition: color var(--transition);
}
.faq-question:hover { color: var(--accent); }
.faq-icon {
  width: 26px; height: 26px; border-radius: 50%;
  border: 2px solid var(--border-md); display: flex; align-items: center;
  justify-content: center; flex-shrink: 0; transition: all var(--t-md);
  color: var(--accent); font-size: 1.3rem; font-weight: 300; line-height: 1;
}
.faq-item.active .faq-icon { background: var(--accent); border-color: var(--accent); color: var(--bg-base); transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer-inner { padding: 0 24px 22px; color: var(--muted); font-size: 0.925rem; line-height: 1.8; }
.faq-item.active .faq-answer { max-height: 300px; }

/* ============================================
   CONTACT
   ============================================ */
.contact { background: var(--bg-surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.contact-inner { max-width: 680px; margin: 0 auto; text-align: center; }
.contact-inner > p { color: var(--muted); font-size: 1.05rem; margin-bottom: 44px; }
.contact-card {
  background: var(--bg-card); border: 1px solid var(--border-md);
  border-radius: var(--radius-xl); padding: 48px 40px;
}
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-item { display: flex; align-items: center; gap: 16px; }
.contact-item-icon {
  font-size: 1.6rem; width: 52px; height: 52px; background: var(--accent-glow);
  border: 1px solid var(--border-md); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-item-text { text-align: left; }
.contact-item-text small { display: block; font-size: 0.75rem; color: var(--muted); margin-bottom: 4px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.contact-item-text strong { font-size: 1.1rem; font-weight: 700; }
.contact-hours { margin-top: 28px; padding-top: 28px; border-top: 1px solid var(--border); }
.contact-hours p { font-size: 0.875rem; color: var(--muted); margin-bottom: 6px !important; }

/* ============================================
   FOOTER
   ============================================ */
.footer { background: var(--bg-surface); border-top: 1px solid var(--border); padding: 72px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p { color: var(--muted); font-size: 0.875rem; max-width: 280px; margin-bottom: 16px; }
.footer-brand .contact-line { color: var(--muted); font-size: 0.875rem; }
.footer-brand .contact-line strong { color: var(--white); }
.footer-col h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 0.875rem; color: var(--muted); transition: color var(--transition); }
.footer-links a:hover { color: var(--accent); }
.footer-bottom {
  padding-top: 28px; border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 0.8rem; color: var(--muted); }

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-hero {
  background: var(--bg-surface); border-bottom: 1px solid var(--border);
  padding: 80px 0; text-align: center;
}
.legal-hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 14px; }
.legal-hero p { color: var(--muted); font-size: 1.05rem; }

.legal-body { padding: 72px 0; }
.legal-body .container { max-width: 800px; }

.legal-section { margin-bottom: 48px; }
.legal-section h2 { font-size: 1.4rem; color: var(--accent-soft); margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.legal-section h3 { font-size: 1.1rem; font-weight: 700; margin-top: 24px; margin-bottom: 12px; }
.legal-section p  { color: var(--muted); margin-bottom: 16px; font-size: 0.95rem; line-height: 1.85; }
.legal-section ul { padding-left: 24px; color: var(--muted); margin-bottom: 16px; }
.legal-section ul li { list-style: disc; margin-bottom: 8px; font-size: 0.95rem; line-height: 1.7; }

/* ============================================
   HERO IMAGE
   ============================================ */
.hero-img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: visible;
}
.hero-main-img {
  width: 100%; border-radius: var(--radius-xl);
  object-fit: cover; aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg), 0 0 60px rgba(74,222,128,0.1);
  border: 1px solid var(--border-md);
  display: block;
}
.hero-float-card {
  position: absolute; background: rgba(8,21,16,0.92);
  border: 1px solid var(--border-md); border-radius: var(--radius-lg);
  backdrop-filter: blur(12px); padding: 12px 16px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: var(--shadow);
}
.hero-float-card span { font-size: 1.6rem; flex-shrink: 0; }
.hero-float-card strong { display: block; font-size: 0.875rem; font-weight: 700; }
.hero-float-card small  { font-size: 0.75rem; color: var(--muted); }
.hero-float-tl { top: -18px; left: -20px; animation: floatA 5s ease-in-out infinite; }
.hero-float-br { bottom: -18px; right: -20px; animation: floatB 5s ease-in-out infinite 2s; }

/* ============================================
   PHOTO GALLERY
   ============================================ */
.gallery { background: var(--bg-surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}
.gallery-item {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border); cursor: default;
  transition: transform var(--t-md), box-shadow var(--t-md);
}
.gallery-item:hover { transform: scale(1.02); box-shadow: var(--shadow-lg); }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item-tall { grid-row: span 2; }
.gallery-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 28px 16px 14px;
  background: linear-gradient(to top, rgba(8,21,16,0.92) 0%, transparent 100%);
  font-size: 0.875rem; font-weight: 600; color: var(--white);
}

/* ============================================
   TESTIMONIAL AVATAR AS IMG
   ============================================ */
img.testimonial-avatar {
  width: 48px; height: 48px; border-radius: 50%; object-fit: cover;
  border: 2px solid var(--border-md); flex-shrink: 0;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .plans-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .section-header { margin-bottom: 48px; }
  .nav { display: none; }
  .menu-toggle { display: flex; }
  .header-cta { display: none; }
  .header-inner { position: relative; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { order: -1; }
  .hero-cards-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .authority-grid { grid-template-columns: 1fr; gap: 48px; }
  .authority-features { grid-template-columns: 1fr; }
  .plans-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .access-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 200px; }
  .gallery-item-tall { grid-row: span 1; }
  .inside-grid { grid-template-columns: 1fr 1fr; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section { padding: 56px 0; }
  .hero-content h1 { font-size: 2rem; }
  .hero-cards-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .hero-card { padding: 16px; }
  .hero-float-tl { top: -12px; left: -8px; }
  .hero-float-br { bottom: -12px; right: -8px; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .gallery-item-tall { grid-row: span 1; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .inside-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .contact-card { padding: 32px 24px; }
  .access-card { padding: 32px 24px; }
  .announcement-bar .container { gap: 16px; }
}
