/* ═══════════════════════════════════════
   TEC SHARED STYLESHEET v1.0
   The Enclosure Company (International) Ltd
═══════════════════════════════════════ */

:root {
  --navy:        #0A1628;
  --navy-mid:    #0F2040;
  --cobalt:      #1B3A6B;
  --cobalt-light:#2350A0;
  --orange:      #E8401C;
  --orange-light:#FF5533;
  --gold:        #C9922A;
  --gold-light:  #F0B830;
  --green:       #1A7A4A;
  --green-light: #22A060;
  --white:       #FFFFFF;
  --off-white:   #F4F6FA;
  --grey-light:  #DDE3EF;
  --grey-mid:    #7A8499;
  --grey-dark:   #2A3040;
  --text-body:   #1E2535;
  --font-head:   'Barlow Condensed', sans-serif;
  --font-semi:   'Barlow Semi Condensed', sans-serif;
  --font-body:   'Barlow', sans-serif;
  --radius:      3px;
  --shadow:      0 4px 24px rgba(0,0,0,0.12);
  --shadow-lg:   0 8px 48px rgba(0,0,0,0.18);
  --transition:  all 0.22s ease;
}

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

.container  { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 860px; margin: 0 auto; padding: 0 24px; }

/* ── TOP BAR ─────────────────────────── */
.topbar { background: var(--navy); padding: 9px 0; border-bottom: 2px solid var(--orange); }
.topbar__inner { display: flex; align-items: center; justify-content: space-between; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.topbar__left { display: flex; align-items: center; gap: 24px; }
.topbar__item { font-family: var(--font-semi); font-size: 12px; font-weight: 600; color: var(--grey-light); letter-spacing: 0.5px; display: flex; align-items: center; gap: 6px; }
.topbar__phone { font-family: var(--font-head); font-size: 15px; font-weight: 700; color: var(--gold-light); letter-spacing: 1px; }
.topbar__phone a { color: inherit; transition: var(--transition); }
.topbar__phone a:hover { color: var(--white); }

/* ── HEADER ──────────────────────────── */
.header { background: var(--white); padding: 12px 0; box-shadow: 0 2px 12px rgba(0,0,0,0.08); position: sticky; top: 0; z-index: 100; }
.header__inner { display: flex; align-items: center; justify-content: space-between; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.header__logo-img { height: 52px; width: auto; }
.header__nav { display: flex; align-items: center; gap: 4px; }
.header__nav a { font-family: var(--font-semi); font-size: 13px; font-weight: 600; color: var(--text-body); padding: 8px 14px; border-radius: var(--radius); transition: var(--transition); }
.header__nav a:hover, .header__nav a.active { color: var(--orange); background: rgba(232,64,28,0.06); }
.header__cta { font-family: var(--font-semi); font-size: 13px; font-weight: 700; background: var(--orange); color: var(--white) !important; padding: 10px 22px; border-radius: var(--radius); transition: var(--transition); border: 2px solid var(--orange); }
.header__cta:hover { background: var(--orange-light) !important; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(232,64,28,0.3); }

/* ── BREADCRUMB ──────────────────────── */
.breadcrumb { background: var(--off-white); border-bottom: 1px solid var(--grey-light); padding: 11px 0; }
.breadcrumb__list { display: flex; align-items: center; gap: 8px; }
.breadcrumb__list li { font-size: 12.5px; color: var(--grey-mid); font-family: var(--font-semi); font-weight: 500; }
.breadcrumb__list li a { color: var(--cobalt); }
.breadcrumb__list li a:hover { color: var(--orange); }
.breadcrumb__list li.active { color: var(--text-body); font-weight: 600; }

/* ── BUTTONS ─────────────────────────── */
.btn { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-semi); font-weight: 700; border-radius: var(--radius); transition: var(--transition); cursor: pointer; border: 2px solid transparent; text-decoration: none; white-space: nowrap; }
.btn--primary { background: var(--orange); color: var(--white); padding: 13px 28px; font-size: 14px; border-color: var(--orange); }
.btn--primary:hover { background: var(--orange-light); border-color: var(--orange-light); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(232,64,28,0.35); }
.btn--secondary { background: var(--cobalt); color: var(--white); padding: 13px 28px; font-size: 14px; border-color: var(--cobalt); }
.btn--secondary:hover { background: var(--cobalt-light); transform: translateY(-2px); }
.btn--outline { background: transparent; color: var(--cobalt); padding: 13px 28px; font-size: 14px; border-color: var(--cobalt); }
.btn--outline:hover { background: var(--cobalt); color: var(--white); }
.btn--outline-white { background: transparent; color: var(--white); padding: 13px 28px; font-size: 14px; border-color: rgba(255,255,255,0.4); }
.btn--outline-white:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); }
.btn--gold { background: var(--gold); color: var(--navy); padding: 13px 28px; font-size: 14px; border-color: var(--gold); }
.btn--gold:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn--green { background: var(--green); color: var(--white); padding: 13px 28px; font-size: 14px; border-color: var(--green); }
.btn--green:hover { background: var(--green-light); transform: translateY(-2px); }

