/* ── VARIABLES & RESET ── */
:root {
  --green-dark:    #082f2a;
  --green-deep:    #0d6e5e;
  --green-primary: #0d6e5e;
  --green-mid:     #1a7a68;
  --green-light:   #4db89e;
  --green-pale:    #daf0eb;
  --green-mist:    #f2faf8;
  --gold:          #e0a040;
  --gold-light:    #f5c060;
  --charcoal:      #1a1a2e;
  --text-dark:     #1c1c1c;
  --text-mid:      #4a4a4a;
  --text-light:    #6b7280;
  --white:         #ffffff;
  --off-white:     #f9fafb;
  --surface:       #f2faf8;
  --border:        #e5e7eb;
  --text-muted:    #9ca3af;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Inter', sans-serif; color: var(--text-dark); background: var(--white); overflow-x: hidden; }

/* ── TOP BAR ── */
.top-bar { background: var(--green-dark); color: rgba(255,255,255,0.85); font-size: 13px; padding: 8px 0; letter-spacing: 0.3px; }
.top-bar a { color: var(--gold-light); text-decoration: none; font-weight: 600; }
.top-bar a:hover { color: var(--white); }
.top-bar .sep { margin: 0 14px; opacity: 0.35; }

/* ── HEADER & NAV ── */
.site-header { position: sticky; top: 0; z-index: 1000; background: var(--white); box-shadow: 0 2px 20px rgba(0,0,0,0.08); border-bottom: 3px solid var(--green-primary); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; }
.site-logo img { height: 58px; width: auto; }
.site-logo span { display: block; font-size: 11px; color: var(--green-primary); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-top: 2px; }
.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav a { color: var(--text-dark); text-decoration: none; font-size: 14px; font-weight: 600; padding: 8px 14px; border-radius: 6px; transition: all 0.2s; letter-spacing: 0.2px; }
.main-nav a:hover, .main-nav a.active { background: var(--green-mist); color: var(--green-primary); }
.header-cta { background: var(--green-primary); color: var(--white) !important; padding: 10px 22px !important; border-radius: 6px !important; }
.header-cta:hover { background: var(--green-dark) !important; color: var(--white) !important; }
.mobile-toggle { display: none; background: none; border: none; font-size: 22px; color: var(--green-primary); cursor: pointer; }
.main-nav.open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); padding: 16px; box-shadow: 0 12px 32px rgba(0,0,0,0.12); z-index: 999; }

/* ── SERVICES DROPDOWN ── */
.nav-dropdown { position: relative; }
.nav-dropdown > a { display: flex; align-items: center; gap: 5px; cursor: pointer; }
.nav-dropdown > a i { font-size: 10px; transition: transform 0.2s; }
.nav-dropdown:hover > a i, .nav-dropdown.open > a i { transform: rotate(180deg); }
.nav-dropdown::after { content: ''; position: absolute; bottom: -10px; left: 0; right: 0; height: 10px; }
.dropdown-menu-custom { display: none; position: absolute; top: 100%; left: 0; min-width: 240px; max-height: 320px; overflow-y: auto; overscroll-behavior: contain; background: var(--white); border: 1px solid var(--border); border-radius: 12px; box-shadow: 0 16px 48px rgba(8,47,42,0.12); padding: 8px; z-index: 1100; scrollbar-width: thin; scrollbar-color: var(--green-pale) transparent; }
.dropdown-menu-custom::-webkit-scrollbar { width: 4px; }
.dropdown-menu-custom::-webkit-scrollbar-track { background: transparent; }
.dropdown-menu-custom::-webkit-scrollbar-thumb { background: var(--green-pale); border-radius: 4px; }
.nav-dropdown:hover .dropdown-menu-custom, .nav-dropdown.open .dropdown-menu-custom { display: block; }
.dropdown-menu-custom a { display: block; padding: 10px 14px; font-size: 13.5px; font-weight: 500; color: var(--text-dark); text-decoration: none; border-radius: 8px; transition: all 0.15s; white-space: nowrap; }
.dropdown-menu-custom a:hover, .dropdown-menu-custom a.active { background: var(--green-mist); color: var(--green-primary); }

