/* ── DESIGN TOKENS ─────────────────────────────────────────────────────────── */
:root {
  --cyan:     #13A3C2;
  --blue:     #0E5587;
  --navy:     #0B1F3A;
  --orange:   #FF9D00;
  --red:      #FF3700;
  --black:    #1A1A1A;
  --offwhite: #F7F8FA;
  --grey:     #64748B;
  --ltgrey:   #E8ECF0;
  --white:    #FFFFFF;
}

/* ── RESET ─────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
a    { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; }
img  { max-width: 100%; height: auto; }

/* ── NAVIGATION ────────────────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 200;
  background: var(--white); border-bottom: 1px solid var(--ltgrey);
  padding: 12px 48px; display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { cursor: pointer; }
.nav-logo img { height: 30px; width: auto; }
/* wp_nav_menu outputs a custom-logo <a> wrapper — keep logo same height */
.nav-logo .custom-logo-link img { height: 30px; width: auto; }

.nav-left  { display: flex; align-items: center; gap: 48px; }
.nav-links { display: flex; gap: 32px; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--grey);
  cursor: pointer; padding: 4px 0; border-bottom: 2px solid transparent; transition: all .15s;
}
.nav-links a.active,
.nav-links a:hover,
.nav-links .current-menu-item > a,
.nav-links .current_page_item > a,
.nav-links .current-menu-ancestor > a {
  color: var(--blue); border-bottom-color: var(--blue);
}

.nav-right { display: flex; align-items: center; gap: 16px; }
.lang-btn {
  font-size: 13px; color: var(--grey); cursor: pointer;
  padding: 6px 12px; border: 1px solid var(--ltgrey); border-radius: 6px;
  background: transparent; transition: all .15s;
}
.lang-btn:hover { border-color: var(--cyan); color: var(--cyan); }

/* ── BUTTONS ───────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 10px 20px; border-radius: 8px; font-size: 14px; font-weight: 600;
  transition: all .15s; cursor: pointer; border: none;
}
.btn-primary { background: var(--orange); color: var(--white); }
.btn-primary:hover { box-shadow: 0 6px 16px rgba(255,157,0,.35); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,.6); }
.btn-outline:hover { background: rgba(255,255,255,.08); }
.btn-cyan { background: var(--cyan); color: var(--white); }
.btn-cyan:hover { box-shadow: 0 6px 16px rgba(19,163,194,.35); transform: translateY(-1px); }
.btn-blue { background: var(--blue); color: var(--white); }
.btn-blue:hover { background: #0a4670; }

/* ── HERO ──────────────────────────────────────────────────────────────────── */
.hero {
  background: var(--navy); color: var(--white);
  padding: 80px 48px 100px; position: relative; overflow: hidden;
}
.hero-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 64px; align-items: center;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 600; letter-spacing: 1.5px;
  color: rgba(255,255,255,.75); text-transform: uppercase; margin-bottom: 18px;
}
.eyebrow::before { content: ''; width: 24px; height: 2px; background: var(--cyan); }
.hero h1 { font-size: 52px; font-weight: 800; line-height: 1.05; letter-spacing: -1.5px; margin-bottom: 18px; }
.hero h1 .accent { color: var(--cyan); }
.hero p.lead { font-size: 17px; color: rgba(255,255,255,.78); margin-bottom: 28px; max-width: 480px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 24px; }
.trust-row { display: flex; gap: 20px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 6px; font-size: 12px; color: rgba(255,255,255,.65); }
.trust-item::before { content: '✓'; color: var(--cyan); font-weight: 700; }