/* ── SECTION ATOMS ───────────────────── */
.section-tag { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-semi); font-size: 11px; font-weight: 700; color: var(--orange); letter-spacing: 3px; text-transform: uppercase; margin-bottom: 10px; }
.section-tag::before { content: ''; width: 20px; height: 2px; background: var(--orange); }
.section-title { font-family: var(--font-head); font-size: clamp(30px, 4vw, 46px); font-weight: 900; color: var(--navy); text-transform: uppercase; line-height: 1; letter-spacing: -0.5px; }
.section-title em { color: var(--orange); font-style: normal; }
.section-title--white { color: var(--white); }
.section-subtitle { font-size: 15.5px; color: var(--grey-mid); margin-top: 12px; line-height: 1.65; }
.divider { width: 48px; height: 4px; background: var(--orange); margin: 14px 0; border-radius: 2px; }
.divider--center { margin: 14px auto; }
.divider--gold { background: var(--gold); }
.section-head { margin-bottom: 44px; }
.section-head--center { text-align: center; }
.section-head--center .section-tag { justify-content: center; }
.section-head--center .section-tag::before { display: none; }
.section-head--center .section-subtitle { max-width: 620px; margin-left: auto; margin-right: auto; }

/* ── TRUST BAR ───────────────────────── */
.trust-bar { background: var(--grey-dark); border-bottom: 3px solid var(--orange); }
.trust-bar__inner { display: flex; align-items: stretch; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.trust-item { flex: 1; padding: 18px 14px; display: flex; align-items: center; gap: 10px; border-right: 1px solid rgba(255,255,255,0.08); }
.trust-item:last-child { border-right: none; }
.trust-item__icon { width: 36px; height: 36px; flex-shrink: 0; background: rgba(232,64,28,0.15); border: 1px solid rgba(232,64,28,0.3); border-radius: 3px; display: flex; align-items: center; justify-content: center; color: var(--orange); font-size: 16px; }
.trust-item__num { font-family: var(--font-head); font-size: 22px; font-weight: 900; color: var(--white); line-height: 1; }
.trust-item__label { font-family: var(--font-semi); font-size: 10px; font-weight: 600; color: rgba(200,210,230,0.65); letter-spacing: 0.8px; text-transform: uppercase; line-height: 1.3; margin-top: 1px; }

/* ── HERO ────────────────────────────── */
.hero { background: var(--navy); position: relative; overflow: hidden; padding: 64px 0 56px; }
.hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(27,58,107,0.9) 0%, rgba(10,22,40,0.95) 60%), repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(255,255,255,0.015) 40px, rgba(255,255,255,0.015) 41px); }
.hero::after { content: ''; position: absolute; right: -80px; top: -80px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(232,64,28,0.1) 0%, transparent 65%); pointer-events: none; }
.hero__inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 400px; gap: 56px; align-items: center; }
.hero__badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(232,64,28,0.15); border: 1px solid rgba(232,64,28,0.4); color: #FF7755; font-family: var(--font-semi); font-size: 11px; font-weight: 700; letter-spacing: 2.5px; padding: 5px 12px; text-transform: uppercase; margin-bottom: 18px; border-radius: 2px; }
.hero__badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--orange); animation: pulse-dot 2s infinite; }
@keyframes pulse-dot { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(0.8)} }
.hero__title { font-family: var(--font-head); font-size: clamp(44px, 5.5vw, 70px); font-weight: 900; line-height: 0.92; color: var(--white); text-transform: uppercase; letter-spacing: -1px; margin-bottom: 6px; }
.hero__title em { color: var(--orange); font-style: normal; }
.hero__subtitle { font-family: var(--font-head); font-size: clamp(18px, 2.5vw, 26px); font-weight: 600; color: var(--gold-light); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 18px; }
.hero__desc { font-size: 15.5px; line-height: 1.68; color: rgba(220,228,244,0.85); max-width: 540px; margin-bottom: 28px; }
.hero__desc strong { color: var(--white); }
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }
.hero__chips { display: flex; flex-wrap: wrap; gap: 7px; }
.hero__chip { font-family: var(--font-semi); font-size: 10.5px; font-weight: 700; color: var(--grey-light); background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); padding: 5px 11px; border-radius: 2px; letter-spacing: 1px; text-transform: uppercase; }
.hero__chip--orange { color: var(--orange-light); background: rgba(232,64,28,0.12); border-color: rgba(232,64,28,0.3); }