/* ── HERO ── */
.hero { position: relative; display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; }
.hero-left { background: linear-gradient(160deg, var(--green-dark) 0%, #0a4a3e 60%, var(--green-deep) 100%); display: flex; flex-direction: column; justify-content: center; padding: 48px 60px; position: relative; overflow: hidden; }
.hero-left::before { content: ''; position: absolute; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(77,184,158,0.08) 0%, transparent 70%); top: -100px; left: -100px; pointer-events: none; }
.hero-left::after { content: ''; position: absolute; width: 300px; height: 300px; border-radius: 50%; background: radial-gradient(circle, rgba(224,160,64,0.06) 0%, transparent 70%); bottom: 0; right: -60px; pointer-events: none; }
.hero-line { position: absolute; top: 0; left: 56px; width: 2px; height: 100%; background: linear-gradient(180deg, transparent 0%, rgba(77,184,158,0.25) 30%, rgba(77,184,158,0.25) 70%, transparent 100%); }
.hero-content { position: relative; z-index: 2; }
.breadcrumb-nav { display: flex; align-items: center; gap: 8px; margin-bottom: 24px; flex-wrap: wrap; }
.breadcrumb-nav a { color: rgba(255,255,255,0.4); font-size: 12px; font-weight: 500; text-decoration: none; transition: color 0.2s; letter-spacing: 0.5px; }
.breadcrumb-nav a:hover { color: var(--green-light); }
.breadcrumb-nav i { color: rgba(255,255,255,0.2); font-size: 9px; }
.breadcrumb-nav span { color: var(--green-light); font-size: 12px; font-weight: 600; letter-spacing: 0.5px; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 10px; background: rgba(77,184,158,0.1); border: 1px solid rgba(77,184,158,0.3); color: var(--green-light); font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; padding: 9px 18px; border-radius: 4px; margin-bottom: 32px; }
.hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.6rem, 3.8vw, 4.2rem); font-weight: 800; color: var(--white); line-height: 1.12; margin-bottom: 8px; letter-spacing: -0.5px; }
.hero h1 em { font-style: normal; color: var(--gold-light); position: relative; display: inline-block; }
.hero h1 em::after { content: ''; position: absolute; bottom: 2px; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--gold), transparent); border-radius: 2px; opacity: 0.5; }
.hero-location { font-size: 13px; color: rgba(255,255,255,0.45); font-weight: 500; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 28px; }
.hero-location i { color: var(--green-light); margin-right: 6px; }
.hero-sub { font-size: 16px; color: rgba(255,255,255,0.7); line-height: 1.75; margin-bottom: 36px; max-width: 480px; border-left: 3px solid rgba(77,184,158,0.4); padding-left: 18px; }
.hero-checks { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 20px; margin-bottom: 44px; }
.hero-checks span { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.85); font-size: 13.5px; font-weight: 500; }
.hero-checks span i { width: 22px; height: 22px; border-radius: 50%; background: rgba(77,184,158,0.15); border: 1px solid rgba(77,184,158,0.3); color: var(--green-light); font-size: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary-green { background: var(--gold); color: var(--green-dark); border: none; padding: 16px 34px; border-radius: 6px; font-size: 15px; font-weight: 800; text-decoration: none; transition: all 0.3s; box-shadow: 0 8px 28px rgba(224,160,64,0.35); display: inline-flex; align-items: center; gap: 10px; }
.btn-primary-green:hover { background: var(--gold-light); color: var(--green-dark); transform: translateY(-2px); box-shadow: 0 14px 36px rgba(224,160,64,0.5); }
.btn-outline-white { background: transparent; color: rgba(255,255,255,0.9); border: 1.5px solid rgba(255,255,255,0.25); padding: 15px 30px; border-radius: 6px; font-size: 15px; font-weight: 600; text-decoration: none; transition: all 0.3s; display: inline-flex; align-items: center; gap: 10px; }
.btn-outline-white:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.5); color: var(--white); }
.hero-right { position: relative; overflow: hidden; align-self: stretch; min-height: 520px; max-height: 118vh; }
.hero-right img { width: 100%; height: 100%; object-fit: cover; object-position: center center; display: block; }
.hero-right::before { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, var(--green-dark) 0%, transparent 30%), linear-gradient(180deg, rgba(8,47,42,0.3) 0%, transparent 40%, rgba(8,47,42,0.6) 100%); z-index: 1; }
.hero-badge { position: absolute; top: 40px; right: 32px; z-index: 2; background: rgba(8,47,42,0.85); backdrop-filter: blur(12px); border: 1px solid rgba(77,184,158,0.25); border-radius: 16px; padding: 20px 24px; text-align: center; min-width: 120px; }
.hero-badge-num { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 800; color: var(--gold-light); line-height: 1; }
.hero-badge-label { font-size: 11px; color: rgba(255,255,255,0.6); letter-spacing: 0.8px; margin-top: 4px; text-transform: uppercase; }
.hero-trust-bar { grid-column: 1 / -1; background: rgba(8,47,42,0.97); border-top: 1px solid rgba(77,184,158,0.15); display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-bar-item { display: flex; align-items: center; gap: 14px; padding: 20px 28px; border-right: 1px solid rgba(255,255,255,0.06); }
.trust-bar-item:last-child { border-right: none; }
.trust-bar-icon { width: 40px; height: 40px; border-radius: 10px; background: rgba(77,184,158,0.12); border: 1px solid rgba(77,184,158,0.2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.trust-bar-icon i { color: var(--green-light); font-size: 16px; }
.trust-bar-text strong { display: block; font-size: 14px; font-weight: 700; color: var(--white); }
.trust-bar-text span { font-size: 12px; color: rgba(255,255,255,0.45); }

/* ── SECTIONS ── */
.section { padding: 90px 0; }
.section-alt { background: var(--green-mist); }
.section-dark { background: var(--green-dark); }
.section-tag { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--green-primary); background: var(--green-pale); padding: 6px 16px; border-radius: 100px; margin-bottom: 16px; }
.section-tag-white { color: var(--white); background: rgba(255,255,255,0.1); }
.section-tag-gold { color: var(--gold); background: rgba(224,160,64,0.12); }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 700; color: var(--text-dark); line-height: 1.25; margin-bottom: 18px; }
.section-title em { font-style: normal; color: var(--green-primary); }
.section-title-white { color: var(--white); }
.section-title-white em { color: var(--green-light); }
.divider { width: 52px; height: 3px; background: linear-gradient(90deg, var(--green-primary), var(--green-light)); border-radius: 2px; margin: 18px 0 28px; }
.divider-gold { background: linear-gradient(90deg, var(--gold), var(--gold-light)); }
.body-text { font-size: 16px; color: var(--text-mid); line-height: 1.85; margin-bottom: 20px; }
.section-pad { padding: 90px 0; }
.section-eyebrow { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--green-primary); background: var(--green-pale); padding: 6px 16px; border-radius: 100px; margin-bottom: 16px; }
.standard-card { background: var(--white); border-radius: 18px; padding: 32px 28px; border: 1px solid var(--border); height: 100%; transition: box-shadow 0.3s, transform 0.3s; }
.standard-card:hover { box-shadow: 0 12px 40px rgba(8,47,42,0.10); transform: translateY(-4px); }
.standard-card h4 { font-size: 1rem; font-weight: 700; color: var(--green-dark); margin-bottom: 10px; }
.standard-card p { font-size: 14px; color: var(--text-mid); line-height: 1.7; margin: 0; }
.standard-icon-wrap { width: 56px; height: 56px; border-radius: 16px; background: var(--green-pale); border: 1px solid rgba(77,184,158,0.2); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; transition: background 0.3s; }
.standard-card:hover .standard-icon-wrap { background: var(--green-primary); color: var(--white); }