/* ── CALCULATOR ────────────────────────────────────────────────────────────── */
.calc-card {
  background: rgba(20,35,60,.6); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.1); border-radius: 16px;
  padding: 24px; box-shadow: 0 24px 60px rgba(0,0,0,.35);
}
.calc-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.calc-brand { font-size: 13px; font-weight: 800; color: var(--white); letter-spacing: .5px; }
.calc-badge {
  font-size: 11px; color: var(--cyan); font-weight: 600;
  display: inline-flex; align-items: center; gap: 6px;
}
.calc-badge::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--cyan); box-shadow: 0 0 0 4px rgba(19,163,194,.25);
}
.calc-label {
  font-size: 11px; color: rgba(255,255,255,.6); font-weight: 600;
  letter-spacing: .8px; text-transform: uppercase; margin-bottom: 6px;
}
.calc-field {
  display: flex; align-items: center;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px; padding: 12px 16px; margin-bottom: 6px;
}
.calc-field input {
  background: transparent; border: none; outline: none;
  font-size: 22px; font-weight: 700; color: var(--white); width: 100%; font-family: inherit;
}
.calc-field input.recv { color: var(--cyan); }
.calc-ccy {
  background: rgba(255,255,255,.12); padding: 5px 10px; border-radius: 6px;
  font-size: 12px; font-weight: 600; color: rgba(255,255,255,.85); white-space: nowrap;
}
.calc-meta {
  display: flex; justify-content: space-between;
  font-size: 11px; color: rgba(255,255,255,.55); padding: 6px 2px 14px;
}
.calc-send-btn {
  width: 100%; padding: 14px; font-size: 14px; letter-spacing: 1px; border-radius: 8px;
  font-weight: 700; background: var(--cyan); color: var(--white); border: none; cursor: pointer; transition: all .15s;
}
.calc-send-btn:hover { box-shadow: 0 6px 16px rgba(19,163,194,.4); transform: translateY(-1px); }
.calc-disclaimer { font-size: 11px; color: rgba(255,255,255,.4); text-align: center; margin-top: 12px; font-style: italic; }

/* ── SLIDE STRIP ───────────────────────────────────────────────────────────── */
.slide-strip { background: var(--navy); border-top: 1px solid rgba(255,255,255,.08); }
.slide-strip-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); }
.slide-item {
  padding: 24px 28px; border-right: 1px solid rgba(255,255,255,.07);
  cursor: pointer; transition: background .2s; position: relative;
}
.slide-item:last-child { border-right: none; }
.slide-item.active { background: rgba(255,255,255,.04); }
.slide-item::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: transparent; transition: background .2s;
}
.slide-item.active::after { background: var(--cyan); }
.slide-tag {
  font-size: 10px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase;
  color: rgba(255,255,255,.4); margin-bottom: 10px;
}
.slide-item.active .slide-tag { color: var(--cyan); }
.slide-h { font-size: 20px; font-weight: 800; color: var(--white); line-height: 1.2; margin-bottom: 6px; }
.slide-h em { color: var(--cyan); font-style: normal; }
.slide-p { font-size: 12px; color: rgba(255,255,255,.5); line-height: 1.5; }

/* ── HOW IT WORKS ──────────────────────────────────────────────────────────── */
.howit { background: var(--offwhite); padding: 80px 48px; }
.howit-inner { max-width: 1200px; margin: 0 auto; }
.section-eyebrow { font-size: 12px; font-weight: 700; color: var(--cyan); letter-spacing: 1.8px; text-transform: uppercase; margin-bottom: 12px; }
.section-title { font-size: 34px; font-weight: 800; color: var(--blue); letter-spacing: -1px; margin-bottom: 10px; }
.section-sub { font-size: 15px; color: var(--grey); margin-bottom: 48px; }
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 28px; position: relative; }
.steps::before {
  content: ''; position: absolute; top: 22px; left: 8%; right: 8%;
  height: 2px; background: var(--ltgrey); z-index: 0;
}
.step { position: relative; z-index: 1; }
.step-num {
  width: 44px; height: 44px; border-radius: 50%; background: var(--white);
  border: 2px solid var(--cyan); display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: var(--blue); font-size: 16px; margin-bottom: 18px;
}
.step h5 { font-size: 15px; font-weight: 700; color: var(--blue); margin-bottom: 6px; }
.step p  { font-size: 13px; color: var(--grey); }