/* ── QUOTE FORM CARD ─────────────────── */
.form-card { background: var(--white); border-radius: 4px; padding: 28px 26px; box-shadow: var(--shadow-lg); position: relative; }
.form-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--orange); border-radius: 4px 4px 0 0; }
.form-card__title { font-family: var(--font-head); font-size: 20px; font-weight: 800; color: var(--navy); text-transform: uppercase; margin-bottom: 3px; }
.form-card__sub { font-size: 12.5px; color: var(--grey-mid); margin-bottom: 18px; }
.form-group { margin-bottom: 12px; }
.form-group label { display: block; font-size: 11.5px; font-weight: 700; color: var(--navy); margin-bottom: 4px; font-family: var(--font-semi); letter-spacing: 0.5px; text-transform: uppercase; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 10px 13px; border: 1.5px solid var(--grey-light); border-radius: var(--radius); font-family: var(--font-body); font-size: 13.5px; color: var(--text-body); background: var(--off-white); transition: var(--transition); appearance: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--cobalt-light); background: var(--white); box-shadow: 0 0 0 3px rgba(27,58,107,0.1); }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237A8499' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 32px; }
.form-submit { width: 100%; padding: 13px; background: var(--orange); color: var(--white); border: none; border-radius: var(--radius); font-family: var(--font-semi); font-size: 14px; font-weight: 700; cursor: pointer; transition: var(--transition); text-transform: uppercase; letter-spacing: 1px; }
.form-submit:hover { background: var(--orange-light); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(232,64,28,0.3); }
.form-card__phone { text-align: center; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--grey-light); }
.form-card__phone a { font-family: var(--font-head); font-size: 20px; font-weight: 800; color: var(--navy); letter-spacing: 1px; }
.form-card__phone span { display: block; font-size: 10.5px; color: var(--grey-mid); font-family: var(--font-semi); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-top: 2px; }
.form-trust { display: flex; align-items: center; gap: 7px; margin-top: 12px; }
.form-trust span { font-size: 11px; color: var(--grey-mid); font-family: var(--font-semi); font-weight: 600; }

/* ── CONTENT SECTIONS ────────────────── */
.section { padding: 72px 0; }
.section--grey { background: var(--off-white); }
.section--dark { background: var(--navy); }
.section--cobalt { background: var(--cobalt); }