/* ── INTRO IMAGE ── */
.intro-img-wrap { position: relative; }
.intro-main-img { width: 100%; border-radius: 20px; object-fit: cover; object-position: center center; height: 460px; display: block; }
.intro-img-badge { position: absolute; bottom: 28px; left: -20px; background: var(--white); border-radius: 14px; padding: 16px 22px; display: flex; align-items: center; gap: 14px; box-shadow: 0 12px 40px rgba(8,47,42,0.15); border: 1px solid var(--border); }
.intro-img-badge i { width: 44px; height: 44px; border-radius: 10px; background: var(--green-pale); color: var(--green-primary); font-size: 18px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.intro-img-badge strong { display: block; font-size: 14px; font-weight: 700; color: var(--text-dark); }
.intro-img-badge span { font-size: 12px; color: var(--text-light); }

/* ── WHEN GRID (checklist cards) ── */
.when-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 32px; }
.when-item { display: flex; align-items: flex-start; gap: 14px; background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 18px 20px; transition: all 0.25s; }
.when-item:hover { border-color: var(--green-primary); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(8,47,42,0.07); }
.when-item i { color: var(--green-primary); font-size: 14px; margin-top: 2px; flex-shrink: 0; }
.when-item span { font-size: 14px; color: var(--text-mid); line-height: 1.6; }

