/* ==========================================================================
   Visas.pt — common.css
   Truly shared styles: present identically across ALL 19 pages.
   Load this first on every page.
   ========================================================================== */

/* --- RESET --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* --- DESIGN TOKENS --- */
:root {
  --navy:      #0F2A44;
  --navy2:     #1a3d5e;
  --green:    #046A38;
  --orange: #DC2626;
  --pink: #BE185D;
  --green-l:  #058A4A;
  --teal:      #1E8C78;
  --teal-l:    #25AA92;
  --gold:      #D4A634;
  --gold-l:    #F5C87A;
  --white:     #FFFFFF;
  --cream:     #FAF7F3;
  --warm:      #F5EFE6;
  --text:      #16212E;
  --muted:     #637282;
  --border:    #E8E2DA;
  --radius:    14px;
  --shadow:    0 4px 20px rgba(15,42,68,.09);
  --shadow-lg: 0 16px 56px rgba(15,42,68,.18);
}
ol, ul, dl {
    margin-top: 0;
    margin-bottom: unset;
    padding-left: 0;
}
footer ol, footer ul {
   padding-left: 0;
}
.ul-ml-2 {
  margin-left: 2rem;
}

/* --- BASE --- */
html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* --- LAYOUT --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.preFillField{opacity:0;height:0;width:0;z-index:-1000;position:absolute}
/* ============================================================
TYPOGRAPHY HELPERS
============================================================ */

h1, h2, h3, h4, h5, h6 {
  margin-top: 10px;
  line-height: 1.2;
}

h2.sh {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.8vw, 44px);
  font-weight: 700;
  line-height: 1.18;
  color: var(--navy);
  margin-bottom: 16px;
}
h2.sh.white { color: var(--white); }

.subtext {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 40px;
  font-weight: 400;
}
.subtext.white { color: rgba(255,255,255,.92); }

.label {
  display: inline-block;
  font-size: 13px; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  margin-bottom: 14px; padding: 5px 14px; border-radius: 100px;
}
.eu-family-member .label-orange { color: var(--pink); background: rgba(106, 4, 43, 0.1); }
.label-orange { color: var(--green); background: rgba(4,106,56,.1); }
.label-teal   { color: var(--teal);   background: rgba(30,140,120,.1); }
.label-gold   { color: var(--gold);   background: rgba(212,166,52,.12); }
.label-white  { color: #fff; background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.3); }

.service-cards .old-price {
    font-size: 17px;
}
.old-price {
    font-size: 20px;
    color: red;
    text-decoration: none;
    position: relative;
    margin-right: 5px;
}
.old-price:after {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 1px;
    background: red;
    transform: rotate(-12deg);
}
/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: 'Outfit', sans-serif; font-size: 16px; font-weight: 600;
  padding: 14px 28px; border-radius: 9px; border: none; cursor: pointer;
  text-decoration: none; transition: all .2s; 
  position: relative; overflow: hidden;
}
.btn::after { content: ''; position: absolute; inset: 0; background: rgba(255,255,255,0); transition: background .2s; }
.btn:hover::after { background: rgba(255,255,255,.12); }