/* ── FEATURE GRID ────────────────────── */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-card { padding: 26px 22px; border: 1.5px solid var(--grey-light); border-radius: 4px; transition: var(--transition); }
.feature-card:hover { border-color: var(--orange); box-shadow: var(--shadow); transform: translateY(-2px); }
.feature-card--dark { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.1); }
.feature-card--dark:hover { border-color: var(--orange); }
.feature-card__icon { font-size: 28px; margin-bottom: 12px; }
.feature-card__title { font-family: var(--font-semi); font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.feature-card__title--white { color: var(--white); }
.feature-card__desc { font-size: 13.5px; color: var(--grey-mid); line-height: 1.6; }
.feature-card__desc--white { color: rgba(200,216,244,0.8); }

/* ── SPEC TABLE ──────────────────────── */
.spec-table { width: 100%; border-collapse: collapse; margin: 24px 0; }
.spec-table th { background: var(--navy); color: var(--white); font-family: var(--font-semi); font-size: 12px; font-weight: 700; padding: 10px 14px; text-align: left; letter-spacing: 0.5px; }
.spec-table td { padding: 10px 14px; font-size: 13.5px; border-bottom: 1px solid var(--grey-light); vertical-align: top; }
.spec-table tr:nth-child(even) td { background: var(--off-white); }
.spec-table__key { font-weight: 600; color: var(--navy); width: 35%; }
.check { color: var(--green); font-weight: 700; }
.cross { color: #999; }

/* ── SPEC TAGS ───────────────────────── */
.spec-tags { display: flex; flex-wrap: wrap; gap: 7px; margin: 16px 0; }
.spec-tag { font-family: var(--font-semi); font-size: 10.5px; font-weight: 700; background: var(--off-white); color: var(--cobalt); padding: 5px 10px; border-radius: 2px; letter-spacing: 0.5px; border: 1px solid var(--grey-light); }
.spec-tag--orange { background: rgba(232,64,28,0.08); color: var(--orange); border-color: rgba(232,64,28,0.2); }
.spec-tag--green { background: rgba(26,122,74,0.08); color: var(--green); border-color: rgba(26,122,74,0.2); }
.spec-tag--gold { background: rgba(201,146,42,0.1); color: var(--gold); border-color: rgba(201,146,42,0.25); }

/* ── INFO BOX ────────────────────────── */
.info-box { padding: 20px 22px; border-radius: 4px; margin: 20px 0; }
.info-box--blue { background: rgba(27,58,107,0.07); border-left: 4px solid var(--cobalt); }
.info-box--orange { background: rgba(232,64,28,0.07); border-left: 4px solid var(--orange); }
.info-box--green { background: rgba(26,122,74,0.07); border-left: 4px solid var(--green); }
.info-box--dark { background: var(--cobalt); }
.info-box--dark p { color: rgba(210,224,248,0.9); }
.info-box p { font-size: 14px; line-height: 1.7; color: var(--text-body); }
.info-box strong { color: var(--navy); }
.info-box--dark strong { color: var(--gold-light); }

/* ── TWO-COL LAYOUT ──────────────────── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.two-col--center { align-items: center; }
.two-col--reverse { direction: rtl; }
.two-col--reverse > * { direction: ltr; }

/* ── ICON LIST ───────────────────────── */
.icon-list { display: flex; flex-direction: column; gap: 12px; }
.icon-list__item { display: flex; align-items: flex-start; gap: 12px; }
.icon-list__icon { width: 32px; height: 32px; flex-shrink: 0; background: rgba(232,64,28,0.1); border-radius: 3px; display: flex; align-items: center; justify-content: center; font-size: 15px; }
.icon-list__text { font-size: 14px; line-height: 1.6; color: var(--text-body); }
.icon-list__text strong { color: var(--navy); }
.icon-list--white .icon-list__icon { background: rgba(255,255,255,0.1); }
.icon-list--white .icon-list__text { color: rgba(210,224,248,0.9); }
.icon-list--white .icon-list__text strong { color: var(--white); }

/* ── RANGE GRID ──────────────────────── */
.range-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.range-card { border: 1.5px solid var(--grey-light); border-radius: 4px; overflow: hidden; transition: var(--transition); }
.range-card:hover { border-color: var(--cobalt); transform: translateY(-3px); box-shadow: var(--shadow); }
.range-card__img { background: var(--navy); height: 160px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.range-card__img-bg { position: absolute; inset: 0; }
.range-card__img-label { position: absolute; bottom: 10px; left: 12px; font-family: var(--font-head); font-size: 26px; font-weight: 900; color: rgba(255,255,255,0.18); text-transform: uppercase; line-height: 1; }
.range-card__body { padding: 20px 18px; }
.range-card__title { font-family: var(--font-head); font-size: 18px; font-weight: 800; color: var(--navy); text-transform: uppercase; margin-bottom: 8px; }
.range-card__desc { font-size: 13px; color: var(--text-body); line-height: 1.6; margin-bottom: 14px; }
.range-card__link { font-family: var(--font-semi); font-size: 13px; font-weight: 700; color: var(--cobalt); display: flex; align-items: center; gap: 6px; transition: var(--transition); }
.range-card:hover .range-card__link { color: var(--orange); gap: 10px; }

/* ── APP GRID ────────────────────────── */
.app-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.app-card { background: var(--white); border-radius: 4px; padding: 24px 20px; border-top: 4px solid var(--cobalt); transition: var(--transition); }
.app-card:hover { border-top-color: var(--orange); transform: translateY(-3px); box-shadow: var(--shadow); }
.app-card--dark { background: rgba(255,255,255,0.05); border-top-color: var(--orange); }
.app-card--dark:hover { border-top-color: var(--gold); }
.app-card__icon { font-size: 28px; margin-bottom: 12px; }
.app-card__title { font-family: var(--font-head); font-size: 17px; font-weight: 800; color: var(--navy); text-transform: uppercase; margin-bottom: 8px; }
.app-card__title--white { color: var(--white); }
.app-card__desc { font-size: 13px; color: var(--grey-mid); line-height: 1.6; }
.app-card__desc--white { color: rgba(200,216,244,0.75); }

/* ── FAQ ─────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: var(--white); border: 1.5px solid var(--grey-light); border-radius: 4px; overflow: hidden; transition: var(--transition); }
.faq-item.open { border-color: var(--cobalt); }
.faq-question { display: flex; align-items: center; justify-content: space-between; padding: 18px 22px; cursor: pointer; user-select: none; font-family: var(--font-semi); font-size: 14.5px; font-weight: 700; color: var(--navy); transition: var(--transition); gap: 12px; }
.faq-question:hover { color: var(--cobalt); }
.faq-icon { width: 26px; height: 26px; flex-shrink: 0; background: var(--off-white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; color: var(--cobalt); transition: var(--transition); line-height: 1; }
.faq-item.open .faq-icon { background: var(--cobalt); color: var(--white); transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-item.open .faq-answer { max-height: 500px; }
.faq-answer__inner { padding: 0 22px 20px; font-size: 14px; color: var(--text-body); line-height: 1.75; border-top: 1px solid var(--grey-light); padding-top: 16px; }

/* ── CTA STRIP ───────────────────────── */
.cta-strip { background: var(--navy); padding: 64px 0; text-align: center; position: relative; overflow: hidden; }
.cta-strip::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(232,64,28,0.1) 0%, transparent 70%); }
.cta-strip__inner { position: relative; z-index: 2; }
.cta-strip__title { font-family: var(--font-head); font-size: clamp(30px,4vw,52px); font-weight: 900; color: var(--white); text-transform: uppercase; line-height: 0.95; margin-bottom: 14px; }
.cta-strip__title em { color: var(--orange); font-style: normal; }
.cta-strip__desc { font-size: 15px; color: rgba(200,216,244,0.8); max-width: 540px; margin: 0 auto 32px; line-height: 1.65; }
.cta-strip__actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.cta-strip__phone { font-family: var(--font-head); font-size: 28px; font-weight: 800; color: var(--gold-light); letter-spacing: 1px; }
.cta-strip__phone small { display: block; font-family: var(--font-semi); font-size: 11px; color: rgba(180,196,224,0.55); letter-spacing: 2px; text-transform: uppercase; margin-top: 3px; }
.cta-strip__phone a { color: inherit; }

/* ── FOOTER ──────────────────────────── */
.footer { background: var(--grey-dark); padding: 40px 0 24px; border-top: 1px solid rgba(255,255,255,0.08); }
.footer__inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 28px; }
.footer__logo-img { height: 44px; width: auto; margin-bottom: 12px; filter: brightness(0) invert(1); opacity: 0.85; }
.footer__desc { font-size: 12.5px; color: rgba(180,196,224,0.6); line-height: 1.65; margin-bottom: 14px; }
.footer__cert { display: flex; flex-wrap: wrap; gap: 5px; }
.footer__cert-tag { font-family: var(--font-semi); font-size: 9.5px; font-weight: 700; background: rgba(255,255,255,0.07); color: rgba(200,216,244,0.7); padding: 3px 7px; letter-spacing: 0.5px; }
.footer__col-title { font-family: var(--font-semi); font-size: 11px; font-weight: 700; color: var(--white); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 14px; }
.footer__links { display: flex; flex-direction: column; gap: 7px; }
.footer__links a { font-size: 12.5px; color: rgba(180,196,224,0.6); transition: var(--transition); }
.footer__links a:hover { color: var(--white); }
.footer__bottom { padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.08); display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer__copy { font-size: 11.5px; color: rgba(160,176,208,0.45); }
.footer__legal { display: flex; gap: 16px; }
.footer__legal a { font-size: 11.5px; color: rgba(160,176,208,0.45); }
.footer__legal a:hover { color: rgba(255,255,255,0.6); }

/* ── STICKY MOBILE CTA ───────────────── */
.sticky-cta { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 200; background: var(--navy); border-top: 2px solid var(--orange); padding: 10px 14px; }
.sticky-cta__inner { display: flex; gap: 10px; }
.sticky-cta .btn { flex: 1; justify-content: center; padding: 12px; font-size: 13px; }

/* ── FADE-IN ─────────────────────────── */
.fade-in { opacity: 0; transform: translateY(18px); transition: opacity 0.45s ease, transform 0.45s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ──────────────────────── */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: 36px; }
  .form-card { max-width: 480px; }
  .two-col { grid-template-columns: 1fr; gap: 36px; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 768px) {
  .topbar__left { display: none; }
  .header__nav { display: none; }
  .header__cta { display: none; }
  .trust-bar__inner { flex-wrap: wrap; }
  .trust-item { min-width: 50%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .range-grid { grid-template-columns: 1fr; }
  .app-grid { grid-template-columns: 1fr 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .sticky-cta { display: block; }
  body { padding-bottom: 72px; }
  .cta-strip__actions { flex-direction: column; align-items: center; }
}
@media (max-width: 480px) {
  .app-grid { grid-template-columns: 1fr; }
}

/* ── SHARED JS ───────────────────────── */