/* ── CARDS GRID ── */
.calib-types-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 40px; }
.calib-type-card { background: var(--white); border: 1px solid var(--border); border-radius: 18px; padding: 40px 32px; border-top: 4px solid var(--green-primary); transition: all 0.3s; position: relative; overflow: hidden; }
.calib-type-card:hover { box-shadow: 0 20px 48px rgba(8,47,42,0.1); transform: translateY(-5px); border-top-color: var(--gold); }
.calib-type-icon { width: 64px; height: 64px; border-radius: 16px; background: var(--green-dark); display: flex; align-items: center; justify-content: center; margin-bottom: 24px; transition: all 0.3s; }
.calib-type-card:hover .calib-type-icon { background: var(--green-primary); transform: scale(1.06); }
.calib-type-icon i { color: var(--white); font-size: 26px; }
.calib-type-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 12px; color: var(--text-dark); }
.calib-type-card p { font-size: 14.5px; color: var(--text-mid); line-height: 1.8; margin: 0; }

/* ── FEATURE CHIPS ── */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 12px; }
.feature-chip { display: flex; align-items: center; gap: 12px; background: var(--white); border: 1px solid var(--border); border-radius: 10px; padding: 14px 16px; transition: all 0.2s; }
.feature-chip:hover { border-color: var(--green-primary); background: var(--green-mist); }
.feature-chip i { color: var(--green-primary); font-size: 13px; flex-shrink: 0; }
.feature-chip span { font-size: 13.5px; font-weight: 500; color: var(--text-mid); }

/* ── SPLIT CONTENT ── */
.split-content { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split-content.reverse { direction: rtl; }
.split-content.reverse > * { direction: ltr; }
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.content-block h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.6rem,2.5vw,2.2rem); font-weight: 700; color: var(--text-dark); margin-bottom: 18px; line-height: 1.3; }
.content-block h2 em { font-style: normal; color: var(--green-primary); }
.detail-list { list-style: none; padding: 0; margin: 24px 0 0; }
.detail-list li { display: flex; align-items: flex-start; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--border); font-size: 14.5px; color: var(--text-mid); line-height: 1.65; }
.detail-list li:last-child { border-bottom: none; }
.detail-list li i { color: var(--green-primary); font-size: 13px; margin-top: 3px; flex-shrink: 0; }