.btn-orange { background: var(--green); color: #fff; box-shadow: 0 4px 20px rgba(4,106,56,.38); }
.btn-orange:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(4,106,56,.5); }
.btn-teal   { background: var(--teal);   color: #fff; box-shadow: 0 4px 20px rgba(30,140,120,.35); }
.btn-teal:hover   { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(30,140,120,.45); }
.btn-navy   { background: var(--navy);   color: #fff; }
.btn-navy:hover   { transform: translateY(-2px); background: var(--navy2); }
.btn-gold   { background: var(--gold);   color: #fff; box-shadow: 0 4px 20px rgba(212,166,52,.5); }
.btn-gold:hover   { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(212,166,52,.6); }
.btn-ghost-w { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.4); }
.btn-ghost-w:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.btn-ghost-d { background: transparent; color: var(--navy); border: 1.5px solid var(--border); }
.btn-ghost-d:hover { border-color: var(--navy); background: var(--cream); }
.btn-white { background: #fff; color: var(--green); box-shadow: 0 4px 20px rgba(0,0,0,.15); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,.2); }
.btn-outline { background: transparent; color: var(--green); border: 1.5px solid var(--green); }
.btn-outline:hover { background: var(--green); color: var(--white); }
.btn-disabled { opacity: .45; cursor: not-allowed; pointer-events: none; }
.btn-sm { padding: 10px 20px; font-size: 15px; }
.btn-md { padding: 13px 28px; font-size: 15px; }
.btn-lg { padding: 16px 36px; font-size: 16px; }

/* ============================================================
   TOPBAR
   ============================================================ */

.topbar-strip { background: var(--navy); border-bottom: 1px solid rgba(255,255,255,.08); }
.tb-inner { display: flex; align-items: center; justify-content: space-between; height: 38px; }
.tb-left  { display: flex; align-items: center; gap: 20px; }
.tb-right { display: flex; align-items: center; gap: 2px; }
.tb-info  { font-size: 12px; color: rgba(255,255,255,.72); text-decoration: none; display: flex; align-items: center; gap: 5px; transition: color .15s; }
.tb-info:hover { color: #fff; }
.tb-sep { width: 1px; height: 14px; background: rgba(255,255,255,.2); margin: 0 4px; }
.tb-link { font-size: 12px; color: rgba(255,255,255,.85); text-decoration: none; display: flex; align-items: center; gap: 5px; padding: 5px 8px; border-radius: 5px; transition: background .15s; font-weight: 600; white-space: nowrap; }
.tb-link:hover { background: rgba(255,255,255,.1); color: #fff; }
.tb-cart-badge { background: var(--green); color: #fff; font-size: 10px; font-weight: 700; min-width: 16px; height: 16px; border-radius: 8px; display: flex; align-items: center; justify-content: center; padding: 0 3px; margin-left: 2px; }

.tb-switcher { position: relative; }
.tb-sw-btn { background: none; border: none; color: rgba(255,255,255,.85); font-family: 'Outfit', sans-serif; font-size: 12px; font-weight: 600; cursor: pointer; display: flex; align-items: center; gap: 4px; padding: 5px 8px; border-radius: 5px; transition: background .15s; white-space: nowrap; }
.tb-sw-btn:hover { background: rgba(255,255,255,.1); color: #fff; }
.tb-sw-menu { display: none; position: absolute; top: calc(100% + 6px); right: 0; background: #fff; border-radius: 10px; box-shadow: 0 8px 32px rgba(0,0,0,.18); min-width: 160px; overflow: hidden; z-index: 400; border: 1px solid var(--border); }
.tb-switcher.open .tb-sw-menu { display: block; }
.tb-sw-item { padding: 9px 14px; font-size: 13px; color: var(--text); cursor: pointer; transition: background .15s; display: flex; align-items: center; gap: 8px; }
.tb-sw-item:hover { background: var(--cream); }
.tb-sw-item.active { color: var(--green); font-weight: 600; }

/* ============================================================
   NAVBAR
   ============================================================ */

#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(255,255,255,.97); backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent; transition: border-color .3s, box-shadow .3s;
}
#navbar.scrolled { border-color: var(--border); box-shadow: 0 2px 24px rgba(15,42,68,.07); }

.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.nav-logo { display: flex; flex-direction: column; align-items: center; text-decoration: none; }
.nav-logo img { height: 40px; width: auto; display: block; }
.nav-tagline { display: block; font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-top: 3px; }
.nav-logo-fb { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: var(--navy); text-decoration: none; display: none; }
.nav-logo-fb span { color: var(--green); }

.nav-links { display: flex; align-items: center; gap: 30px; list-style: none; }
.nav-links a { font-size: 15px; font-weight: 500; color: var(--text); text-decoration: none; transition: color .2s; }
.nav-links a:hover,
.nav-links a.active { color: var(--green); }
.nav-links a.active { font-weight: 600; }

/* Dropdown */
.nav-dd { position: relative; }
.nav-dd-toggle { display: inline-flex; align-items: center; gap: 5px; cursor: pointer; }
.nav-dd-menu { position: absolute; top: calc(100% + 12px); left: 0; min-width: 250px; background: #fff; border: 1px solid var(--border); border-radius: 12px; box-shadow: var(--shadow-lg); padding: 8px; opacity: 0; visibility: hidden; transform: translateY(-6px); transition: opacity .18s ease, transform .18s ease, visibility .18s; z-index: 300; }
.nav-dd-menu::before { content: ''; position: absolute; top: -12px; left: 0; right: 0; height: 12px; }
.nav-dd:hover .nav-dd-menu,
.nav-dd:focus-within .nav-dd-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dd-menu a { display: block; padding: 9px 12px; border-radius: 8px; font-size: 14px; font-weight: 500; color: var(--text); white-space: nowrap; transition: background .15s, color .15s; }
.nav-dd-menu a:hover { background: var(--cream); color: var(--green); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: all .3s; }

/* Mobile menu */
.mobile-menu { display: none; flex-direction: column; background: var(--white); border-top: 1px solid var(--border); padding: 16px 28px 24px; height: calc(100vh - 90px); overflow-y: auto; }
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 15px; font-weight: 500; color: var(--text); text-decoration: none; padding: 13px 0; border-bottom: 1px solid var(--border); }
.mobile-menu a.mm-sub { padding-left: 16px; font-size: 14px; color: var(--muted); }
.mobile-menu .btn { margin-top: 16px; justify-content: center; }

/* ============================================================
   INNER-PAGE HERO BANNER
   (#hero used on all pages except index and blog which have
    their own hero class)
   ============================================================ */

#hero {
  position: relative; overflow: hidden;
  padding: 120px 28px 52px;
}
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(15,42,68,.72) 0%, rgba(26,61,94,.62) 100%); }
#hero::after {
  content: ''; position: absolute; right: -60px; top: -60px;
  width: 360px; height: 360px; border-radius: 50%;
  background: rgba(255,255,255,.03); pointer-events: none;
}
.hero-content { position: relative; z-index: 1; max-width: 900px; }

/* Page title + breadcrumb (inside #hero on inner pages) */
.page-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3.8vw, 35px); font-weight: 700;
  color: #fff; line-height: 1.2; margin-bottom: 12px; letter-spacing: -.01em;
}
.page-desc { font-size: 16px; color: rgba(255,255,255,.92); font-weight: 400; line-height: 1.65; max-width: 900px; }

.breadcrumb { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 20px; font-size: 14px; color: rgba(255,255,255,.85); }
.breadcrumb a { color: rgba(255,255,255,.85); text-decoration: none; transition: color .2s; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { color: rgba(255,255,255,.55); }

/* ============================================================
   SIDEBAR LAYOUT  (visa detail pages with sticky price card)
   ============================================================ */

.sidebar-layout { display: grid; grid-template-columns: minmax(0,1fr) 320px; max-width: 1400px; margin: 0 auto; }
.sl-main    { min-width: 0; }
.sl-sidebar { padding: 48px 24px 48px 32px; }
.sl-sticky  { position: sticky; top: 90px; }

.sb-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: 0 8px 40px rgba(15,42,68,.13); }
.sb-header { background: var(--navy); padding: 20px 20px 16px; }
.sb-header-label { font-size: 13px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.88); margin-bottom: 6px; }
.sb-header-title { font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 700; color: #fff; line-height: 1.25; }
.sb-pkg { padding: 14px 18px; border-bottom: 1px solid var(--border); transition: background .15s; }
.sb-pkg:last-child { border-bottom: none; }
.sb-pkg:hover { background: var(--cream); }
.sb-pkg.pop { background: rgba(4,106,56,.05); border-left: 3px solid var(--green); padding-left: 15px; }
.sb-pop-lbl { font-size: 13px; font-weight: 700; color: var(--green); letter-spacing: .1em; text-transform: uppercase; margin-bottom: 4px; }
.sb-pkg-row { display: flex; justify-content: space-between; align-items: baseline; gap: 6px; margin-bottom: 3px; }
.sb-pkg-name  { font-size: 14px; font-weight: 600; color: var(--navy); line-height: 1.3; }
.sb-pkg-price { font-size: 15px; font-weight: 700; color: var(--navy); white-space: nowrap; flex-shrink: 0; }
.sb-pkg.pop .sb-pkg-price { color: var(--green); }
.sb-pkg-desc { font-size: 13px; color: var(--muted); line-height: 1.45; }
.sb-cta { padding: 16px 18px 18px; }
.sb-cta .btn { width: 100%; justify-content: center; font-size: 16px; margin-bottom: 9px; }
.sb-discount { font-size: 13px; color: var(--muted); text-align: center; line-height: 1.5; }
.sb-trust { display: flex; align-items: center; justify-content: center; gap: 6px; padding: 10px 18px; border-top: 1px solid var(--border); background: var(--navy); }
.sb-stars { color: #FFC107; font-size: 13px; letter-spacing: 1px; }

/* Mobile sticky CTA bar (replaces sidebar on small screens) */
.mobile-cta-bar {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 150;
  background: var(--navy); padding: 10px 20px 14px;
  padding-bottom: calc(14px + env(safe-area-inset-bottom));
  align-items: center; justify-content: space-between;
  box-shadow: 0 -4px 20px rgba(0,0,0,.4); border-top: 1px solid rgba(255,255,255,.1);
  -webkit-transform: translateZ(0); transform: translateZ(0); will-change: transform;
}
.mcb-price { font-size: 16px; font-weight: 700; color: var(--gold-l); line-height: 1.2; }
.mcb-lbl   { font-size: 13px; color: rgba(255,255,255,.92); margin-top: 1px; }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */

.faq-list { max-width: 740px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item { border: 1.5px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: border-color .2s; }
.eu-family-member .faq-item.open { border-color: var(--pink); }
.faq-item.open { border-color: var(--green); }
.faq-q { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 22px; font-size: 16px; font-weight: 600; color: var(--navy); cursor: pointer; user-select: none; }
.eu-family-member .faq-icon { color: var(--pink);}
.faq-icon { width: 28px; height: 28px; border-radius: 50%; border: 1.5px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 16px; color: var(--green); flex-shrink: 0; transition: transform .3s, background .2s, border-color .2s; }
.eu-family-member .faq-item.open .faq-icon { background: var(--pink); border-color: var(--pink); color: #fff; }
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--green); border-color: var(--green); color: #fff; }
.faq-a { font-size: 16px; line-height: 1.75; color: var(--muted); max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s ease; padding: 0 22px; }
.faq-item.open .faq-a { max-height: 400px; padding: 0 22px 22px; }


/* ============================================================
   TESTIMONIALS / CAROUSEL
   ============================================================ */

.carousel-wrap  { position: relative; overflow: hidden; border-radius: var(--radius); }
.carousel-track { display: flex; transition: transform .5s cubic-bezier(.4,0,.2,1); }
.carousel-slide { min-width: 100%; padding: 48px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); }

.cs-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.cs-quote-mark { font-family: 'Playfair Display', serif; font-size: 72px; color: var(--green); line-height: 1; margin-bottom: 8px; opacity: .7; }
.cs-text  { font-size: 20px; font-weight: 300; color: var(--text); line-height: 1.7; font-style: italic; margin-bottom: 24px; font-family: 'Playfair Display', serif; }
.cs-author { display: flex; align-items: center; gap: 14px; }
.cs-av  { width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; font-weight: 700; color: #fff; flex-shrink: 0; }
.av-orange { background: linear-gradient(135deg, var(--green), var(--green-l)); }
.av-teal   { background: linear-gradient(135deg, var(--teal),   var(--teal-l));   }
.av-navy   { background: linear-gradient(135deg, var(--navy),   var(--navy2));     }
.cs-name  { font-size: 15px; font-weight: 600; color: var(--navy); }
.cs-loc   { font-size: 15px; color: var(--muted); }
.cs-stars { color: #FFC107; font-size: 16px; letter-spacing: 2px; margin-bottom: 10px; }
.cs-outcome { background: var(--cream); border-radius: 10px; padding: 20px; }
.cs-outcome-label { font-size: 13px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--green); margin-bottom: 6px; }
.cs-outcome-text  { font-size: 16px; color: var(--text); line-height: 1.6; }

.carousel-controls { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 28px; }
.carousel-btn { width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid var(--border); background: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 18px; color: var(--navy); transition: all .2s; }
.carousel-btn:hover { background: var(--green); border-color: var(--green); color: #fff; }
.carousel-dots { display: flex; gap: 8px; }
/* .cdot used on visa pages; .dot used on index — both defined here */
.cdot, .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border); cursor: pointer; transition: all .3s; }
.cdot.active, .dot.active { background: var(--green); width: 24px; border-radius: 4px; }

/* ============================================================
   CLOSING CTA SECTION
   ============================================================ */

#closing { position: relative; padding: 120px 0; text-align: center; overflow: hidden; }
.closing-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
#closing::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(10,22,36,.85), rgba(15,42,68,.92)); z-index: 1; }
.closing-inner { position: relative; z-index: 2; max-width: 620px; margin: 0 auto; }
.closing-inner h2 { font-family: 'Playfair Display', serif; font-size: clamp(30px, 5vw, 50px); color: #fff; margin-bottom: 16px; line-height: 1.15; }
.closing-inner p  { font-size: 18px; color: rgba(255,255,255,.92); margin-bottom: 36px; line-height: 1.65; font-weight: 400; }
.closing-ctas  { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 36px; }
.closing-trust { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.ctrust { font-size: 14px; color: rgba(255,255,255,.92); background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25); padding: 6px 14px; border-radius: 100px; display: flex; align-items: center; gap: 5px; }
.ctrust::before { content: '✓'; color: #4ade80; font-weight: 700; }
.goldColors .ctrust::before { content: '✓'; color: #F5C87A; font-weight: 700; }
.ctrust-tp::before { display: none !important; }

/* ============================================================
   FOOTER  (dark version — used on all pages except cart/contact)
   ============================================================ */

/*.tp-w-rating{font-size:14px;font-weight:700;color:#fff;margin:0 6px 0px 0px;}*/

footer { background: #070E17; padding: 68px 0 0; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 48px; padding-bottom: 56px; }
.footer-tagline { font-size: 14px; color: rgba(255,255,255,.45); line-height: 1.65; max-width: 200px; margin: 14px 0 20px; }
.footer-social { display: flex; gap: 8px; }
.soc-btn { width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(255,255,255,.15); display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; text-decoration: none; color: rgba(255,255,255,.45); transition: all .2s; }
.soc-btn:hover { border-color: var(--green); color: var(--green); background: rgba(4,106,56,.1); }
.footer-col h4 { font-size: 13px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--green); margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col ul a { font-size: 14px; color: rgba(255,255,255,.45); text-decoration: none; transition: color .2s; }
.footer-col ul a:hover { color: #fff; }
.fci { font-size: 14px; color: rgba(255,255,255,.45); display: flex; align-items: flex-start; gap: 8px; margin-bottom: 9px; }
.fci a { color: rgba(255,255,255,.45); text-decoration: none; transition: color .2s; }
.fci a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); padding: 18px 0; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-bottom-text { font-size: 13px; color: rgba(255,255,255,.65); }

/* ============================================================
   TRUSTPILOT WIDGET
   ============================================================ */

.tp-widget { display: inline-flex; align-items: center; gap: 8px; text-decoration: none; color: inherit; }
.tp-w-exc   { font-weight: 700; font-size: 14px; }
.tp-w-stars { display: flex; gap: 2px; }
.tp-w-star  { width: 22px; height: 22px; background: #00B67A; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.tp-w-brand { display: flex; align-items: center; gap: 5px; font-size: 15px; font-weight: 500; }
.tp-w-bstar { width: 16px; height: 16px; background: #00B67A; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

.tp-row { font-size: 13px; color: rgba(255,255,255,.72); display: flex; align-items: center; gap: 6px; }
.tp-row .stars      { color: #FFC107; font-size: 13px; }
.tp-row .tp-widget  { color: rgba(255,255,255,.92); }
.tp-row .tp-w-exc   { font-size: 13px; }
.tp-row .tp-w-star  { width: 18px; height: 18px; }
.tp-row .tp-w-bstar { width: 13px; height: 13px; }
.tp-row .tp-w-brand { font-size: 13px; }

.ctrust-tp .tp-w-exc   { font-size: 13px; }
.ctrust-tp .tp-w-stars { gap: 1px; }
.ctrust-tp .tp-w-star  { width: 15px; height: 15px; }
.ctrust-tp .tp-w-bstar { width: 11px; height: 11px; }
.ctrust-tp .tp-w-brand { font-size: 13px; }

.sb-trust .tp-w-exc   { font-size: 13px; }
.sb-trust .tp-w-star  { width: 18px; height: 18px; }
.sb-trust .tp-w-bstar { width: 13px; height: 13px; }
.sb-trust .tp-w-brand { font-size: 13px; }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */

.fade-up { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.fade-up.visible { opacity: 1; transform: none; }
.stagger > * { opacity: 0; transform: translateY(18px); transition: opacity .5s ease, transform .5s ease; }
.stagger.visible > *:nth-child(1) { opacity:1; transform:none; transition-delay:0s; }
.stagger.visible > *:nth-child(2) { opacity:1; transform:none; transition-delay:.07s; }
.stagger.visible > *:nth-child(3) { opacity:1; transform:none; transition-delay:.14s; }
.stagger.visible > *:nth-child(4) { opacity:1; transform:none; transition-delay:.21s; }
.stagger.visible > *:nth-child(5) { opacity:1; transform:none; transition-delay:.28s; }
.stagger.visible > *:nth-child(6) { opacity:1; transform:none; transition-delay:.35s; }
.stagger.visible > *:nth-child(7) { opacity:1; transform:none; transition-delay:.42s; }
.stagger.visible > *:nth-child(8) { opacity:1; transform:none; transition-delay:.49s; }
.stagger.visible > *:nth-child(n+5) { opacity:1; transform:none; transition-delay:.28s; }

/* ── CONTACT SECTION ── */
    .contact-section {
      background: var(--white);
      padding: 80px 24px;
    }
    .contact-grid {
      display: grid;
      grid-template-columns: 2fr 1fr;
      gap: 40px;
      max-width: 1100px;
      margin: 0 auto;
      align-items: start;
    }
/* ── FORM CARD ── */
    .form-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 40px;
      box-shadow: var(--shadow);
    }
    .form-card h2 {
      font-size: 26px;
      color: var(--navy);
      margin-bottom: 28px;
    }
    .form-group {
      display: flex;
      flex-direction: column;
      gap: 6px;
      margin-bottom: 20px;
    }
    .form-group label {
      font-size: 13.5px;
      font-weight: 600;
      color: var(--text);
      letter-spacing: .01em;
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
      font-family: 'Outfit', sans-serif;
      font-size: 15px;
      color: var(--text);
      background: var(--cream);
      border: 1.5px solid var(--border);
      border-radius: 10px;
      padding: 13px 16px;
      outline: none;
      transition: border-color .2s, box-shadow .2s;
      width: 100%;
      -webkit-appearance: none;
    }
    .form-group input::placeholder,
    .form-group textarea::placeholder { color: #9AABB8; }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: var(--green);
      box-shadow: 0 0 0 3px rgba(4,106,56,.10);
      background: var(--white);
    }
    .form-group select {
      cursor: pointer;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23485565' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 14px center;
      padding-right: 42px;
    }
    .form-group textarea { resize: vertical; min-height: 120px; }

      /* ============================================================
    RADIO BUTTONS
    ============================================================ */

    .radio-group { display: flex; flex-direction: column; gap: 10px; }
    .radio-group.inline { flex-direction: row; flex-wrap: wrap; gap: 18px; }

    .radio {
      display: inline-flex; align-items: center; gap: 10px;
      font-family: 'Outfit', sans-serif; font-size: 15px; color: var(--text);
      cursor: pointer; user-select: none;
    }
    .radio input[type="radio"] {
      -webkit-appearance: none; appearance: none;
      width: 20px; height: 20px; margin: 0; flex-shrink: 0;
      border: 1.5px solid var(--border); border-radius: 50%;
      background: var(--cream); cursor: pointer;
      display: grid; place-content: center;
      transition: border-color .2s, box-shadow .2s, background .2s;
      padding: 12px 12px;
    }
    .radio input[type="radio"]::before {
      content: ''; width: 10px; height: 10px; border-radius: 50%;
      background: var(--green); transform: scale(0);
      transition: transform .18s ease;
    }
    .radio input[type="radio"]:hover { border-color: var(--green); }
    .radio input[type="radio"]:focus-visible {
      border-color: var(--green);
      box-shadow: 0 0 0 3px rgba(4,106,56,.10);
    }
    .radio input[type="radio"]:checked {
      border-color: var(--green); background: var(--white);
    }
    .radio input[type="radio"]:checked::before { transform: scale(1); }
    .radio input[type="radio"]:disabled { opacity: .45; cursor: not-allowed; }
    .radio input[type="radio"]:disabled + span { opacity: .45; cursor: not-allowed; }

    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .form-submit-area { margin-top: 8px; }
    .form-submit-area .btn { width: 100%; padding: 15px; font-size: 16px; border-radius: 11px; }
    .form-note {
      margin-top: 14px;
      font-size: 13px;
      color: var(--muted);
      text-align: center;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
    }
    .form-note svg { color: var(--green); flex-shrink: 0; }

    /* ── CONTACT INFO SIDEBAR ── */
    .contact-sidebar { display: flex; flex-direction: column; gap: 20px; }

    .info-card-dark {
      background: var(--navy);
      border-radius: 18px;
      padding: 32px 28px;
      color: var(--white);
    }
    .info-card-dark h3 {
      font-size: 20px;
      margin-bottom: 10px;
      color: var(--white);
    }
    .info-card-dark p {
      font-size: 14.5px;
      color: rgba(255,255,255,.72);
      margin-bottom: 20px;
      line-height: 1.6;
    }
    .info-card-dark .btn {
      background: var(--green);
      color: var(--white);
      border-color: var(--green);
      width: 100%;
      padding: 13px;
      font-size: 15px;
      border-radius: 10px;
    }
    .info-card-dark .btn:hover { background: var(--green-l); border-color: var(--green-l); }

    .info-card-light {
      background: var(--cream);
      border: 1px solid var(--border);
      border-radius: 18px;
      padding: 28px;
    }
    .info-row {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      padding: 10px 0;
      border-bottom: 1px solid var(--border);
      font-size: 14.5px;
      color: var(--text);
    }
    .info-row:last-child { border-bottom: none; }
    .info-row-icon { font-size: 16px; flex-shrink: 0; margin-top: 1px; }
    .info-row a { color: var(--green); font-weight: 500; }
    .info-row a:hover { text-decoration: underline; }
    .info-card-light h4 {
      font-size: 17px;
      color: var(--navy);
      margin-bottom: 4px;
    }
    .info-card-light p {
      font-size: 14px;
      color: var(--muted);
      line-height: 1.6;
    }

    /* ── STATS STRIP ── */
    .stats-strip {
      background: var(--navy);
      padding: 56px 24px;
    }
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      max-width: 900px;
      margin: 0 auto;
      text-align: center;
    }
    .stat-item {}
    .stat-number {
      font-family: 'Playfair Display', serif;
      font-size: 42px;
      font-weight: 700;
      color: var(--white);
      line-height: 1;
      margin-bottom: 8px;
    }
    .stat-label {
      font-size: 14px;
      color: rgba(255,255,255,.6);
      font-weight: 500;
    }
    .stat-divider {
      width: 1px;
      background: rgba(255,255,255,.12);
      display: none;
    }

    /* ── FORM SUCCESS ── */
    .form-success {
      display: none;
      text-align: center;
      padding: 40px 20px;
    }
    .form-success-icon {
      width: 64px;
      height: 64px;
      background: rgba(4,106,56,.12);
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
    }
    .form-success h3 { font-size: 22px; color: var(--navy); margin-bottom: 10px; }
    .form-success p { font-size: 15px; color: var(--muted); }

    /* ── FAQ SECTION ── */
    .faq-section {
      background: var(--cream);
      padding: 80px 24px;
    }
    .faq-section-inner { max-width: 760px; margin: 0 auto; }
    .section-label {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--green);
      margin-bottom: 12px;
    }
    .section-title {
      font-size: clamp(26px, 3.5vw, 38px);
      color: var(--navy);
      margin-bottom: 12px;
    }
    .section-sub {
      font-size: 16px;
      color: var(--muted);
      margin-bottom: 40px;
      line-height: 1.7;
    }
    .faq-list {
         max-width: 740px;
         margin: 0 auto;
         display: flex;
         flex-direction: column;
         gap: 10px;
      }
    .faq-item {
      border-bottom: 1px solid var(--border);
    }
    .faq-q {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 20px 22px;
      font-size: 16px;
      font-weight: 600;
      color: var(--navy);
      cursor: pointer;
      user-select: none;
    }
    .faq-q:hover { color: var(--green); }
    .faq-icon {
      flex-shrink: 0;
      width: 24px;
      height: 24px;
      border-radius: 50%;
      border: 1.5px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all .2s;
      background: var(--white);
    }
    .faq-icon svg { transition: transform .25s; }
    .faq-item.open .faq-icon { border-color: var(--green); background: var(--green); }
    .faq-item.open .faq-icon svg { transform: rotate(180deg); stroke: var(--white); }
    .faq-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height .35s ease, padding .25s ease;
    }
    .faq-item.open .faq-a { max-height: 400px; padding-bottom: 20px; }
    .faq-a p { font-size: 15px; color: var(--muted); line-height: 1.75; }

    /* Blog Page*/
    /* --- BLOG HERO --- */
    .blog-hero { position: relative; overflow: hidden; padding: 120px 0 40px; }
    .hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 55%; }
    .hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(15,42,68,.72) 0%, rgba(26,61,94,.62) 100%); }
    .blog-hero::before {
      content: '';
      position: absolute; inset: 0;
      background-image:
        radial-gradient(circle at 15% 85%, rgba(30,140,120,.2) 0%, transparent 50%),
        radial-gradient(circle at 85% 15%, rgba(212,166,52,.14) 0%, transparent 50%);
    }
    .blog-hero-inner {
      position: relative;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
    }
    .blog-hero-text h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(32px, 4vw, 50px);
      font-weight: 700;
      color: var(--white);
      line-height: 1.16;
      margin-bottom: 18px;
    }
    .blog-hero-text h1 em { color: var(--gold); font-style: italic; }
    .blog-hero-text p {
      font-size: 18px;
      color: rgba(255,255,255,.68);
      line-height: 1.65;
      font-weight: 300;
      margin-bottom: 32px;
    }
    .blog-stats { display: flex; gap: 36px; flex-wrap: wrap; }
    .blog-stat { text-align: center; }
    .blog-stat-num { display: block; font-family: 'Playfair Display', serif; font-size: 30px; font-weight: 700; color: var(--gold); }
    .blog-stat-lbl { font-size: 13px; color: rgba(255,255,255,.5); }

    .hero-search-card {
      background: rgba(255,255,255,.07);
      border: 1px solid rgba(255,255,255,.14);
      border-radius: 20px;
      padding: 36px;
      backdrop-filter: blur(12px);
    }
    .search-heading { font-size: 16px; font-weight: 600; color: rgba(255,255,255,.75); margin-bottom: 14px; }
    .search-row { display: flex; }
    .search-input {
      flex: 1; padding: 14px 20px;
      font-family: 'Outfit', sans-serif; font-size: 16px;
      background: rgba(255,255,255,.95); border: none;
      border-radius: 10px 0 0 10px; outline: none; color: var(--text);
    }
    .search-input::placeholder { color: #aaa; }
    .search-go {
      padding: 14px 22px; background: var(--green); border: none;
      border-radius: 0 10px 10px 0; cursor: pointer; color: #fff;
      font-size: 20px; line-height: 1; transition: background .2s;
    }
    .search-go:hover { background: var(--green-l); }
    .topics-label { font-size: 13px; color: rgba(255,255,255,.45); margin: 18px 0 10px; }
    .topic-pills { display: flex; flex-wrap: wrap; gap: 8px; }
    .topic-pill {
      font-size: 13px; font-weight: 500;
      color: rgba(255,255,255,.7);
      background: rgba(255,255,255,.09);
      border: 1px solid rgba(255,255,255,.15);
      padding: 5px 14px; border-radius: 100px;
      cursor: pointer; transition: all .2s;
    }
    .topic-pill:hover { background: rgba(255,255,255,.18); color: #fff; }

    /* --- BLOG CONTENT --- */
    .blog-content { padding: 72px 0 88px; }
    .content-header { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 28px; flex-wrap: wrap; }
    .content-title { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 700; color: var(--navy); }
    .article-count { font-size: 15px; color: var(--muted); }
    .cat-filter { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 40px; }
    .cat-btn { font-family: 'Outfit', sans-serif; font-size: 14px; font-weight: 600; padding: 8px 20px; border-radius: 100px; border: 1.5px solid var(--border); background: transparent; color: var(--muted); cursor: pointer; transition: all .2s; }
    .cat-btn:hover { border-color: var(--navy); color: var(--navy); background: var(--cream); }
    .cat-btn.active { background: var(--navy); color: #fff; border-color: var(--navy); }

    /* --- NEWS CARDS --- */
    .blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .news-card { background: var(--white); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); text-decoration: none; color: var(--text); display: flex; flex-direction: column; transition: transform .25s, box-shadow .25s; }
    .news-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
    .news-thumb { height: 200px; overflow: hidden; background: var(--navy); flex-shrink: 0; }
    .news-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s; }
    .news-card:hover .news-thumb img { transform: scale(1.05); }
    .news-body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
    .news-meta { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
    .news-cat { font-size: 13px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--green); background: rgba(4,106,56,.1); padding: 3px 10px; border-radius: 100px; }
    .news-date { font-size: 14px; color: var(--muted); }
    .news-title { font-size: 16px; font-weight: 600; color: var(--navy); line-height: 1.45; flex: 1; transition: color .2s; }
    .news-card:hover .news-title { color: var(--green); }
    .news-excerpt { font-size: 14px; color: var(--muted); line-height: 1.6; }
    .news-read { font-size: 14px; font-weight: 600; color: var(--green); margin-top: auto; }
    .no-results { grid-column: 1 / -1; text-align: center; padding: 64px 0; color: var(--muted); font-size: 17px; }

    /* --- PAGINATION --- */
    .pagination { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 0 0 88px; }
    .pag-btn { font-family: 'Outfit', sans-serif; font-size: 15px; font-weight: 500; min-width: 40px; height: 40px; padding: 0 12px; border-radius: 8px; border: 1.5px solid var(--border); background: transparent; color: var(--muted); cursor: pointer; transition: all .2s; display: flex; align-items: center; justify-content: center; gap: 6px; }
    .pag-btn:hover { border-color: var(--navy); color: var(--navy); background: var(--cream); }
    .pag-btn.active { background: var(--navy); color: #fff; border-color: var(--navy); }
    .pag-btn.active a { color: #fff;}
    .pag-dots { color: var(--muted); font-size: 16px; padding: 0 4px; }

    /* --- PRICING --- */
    #pricing, .pricing { background: var(--cream); padding: 96px 0; }
    .pricing-grid { display: grid; grid-template-columns: 1fr 1.06fr 1fr; gap: 22px; align-items: start; }
    .services .pricing-grid { display: grid; grid-template-columns: 1fr 1.06fr 1fr; gap: 22px; align-items: start; }
    .services .grid-template-columns-1fr {grid-template-columns: 1fr 1.06fr 1fr; max-width:1050px; margin: 0 auto;}
    .services .grid-template-columns-0fr {grid-template-columns: 1fr 1.06fr; max-width: 700px; margin: 0 auto;}
    .featured .service-options { color: white}
    .pc { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 34px 26px; position: relative; transition: transform .25s, box-shadow .25s; }
    .pc:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
    .pc.featured { background: var(--navy); border-color: var(--navy); padding-top: 52px; }
    .pop-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--green); color: #fff; font-size: 13px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 4px 16px; border-radius: 100px; white-space: nowrap; }
    .eu-family-member .pop-badge { background-color: var(--pink);}
    .pc-tier { font-size: 13px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 8px; }
    .pc:not(.featured) .pc-tier { color: var(--green); }
    .pc.featured .pc-tier { color: #F5C87A; }
    .pc-name { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; margin-bottom: 6px; }
    .pc:not(.featured) .pc-name { color: var(--navy); }
    .pc.featured .pc-name { color: #fff; }
    .pc-price { font-size: 38px; font-weight: 700; line-height: 1; margin-bottom: 4px; }
    .pc:not(.featured) .pc-price { color: var(--navy); }
    .pc.featured .pc-price { color: #F5C87A; }
    .pc-for { font-size: 15px; line-height: 1.5; margin-bottom: 22px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
    .pc:not(.featured) .pc-for { color: var(--muted); }
    .pc.featured .pc-for { color: rgba(255,255,255,.92); border-color: rgba(255,255,255,.25); }
    .pc-list { list-style: none; display: flex; flex-direction: column; gap: 9px; margin-bottom: 26px; padding-left: unset;}
    .pc-list li { font-size: 15px; display: flex; gap: 9px; align-items: flex-start; }
    .pc:not(.featured) .pc-list li { color: var(--text); }
    .pc.featured .pc-list li { color: rgba(255,255,255,.96); }
    .pc-list li::before { content: '✓'; font-weight: 700; flex-shrink: 0; margin-top: 1px; }
    .pc:not(.featured) .pc-list li::before { color: var(--green); }
    .pc.featured .pc-list li::before { color: #F5C87A; }
    .pc-btn { display: block; text-align: center; font-family: 'Outfit', sans-serif; font-size: 16px; font-weight: 600; padding: 10px; border-radius: 9px; text-decoration: none; transition: all .2s; cursor: pointer; width: 100%; border: none; }
    .pc-btn-outline { background: transparent; color: var(--navy); border: 1.5px solid var(--border); }
    .pc-btn-outline:hover { border-color: var(--navy); background: var(--cream); }
    .featured .pc-btn-outline { background: var(--cream); color: var(--navy); border: 1.5px solid var(--border); }
    .pc-btn-green { background: var(--green); color: #fff; box-shadow: 0 4px 16px rgba(4,106,56,.35); }
    .pc-btn-green:hover { background: var(--green-l); transform: translateY(-1px); }
    .eu-family-member .pc-btn-orange { background: var(--pink);}
    .pc-btn-orange { background: var(--green); color: #fff; box-shadow: 0 4px 16px rgba(4,106,56,.35); }
    .pc-btn-orange:hover { background: var(--green-l); transform: translateY(-1px); }
    .pc-lang-pill { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: var(--green); background: rgba(4,106,56,.08); border: 1px solid rgba(4,106,56,.2); border-radius: 8px; padding: 9px 13px; margin-bottom: 16px; }
    .eu-family-member .pc.featured .pc-lang-pill { color: var(--white); background: rgba(245,200,122,.1); border-color: var(--pink); }
    .pc.featured .pc-lang-pill { color: #F5C87A; background: rgba(245,200,122,.1); border-color: rgba(245,200,122,.25); }
    .pc-note { text-align: center; margin-top: 28px; font-size: 15px; color: var(--muted); }
    .pc-note a { color: var(--green); text-decoration: none; font-weight: 600; }
    .pc-note a:hover { text-decoration: underline; }
    .pBtn { width:49%; display: inline-block;}

    /* ─── GLANCE BAR ─── */
    .d6-visa #glance { background: var(--orange);}
    #glance { background: var(--green); padding: 32px 0; position: relative; overflow: hidden; }
    #glance::before { content: ''; position: absolute; top: -60%; right: -3%; width: 300px; height: 300px; border-radius: 50%; background: rgba(255,255,255,.08); pointer-events: none; }

    .eu-family-member #glance {background: var(--pink);}
    .eu-family-member .btn-orange {background: var(--pink);}

    .golden-visa #glance { background: linear-gradient(90deg, var(--gold) 0%, var(--gold-l) 100%); padding: 32px 0; position: relative; overflow: hidden; }
    .golden-visa #glance::before { content: ''; position: absolute; top: -60%; right: -3%; width: 300px; height: 300px; border-radius: 50%; background: rgba(255,255,255,.1); pointer-events: none; }

    .glance-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; text-align: center; position: relative; z-index: 1; }
    .glance-item { padding: 8px 16px; border-right: 1px solid rgba(255,255,255,.2); }
    .glance-item:last-child { border-right: none; }
    .glance-icon { font-size: 20px; margin-bottom: 6px; }
    .glance-label { font-size: 13px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.90); margin-bottom: 3px; }
    .glance-value { font-size: 16px; font-weight: 700; color: #fff; line-height: 1.3; }

     #what { background: var(--cream); padding: 96px 0; }
    /* ─── WHY SECTION ─── */
    #why { background: var(--cream); padding: 96px 0; }
    .why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
    .why-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 28px 24px; transition: transform .25s, box-shadow .25s; }
    .why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
    .why-icon { font-size: 28px; margin-bottom: 14px; }
    .why-title { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
    .why-desc { font-size: 15px; color: var(--muted); line-height: 1.6; }

    /* ─── VISA TYPES ─── */
    #visas { background: var(--white); padding: 96px 0; }
    .visa-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
    .vc { background: var(--cream); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 28px 24px; transition: transform .25s, box-shadow .25s; text-decoration: none; display: block; }
    .vc:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--green); }
    .vc-icon { font-size: 28px; margin-bottom: 12px; }
    .vc-code { font-size: 13px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--green); margin-bottom: 4px; }
    .vc-name { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
    .vc-desc { font-size: 14px; color: var(--muted); line-height: 1.55; margin-bottom: 14px; }
    .vc-link { font-size: 14px; font-weight: 600; color: var(--green); }

    /* ─── PROCESS ─── */
    #process { background: var(--navy); padding: 96px 0; position: relative; overflow: hidden; }
    .bank-account #process, .niss-number #process , .d2-visa #process , .d8-visa #process , .business-incorporation #process, .eu-family-member #process { background: var(--white); padding: 96px 0; }
    #process::before { content: ''; position: absolute; top: -30%; right: -8%; width: 500px; height: 500px; border-radius: 50%; background: rgba(255,255,255,.02); pointer-events: none; }
    .process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; z-index: 1; }
    .ps-item { padding: 0 24px; text-align: center; position: relative; }
    .ps-item::after { content: '→'; position: absolute; right: -10px; top: 30px; font-size: 18px; color: rgba(255,255,255,.3); }
    .ps-item:last-child::after { display: none; }
    .ps-num { width: 64px; height: 64px; border-radius: 50%; border: 2px solid rgba(255,255,255,.2); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: #F5C87A; transition: all .25s; }
    .ps-item:hover .ps-num { background: rgba(212,166,52,.15); border-color: #F5C87A; }
    .ps-title { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 8px; }
    .ps-desc { font-size: 14px; color: rgba(255,255,255,.82); line-height: 1.55; }

    /* ─── COMPARISON ─── */
    #compare { background: var(--white); padding: 96px 0; }
    .comp-table { width: 100%; border-collapse: collapse; margin-top: 40px; }
    .comp-table th { padding: 14px 20px; text-align: left; font-size: 13px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; background: var(--navy); color: #fff; }
    .comp-table th:not(:first-child) { text-align: center; }
    .comp-table td { padding: 14px 20px; border-bottom: 1px solid var(--border); font-size: 15px; color: var(--text); }
    .comp-table td:not(:first-child) { text-align: center; font-size: 18px; }
    .comp-table tr:last-child td { border-bottom: none; }
    .comp-table tr:nth-child(even) td { background: var(--cream); }
    .comp-yes { color: var(--green); }
    .comp-no { color: #ccc; }
    .comp-feat { color: #F5C87A; font-size: 14px; font-weight: 600; }

    /* ─── TESTIMONIALS ─── */
    #testimonials { background: var(--cream); padding: 96px 0; }
    .testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
    .tcard { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; transition: transform .25s, box-shadow .25s; }
    .tcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
    .tcard-stars { color: #FFC107; font-size: 16px; letter-spacing: 2px; margin-bottom: 14px; }
    .tcard-quote { font-size: 16px; color: var(--text); line-height: 1.7; font-style: italic; margin-bottom: 20px; font-family: 'Playfair Display', serif; }
    .tcard-author { display: flex; align-items: center; gap: 12px; }
    .tcard-av { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 700; color: #fff; flex-shrink: 0; }
    .av-a { background: linear-gradient(135deg,var(--green),var(--green-l)); }
    .av-b { background: linear-gradient(135deg,var(--teal),var(--teal-l)); }
    .av-c { background: linear-gradient(135deg,var(--navy),var(--navy2)); }
    .tcard-name { font-size: 14px; font-weight: 600; color: var(--navy); }
    .tcard-loc { font-size: 13px; color: var(--muted); }

    #faq { background: var(--white); padding: 96px 0; }

    /* --- LEAD MAGNET --- */
    #lead-magnet { background: var(--teal); padding: 88px 0; position: relative; overflow: hidden; }
    #lead-magnet::after { content: ''; position: absolute; bottom: -30%; left: -5%; width: 400px; height: 400px; border-radius: 50%; background: rgba(255,255,255,.08); pointer-events: none; }
    .lead-split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; position: relative; z-index: 1; }
    .lead-left h2 { font-family: 'Playfair Display', serif; font-size: clamp(28px, 3.5vw, 40px); font-weight: 700; color: #fff; margin-bottom: 14px; line-height: 1.2; }
    .lead-left p { font-size: 16px; color: rgba(255,255,255,.92); line-height: 1.65; margin-bottom: 10px; }
    .lead-items { display: flex; flex-direction: column; gap: 10px; }
    .lead-item { display: flex; align-items: center; gap: 10px; font-size: 16px; color: rgba(255,255,255,.96); }
    .lead-item::before { content: '📄'; font-size: 16px; }
    .lead-right { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); border-radius: var(--radius); padding: 32px; backdrop-filter: blur(8px); }
    .lead-right h3 { font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 8px; }
    .lead-right p { font-size: 15px; color: rgba(255,255,255,.92); margin-bottom: 20px; }
    .lead-form { display: flex; flex-direction: column; gap: 12px; }
    .lead-form input { padding: 13px 16px; border-radius: 9px; border: 1.5px solid rgba(255,255,255,.2); background: rgba(255,255,255,.1); color: #fff; font-family: 'Outfit', sans-serif; font-size: 16px; outline: none; transition: border-color .2s; }
    .lead-form input::placeholder { color: rgba(255,255,255,.72); }
    .lead-form input:focus { border-color: rgba(255,255,255,.7); }
    .lead-note { font-size: 14px; color: rgba(255,255,255,.92); margin-top: 8px; text-align: center; }

    /* ─── CLOSING ─── */
    #closing { background: var(--navy); padding: 96px 0; text-align: center; }
    .closing-inner { max-width: 640px; margin: 0 auto; }
    .closing-inner h2 { font-family: 'Playfair Display', serif; font-size: clamp(28px, 4vw, 44px); color: #fff; margin-bottom: 16px; line-height: 1.2; }
    .closing-inner p { font-size: 17px; color: rgba(255,255,255,.88); margin-bottom: 32px; line-height: 1.65; }
    .closing-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 28px; }
    .closing-trust { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
    .ctrust { font-size: 14px; color: rgba(255,255,255,.92); background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); padding: 6px 14px; border-radius: 100px; display: flex; align-items: center; gap: 5px; }
    .ctrust::before { content: '✓'; color: #4ade80; font-weight: 700; }
    .noBg-Before::before { background: unset !important; }


    /* --- OVERVIEW (Is D7 right for you?) --- */
    #overview { background: var(--cream); padding: 96px 0; }
    .overview-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
    .ov-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 32px; transition: transform .25s, box-shadow .25s; }
    .ov-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
    .ov-card.good { border-top: 3px solid var(--teal); }
    .ov-card.bad  { border-top: 3px solid rgba(4,106,56,.5); }
    .ov-title { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 20px; }
    .ov-list { list-style: none; display: flex; flex-direction: column; gap: 13px; }
    .ov-list li { font-size: 16px; color: var(--text); display: flex; gap: 12px; align-items: flex-start; line-height: 1.55; }
    .ov-list li .ov-icon { font-size: 16px; flex-shrink: 0; margin-top: 1px; }
    .ov-list li span { color: var(--muted); font-size: 14px; margin-top: 2px; display: block; }

    .ov-cta { margin-top: 40px; text-align: center; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 32px; }
    .ov-cta p { font-size: 16px; color: var(--muted); margin-bottom: 16px; }
    .ov-cta strong { color: var(--navy); }

    /* --- REQUIREMENTS --- */
    #requirements { background: var(--white); padding: 96px 0; }
    .req-intro { max-width: 640px; margin-bottom: 56px; }

    /* --- INCOME CALCULATOR --- */
    .income-calc { background: var(--navy); border-radius: var(--radius); padding: 36px 40px; margin-bottom: 56px; }
    .ic-header { margin-bottom: 28px; }
    .ic-title { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: #fff; margin-bottom: 6px; }
    .ic-subtitle { font-size: 15px; color: rgba(255,255,255,.78); }
    .ic-inputs { display: flex; gap: 40px; margin-bottom: 32px; flex-wrap: wrap; }
    .ic-field { display: flex; flex-direction: column; gap: 10px; }
    .ic-label { font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.75); }
    .ic-stepper { display: flex; align-items: center; background: rgba(255,255,255,.08); border: 1.5px solid rgba(255,255,255,.2); border-radius: 10px; overflow: hidden; }
    .ic-step { background: none; border: none; color: #fff; font-size: 24px; font-weight: 300; width: 52px; height: 54px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .15s; line-height: 1; font-family: 'Outfit', sans-serif; }
    .ic-step:hover:not(:disabled) { background: rgba(255,255,255,.14); }
    .ic-step:disabled { opacity: .28; cursor: not-allowed; }
    .ic-val { font-size: 26px; font-weight: 700; color: #fff; min-width: 52px; text-align: center; }
    .ic-results { border: 1.5px solid rgba(255,255,255,.18); border-radius: 12px; overflow: hidden; margin-bottom: 16px; }
    .ic-result-group-label { font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.55); background: rgba(255,255,255,.06); padding: 8px 22px; border-bottom: 1px solid rgba(255,255,255,.1); }
    .ic-result-group-label--deposit { color: #F5C87A; background: rgba(212,166,52,.1); border-top: 1px solid rgba(212,166,52,.25); }
    .ic-result-row { display: flex; justify-content: space-between; align-items: center; padding: 16px 22px; border-bottom: 1px solid rgba(255,255,255,.1); }
    .ic-result-row:last-child { border-bottom: none; }
    .ic-result-row--highlight { background: rgba(212,166,52,.12); }
    .ic-result-row--highlight .ic-result-label { font-weight: 600; color: #fff; }
    .ic-result-label { font-size: 16px; color: rgba(255,255,255,.88); }
    .ic-result-val { font-size: 22px; font-weight: 700; color: #F5C87A; }
    .ic-note { font-size: 13px; color: rgba(255,255,255,.65); line-height: 1.6; }
    .ic-fixed-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.08); border: 1.5px solid rgba(255,255,255,.2); border-radius: 10px; padding: 12px 22px; font-size: 26px; font-weight: 700; color: #fff; }
    .ic-fixed-note { font-size: 13px; color: rgba(255,255,255,.65); margin-top: 6px; }
    @media (max-width: 768px) {
      .income-calc { padding: 24px 20px; }
      .ic-inputs { gap: 24px; }
    }

    .req-docs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .req-doc { display: flex; align-items: flex-start; gap: 14px; background: var(--cream); border: 1px solid var(--border); border-radius: 10px; padding: 16px 18px; }
    .req-doc-icon { width: 36px; height: 36px; border-radius: 9px; background: rgba(4,106,56,.1); display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
    .req-doc-title { font-size: 16px; font-weight: 600; color: var(--navy); margin-bottom: 3px; }
    .req-doc-desc { font-size: 14px; color: var(--muted); line-height: 1.5; }

    .req-note { margin-top: 24px; background: rgba(30,140,120,.08); border: 1px solid rgba(30,140,120,.2); border-radius: 10px; padding: 16px 20px; font-size: 15px; color: var(--teal); }
    .req-note strong { font-weight: 700; }

    /* --- BENEFITS --- */
    #benefits { background: var(--navy); padding: 96px 0; position: relative; overflow: hidden; }
    #benefits::before { content: ''; position: absolute; top: -30%; right: -8%; width: 500px; height: 500px; border-radius: 50%; background: rgba(255,255,255,.03); pointer-events: none; }
    #benefits::after  { content: ''; position: absolute; bottom: -20%; left: -5%;  width: 350px; height: 350px; border-radius: 50%; background: rgba(4,106,56,.05); pointer-events: none; }
    .benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; position: relative; z-index: 1; }
    .ben-card { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius); padding: 28px 24px; transition: background .25s, border-color .25s, transform .25s; }
    .ben-card:hover { background: rgba(255,255,255,.07); border-color: rgba(4,106,56,.35); transform: translateY(-4px); }
    .ben-icon { font-size: 28px; margin-bottom: 14px; }
    .ben-title { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 8px; }
    .ben-desc { font-size: 15px; color: rgba(255,255,255,.90); line-height: 1.6; }

    /* --- PROCESS --- */
    #process { background: var(--white); padding: 96px 0; }
    .process-split { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: stretch; }
    .process-photo { border-radius: 20px; overflow: hidden; min-height: 480px; position: relative; }
    .process-photo img { width: 100%; height: 100%; object-fit: cover; display: block; position: absolute; inset: 0; }
    .process-photo-badge {
      position: absolute; bottom: 24px; left: 24px;
      background: #fff; border-radius: 12px; padding: 14px 18px;
      box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 12px;
    }
    .badge-icon { width: 40px; height: 40px; border-radius: 10px; background: rgba(4,106,56,.12); display: flex; align-items: center; justify-content: center; font-size: 20px; }
    .badge-label { font-size: 14px; color: var(--muted); }
    .badge-value { font-size: 15px; font-weight: 700; color: var(--navy); }

    .steps-list { display: flex; flex-direction: column; gap: 0; }
    .step-item {
      display: flex; gap: 20px; padding: 24px 0; position: relative; cursor: pointer;
      border-bottom: 1px solid var(--border); transition: all .2s;
    }
    .step-item:last-child { border-bottom: none; }
    .step-item:hover .step-circle { background: var(--green); border-color: var(--green); color: #fff; }
    .step-circle {
      width: 48px; height: 48px; border-radius: 50%; border: 2px solid var(--border);
      display: flex; align-items: center; justify-content: center; flex-shrink: 0;
      font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; color: var(--muted);
      transition: all .25s; margin-top: 2px; background: var(--cream);
    }
    .step-item.active .step-circle { background: var(--green); border-color: var(--green); color: #fff; }
    .step-title { font-size: 16px; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
    .step-desc { font-size: 16px; color: var(--muted); line-height: 1.6; }
    .step-item.active .step-title { color: var(--green); }
    .process-tagline { margin-top: 28px; font-size: 16px; color: var(--muted); font-style: italic; font-family: 'Playfair Display', serif; }

    /* FEATURES */
    #features { background: var(--white); padding: 96px 0; }
    .features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
    .feat-card { background: var(--cream); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 28px 22px; transition: transform .25s, box-shadow .25s, border-color .25s; }
    .feat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--teal); }
    .feat-icon { font-size: 28px; margin-bottom: 14px; }
    .feat-title { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
    .feat-desc { font-size: 14px; color: var(--muted); line-height: 1.6; }
    /* PROCESS (dark) */
    #process { background: var(--navy); padding: 96px 0; position: relative; overflow: hidden; }
    #process::before { content: ''; position: absolute; top: -20%; right: -5%; width: 440px; height: 440px; border-radius: 50%; background: rgba(255,255,255,.03); pointer-events: none; }
    #process::after  { content: ''; position: absolute; bottom: -20%; left: -5%; width: 300px; height: 300px; border-radius: 50%; background: rgba(4,106,56,.05); pointer-events: none; }
    .process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; position: relative; z-index: 1; }
    .process-step { text-align: center; }
    .process-num { width: 54px; height: 54px; border-radius: 50%; background: var(--green); color: #fff; font-size: 22px; font-weight: 700; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; flex-shrink: 0; }
    .process-title { font-size: 17px; font-weight: 700; color: #fff; margin-bottom: 10px; }
    .process-desc { font-size: 15px; color: rgba(255,255,255,.82); line-height: 1.65; }

    /* ─── WHAT IS NISS ─── */
    #what-is { background: var(--white); padding: 96px 0; }
    .niss-info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
    .ni-card { background: var(--cream); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 24px; }
    .ni-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); transition: all .25s; }
    .ni-icon { font-size: 28px; margin-bottom: 14px; }
    .ni-title { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
    .ni-desc { font-size: 15px; color: var(--muted); line-height: 1.6; }

    /* redirect notice */
    .redirect-notice { background: rgba(212,166,52,.12); border: 1.5px solid rgba(212,166,52,.35); border-radius: var(--radius); padding: 24px 28px; margin: 40px 0; display: flex; gap: 16px; align-items: flex-start; }
    .rn-icon { font-size: 24px; flex-shrink: 0; margin-top: 2px; }
    .rn-title { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
    .rn-desc { font-size: 15px; color: var(--muted); line-height: 1.6; }

    #overview { background: var(--cream); padding: 96px 0; }
    .who-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
    .who-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 28px 24px; transition: transform .25s, box-shadow .25s; }
    .eu-family-member .who-card:hover { border-color: var(--pink); }
    .who-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--green); }
    .who-icon { font-size: 28px; margin-bottom: 14px; }
    .who-title { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
    .who-desc { font-size: 15px; color: var(--muted); line-height: 1.6; }

    #requirements { background: var(--white); padding: 96px 0; }
    .req-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .req-doc { display: flex; align-items: flex-start; gap: 14px; background: var(--cream); border: 1px solid var(--border); border-radius: 10px; padding: 16px 18px; }
    .req-doc-icon { width: 36px; height: 36px; border-radius: 9px; background: rgba(4,106,56,.1); display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
    .req-doc-title { font-size: 16px; font-weight: 600; color: var(--navy); margin-bottom: 3px; }
    .req-doc-desc { font-size: 14px; color: var(--muted); line-height: 1.5; }

    /* --- BUSINESS PLAN BANNER --- */
    #bizplan { background: var(--navy); padding: 80px 0; position: relative; overflow: hidden; }
    #bizplan::before { content: ''; position: absolute; top: -30%; right: -8%; width: 500px; height: 500px; border-radius: 50%; background: rgba(255,255,255,.03); pointer-events: none; }
    .bp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; position: relative; z-index: 1; }
    .bp-left h2 { font-family: 'Playfair Display', serif; font-size: clamp(26px, 3vw, 36px); font-weight: 700; color: #fff; margin-bottom: 16px; line-height: 1.2; }
    .bp-left p { font-size: 16px; color: rgba(255,255,255,.88); line-height: 1.7; margin-bottom: 24px; }
    .bp-checklist { display: flex; flex-direction: column; gap: 12px; }
    .bp-check { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; color: rgba(255,255,255,.92); line-height: 1.55; }
    .bp-check::before { content: '✓'; color: #4ade80; font-weight: 700; flex-shrink: 0; margin-top: 1px; }
    .bp-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); padding: 28px; }
    .bp-card-label { font-size: 12px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: #F5C87A; margin-bottom: 14px; }
    .bp-card-item { font-size: 15px; color: rgba(255,255,255,.88); padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.1); display: flex; gap: 10px; align-items: flex-start; line-height: 1.5; }
    .bp-card-item:last-child { border-bottom: none; padding-bottom: 0; }
    .bp-card-icon { font-size: 16px; flex-shrink: 0; }
    @media (max-width: 768px) { .bp-grid { grid-template-columns: 1fr; gap: 32px; } }

    /* --- BENEFITS --- */
    #benefits { padding: 96px 0; position: relative; overflow: hidden; }
    .benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .ben-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 28px 24px; transition: transform .25s, box-shadow .25s, border-color .25s; }
    .ben-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(4,106,56,.25); }
    .ben-icon { font-size: 28px; margin-bottom: 14px; }
    .ben-title { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
    .ben-desc { font-size: 15px; color: var(--muted); line-height: 1.6; }

    /* --- INCOME PROOF SECTION --- */
    #proof { background: var(--navy); padding: 80px 0; position: relative; overflow: hidden; }
    #proof::before { content: ''; position: absolute; top: -30%; right: -8%; width: 500px; height: 500px; border-radius: 50%; background: rgba(255,255,255,.03); pointer-events: none; }
    .proof-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; position: relative; z-index: 1; }
    .proof-left h2 { font-family: 'Playfair Display', serif; font-size: clamp(24px, 2.8vw, 34px); font-weight: 700; color: #fff; margin-bottom: 16px; line-height: 1.25; }
    .proof-left p { font-size: 16px; color: rgba(255,255,255,.88); line-height: 1.7; margin-bottom: 20px; }
    .proof-list { display: flex; flex-direction: column; gap: 12px; }
    .proof-item { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; color: rgba(255,255,255,.92); line-height: 1.55; }
    .proof-item::before { content: '✓'; color: #4ade80; font-weight: 700; flex-shrink: 0; margin-top: 1px; }
    .proof-cards { display: flex; flex-direction: column; gap: 14px; }
    .proof-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); padding: 20px 22px; }
    .proof-card-icon { font-size: 22px; margin-bottom: 10px; }
    .proof-card-title { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 6px; }
    .proof-card-desc { font-size: 14px; color: rgba(255,255,255,.80); line-height: 1.55; }
    @media (max-width: 768px) { .proof-grid { grid-template-columns: 1fr; gap: 32px; } }

    #investments { background: var(--white); padding: 96px 0; }
    .invest-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 48px; }
    .ic { background: var(--cream); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 28px 24px; }
    .ic.primary { background: var(--navy); border-color: var(--navy); }
    .ic-amount { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 700; color: var(--gold); margin-bottom: 6px; }
    .ic.primary .ic-amount { color: #F5C87A; }
    .ic-type { font-size: 13px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--green); margin-bottom: 10px; }
    .ic.primary .ic-type { color: rgba(245,200,122,.8); }
    .ic-title { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
    .ic.primary .ic-title { color: #fff; }
    .ic-desc { font-size: 15px; color: var(--muted); line-height: 1.6; }
    .ic.primary .ic-desc { color: rgba(255,255,255,.88); }
    .ic-badge { display: inline-block; background: rgba(212,166,52,.15); border: 1px solid rgba(212,166,52,.35); color: var(--gold); font-size: 12px; font-weight: 700; padding: 3px 10px; border-radius: 100px; margin-top: 10px; letter-spacing: .08em; text-transform: uppercase; }
    .ic.primary .ic-badge { background: rgba(245,200,122,.15); border-color: rgba(245,200,122,.35); color: #F5C87A; }

    #timeline { background: var(--navy); padding: 96px 0; position: relative; overflow: hidden; }
    #timeline::before { content: ''; position: absolute; top: -30%; right: -8%; width: 500px; height: 500px; border-radius: 50%; background: rgba(212,166,52,.04); pointer-events: none; }
    .tl-steps { display: flex; flex-direction: column; gap: 0; max-width: 680px; position: relative; z-index: 1; }
    .tl-item { display: flex; gap: 24px; padding: 28px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
    .tl-item:last-child { border-bottom: none; }
    .tl-circle { width: 52px; height: 52px; border-radius: 50%; border: 2px solid rgba(212,166,52,.4); background: rgba(212,166,52,.08); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; color: #F5C87A; margin-top: 2px; }
    .tl-title { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 6px; }
    .tl-desc { font-size: 15px; color: rgba(255,255,255,.82); line-height: 1.6; }
    .tl-time { display: inline-block; margin-top: 8px; font-size: 13px; font-weight: 600; color: #F5C87A; background: rgba(212,166,52,.12); border: 1px solid rgba(212,166,52,.25); padding: 3px 10px; border-radius: 100px; }

        /* ADD-ONS */
    #addons { background: var(--navy); padding: 80px 0; position: relative; overflow: hidden; }
    #addons::before { content: ''; position: absolute; top: -20%; right: -5%; width: 400px; height: 400px; border-radius: 50%; background: rgba(255,255,255,.03); pointer-events: none; }
    .addons-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; position: relative; z-index: 1; }
    .addon-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); padding: 28px 24px; text-align: center; transition: background .25s, border-color .25s; }
    .addon-card:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.2); }
    .addon-icon { font-size: 32px; margin-bottom: 14px; }
    .addon-name { font-size: 17px; font-weight: 700; color: #fff; margin-bottom: 8px; }
    .addon-price { font-size: 28px; font-weight: 700; color: #F5C87A; margin-bottom: 10px; }
    .addon-desc { font-size: 14px; color: rgba(255,255,255,.82); line-height: 1.6; }

    /* WHAT TO EXPECT (dark section) */
    #expect { background: var(--navy); padding: 80px 0; position: relative; overflow: hidden; }
    #expect::before { content: ''; position: absolute; top: -20%; right: -5%; width: 400px; height: 400px; border-radius: 50%; background: rgba(255,255,255,.03); pointer-events: none; }
    .expect-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; position: relative; z-index: 1; }
    .expect-step { text-align: center; }
    .expect-num { width: 54px; height: 54px; border-radius: 50%; background: var(--green); color: #fff; font-size: 22px; font-weight: 700; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; }
    .expect-title { font-size: 17px; font-weight: 700; color: #fff; margin-bottom: 10px; }
    .expect-desc { font-size: 15px; color: rgba(255,255,255,.82); line-height: 1.65; }

    /* NHR BANNER */
    #nhr { background: var(--navy); padding: 80px 0; position: relative; overflow: hidden; }
    #nhr::before { content: ''; position: absolute; top: -20%; right: -5%; width: 400px; height: 400px; border-radius: 50%; background: rgba(255,255,255,.03); pointer-events: none; }
    .nhr-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
    .nhr-title { font-family: 'Playfair Display', serif; font-size: clamp(24px, 3vw, 36px); font-weight: 700; color: #fff; margin-bottom: 14px; line-height: 1.2; }
    .nhr-desc { font-size: 16px; color: rgba(255,255,255,.88); line-height: 1.7; margin-bottom: 28px; }
    .nhr-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .nhr-list li { display: flex; gap: 10px; font-size: 15px; color: rgba(255,255,255,.90); }
    .nhr-list li::before { content: '✓'; color: #4ade80; font-weight: 700; flex-shrink: 0; }
    .nhr-card { background: rgba(212,166,52,.1); border: 1.5px solid rgba(212,166,52,.3); border-radius: var(--radius); padding: 32px; }
    .nhr-card-label { font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: #F5C87A; margin-bottom: 8px; }
    .nhr-card-title { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: #fff; margin-bottom: 16px; }
    .nhr-card-item { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
    .nhr-card-item:last-of-type { border-bottom: none; }
    .nhr-card-key { font-size: 14px; color: rgba(255,255,255,.80); }
    .nhr-card-val { font-size: 14px; font-weight: 700; color: #F5C87A; }

    /* --- CURRICULUM --- */
    #curriculum { background: var(--navy); padding: 96px 0; position: relative; overflow: hidden; }
    #curriculum::before { content: ''; position: absolute; top: -20%; right: -5%; width: 440px; height: 440px; border-radius: 50%; background: rgba(255,255,255,.03); pointer-events: none; }
    #curriculum::after  { content: ''; position: absolute; bottom: -20%; left: -5%; width: 300px; height: 300px; border-radius: 50%; background: rgba(4,106,56,.05); pointer-events: none; }
    .curr-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; position: relative; z-index: 1; }
    .curr-level { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); padding: 36px 32px; }
    .curr-level-badge { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; background: var(--green); color: #fff; padding: 4px 14px; border-radius: 100px; margin-bottom: 16px; }
    .curr-level-title { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 700; color: #fff; margin-bottom: 8px; }
    .curr-level-desc { font-size: 15px; color: rgba(255,255,255,.80); line-height: 1.65; margin-bottom: 24px; }
    .curr-topics { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .curr-topics li { display: flex; gap: 10px; align-items: flex-start; font-size: 15px; color: rgba(255,255,255,.88); }
    .curr-topics li::before { content: '✓'; color: #4ade80; font-weight: 700; flex-shrink: 0; margin-top: 1px; }

    /* --- INTRO STRIP --- */
    #intro-strip {
      background: var(--green); padding: 28px 0;
    }
    .intro-strip-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
    .intro-pill { display: flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 500; color: rgba(255,255,255,.85); }
    .intro-pill-icon { font-size: 18px; }
    .intro-pill-divider { width: 1px; height: 28px; background: rgba(255,255,255,.2); }

    /* --- DIY INTRO --- */
    #diy-intro { background: var(--cream); padding: 64px 0; border-bottom: 1px solid var(--border); }
    .diy-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
    .diy-intro-lead { font-size: 17px; color: var(--text); line-height: 1.8; margin-bottom: 16px; font-weight: 300; }
    .diy-intro-lead strong { font-weight: 600; color: var(--navy); }
    .diy-examples { display: flex; flex-direction: column; gap: 11px; margin: 24px 0 28px; }
    .diy-example { display: flex; align-items: flex-start; gap: 12px; font-size: 16px; color: var(--text); line-height: 1.6; }
    .diy-example-arrow { color: var(--green); font-weight: 700; flex-shrink: 0; margin-top: 2px; }
    .diy-tagline { font-family: 'Playfair Display', serif; font-size: 16px; color: var(--navy); font-weight: 700; margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--border); font-style: italic; }
    .diy-services-list { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 28px 28px 24px; }
    .diy-services-list h4 { font-size: 14px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--green); margin-bottom: 16px; }
    .diy-svc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 16px; }
    .diy-svc-item { font-size: 15px; color: var(--text); display: flex; align-items: center; gap: 8px; }
    .diy-svc-item::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--green); flex-shrink: 0; }
    .diy-control-box { margin-top: 24px; background: rgba(4,106,56,.05); border: 1px solid rgba(4,106,56,.15); border-radius: 10px; padding: 18px 20px; }
    .diy-control-box p { font-size: 16px; color: var(--navy); line-height: 1.6; font-weight: 500; }

    @media (max-width: 900px) {
      .diy-intro-grid { grid-template-columns: 1fr; gap: 32px; }
      .diy-svc-grid { grid-template-columns: 1fr; }
    }

    /* --- COST BREAKDOWN TABLE --- */
    #upsell { background: #F4F5F8; padding: 80px 0; }
    .ct-heading { text-align: center; margin-bottom: 36px; }
    .ct-heading h2 { font-family: 'Playfair Display', serif; font-size: clamp(24px, 3vw, 36px); color: var(--navy); margin-bottom: 8px; }
    .ct-heading p  { font-size: 17px; color: var(--muted); }

    /* scroll wrapper */
    .ct-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: 10px; box-shadow: 0 2px 24px rgba(0,0,0,.09); background: #fff; }

    /* table base */
    .ct { width: 100%; border-collapse: collapse; font-size: 16px; min-width: 680px; background: #fff; }

    /* blue accent colour */
    :root { --blue: #3C5A9A; --blue-lt: #EEF2FB; --blue-border: #3C5A9A; }

    /* -- HEADER -- */
    .ct thead th { padding: 26px 20px 22px; vertical-align: bottom; border-bottom: 1px solid #E5E8EF; text-align: center; background: #fff; }
    .ct thead th.cl  { text-align: left; background: #fff; vertical-align: bottom; padding-bottom: 22px; }
    .ct thead th.cfeat { background: var(--blue-lt); border-left: 2px solid var(--blue-border); border-right: 2px solid var(--blue-border); border-bottom: 1px solid #C8D3ED; }

    /* most popular badge */
    .ct-popular { display: inline-block; background: var(--blue); color: #fff; font-size: 12px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; border-radius: 100px; padding: 4px 14px; margin-bottom: 12px; }

    /* col label row */
    .ct-col-label { font-size: 12px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--blue); margin-bottom: 7px; }
    .ct thead th:not(.cfeat) .ct-col-label { color: #6B7280; }

    /* col name */
    .ct-col-name { font-size: 19px; font-weight: 700; color: var(--navy); margin-bottom: 10px; line-height: 1.25; }
    .ct thead th.cfeat .ct-col-name { color: var(--blue); }

    /* price */
    .ct-col-price { font-size: 38px; font-weight: 800; color: var(--navy); line-height: 1; font-family: 'Outfit', sans-serif; }
    .ct thead th.cfeat .ct-col-price { color: var(--blue); }
    .ct-col-price sup { font-size: 16px; font-weight: 500; vertical-align: super; }
    .ct-col-subprice { font-size: 14px; color: #9CA3AF; margin-top: 6px; }

    /* logo area */
    .ct-logo-area img { height: 32px; display: block; margin-bottom: 8px; }
    .ct-pkg-label { font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: #9CA3AF; }

    /* -- GROUP ROWS -- */
    .ct-group td { padding: 11px 20px; font-size: 14px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--blue); background: #E4E6EB; border-top: 1px solid #CDD0D8; border-bottom: 1px solid #CDD0D8; }
    .ct-group td.cfeat { border-left: 2px solid var(--blue-border); border-right: 2px solid var(--blue-border); background: var(--blue-lt); }

    /* -- BODY ROWS -- */
    .ct tbody tr:not(.ct-group) { border-bottom: 1px solid #EAECF0; }
    .ct tbody tr:not(.ct-group):last-child { border-bottom: none; }
    .ct td { padding: 16px 20px; vertical-align: middle; background: #fff; }
    .ct td.cfeat { background: var(--blue-lt); border-left: 2px solid var(--blue-border); border-right: 2px solid var(--blue-border); text-align: center; }
    .ct td.cother { text-align: center; }

    /* service name */
    .ct-svc-name { color: #111; font-weight: 600; font-size: 16px; text-decoration: none; display: block; }
    .ct-svc-name:hover { text-decoration: underline; }
    .ct-svc-sub  { font-size: 13px; color: #444; margin-top: 3px; }

    /* price in DIY col */
    .ct-price { font-style: italic; color: #111; font-size: 16px; }
    .ct-price sup { font-size: 11px; vertical-align: super; }

    /* checkmark circle */
    .chk { display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 28px; border-radius: 50%; border: 1.5px solid var(--blue); color: var(--blue); font-size: 15px; background: var(--blue-lt); }

    /* dash */
    .dash { color: #C8CDD8; font-size: 22px; line-height: 1; }

    /* -- BUTTON ROW -- */
    .ct-btns td { padding: 18px 20px; background: #fff; border-top: 1px solid #E5E8EF; }
    .ct-btns td.cfeat { background: var(--blue-lt); border-left: 2px solid var(--blue-border); border-right: 2px solid var(--blue-border); }
    .ct-btns td.cl { font-size: 14px; color: var(--blue); vertical-align: middle; }
    .ct-btns-stack { display: flex; flex-direction: column; gap: 10px; }
    .ct-btn { display: block; padding: 12px 16px; border-radius: 6px; font-size: 14px; font-weight: 700; text-decoration: none; text-align: center; letter-spacing: .05em; text-transform: uppercase; transition: opacity .18s; }
    .ct-btn:hover { opacity: .82; }
    .ct-btn-outline { border: 1.5px solid #C5CAD8; color: var(--navy); background: #fff; }
    .ct-btn-solid   { background: var(--blue); color: #fff; border: 1.5px solid var(--blue); }

    /* -- FOOTNOTE STRIP -- */
    .ct-footnote { background: #FDEAEA; color: #B91C1C; font-size: 14px; text-align: center; padding: 12px 20px; border-radius: 0 0 10px 10px; }

    @media(max-width:720px) {
      .ct { min-width: 600px; }
      .ct thead th, .ct td, .ct-btns td { padding: 12px 14px; }
      .ct-col-price { font-size: 30px; }
      .ct-col-name { font-size: 16px; }
    }


    /* ── LOGIN PAGE LAYOUT ── */
    .login-page-body {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 140px 20px 60px;
    }

    /* ── AUTH SPLIT (desktop two-column) ── */
    .auth-split {
      display: grid;
      grid-template-columns: 1fr 1fr;
      width: 100%;
      max-width: 960px;
      background: var(--white);
      border-radius: 24px;
      overflow: hidden;
      box-shadow: var(--shadow-lg);
    }
    .auth-brand {
      position: relative;
      color: #fff;
      padding: 48px 44px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      gap: 32px;
      min-height: 580px;
      background-image: linear-gradient(160deg, rgba(10,22,36,.80) 0%, rgba(15,42,68,.86) 100%), url('../images/douro.webp');
      background-size: cover;
      background-position: center;
    }
    .auth-brand-logo { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 700; color: #fff; }
    .auth-brand-logo span { color: #F5C87A; }
    .auth-brand h2 { font-family: 'Playfair Display', serif; font-size: clamp(26px, 2.4vw, 32px); font-weight: 700; line-height: 1.22; margin-bottom: 22px; color: #fff; }
    .auth-brand-points { list-style: none; display: flex; flex-direction: column; gap: 14px; padding-left: 0px; }
    .auth-brand-points li { display: flex; align-items: flex-start; gap: 11px; font-size: 15.5px; color: rgba(255,255,255,.92); line-height: 1.5; }
    .auth-brand-points li::before { content: '✓'; color: #4ade80; font-weight: 800; flex-shrink: 0; }
    .auth-brand-quote { font-size: 14px; color: rgba(255,255,255,.82); border-left: 3px solid rgba(245,200,122,.6); padding-left: 14px; line-height: 1.6; }
    .auth-brand-quote strong { display: block; color: #fff; font-weight: 600; margin-top: 8px; font-size: 13px; }

    /* ── AUTH CARD (form side) ── */
    .auth-card {
      background: var(--white);
      padding: 48px;
      width: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .auth-logo {
      display: flex;
      justify-content: center;
      margin-bottom: 28px;
    }
    .auth-logo img { height: 40px; width: auto; }
    .auth-logo-fallback {
      font-family: 'Playfair Display', serif;
      font-size: 22px;
      font-weight: 700;
      color: var(--navy);
    }

    .auth-heading {
      font-size: 28px;
      color: var(--navy);
      text-align: center;
      margin-bottom: 10px;
    }
    .auth-sub {
      font-size: 14.5px;
      color: var(--muted);
      text-align: center;
      line-height: 1.65;
      margin-bottom: 32px;
    }

    /* ── FORM ── */
    .auth-form { display: flex; flex-direction: column; gap: 18px; }
    .form-group {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }
    .form-group label {
      font-size: 13.5px;
      font-weight: 600;
      color: var(--text);
    }
    .input-wrap { position: relative; }
    .form-group input {
      font-family: 'Outfit', sans-serif;
      font-size: 15px;
      color: var(--text);
      background: var(--cream);
      border: 1.5px solid var(--border);
      border-radius: 10px;
      padding: 13px 16px;
      outline: none;
      transition: border-color .2s, box-shadow .2s;
      width: 100%;
    }
    .form-group input::placeholder { color: #9AABB8; }
    .form-group input:focus {
      border-color: var(--green);
      box-shadow: 0 0 0 3px rgba(4,106,56,.10);
      background: var(--white);
    }
    .input-wrap input { padding-right: 48px; }
    .pw-toggle {
      position: absolute;
      right: 14px;
      top: 50%;
      transform: translateY(-50%);
      background: none;
      border: none;
      cursor: pointer;
      padding: 4px;
      color: var(--muted);
      display: flex;
      align-items: center;
      transition: color .2s;
    }
    .pw-toggle:hover { color: var(--navy); }

    .form-row-meta {
      display: flex;
      justify-content: flex-end;
      margin-top: -8px;
    }
    .forgot-link {
      font-size: 13px;
      font-weight: 500;
      color: var(--green);
      transition: opacity .2s;
    }
    .forgot-link:hover { opacity: .75; }

    .btn-full {
      width: 100%;
      padding: 15px;
      font-size: 16px;
      border-radius: 11px;
      margin-top: 4px;
    }

    /* ── DIVIDER ── */
    .auth-divider {
      display: flex;
      align-items: center;
      gap: 12px;
      margin: 20px 0;
    }
    .auth-divider-line { flex: 1; height: 1px; background: var(--border); }
    .auth-divider-text { font-size: 13px; color: var(--muted); white-space: nowrap; }

    /* ── CREATE ACCOUNT ── */
    .btn-outline-full {
      width: 100%;
      padding: 14px;
      font-size: 15px;
      border-radius: 11px;
      background: transparent;
      border: 2px solid var(--border);
      color: var(--text);
      font-family: 'Outfit', sans-serif;
      font-weight: 600;
      cursor: pointer;
      transition: all .2s;
      text-align: center;
      display: block;
    }
    .btn-outline-full:hover { border-color: var(--green); color: var(--green); }

    /* ── LEGAL TEXT ── */
    .auth-legal {
      font-size: 12.5px;
      color: var(--muted);
      text-align: center;
      margin-top: 18px;
      line-height: 1.6;
    }
    .auth-legal a { color: var(--green); }
    .auth-legal a:hover { text-decoration: underline; }

    /* ── TRUST STRIP ── */
    .auth-trust {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0;
      margin-top: 28px;
      padding-top: 24px;
      border-top: 1px solid var(--border);
    }
    .trust-item {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 12.5px;
      font-weight: 600;
      color: var(--muted);
      padding: 0 16px;
      position: relative;
    }
    .trust-item:not(:last-child)::after {
      content: '';
      position: absolute;
      right: 0;
      top: 50%;
      transform: translateY(-50%);
      width: 1px;
      height: 16px;
      background: var(--border);
    }
    .trust-item svg { color: var(--green); flex-shrink: 0; }
    .trust-stars { color: var(--gold); font-size: 11px; letter-spacing: .5px; }

    /* ── MINIMAL FOOTER ── */
    .auth-footer {
      background: var(--navy);
      color: rgba(255,255,255,.5);
      font-size: 13px;
      padding: 18px 24px;
      text-align: center;
    }
    .auth-footer a { color: rgba(255,255,255,.55); transition: color .2s; }
    .auth-footer a:hover { color: var(--white); }

    .services-amount {
      border-color: rgb(229 231 235 / var(--tw-border-opacity));
      border-width: 1px;
      border: solid;
      border-radius: 1rem;
      align-items: flex-start;
      margin: 0 auto;
      padding: 3rem;
      text-align: center;
      width: 33%;
  }

  .byline strong { color: var(--navy); }
  .ctry-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 44px; }
  .ctry-card { background: var(--white); border: 1.5px solid var(--border); border-radius: 16px; padding: 28px 26px; display: flex; flex-direction: column; transition: transform .25s, box-shadow .25s, border-color .25s; }
  .ctry-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--green); }
  .ctry-flag { width: 52px; height: auto; border-radius: 5px; margin-bottom: 12px; box-shadow: 0 2px 8px rgba(15,42,68,.18); display: block; }
  .ctry-card h3 { font-family: 'Playfair Display', serif; font-size: 22px; color: var(--navy); margin-bottom: 8px; }
  .ctry-card p { font-size: 15px; color: var(--muted); line-height: 1.6; margin-bottom: 18px; }
  .ctry-card .btn { margin-top: auto; justify-content: center; }
  .ctry-more { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
  .ctry-chip { font-size: 14px; font-weight: 600; color: var(--text); background: var(--cream); border: 1px solid var(--border); border-radius: 100px; padding: 9px 16px; }

  .oc-grid { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
  .oc-chip { display: inline-flex; align-items: center; gap: 9px; font-size: 14.5px; font-weight: 600; color: var(--text); background: var(--white); border: 1px solid var(--border); border-radius: 100px; padding: 7px 16px 7px 8px; box-shadow: var(--shadow); }
  .oc-chip img { width: 26px; height: auto; border-radius: 3px; }
  .diff-box { margin-top: 34px; background: #FFF9F0; border: 1.5px solid rgba(212,166,52,.4); border-radius: var(--radius); padding: 32px 30px; }
  .diff-iran { display: flex; gap: 14px; align-items: flex-start; background: rgba(212,166,52,.12); border: 1px solid rgba(212,166,52,.4); border-radius: 12px; padding: 18px 20px; margin: 22px 0 24px; }
  .diff-iran .di-icon { font-size: 24px; flex-shrink: 0; }
  .diff-iran .di-t { font-weight: 700; color: var(--navy); margin-bottom: 4px; }
  .diff-iran .di-d { font-size: 14.5px; color: var(--muted); line-height: 1.6; }
  .diff-table { display: flex; flex-direction: column; border: 1px solid var(--border); border-radius: 12px; overflow: hidden; background: #fff; }
  .diff-trow { display: grid; grid-template-columns: 210px 1fr; border-bottom: 1px solid var(--border); }
  .diff-trow:last-child { border-bottom: none; }
  .diff-tc-name { display: flex; align-items: center; gap: 10px; font-weight: 600; color: var(--navy); font-size: 14.5px; padding: 14px 16px; background: var(--cream); border-right: 1px solid var(--border); }
  .diff-tc-name img { width: 24px; height: auto; border-radius: 3px; flex-shrink: 0; }
  .diff-tc-why { font-size: 14px; color: var(--muted); line-height: 1.55; padding: 14px 18px; }
  .diff-issues { margin-top: 26px; }
  .diff-issues ul { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 28px; margin-top: 14px; }
  .diff-issues li { font-size: 14.5px; color: var(--text); line-height: 1.5; padding-left: 22px; position: relative; }
  .diff-issues li::before { content: '•'; color: var(--gold); position: absolute; left: 6px; font-weight: 700; }

  @media (max-width: 760px) { .ctry-grid { grid-template-columns: 1fr; } }
    @media (max-width: 680px) { .diff-trow { grid-template-columns: 130px 1fr; } .diff-issues ul { grid-template-columns: 1fr; } }

  .ctry-card .btn { margin-top: auto; justify-content: center; }
  .gw { background: var(--white); }
  .gsec { padding: 70px 0; }
  .gsec.cream { background: var(--cream); }
  .gsec.navy { background: var(--navy); }
  .gnarrow { max-width: 820px; margin: 0 auto; }
  .gsec p.lead { font-size: 20px; line-height: 1.75; color: var(--text); margin-bottom: 18px; }
  .gsec p { font-size: 17px; line-height: 1.8; color: var(--text); margin-bottom: 18px; }
  .gsec.navy p { color: rgba(255,255,255,.85); }
  .gsec h2.sh { margin-bottom: 14px; }
  .gsec .subtext { font-size: 17px; color: var(--muted); line-height: 1.7; margin-bottom: 36px; max-width: 720px; }
  .gsec.navy .subtext { color: rgba(255,255,255,.8); }

  /* stat band */
  .stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
  .stat-item { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 26px 18px; text-align: center; box-shadow: var(--shadow); }
  .stat-number { font-family: 'Playfair Display', serif; font-size: 38px; font-weight: 700; color: var(--green); line-height: 1; }
  .stat-label { font-size: 14px; color: var(--muted); margin-top: 10px; line-height: 1.45; }
  /* feature cards */
      .why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
  .why-card { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 28px 24px; transition: transform .25s, box-shadow .25s; }
  .why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
  .why-icon { font-size: 30px; margin-bottom: 14px; }
  .why-title { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
  .why-desc { font-size: 15px; color: var(--muted); line-height: 1.65; margin: 0; }

  .gfacts { display: grid; grid-template-columns: repeat(5,1fr); gap: 16px; }
  .gfact { background: linear-gradient(160deg,#15324f,#0F2A44); border-radius: 16px; padding: 22px 18px; color: #fff; }
  .gfact .fn { font-family: 'Playfair Display', serif; font-size: 15px; font-weight: 700; color: var(--gold); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 10px; }
  .gfact p { font-size: 14.5px; line-height: 1.6; color: rgba(255,255,255,.9); margin: 0; }
  /* place cards */
      .gplaces { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
  .gplace { background: #fff; border: 1px solid var(--border); border-radius: 16px; overflow: hidden; box-shadow: var(--shadow); transition: transform .25s, box-shadow .25s; }
  .gplace:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
  .gplace-img { height: 148px; position: relative; display: flex; align-items: center; justify-content: center; font-size: 44px; }
  .gplace-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
  .gplace-body { padding: 18px 20px 22px; }
  .gplace-body h3 { font-family: 'Playfair Display', serif; font-size: 20px; color: var(--navy); margin-bottom: 6px; }
  .gplace-body p { font-size: 14.5px; color: var(--muted); line-height: 1.6; margin: 0; }
  /* visa cards */
      .gvisas { display: grid; grid-template-columns: repeat(2,1fr); gap: 22px; }
  .gvisa { background: #fff; border: 1.5px solid var(--border); border-radius: 16px; padding: 28px; display: flex; flex-direction: column; transition: transform .25s, box-shadow .25s, border-color .25s; }
  .gvisa:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--green); }
  .gvisa-top { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 6px; }
  .gvisa h3 { font-family: 'Playfair Display', serif; font-size: 22px; color: var(--navy); }
  .gvisa .fig { font-size: 15px; font-weight: 700; color: var(--green); white-space: nowrap; }
  .gvisa p { font-size: 15px; color: var(--muted); line-height: 1.65; margin: 0 0 16px; }
  .gvisa .gv-link { margin-top: auto; font-weight: 600; color: var(--green); text-decoration: none; font-size: 15px; }
  /* warning/tip callout -> uses common .redirect-notice / .rn-* */
      .gcallout { background: var(--cream); border-left: 4px solid var(--green); border-radius: 10px; padding: 18px 24px; margin: 8px 0 0; font-size: 16px; line-height: 1.7; }
  .gcallout a, .gsec a.tlink { color: var(--green); font-weight: 600; text-decoration: none; }
  /* split image + text */
      .gsplit { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
  .gsplit-img { border-radius: 18px; overflow: hidden; min-height: 320px; background: linear-gradient(135deg,#1E8C78,#0F2A44); position: relative; box-shadow: var(--shadow-lg); }
  .gsplit-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
  .greg { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; margin-top: 8px; }
  .greg-c { background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 18px 20px; }
  .greg-c b { color: var(--navy); }
  .greg-c span { display: block; font-size: 14.5px; color: var(--muted); line-height: 1.55; margin-top: 4px; }
  @media (max-width: 980px) {
      .stats-grid { grid-template-columns: repeat(2,1fr); }
      .why-grid, .gvisas { grid-template-columns: 1fr; }
      .gfacts { grid-template-columns: repeat(2,1fr); }
      .gplaces { grid-template-columns: repeat(2,1fr); }
      .gsplit { grid-template-columns: 1fr; gap: 28px; }
      .greg { grid-template-columns: 1fr; }
  }
  @media (max-width: 560px) {
      .gplaces { grid-template-columns: 1fr; }
      .gfacts { grid-template-columns: 1fr; }
  }
  .gduo { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  .gduo-c { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 24px 26px; }
  .gduo-c h4 { font-size: 17px; color: var(--navy); margin-bottom: 8px; }
  .gduo-c p { font-size: 15px; color: var(--muted); line-height: 1.65; margin: 0; }
  .gchips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
  .gchip { background: #fff; border: 1px solid var(--border); border-radius: 100px; padding: 9px 16px; font-size: 14.5px; font-weight: 600; color: var(--navy); }
  .gchip b { color: var(--green); }
  .gcheck { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 28px 32px; box-shadow: var(--shadow); }
  .gcheck ul { columns: 2; column-gap: 40px; list-style: none; }
  .gcheck li { position: relative; padding-left: 28px; margin-bottom: 12px; break-inside: avoid; font-size: 15.5px; color: var(--text); line-height: 1.5; }
  .gcheck li::before { content: '\2713'; position: absolute; left: 0; color: var(--green); font-weight: 700; }
  @media (max-width: 760px) {
      .gduo { grid-template-columns: 1fr; }
      .gcheck ul { columns: 1; }
  }
  .gsec { scroll-margin-top: 130px; }
  .gtoc { position: sticky; top: 110px; z-index: 150; background: rgba(255,255,255,.97); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border); box-shadow: 0 2px 14px rgba(15,42,68,.05); }
  .gtoc-inner { display: flex; gap: 4px; overflow-x: auto; padding: 9px 0; scrollbar-width: none; }
  .gtoc-inner::-webkit-scrollbar { display: none; }
  .gtoc-inner a { white-space: nowrap; font-size: 14px; font-weight: 600; color: var(--muted); text-decoration: none; padding: 7px 14px; border-radius: 100px; transition: background .15s, color .15s; }
  .gtoc-inner a:hover { background: var(--cream); color: var(--green); }
  .gtool { display: flex; align-items: center; justify-content: space-between; gap: 22px; flex-wrap: wrap; background: var(--navy); border-radius: 16px; padding: 26px 30px; margin-top: 30px; }
  .gtool-t { font-weight: 700; color: #fff; font-size: 18px; margin-bottom: 5px; }
  .gtool-d { font-size: 15px; color: rgba(255,255,255,.82); line-height: 1.6; max-width: 600px; }
  .gtool .btn { flex-shrink: 0; }
  @media (max-width: 620px) {
      .gtool { flex-direction: column; align-items: flex-start; }
  }
  .gread { max-width: 820px; margin: 28px auto 0; background: #fff; border: 1px solid var(--border); border-left: 3px solid var(--green); border-radius: 10px; padding: 15px 20px; box-shadow: var(--shadow); }
  .gread-l { display: block; font-weight: 700; color: var(--navy); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 8px; }
  .gread a { display: block; color: var(--green); font-weight: 600; font-size: 14.5px; line-height: 1.5; text-decoration: none; padding: 3px 0; }
  .gread a:hover { text-decoration: underline; }

  .cart-area .addon-name { color: #070E17; text-align: left;}

  /* --- MAIN LAYOUT --- */
  .shop-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 0;
    max-width: 1400px;
    margin: 0 auto;
  }
  .shop-main { min-width: 0; }
  .shop-sidebar { padding: 56px 0 56px 36px; }
  .shop-sticky { position: sticky; top: 90px; }

  /* --- SERVICE GROUPS --- */
    .service-group { padding: 56px 0; border-bottom: 1px solid var(--border); }
    .service-group:last-child { border-bottom: none; }
    .service-group-header { padding: 0 28px; margin-bottom: 28px; }
    .service-group-title {
      font-family: 'Playfair Display', serif;
      font-size: 22px; font-weight: 700; color: var(--navy); margin-bottom: 6px;
    }
    .service-group-desc { font-size: 16px; color: var(--muted); }

    /* --- SERVICE CARDS --- */
    .service-cards { display: flex; flex-direction: column; gap: 0; }
    .service-card {
      display: grid;
      grid-template-columns: 40px 1fr auto;
      gap: 0 20px;
      align-items: start;
      padding: 22px 28px;
      border-bottom: 1px solid var(--border);
      transition: background .15s;
      position: relative;
    }
    .service-card:last-child { border-bottom: none; }
    .service-card:hover { background: var(--cream); }
    .service-card.selected {
      background: rgba(4,106,56,.04);
      border-left: 3px solid var(--green);
      padding-left: 25px;
    }

    /* Checkbox */
    .sc-check {
      width: 22px; height: 22px; border-radius: 6px;
      border: 2px solid var(--border); background: var(--white);
      display: flex; align-items: center; justify-content: center;
      cursor: pointer; transition: all .2s; flex-shrink: 0; margin-top: 2px;
    }
    .sc-check.checked { background: var(--green); border-color: var(--green); }
    .sc-check svg { display: none; }
    .sc-check.checked svg { display: block; }

    /* Card body */
    .sc-body { min-width: 0; }
    .sc-name { font-size: 16px; font-weight: 600; color: var(--navy); margin-bottom: 4px; cursor: pointer; }
    .sc-desc { font-size: 15px; color: var(--muted); line-height: 1.55; margin-bottom: 8px; }
    .sc-tags { display: flex; gap: 6px; flex-wrap: wrap; }
    .sc-tag {
      font-size: 13px; font-weight: 500; padding: 3px 10px; border-radius: 100px;
      background: rgba(4,106,56,.08); color: var(--green);
    }
    .sc-tag.tag-teal { background: rgba(30,140,120,.08); color: var(--teal); }
    .sc-tag.tag-gold { background: rgba(212,166,52,.1); color: #9A7A1E; }

    /* Card right */
    .sc-right { text-align: right; display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
    .sc-price { font-size: 20px; font-weight: 700; color: var(--navy); white-space: nowrap; }
    .sc-price-sub { font-size: 13px; color: var(--muted); margin-top: -6px; }
    .sc-add-btn {
      font-family: 'Outfit', sans-serif; font-size: 14px; font-weight: 600;
      padding: 8px 16px; border-radius: 7px; border: 1.5px solid var(--border);
      background: var(--white); color: var(--navy); cursor: pointer;
      transition: all .2s; white-space: nowrap;
    }
    .sc-add-btn:hover { border-color: var(--green); color: var(--green); background: rgba(4,106,56,.04); }
    .service-card.packages-only { cursor: default; }
    .service-card.packages-only:hover { background: var(--white); }
    .sc-check-placeholder { width: 22px; height: 22px; flex-shrink: 0; }
    .sc-packages-badge { font-size: 13px; font-weight: 600; color: var(--muted); background: var(--cream); border: 1.5px solid var(--border); padding: 6px 12px; border-radius: 7px; white-space: nowrap; text-align: center; }
    .service-card.selected .sc-add-btn {
      background: var(--green); border-color: var(--green); color: #fff;
    }
    .service-card.selected .sc-add-btn:hover { background: var(--green-l); }

    /* --- ORDER SUMMARY SIDEBAR --- */
    .order-card {
      background: var(--white); border: 1.5px solid var(--border);
      border-radius: var(--radius); overflow: hidden;
      box-shadow: 0 8px 40px rgba(15,42,68,.13);
    }
    .order-header { background: var(--navy); padding: 20px 22px 16px; }
    .order-header-label { font-size: 13px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.45); margin-bottom: 6px; }
    .order-header-title { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: #fff; }
    .order-empty { padding: 28px 22px; text-align: center; }
    .order-empty-icon { font-size: 32px; margin-bottom: 10px; opacity: .4; }
    .order-empty-text { font-size: 15px; color: var(--muted); line-height: 1.55; }
    .order-items { display: flex; flex-direction: column; }
    .order-item {
      display: flex; align-items: flex-start; justify-content: space-between;
      gap: 10px; padding: 13px 22px; border-bottom: 1px solid var(--border);
    }
    .oi-name { font-size: 15px; font-weight: 500; color: var(--text); line-height: 1.35; }
    .oi-price { font-size: 15px; font-weight: 700; color: var(--navy); white-space: nowrap; flex-shrink: 0; }
    .oi-remove { font-size: 16px; color: var(--muted); cursor: pointer; line-height: 1; margin-left: 4px; transition: color .15s; flex-shrink: 0; }
    .oi-remove:hover { color: #c0392b; }
    .order-totals { padding: 16px 22px; background: var(--cream); }
    .order-subtotal { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 6px; }
    .order-subtotal-label { font-size: 14px; color: var(--muted); }
    .order-subtotal-val { font-size: 15px; font-weight: 600; color: var(--navy); }
    .order-discount { display: none; align-items: center; justify-content: space-between; margin-bottom: 10px; }
    .order-discount.show { display: flex; }
    .order-discount-label { font-size: 14px; color: var(--teal); font-weight: 500; }
    .order-discount-val { font-size: 14px; color: var(--teal); font-weight: 600; }
    .order-divider { height: 1px; background: var(--border); margin: 10px 0; }
    .order-total-row { display: flex; justify-content: space-between; align-items: baseline; }
    .order-total-label { font-size: 16px; font-weight: 600; color: var(--navy); }
    .order-total-val { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 700; color: var(--navy); }
    .order-cta { padding: 16px 22px 20px; }
    .order-cta .btn { width: 100%; justify-content: center; font-size: 16px; margin-bottom: 10px; }
    .order-cta-note { font-size: 13px; color: var(--muted); text-align: center; line-height: 1.5; }
    .order-trust { display: flex; align-items: center; justify-content: center; gap: 6px; padding: 10px 22px; border-top: 1px solid var(--border); }
    .ot-stars { color: #FFC107; font-size: 13px; letter-spacing: 1px; }
    .ot-text { font-size: 13px; color: var(--muted); }

    /* Applicant discount selector */
    .order-applicants { padding: 14px 22px; border-bottom: 1px solid var(--border); background: rgba(4,106,56,.03); }
    .oa-label { font-size: 13px; font-weight: 600; color: var(--green); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 10px; }
    .oa-row { display: flex; gap: 8px; }
    .oa-btn {
      flex: 1; padding: 8px 4px; border-radius: 7px; border: 1.5px solid var(--border);
      background: var(--white); font-family: 'Outfit', sans-serif;
      font-size: 14px; font-weight: 500; color: var(--muted); cursor: pointer; transition: all .15s; text-align: center;
    }
    .oa-btn.active { border-color: var(--green); color: var(--green); background: rgba(4,106,56,.05); font-weight: 600; }

    /* Family configurator dropdowns */
    .oa-dropdowns { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 10px; }
    .oa-field { display: flex; flex-direction: column; gap: 5px; }
    .oa-field-lbl { font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
    .oa-select-wrap { position: relative; }
    .oa-select {
      width: 100%; padding: 10px 32px 10px 13px;
      font-family: 'Outfit', sans-serif; font-size: 17px; font-weight: 700; color: var(--navy);
      background: var(--white); border: 1.5px solid var(--border); border-radius: 8px;
      appearance: none; -webkit-appearance: none; cursor: pointer; transition: border-color .2s;
    }
    .oa-select:hover { border-color: var(--navy); }
    .oa-select:focus { outline: none; border-color: var(--green); }
    .oa-chevron { position: absolute; right: 11px; top: 50%; transform: translateY(-50%); pointer-events: none; color: var(--muted); font-size: 10px; line-height: 1; }
    .oa-note { font-size: 13px; color: var(--teal); background: rgba(30,140,120,.07); border: 1px solid rgba(30,140,120,.18); border-radius: 8px; padding: 8px 12px; line-height: 1.5; margin-top: 2px; }

    .sc-spinner{display:inline-block;width:14px;height:14px;border:2px solid rgba(255,255,255,.45);border-top-color:#fff;border-radius:50%;animation:scspin .6s linear infinite;vertical-align:middle}
    .is-loading .sc-spinner{border-top-color:#0a0000;}
    @keyframes scspin{to{transform:rotate(360deg)}}
    .service-card.is-loading{pointer-events:none;opacity:.85}
    .order-card.order-busy .order-items,
    .order-card.order-busy .order-totals{opacity:.5;transition:opacity .15s}
    .order-card.order-busy{position:relative}
    .order-card.order-busy::after{content:"";position:absolute;top:14px;right:14px;width:18px;height:18px;border:2px solid rgba(0,0,0,.15);border-top-color:var(--green,#e67e22);border-radius:50%;animation:scspin .6s linear infinite}

    /* Mobile cart bar */
    .mobile-cart-bar {
      display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 150;
      background: var(--navy); padding: 10px 16px 14px;
      flex-direction: column; gap: 10px;
      box-shadow: 0 -4px 20px rgba(0,0,0,.4); border-top: 1px solid rgba(255,255,255,.1);
    }
    .mcb-config-lbl { font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.45); display: block; margin-bottom: 6px; }
    .mcb-selects { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
    .mcb-sel-group { display: flex; flex-direction: column; gap: 3px; }
    .mcb-sel-lbl { font-size: 10px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.55); }
    .mcb-sel-group .oa-select { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.2); font-size: 15px; padding: 8px 28px 8px 10px; }
    .mcb-sel-group .oa-select:focus { border-color: var(--gold); outline: none; }
    .mcb-sel-group .oa-select option { color: black; }
    .mcb-sel-group .oa-chevron { color: rgba(255,255,255,.5); }
    .mcb-bottom { display: flex; align-items: center; justify-content: space-between; }
    .mcb-count { font-size: 11px; color: rgba(255,255,255,.5); }
    .mcb-total { font-size: 17px; font-weight: 700; color: #F5C87A; line-height: 1.2; }
    .sl-sidebar .tp-widget {color: white;}
    
    /* --- FEATURED --- */
    .featured-section { padding: 72px 0 0; }
    .section-eyebrow { margin-bottom: 28px; }
    .featured-card {
      display: grid; grid-template-columns: 1fr 1fr;
      border-radius: 20px; overflow: hidden;
      border: 1px solid var(--border);
      box-shadow: var(--shadow-lg);
      text-decoration: none; color: var(--text);
      transition: transform .3s, box-shadow .3s;
    }
    .featured-card:hover { transform: translateY(-4px); box-shadow: 0 24px 64px rgba(15,42,68,.22); }
    .feat-img { position: relative; height: 440px; overflow: hidden; background: var(--navy); }
    .feat-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s; }
    .featured-card:hover .feat-img img { transform: scale(1.04); }
    .feat-badge { position: absolute; top: 20px; left: 20px; background: var(--gold); color: var(--navy); font-size: 11px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; padding: 5px 14px; border-radius: 100px; }
    .feat-body { padding: 48px; display: flex; flex-direction: column; justify-content: center; background: var(--white); }
    .feat-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
    .feat-cat { font-size: 13px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--green); background: rgba(4,106,56,.1); padding: 4px 12px; border-radius: 100px; }
    .feat-date { font-size: 14px; color: var(--muted); }
    .feat-title { font-family: 'Playfair Display', serif; font-size: clamp(22px, 2.6vw, 30px); font-weight: 700; color: var(--navy); line-height: 1.28; margin-bottom: 16px; transition: color .2s; }
    .featured-card:hover .feat-title { color: var(--green); }
    .feat-excerpt { font-size: 16px; color: var(--muted); line-height: 1.7; margin-bottom: 28px; font-weight: 300; }
    .feat-link { display: inline-flex; align-items: center; gap: 8px; font-size: 15px; font-weight: 600; color: var(--green); align-self: flex-start; transition: gap .2s; }
    .featured-card:hover .feat-link { gap: 14px; }

    #blogPagination .pagination {opacity: 1 !important;}

    .ov-split { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 44px; align-items: center; margin-top: 44px; }
    .ov-photo { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); align-self: stretch; min-height: 320px; }
    .ov-photo img { width: 100%; height: 100%; min-height: 320px; object-fit: cover; display: block; }
    .who-grid-v { display: flex; flex-direction: column; gap: 16px; }

    .portuguese-citizenship-by-descent #process { background: var(--white); padding: 96px 0; }
    .steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 52px; position: relative; }
    .steps::before { content: ''; position: absolute; top: 26px; left: 8%; right: 8%; height: 2px; background: var(--border); z-index: 0; }
    .step { position: relative; z-index: 1; }
    .portuguese-citizenship-by-descent .step-num{ width: 52px; height: 52px; border-radius: 50%; background: var(--green); color: #fff; font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; box-shadow: 0 0 0 6px var(--white), 0 6px 16px rgba(21,128,61,.3); }

    .eu-family-member .step-num { width: 52px; height: 52px; border-radius: 50%; background: var(--pink); color: #fff; font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; box-shadow: 0 0 0 6px var(--white), 0 6px 16px rgba(21,128,61,.3); }
    .step-title { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 7px; }
    .step-desc { font-size: 14.5px; color: var(--muted); line-height: 1.6; }