/* ── DARK CARD ─────────────────────────────────────────────────────────────── */
.dark-card-section { padding: 0 48px 32px; background: var(--offwhite); }
.dark-card {
  max-width: 1200px; margin: 0 auto; background: var(--navy); border-radius: 16px;
  padding: 52px; display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px;
  align-items: center; color: var(--white);
}
.dark-card h3 { font-size: 34px; font-weight: 800; letter-spacing: -1px; margin-bottom: 14px; line-height: 1.2; }
.dark-card h3 .accent { color: var(--cyan); }
.dark-card p { color: rgba(255,255,255,.72); font-size: 15px; margin-bottom: 8px; }
.island-list {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px; padding: 18px 22px;
}
.island-list-title { font-size: 11px; font-weight: 700; letter-spacing: 1.2px; color: rgba(255,255,255,.5); margin-bottom: 12px; text-transform: uppercase; }
.island-list ul { list-style: none; }
.island-list li { font-size: 14px; padding: 5px 0; display: flex; align-items: center; gap: 10px; }
.island-list li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--cyan); }
.island-list li.muted { color: rgba(255,255,255,.4); }
.island-list li.muted::before { background: rgba(255,255,255,.2); }

/* ── CTA SECTION ───────────────────────────────────────────────────────────── */
.cta-section { padding: 0 48px 80px; background: var(--offwhite); }
.cta-card {
  max-width: 1200px; margin: 0 auto; background: var(--navy);
  border-radius: 16px; padding: 52px 48px; text-align: center; color: var(--white);
}
.cta-card h3 { font-size: 30px; font-weight: 800; margin-bottom: 10px; letter-spacing: -.5px; }
.cta-card p  { color: rgba(255,255,255,.7); margin-bottom: 24px; }
.app-stores { display: flex; gap: 12px; justify-content: center; margin-bottom: 24px; flex-wrap: wrap; }
.store-btn {
  background: var(--black); color: var(--white); padding: 12px 22px; border-radius: 8px;
  font-size: 13px; font-weight: 600; display: inline-flex; align-items: center; gap: 10px;
  cursor: pointer; transition: background .15s; border: none;
}
.store-btn:hover { background: #2a2a2a; }
.qr-placeholder {
  background: rgba(255,255,255,.05); border: 2px dashed rgba(255,255,255,.2);
  border-radius: 12px; padding: 20px; display: inline-flex; flex-direction: column; align-items: center; gap: 8px; margin-top: 8px;
}
.qr-placeholder-box {
  width: 88px; height: 88px; background: rgba(255,255,255,.08); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: rgba(255,255,255,.4); text-align: center;
}
.qr-label { font-size: 11px; color: rgba(255,255,255,.5); }

/* ── PAGE HERO (inner pages) ───────────────────────────────────────────────── */
.page-hero { background: var(--navy); color: var(--white); padding: 72px 48px 80px; }
.page-hero-inner { max-width: 1200px; margin: 0 auto; }
.page-hero h1 { font-size: 46px; font-weight: 800; letter-spacing: -1.5px; margin-bottom: 14px; line-height: 1.05; }
.page-hero p  { color: rgba(255,255,255,.75); font-size: 16px; margin-top: 6px; }
.accent { color: var(--cyan); }

/* ── TABS ──────────────────────────────────────────────────────────────────── */
.tabs-bar { background: var(--white); border-bottom: 1px solid var(--ltgrey); padding: 0 48px; position: sticky; top: 54px; z-index: 100; }
.tabs-inner { max-width: 1200px; margin: 0 auto; display: flex; }
.tab {
  padding: 18px 24px; font-size: 14px; font-weight: 600; color: var(--grey);
  border-bottom: 2px solid transparent; cursor: pointer; transition: all .15s;
  display: flex; align-items: center; gap: 8px;
}
.tab.active { color: var(--blue); border-bottom-color: var(--blue); }
.tab .count { background: var(--cyan); color: var(--white); font-size: 11px; padding: 2px 8px; border-radius: 10px; }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ── ISLANDS GRID ──────────────────────────────────────────────────────────── */
.islands-section { background: var(--offwhite); padding: 56px 48px; }
.islands-inner { max-width: 1200px; margin: 0 auto; }
.islands-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-top: 28px; }
.island-card {
  background: var(--white); border: 1px solid var(--ltgrey); border-radius: 10px;
  padding: 18px 20px; display: flex; align-items: center; gap: 14px; cursor: pointer; transition: all .2s;
}
.island-card:hover { border-color: var(--cyan); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(19,163,194,.12); }
.island-icon { width: 36px; height: 36px; border-radius: 50%; background: rgba(19,163,194,.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 16px; }
.island-card h6 { font-size: 14px; font-weight: 700; color: var(--blue); margin-bottom: 2px; }
.island-card .agent-count { font-size: 12px; color: var(--grey); }

/* ── NOTIFY BLOCK ──────────────────────────────────────────────────────────── */
.notify-block { background: var(--cyan); padding: 32px 48px; }
.notify-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; align-items: center; }
.notify-text .section-eyebrow { color: rgba(255,255,255,.85); }
.notify-text h3 { font-size: 28px; font-weight: 800; color: var(--white); margin-bottom: 10px; letter-spacing: -.5px; }
.notify-text p  { color: rgba(255,255,255,.9); font-size: 15px; }
.notify-form { display: flex; gap: 10px; }
.notify-input { flex: 1; padding: 12px 16px; border-radius: 8px; border: none; background: var(--white); color: var(--black); font-size: 14px; font-family: inherit; outline: none; }
.notify-input::placeholder { color: var(--grey); }
.notify-input:focus { outline: 2px solid var(--navy); }