/* ── VISUAL CARD ── */
.visual-block { position: relative; }
.visual-card { background: linear-gradient(135deg, var(--green-dark) 0%, #0a4a3e 100%); border-radius: 24px; padding: 48px 40px; position: relative; overflow: hidden; }
.visual-card::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 80% 20%, rgba(77,184,158,0.1) 0%, transparent 60%); pointer-events: none; }
.visual-card-icon { width: 80px; height: 80px; border-radius: 20px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; margin-bottom: 28px; }
.visual-card-icon i { font-size: 34px; color: var(--gold-light); }
.visual-card h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--white); margin-bottom: 14px; }
.visual-card p { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.8; margin: 0; }
.visual-stat-row { display: flex; gap: 16px; margin-top: 32px; }
.visual-stat { flex: 1; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; padding: 20px 16px; text-align: center; }
.visual-stat .num { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 800; color: var(--gold-light); line-height: 1; }
.visual-stat .lbl { font-size: 11px; color: rgba(255,255,255,0.45); margin-top: 6px; text-transform: uppercase; letter-spacing: 0.8px; }

/* ── FAQ ── */
.faq-layout { display: grid; grid-template-columns: 340px 1fr; gap: 56px; align-items: start; }
.faq-sidebar { position: sticky; top: 100px; }
.faq-sidebar-card { background: linear-gradient(150deg, var(--green-dark) 0%, #0a4a3e 100%); border-radius: 24px; padding: 44px 36px; position: relative; overflow: hidden; }
.faq-sidebar-card::before { content: '?'; position: absolute; bottom: -20px; right: 16px; font-family: 'Playfair Display', serif; font-size: 10rem; font-weight: 800; color: rgba(255,255,255,0.04); line-height: 1; pointer-events: none; }
.faq-sidebar-card .section-tag { margin-bottom: 20px; }
.faq-sidebar-card h2 { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; color: var(--white); line-height: 1.25; margin-bottom: 16px; }
.faq-sidebar-card h2 em { font-style: normal; color: var(--gold-light); }
.faq-sidebar-card p { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.8; margin-bottom: 32px; }
.faq-sidebar-divider { width: 40px; height: 2px; background: linear-gradient(90deg, var(--gold), transparent); border-radius: 2px; margin-bottom: 24px; }
.faq-contact-item { display: flex; align-items: center; gap: 14px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
.faq-contact-item:last-child { border-bottom: none; }
.faq-contact-icon { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.faq-contact-icon i { color: var(--gold-light); font-size: 14px; }
.faq-contact-item span { font-size: 13px; color: rgba(255,255,255,0.55); display: block; }
.faq-contact-item a { font-size: 14px; color: var(--white); font-weight: 600; text-decoration: none; transition: color 0.2s; }
.faq-contact-item a:hover { color: var(--gold-light); }
.faq-list { margin-top: 0; }
.faq-item { border: 1px solid var(--border); border-radius: 14px; margin-bottom: 10px; overflow: hidden; transition: all 0.25s; background: var(--white); }
.faq-item:hover { border-color: var(--green-primary); box-shadow: 0 4px 16px rgba(8,47,42,0.06); }
.faq-item.open { border-color: var(--green-primary); box-shadow: 0 6px 24px rgba(8,47,42,0.09); }
.faq-question { padding: 22px 24px; cursor: pointer; display: flex; align-items: center; justify-content: space-between; font-weight: 600; font-size: 15px; color: var(--text-dark); background: var(--white); user-select: none; gap: 16px; transition: background 0.2s; }
.faq-item.open .faq-question { background: var(--green-mist); color: var(--green-dark); }
.faq-question i { width: 30px; height: 30px; border-radius: 50%; background: var(--green-pale); color: var(--green-primary); font-size: 11px; display: flex; align-items: center; justify-content: center; transition: all 0.3s; flex-shrink: 0; }
.faq-item.open .faq-question i { background: var(--green-primary); color: var(--white); transform: rotate(180deg); }
.faq-answer { display: none; padding: 18px 24px 24px; font-size: 14.5px; color: var(--text-mid); line-height: 1.85; background: var(--green-mist); border-top: 1px solid var(--green-pale); }

/* ── CTA BAND ── */
.cta-band { background: var(--green-dark); padding: 80px 0; position: relative; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle at 10% 50%, rgba(77,184,158,0.07) 0%, transparent 50%), radial-gradient(circle at 90% 20%, rgba(224,160,64,0.06) 0%, transparent 40%); pointer-events: none; }
.cta-band::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--green-primary), var(--gold), var(--green-primary)); }
.cta-band-inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-band-text { flex: 1; }
.cta-band h2 { font-family: 'Playfair Display', serif; font-size: 2.3rem; color: var(--white); margin-bottom: 12px; line-height: 1.2; }
.cta-band p { font-size: 16px; color: rgba(255,255,255,0.65); margin: 0; max-width: 480px; line-height: 1.7; }
.cta-band-actions { display: flex; flex-direction: column; gap: 12px; align-items: flex-end; flex-shrink: 0; }
.cta-band-title { font-family: 'Playfair Display', serif; font-size: 2.3rem; color: var(--white); margin-bottom: 12px; line-height: 1.2; }
.cta-band-sub { font-size: 16px; color: rgba(255,255,255,0.65); margin: 0; max-width: 480px; line-height: 1.7; }
.btn-gold { background: var(--gold); color: var(--green-dark); border: none; padding: 16px 38px; border-radius: 8px; font-size: 16px; font-weight: 800; text-decoration: none; transition: all 0.3s; box-shadow: 0 8px 28px rgba(224,160,64,0.3); display: inline-flex; align-items: center; gap: 10px; white-space: nowrap; }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); color: var(--green-dark); }
.cta-sub-link { font-size: 13px; color: rgba(255,255,255,0.45); text-decoration: none; display: inline-flex; align-items: center; gap: 6px; transition: color 0.2s; }
.cta-sub-link:hover { color: rgba(255,255,255,0.8); }

/* ── FOOTER ── */
.site-footer { background: var(--green-dark); color: rgba(255,255,255,0.75); padding: 0; border-top: 3px solid var(--green-primary); }
.footer-main { padding: 72px 0 56px; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 0.8fr; gap: 48px; }

/* Brand column */
.footer-brand-col {}
.footer-logo { height: 54px; width: auto; margin-bottom: 20px; display: block; }
.footer-brand-col > p { font-size: 14px; line-height: 1.8; color: rgba(255,255,255,0.5); margin-bottom: 28px; max-width: 300px; }
.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-contact a { display: flex !important; align-items: flex-start; gap: 12px; color: rgba(255,255,255,0.55) !important; text-decoration: none !important; font-size: 13.5px; line-height: 1.5; transition: color 0.2s; }
.footer-contact a:hover { color: var(--white) !important; }
.footer-contact a i { color: var(--gold-light); width: 16px; text-align: center; margin-top: 2px; flex-shrink: 0; font-size: 13px; }

/* Nav columns */
.footer-col {}
.footer-col h5 { font-size: 10.5px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold-light); margin: 0 0 20px; padding-bottom: 14px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer-col a { display: flex !important; align-items: center; gap: 9px; color: rgba(255,255,255,0.5) !important; text-decoration: none !important; font-size: 13.5px; margin-bottom: 9px; transition: all 0.2s; padding-left: 0; }
.footer-col a:hover { color: var(--white) !important; padding-left: 4px; }
.footer-col a i { font-size: 8px; color: var(--green-light); flex-shrink: 0; }

/* Bottom bar */
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding: 20px 0; }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 13px; color: rgba(255,255,255,0.3); }
.footer-bottom-links { display: flex; gap: 4px; }
.footer-bottom-links a { color: rgba(255,255,255,0.35) !important; text-decoration: none !important; font-size: 13px; padding: 0 10px; border-left: 1px solid rgba(255,255,255,0.1); transition: color 0.2s; }
.footer-bottom-links a:first-child { border-left: none; }
.footer-bottom-links a:hover { color: var(--white) !important; }