/* ── AGENT SEARCH & LIST ───────────────────────────────────────────────────── */
.agents-section { background: var(--white); padding: 52px 48px; }
.agents-inner { max-width: 1200px; margin: 0 auto; }
.agents-filters { display: grid; grid-template-columns: 1fr 200px 200px; gap: 12px; margin: 20px 0; }
.agents-filters input, .agents-filters select {
  border: 1px solid var(--ltgrey); border-radius: 8px; padding: 11px 16px;
  font-size: 13px; font-family: inherit; color: var(--black); background: var(--white); outline: none; transition: border-color .15s;
}
.agents-filters input:focus, .agents-filters select:focus { border-color: var(--cyan); }
.filter-chips { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; flex-wrap: wrap; }
.chip { display: inline-flex; align-items: center; gap: 6px; background: rgba(19,163,194,.12); color: var(--cyan); padding: 4px 12px; border-radius: 14px; font-size: 12px; font-weight: 500; cursor: pointer; }
.chip:hover { background: rgba(19,163,194,.2); }
.results-meta { font-size: 13px; color: var(--grey); }
.island-group { margin-bottom: 32px; }
.island-group-header { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; padding-bottom: 8px; border-bottom: 2px solid var(--cyan); }
.island-group-header h6 { font-size: 17px; font-weight: 700; color: var(--blue); }
.island-group-header .badge { background: rgba(19,163,194,.12); color: var(--cyan); font-size: 11px; padding: 2px 10px; border-radius: 10px; font-weight: 600; }
.city-group { margin-bottom: 16px; }
.city-label { font-size: 12px; font-weight: 700; color: var(--grey); text-transform: uppercase; letter-spacing: .8px; margin-bottom: 6px; padding-left: 4px; }
.agent-row {
  display: flex; align-items: flex-start; gap: 12px; background: var(--offwhite);
  border: 1px solid var(--ltgrey); border-left: 3px solid var(--cyan);
  border-radius: 8px; padding: 12px 16px; margin-bottom: 6px;
}
.agent-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--cyan); flex-shrink: 0; margin-top: 4px; }
.agent-row-info { flex: 1; }
.agent-name { font-size: 14px; font-weight: 600; color: var(--blue); }
.agent-address { font-size: 12px; color: var(--grey); margin-top: 2px; }
.agent-city-badge {
  font-size: 11px; color: var(--cyan); font-weight: 600; background: rgba(19,163,194,.1);
  padding: 2px 8px; border-radius: 10px; white-space: nowrap; margin-left: auto; align-self: flex-start; flex-shrink: 0;
}