@media(max-width:1024px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media(max-width:600px) { .footer-grid { grid-template-columns: 1fr; gap: 32px; } .footer-bottom-inner { flex-direction: column; align-items: flex-start; } }

/* ── FLOATING CALL BUTTON (mobile only) ── */
.float-call { display: none; position: fixed; bottom: 80px; right: 20px; z-index: 998; background: var(--green-primary); color: var(--white); border-radius: 50px; padding: 14px 22px; font-size: 14px; font-weight: 700; text-decoration: none; align-items: center; gap: 8px; }
@media(max-width:768px){ .float-call { display: inline-flex; } }

/* ── SCROLL PROGRESS BAR ── */
#scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0%; background: linear-gradient(90deg, var(--green-primary), var(--gold), var(--green-light)); z-index: 9999; transition: width 0.1s linear; border-radius: 0 2px 2px 0; }

/* ── CUSTOM CURSOR ── */
@media(pointer:fine){ body { cursor: none; } a, button, [onclick] { cursor: none; } }
#cursor-dot {
  position:fixed; top:0; left:0; width:10px; height:10px;
  background:#fff;
  border-radius:50%; pointer-events:none; z-index:99999;
  will-change:transform;
  mix-blend-mode: exclusion;
  transition:width 0.22s cubic-bezier(0.22,1,0.36,1), height 0.22s cubic-bezier(0.22,1,0.36,1);
}
#cursor-ring {
  position:fixed; top:0; left:0; width:36px; height:36px;
  border:1.5px solid rgba(255,255,255,0.5);
  border-radius:50%; pointer-events:none; z-index:99998;
  will-change:transform;
  mix-blend-mode: exclusion;
  transition:width 0.35s cubic-bezier(0.22,1,0.36,1), height 0.35s cubic-bezier(0.22,1,0.36,1), border-color 0.25s;
}
body.cursor-hover #cursor-dot { width:14px; height:14px; }
body.cursor-hover #cursor-ring { width:54px; height:54px; border-color:rgba(255,255,255,0.7); }
@media(pointer:coarse){ #cursor-dot, #cursor-ring { display:none; } }

/* ── BACK TO TOP ── */
.back-top { position: fixed; bottom: 28px; right: 28px; width: 44px; height: 44px; border-radius: 50%; background: var(--green-primary); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 16px; cursor: pointer; opacity: 0; visibility: hidden; transition: all 0.3s; z-index: 999; text-decoration: none; box-shadow: 0 4px 16px rgba(13,110,94,0.4); }
.back-top.show { opacity: 1; visibility: visible; }
.back-top:hover { background: var(--green-dark); color: var(--white); transform: translateY(-3px); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-right { height: 380px; }
  .hero-left { padding: 60px 32px 80px; }
  .hero-trust-bar { grid-template-columns: repeat(2, 1fr); }
  .calib-types-grid { grid-template-columns: 1fr; }
  .split-content { grid-template-columns: 1fr; gap: 36px; }
  .split-content.reverse { direction: ltr; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .faq-layout { grid-template-columns: 1fr; gap: 36px; }
  .faq-sidebar { position: static; }
}
@media (max-width: 768px) {
  .main-nav { display: none; }
  .mobile-toggle { display: block; }
  .section { padding: 60px 0; }
  .hero-checks { grid-template-columns: 1fr; }
  .hero-left { padding: 48px 20px 80px; }
  .hero-badge { top: 20px; right: 16px; }
  .hero-trust-bar { grid-template-columns: 1fr 1fr; }
  .trust-bar-item { padding: 14px 16px; }
  .when-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .visual-stat-row { flex-direction: column; }
  .nav-dropdown > a i { display: inline-block; }
  .dropdown-menu-custom { position: static; box-shadow: none; border: none; border-radius: 0; padding: 0 0 0 16px; background: transparent; max-height: 220px; overflow-y: auto; overscroll-behavior: contain; }
  .nav-dropdown:hover .dropdown-menu-custom, .nav-dropdown.open .dropdown-menu-custom { display: block; }
  .dropdown-menu-custom a { white-space: normal; font-size: 13px; padding: 8px 10px; }
  .dropdown-menu-custom a { font-size: 13px; padding: 8px 10px; }
}