/* ── CAREERS ───────────────────────────────────────────────────────────────── */
.careers-section { background: var(--offwhite); padding: 52px 48px 80px; }
.careers-inner { max-width: 900px; margin: 0 auto; }
.mission-card {
  background: var(--navy); color: var(--white); border-radius: 12px;
  padding: 28px 32px; margin-bottom: 44px; border-left: 4px solid var(--cyan);
}
.mission-card .eyebrow { color: var(--cyan); margin-bottom: 10px; }
.mission-card p { font-size: 15px; line-height: 1.65; color: rgba(255,255,255,.85); }
.role-card {
  background: var(--white); border: 1px solid var(--ltgrey); border-radius: 12px;
  padding: 22px 26px; margin-bottom: 14px; display: flex; align-items: center;
  justify-content: space-between; gap: 16px; transition: all .15s;
}
.role-card:hover { border-color: var(--cyan); transform: translateY(-1px); }
.role-card h5 { font-size: 17px; font-weight: 700; color: var(--blue); margin-bottom: 8px; }
.role-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.tag { font-size: 12px; font-weight: 500; padding: 4px 12px; border-radius: 12px; }
.tag-cyan   { background: rgba(19,163,194,.12); color: var(--cyan); }
.tag-orange { background: rgba(255,157,0,.14); color: var(--orange); }
.tag-green  { background: rgba(16,185,129,.14); color: #059669; }

/* ── JOB DETAIL (single-jobs.php) ──────────────────────────────────────────── */
.job-breadcrumb {
  font-size: 13px; color: rgba(255,255,255,.6); margin-bottom: 12px;
  cursor: pointer; display: inline-flex; align-items: center; gap: 6px; transition: color .15s;
}
.job-breadcrumb:hover { color: var(--cyan); }
.job-hero { background: var(--navy); color: var(--white); padding: 64px 48px; }
.job-hero-inner { max-width: 900px; margin: 0 auto; }
.job-hero h1 { font-size: 38px; font-weight: 800; letter-spacing: -1px; margin-bottom: 16px; }
.job-hero .tags { display: flex; gap: 10px; margin-bottom: 8px; flex-wrap: wrap; }
.job-hero .reports-to { font-size: 13px; color: rgba(255,255,255,.5); margin-top: 10px; }
.job-body { background: var(--offwhite); padding: 52px 48px 80px; }
.job-body-inner {
  max-width: 900px; margin: 0 auto; background: var(--white);
  border-radius: 12px; padding: 40px; border: 1px solid var(--ltgrey);
}
.job-body h2 { font-size: 20px; font-weight: 700; color: var(--blue); margin: 28px 0 12px; }
.job-body h2:first-child { margin-top: 0; }
.job-body p  { font-size: 14px; color: var(--grey); line-height: 1.7; margin-bottom: 10px; }
.job-body ul { padding-left: 20px; margin-bottom: 10px; }
.job-body li { font-size: 14px; color: var(--grey); line-height: 1.7; margin-bottom: 4px; }
.job-body a  { color: var(--cyan); }
.what-not-box { background: var(--offwhite); border-radius: 8px; padding: 16px 20px; margin-top: 8px; border-left: 3px solid var(--red); }
.what-not-box p { color: var(--grey); font-size: 13px; margin-bottom: 4px; }

/* ── CONTACT ───────────────────────────────────────────────────────────────── */
.contact-section { background: var(--offwhite); padding: 44px 48px 80px; }
.contact-inner { max-width: 1200px; margin: 0 auto; }
.contact-options { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-bottom: 28px; }
.contact-option {
  background: var(--white); border: 1px solid var(--ltgrey); border-radius: 12px;
  padding: 20px; cursor: pointer; transition: all .15s;
}
.contact-option:hover { border-color: var(--cyan); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(0,0,0,.05); }
.contact-option .opt-icon {
  width: 42px; height: 42px; border-radius: 50%; background: rgba(19,163,194,.1);
  display: flex; align-items: center; justify-content: center; margin-bottom: 14px; font-size: 20px;
}
.contact-option h5 { font-size: 15px; font-weight: 700; color: var(--blue); margin-bottom: 6px; }
.contact-option p  { font-size: 13px; color: var(--grey); margin-bottom: 12px; }
.link-cyan { color: var(--cyan); font-size: 13px; font-weight: 600; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.contact-form, .faq-card { background: var(--white); border: 1px solid var(--ltgrey); border-radius: 12px; padding: 28px; }
.highlight-section { box-shadow: 0 0 0 2px var(--orange); animation: highlightPulse 2s ease forwards; }
@keyframes highlightPulse {
  0%   { box-shadow: 0 0 0 2px var(--orange); }
  70%  { box-shadow: 0 0 0 2px var(--orange); }
  100% { box-shadow: 0 0 0 0 transparent; }
}
.contact-form h4, .faq-card h4 { font-size: 18px; font-weight: 700; color: var(--blue); margin-bottom: 6px; }
.contact-form > p { font-size: 13px; color: var(--grey); margin-bottom: 18px; }

/* ── FORM ──────────────────────────────────────────────────────────────────── */
.form-row { margin-bottom: 14px; position: relative; }
.form-row label { display: block; font-size: 12px; font-weight: 600; color: var(--blue); margin-bottom: 6px; }
.form-row input, .form-row textarea {
  width: 100%; padding: 11px 14px; border-radius: 8px; border: 1px solid var(--ltgrey);
  font-family: inherit; font-size: 13px; color: var(--black); background: var(--white); outline: none; transition: border-color .15s;
}
.form-row input:focus, .form-row textarea:focus { border-color: var(--cyan); }
.form-row input.error, .form-row textarea.error { border-color: var(--red); }
.form-error { font-size: 11px; color: var(--red); margin-top: 4px; display: none; }
.form-error.show { display: block; }
.form-row textarea { resize: vertical; min-height: 90px; }
.form-consent { font-size: 12px; color: var(--grey); margin: 14px 0; line-height: 1.5; display: flex; align-items: flex-start; gap: 8px; }
.form-consent input[type=checkbox] { margin-top: 2px; flex-shrink: 0; }
.form-success {
  display: none; background: rgba(19,163,194,.08); border: 1px solid var(--cyan);
  border-radius: 8px; padding: 16px; text-align: center; color: var(--blue); font-weight: 600; margin-top: 12px;
}
.form-success.show { display: block; }

/* ── FAQ ───────────────────────────────────────────────────────────────────── */
.faq-item { border-bottom: 1px solid var(--ltgrey); }
.faq-item:last-child { border-bottom: none; }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 14px; font-weight: 600; color: var(--blue); cursor: pointer; padding: 14px 0; gap: 12px;
}
.faq-q .icon {
  width: 22px; height: 22px; border-radius: 50%; background: rgba(19,163,194,.12);
  color: var(--cyan); display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0; transition: transform .2s;
}
.faq-a { font-size: 13px; color: var(--grey); line-height: 1.6; padding: 0 0 14px; display: none; }
.faq-a ul { padding-left: 18px; margin: 8px 0; }
.faq-a li { margin-bottom: 4px; }
.faq-item.open .faq-q .icon { transform: rotate(45deg); }
.faq-item.open .faq-a { display: block; }

/* ── FOOTER ────────────────────────────────────────────────────────────────── */
.footer { background: var(--navy); color: var(--white); padding: 60px 48px 28px; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 48px; }
.footer-logo { margin-bottom: 16px; }
.footer-logo img, .footer-logo .custom-logo-link img { height: 28px; width: auto; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,.6); margin-bottom: 20px; max-width: 260px; line-height: 1.6; }
.footer-stores { display: flex; gap: 8px; margin-bottom: 16px; flex-wrap: wrap; }
.footer-store {
  background: transparent; border: 1px solid rgba(255,255,255,.2); padding: 8px 14px;
  border-radius: 6px; font-size: 12px; font-weight: 500; color: var(--white); cursor: pointer; transition: all .15s;
}
.footer-store:hover { border-color: var(--cyan); color: var(--cyan); }
.footer-store-note { font-size: 11px; color: rgba(255,255,255,.3); margin-bottom: 16px; font-style: italic; }
.footer-social { display: flex; gap: 8px; }
.social-btn {
  width: 32px; height: 32px; border-radius: 6px; border: 1px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 600; color: var(--white); transition: all .15s; cursor: pointer;
}
.social-btn:hover { background: rgba(255,255,255,.08); }
.footer-col h5 { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; color: var(--cyan); margin-bottom: 14px; text-transform: uppercase; }
.footer-col ul, .footer-col ul.footer-menu { list-style: none; }
.footer-col li,
.footer-col ul.footer-menu li { margin-bottom: 10px; }
.footer-col li,
.footer-col ul.footer-menu li a {
  font-size: 13px; color: rgba(255,255,255,.7); cursor: pointer; transition: color .15s; display: block;
}
.footer-col li:hover,
.footer-col ul.footer-menu li a:hover { color: var(--cyan); }
.footer-bottom {
  max-width: 1200px; margin: 36px auto 0; padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.1); font-size: 11px; color: rgba(255,255,255,.4); line-height: 1.7;
}
