*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --purple: #6A4BCF;
    --purple-dark: #543CA5;
    --purple-light: #EEE9FF;
    --black: #08070A;
    --black-60: rgba(8,7,10,0.6);
    --black-15: rgba(8,7,10,0.15);
    --white: #fff;
    --bg: #f5f5f7;
    --green: #22c55e;
    --red: #ef4444;
    --red-light: #fca5a5;
    --radius-sm: 24px;
    --radius-md: 20px;
    --radius-lg: 28px;
    --section-pad: 120px 80px;
    --container: 1400px;
}

html { font-size: 34px; }
body {
    font-family: Inter, -apple-system, sans-serif;
    color: var(--black);
    background: var(--white);
    overflow-x: hidden;
    zoom: 0.67;
}

.container { max-width: var(--container); margin: 0 auto; width: 100%; }

/* ── NAVBAR ── */
nav, nav.top-nav {
    position: sticky; top: 0; z-index: 100;
    height: 80px; padding: 0 80px;
    display: flex; align-items: center; justify-content: space-between;
    background: rgba(255,255,255,0.95); backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--black-15);
}
.nav-logo { flex: 1; display: flex; align-items: center; }
.nav-logo svg, .nav-logo a { display: block; text-decoration: none; }
.nav-logo img { height: 40px; width: auto; display: block; }
.nav-links { display: flex; gap: 48px; align-items: center; justify-content: center; padding: 0 24px; }
.nav-links a {
    font-size: 20px; font-weight: 600; color: var(--black); text-decoration: none;
    padding: 8px 20px; border-radius: var(--radius-sm);
    border: 1.5px solid var(--purple-dark);
    box-shadow: 0 4px 0 var(--purple-dark);
    transition: transform .15s, box-shadow .15s;
    min-width: 160px; text-align: center;
}
.nav-links a:hover { transform: translateY(-1px); box-shadow: 0 6px 0 var(--purple-dark); }
@keyframes navLinkIn {
    from { opacity: 0; transform: translateY(-16px); }
    to   { opacity: 1; transform: translateY(0); }
}
.nav-links a { opacity: 0; transform: translateY(-16px); }
body.nav-ready .nav-links a { animation: navLinkIn 0.4s ease both; }
body.nav-ready .nav-links a:nth-child(1) { animation-delay: 0.05s; }
body.nav-ready .nav-links a:nth-child(2) { animation-delay: 0.18s; }
body.nav-ready .nav-links a:nth-child(3) { animation-delay: 0.31s; }
body.nav-ready .nav-links a:nth-child(4) { animation-delay: 0.44s; }
.nav-actions { flex: 2; display: flex; gap: 24px; align-items: center; justify-content: flex-end; padding-left: 48px; margin-right: 150px; }
#nav-auth-btns { display: flex; gap: 24px; align-items: center; opacity: 0; }
#nav-avatar-wrap { opacity: 0; }
body.user-logged-in .nav-links { gap: 100px; padding: 0 48px; }
body.user-logged-in .nav-links a { min-width: 230px; }
body.user-logged-in .nav-actions { flex: 1; margin-right: 20px; }

body.nav-ready #nav-auth-btns,
body.nav-ready #nav-avatar-wrap,
body.nav-ready .dark-toggle,
body.nav-ready .lang-dropdown { animation: navLinkIn 0.35s ease both; }
.nav-avatar-bubble {
    width: 44px; height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2.5px solid var(--purple);
    cursor: pointer;
    display: block;
    box-shadow: 0 2px 8px rgba(112,66,248,0.25);
    transition: transform .15s, box-shadow .15s;
}
.nav-avatar-bubble:hover { transform: translateY(-1px); box-shadow: 0 4px 14px rgba(112,66,248,0.35); }

/* ── AVATAR DROPDOWN ── */
.nav-avatar-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: #fff;
  border: 1px solid rgba(112,66,248,0.15);
  border-radius: 17px;
  box-shadow: 0 16px 56px rgba(0,0,0,0.12);
  min-width: 224px;
  padding: 8px;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 1000;
}
.nav-avatar-dropdown.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.nav-dd-item {
  display: flex;
  align-items: center;
  gap: 13px;
  width: 100%;
  background: none;
  border: none;
  padding: 13px 17px;
  border-radius: 11px;
  font-size: 20px;
  font-weight: 500;
  color: #2d2d2d;
  cursor: pointer;
  text-align: left;
  transition: background 0.15s;
}
.nav-dd-item svg { width: 21px; height: 21px; }
.nav-dd-item:hover { background: rgba(112,66,248,0.07); }
.nav-dd-divider { height: 1px; background: rgba(0,0,0,0.07); margin: 6px 0; }
.nav-dd-logout { color: #e74c3c; }
.nav-dd-logout:hover { background: rgba(231,76,60,0.07); }

/* ── LANGUAGE DROPDOWN ── */
.lang-dropdown { position: relative; flex-shrink: 0; opacity: 0; }
.lang-toggle {
    display: flex; align-items: center; gap: 8px;
    padding: 8px 16px;
    border: 1.5px solid var(--black-15);
    border-radius: var(--radius-sm);
    background: var(--white); cursor: pointer;
    font-size: 20px; font-weight: 700;
    font-family: Inter, sans-serif; color: var(--black);
    box-shadow: 0 3px 0 var(--black-15);
    transition: background .15s, box-shadow .15s;
}
.lang-toggle:hover { background: #f5f5f7; box-shadow: 0 5px 0 var(--black-15); }
.lang-globe { width: 22px; height: 22px; flex-shrink: 0; opacity: 0.7; }
.lang-chevron { width: 18px; height: 18px; flex-shrink: 0; transition: transform .2s; opacity: 0.6; }
.lang-dropdown.open .lang-chevron { transform: rotate(180deg); }
.lang-menu {
    position: absolute; top: calc(100% + 10px); right: 0;
    background: var(--white);
    border: 1.5px solid var(--black-15);
    border-radius: var(--radius-md);
    box-shadow: 0 12px 40px rgba(8,7,10,0.14);
    overflow: hidden; display: none; min-width: 190px; z-index: 300;
}
.lang-dropdown.open .lang-menu { display: block; }
.lang-option {
    display: flex; align-items: center; gap: 14px;
    width: 100%; padding: 16px 22px;
    background: none; border: none; cursor: pointer;
    font-family: Inter, sans-serif; text-align: left;
    transition: background .15s;
}
.lang-option:hover { background: var(--purple-light); }
.lang-option.active { background: var(--purple-light); }
.lang-opt-code { font-weight: 700; font-size: 20px; color: var(--purple); min-width: 28px; }
.lang-opt-name { font-size: 18px; color: var(--black-60); }

.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    font-family: Inter, sans-serif; font-weight: 600;
    border-radius: var(--radius-sm); cursor: pointer;
    transition: transform .15s, box-shadow .15s;
    text-decoration: none;
}
.btn:hover { transform: translateY(-1px); }
.btn-sm { padding: 10px 26px; font-size: 24px; min-width: 230px; text-align: center; }
.btn-md { padding: 24px 36px; font-size: 34px; }
.btn-lg { padding: 20px 48px; font-size: 20px; }
.btn-primary { background: var(--purple); color: var(--white); border: 2px solid var(--purple-dark); box-shadow: 0 4px 0 var(--purple-dark); }
.btn-primary:hover { box-shadow: 0 6px 0 var(--purple-dark); }
.btn-secondary { background: var(--white); color: var(--black); border: 2px solid var(--black-15); box-shadow: 0 4px 0 var(--black-15); }
.btn-secondary:hover { box-shadow: 0 6px 0 var(--black-15); }
.btn-outline-white { background: transparent; color: var(--white); border: 2.5px solid rgba(255,255,255,0.7); }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); }

/* ── HERO ── */
.hero {
    min-height: calc(100vh - 80px);
    padding: 100px 80px;
    background: linear-gradient(160deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.35) 100%);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}
.hero-inner { max-width: var(--container); margin: 0 auto; display: flex; gap: 80px; align-items: center; width: 100%; }
.hero-left { flex: 1; display: flex; flex-direction: column; gap: 36px; }
.hero-right { flex: 1; display: flex; flex-direction: column; justify-content: flex-end; }
.hero h1 {
    font-family: Poppins, sans-serif; font-weight: 800;
    font-size: clamp(56px, 5.5vw, 88px); line-height: 1.08; letter-spacing: -1.5px;
    color: var(--white);
}
.hero-desc { font-size: clamp(34px, 1.4vw, 24px); line-height: 1.6; color: rgba(255,255,255,0.9); max-width: 540px; }
.hero-actions { display: flex; gap: 34px; flex-wrap: wrap; }

/* ── SECTION TITLES ── */
.section-tag { font-size: 40px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--purple); margin-bottom: 24px; }
.section-h2 { font-family: Poppins, sans-serif; font-weight: 700; font-size: clamp(38px, 3.2vw, 58px); line-height: 1.1; letter-spacing: -0.8px; color: var(--black); }
.section-sub { font-size: clamp(25px, 1.2vw, 20px); color: var(--black-60); line-height: 1.65; margin-top: 24px; }
.section-title-center { text-align: center; max-width: 720px; margin: 0 auto 72px; }

/* ── FEATURES ── */
.features { padding: var(--section-pad); background: var(--white); }
.cards-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.card { border: 1.5px solid var(--black-15); border-radius: var(--radius-md); overflow: hidden; display: flex; flex-direction: column; background: var(--white); }
.card-body { padding: 40px; display: flex; flex-direction: column; gap: 20px; flex: 1; }
.card-tag { font-size: 24px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; color: var(--purple); }
.card-h3 { font-family: Poppins, sans-serif; font-weight: 700; font-size: clamp(26px, 2vw, 34px); line-height: 1.2; letter-spacing: -0.3px; color: var(--black); }
.card-p { font-size: 24px; line-height: 1.65; color: var(--black-60); }
.card-link { display: inline-flex; align-items: center; gap: 6px; font-size: 24px; font-weight: 600; color: var(--black); text-decoration: none; margin-top: auto; padding-top: 8px; }
.card-link svg { transition: transform .2s; }
.card-link:hover svg { transform: translateX(4px); }
.feature-card-img { height: 280px; object-fit: cover; width: 100%; display: block; }

/* ── STEPS ── */
.steps { padding: var(--section-pad); background: #FAFAFA; }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.step-card {
    padding: 36px; border-radius: var(--radius-md);
    background: linear-gradient(160deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.35) 100%),
                url('https://api.builder.io/api/v1/image/assets/TEMP/c3fbc3025cdeeb802b4c4f0fe7cf6aa7df5a3fe5?width=592') center/cover no-repeat;
    display: flex; flex-direction: column; gap: 20px; min-height: 340px; justify-content: space-between;
}
.step-card:nth-child(1) { background: linear-gradient(160deg, rgba(135, 8, 149, 0.303), rgba(255, 255, 255, 0.259)), url('images/card1.png') center/cover no-repeat; }
.step-card:nth-child(2) { background: linear-gradient(160deg, rgba(135, 8, 149, 0.303), rgba(255, 255, 255, 0.259)), url('images/card2.png') center/cover no-repeat; }
.step-card:nth-child(3) { background: linear-gradient(160deg, rgba(135, 8, 149, 0.303), rgba(255, 255, 255, 0.259)), url('images/card3.png') center/cover no-repeat; }
.step-card:nth-child(4) { background: linear-gradient(160deg, rgba(135, 8, 149, 0.303), rgba(255, 255, 255, 0.259)), url('images/card4.png') center/cover no-repeat; }
.step-num { width: 52px; height: 52px; border-radius: 24px; background: rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; font-family: Poppins, sans-serif; font-size: 24px; font-weight: 700; color: var(--white); }
.step-h3 { font-family: Poppins, sans-serif; font-weight: 700; font-size: 28px; line-height: 1.2; color: var(--white); }
.step-p { font-size: 24px; line-height: 1.6; color: rgba(255,255,255,0.85); }
.step-link { display: inline-flex; align-items: center; gap: 6px; font-size: 24px; font-weight: 600; color: var(--white); text-decoration: none; margin-top: auto; opacity: 0.9; }
.step-content { min-height: 120px; }

/* ── GALLERY ── */
.gallery { padding: var(--section-pad); background: var(--white); overflow: hidden; }
.gallery-title { margin-bottom: 56px; }
.gallery-track-wrap { overflow: hidden; }
.gallery-track { display: flex; gap: 32px; }
.gallery-item { position: relative; flex-shrink: 0; }
.gallery-img { width: 420px; height: 420px; flex-shrink: 0; border-radius: var(--radius-md); object-fit: cover; display: block; }
.gallery-price {
    position: absolute; bottom: 18px; left: 18px;
    background: rgba(8,7,10,0.55); backdrop-filter: blur(10px);
    color: var(--white); font-family: Poppins, sans-serif; font-weight: 700; font-size: 28px;
    padding: 8px 22px; border-radius: 50px;
    display: flex; align-items: baseline; gap: 1px;
    z-index: 2; pointer-events: none; line-height: 1;
}
.gallery-price-mo { font-family: Inter, sans-serif; font-weight: 500; font-size: 18px; opacity: 0.75; margin-left: 3px; }
.gallery-location {
    position: absolute; bottom: 18px; right: 18px;
    background: rgba(8,7,10,0.55); backdrop-filter: blur(10px);
    color: var(--white); font-family: Inter, sans-serif; font-weight: 600; font-size: 20px;
    padding: 8px 20px; border-radius: 50px;
    display: flex; align-items: center; gap: 7px;
    z-index: 2; pointer-events: none; line-height: 1;
}
.gallery-location svg { width: 18px; height: 18px; flex-shrink: 0; opacity: 0.9; }
.gallery-controls { display: flex; justify-content: space-between; align-items: center; margin-top: 40px; }
.gallery-dots { display: flex; gap: 8px; align-items: center; }
.gallery-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--black); opacity: 0.2; cursor: pointer; border: none; padding: 0; }
.gallery-dot.active { opacity: 1; }
.gallery-arrows { display: flex; gap: 24px; }
.gallery-arrow { width: 48px; height: 48px; border-radius: 8px; border: 1px solid var(--black-15); background: var(--white); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background .15s; }
.gallery-arrow:hover { background: #f5f5f5; }

/* ── TESTIMONIALS ── */
.testimonials { padding: var(--section-pad); background: var(--purple-light); }
.testimonials-header { margin-bottom: 64px; }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.testi-card { background: var(--white); border-radius: var(--radius-md); padding: 44px; display: flex; flex-direction: column; gap: 32px; }
.testi-quote { font-size: clamp(25px, 1.1vw, 20px); line-height: 1.65; color: var(--black); font-style: italic; flex: 1; }
.testi-avatar { display: flex; align-items: center; gap: 24px; }
.testi-avatar-img { width: 56px; height: 56px; border-radius: 50%; background: #ddd; flex-shrink: 0; }
.testi-name { font-size: 25px; font-weight: 700; color: var(--black); }
.testi-role { font-size: 24px; color: var(--black-60); margin-top: 2px; }

/* ── FAQ ── */
.faq { padding: var(--section-pad); background: var(--white); }
.faq-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px 56px; margin-bottom: 72px; }
.faq-item { display: flex; flex-direction: column; gap: 24px; }
.faq-q { font-size: 33px; font-weight: 700; line-height: 1.4; color: var(--black); }
.faq-a { font-size: 24px; line-height: 1.7; color: var(--black-60); }
.faq-cta { display: flex; flex-direction: column; gap: 20px; max-width: 480px; }
.faq-cta-h3 { font-family: Poppins, sans-serif; font-weight: 700; font-size: 36px; line-height: 1.2; }
.faq-cta-p { font-size: 34px; color: var(--black-60); line-height: 1.6; }

/* ── CTA BANNER ── */
.cta-banner {
    padding: 120px 80px;
    background: #3d10677d;
    text-align: center;
    display: flex; flex-direction: column; align-items: center; gap: 36px;
}
.cta-banner h2 { font-family: Poppins, sans-serif; font-weight: 800; font-size: clamp(42px, 4vw, 68px); line-height: 1.1; color: var(--white); letter-spacing: -1px; }
.cta-banner p { font-size: 25px; color: rgba(255,255,255,0.85); max-width: 560px; line-height: 1.6; }
.cta-banner-actions { display: flex; gap: 34px; justify-content: center; flex-wrap: wrap; }
.btn-white { background: var(--white); color: var(--purple); border: 2px solid transparent; box-shadow: 0 4px 0 rgba(0,0,0,0.15); }
.btn-white:hover { box-shadow: 0 6px 0 rgba(0,0,0,0.15); }

/* ── FOOTER ── */
footer { padding: 80px 80px 48px; background: var(--white); border-top: 1px solid var(--black-15); }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 64px; margin-bottom: 64px; flex-wrap: wrap; }
.footer-brand { display: flex; flex-direction: column; gap: 20px; max-width: 320px; }
.footer-brand p { font-size: 24px; color: var(--black-60); line-height: 1.65; }
.footer-newsletter { display: flex; flex-direction: column; gap: 12px; max-width: 380px; }
.footer-newsletter-title { font-size: 25px; font-weight: 700; }
.footer-newsletter-sub { font-size: 24px; color: var(--black-60); }
.newsletter-form { display: flex; gap: 12px; }
.newsletter-input {
    flex: 1; padding: 12px 24px; border: 1.5px solid var(--black-15); border-radius: var(--radius-sm);
    font-size: 24px; font-family: Inter, sans-serif; outline: none; background: var(--white); color: var(--black);
}
.newsletter-input::placeholder { color: var(--black-60); }
.footer-divider { height: 1px; background: var(--black-15); margin-bottom: 48px; }
.footer-links { display: grid; grid-template-columns: repeat(5, 1fr); gap: 32px; margin-bottom: 56px; }
.footer-col-title { font-size: 24px; font-weight: 700; margin-bottom: 24px; color: var(--black); }
.footer-col a { display: block; font-size: 24px; color: var(--black-60); text-decoration: none; padding: 5px 0; transition: color .15s; }
.footer-col a:hover { color: var(--black); }
.footer-social-link { display: flex !important; align-items: center; gap: 10px; }
.footer-social-link svg { flex-shrink: 0; opacity: 0.7; transition: opacity .15s; }
.footer-social-link:hover svg { opacity: 1; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 32px; border-top: 1px solid var(--black-15); }
.footer-copy { font-size: 24px; color: var(--black-60); }

.chev { width: 20px; height: 20px; display: inline-block; vertical-align: middle; }

/* ── MODAL ── */
.modal-backdrop {
    position: fixed; inset: 0; z-index: 999;
    background: rgba(8, 7, 10, 0.6);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none;
    transition: opacity 0.3s ease;
}
.modal-backdrop.open { opacity: 1; pointer-events: all; }
.modal {
    background: var(--white); border-radius: 28px;
    padding: 56px 52px; width: 100%; max-width: 560px;
    box-shadow: 0 24px 80px rgba(8,7,10,0.18);
    transform: translateY(28px) scale(0.97);
    transition: transform 0.35s cubic-bezier(0.34,1.4,0.64,1), opacity 0.3s ease;
    opacity: 0;
    position: relative;
}
.modal-backdrop.open .modal { transform: translateY(0) scale(1); opacity: 1; }
.modal-close {
    position: absolute; top: 24px; right: 28px;
    background: none; border: none; cursor: pointer;
    width: 40px; height: 40px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--black-60); transition: background 0.15s, color 0.15s;
}
.modal-close:hover { background: var(--black-15); color: var(--black); }
.modal-logo { margin-bottom: 32px; }
.modal-title { font-family: Poppins, sans-serif; font-weight: 800; font-size: 36px; line-height: 1.15; color: var(--black); margin-bottom: 10px; }
.modal-subtitle { font-size: 18px; color: var(--black-60); line-height: 1.5; margin-bottom: 36px; }
.modal-tabs { display: flex; gap: 0; margin-bottom: 36px; border-radius: var(--radius-sm); border: 1.5px solid var(--black-15); overflow: hidden; }
.modal-tab {
    flex: 1; padding: 14px 20px; font-size: 18px; font-weight: 600;
    background: none; border: none; cursor: pointer;
    color: var(--black-60); transition: background 0.2s, color 0.2s;
}
.modal-tab.active { background: var(--purple); color: var(--white); }
.modal-form { display: flex; flex-direction: column; gap: 18px; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-label { font-size: 16px; font-weight: 600; color: var(--black); }
.form-input {
    padding: 16px 20px; border: 1.5px solid var(--black-15);
    border-radius: var(--radius-sm); font-size: 18px;
    font-family: Inter, sans-serif; outline: none;
    background: var(--white); color: var(--black);
    transition: border-color 0.2s, box-shadow 0.2s;
}
.form-input:focus { border-color: var(--purple); box-shadow: 0 0 0 3px rgba(106,75,207,0.15); }
.form-input::placeholder { color: var(--black-60); }
.form-forgot { font-size: 15px; color: var(--purple); text-decoration: none; font-weight: 600; align-self: flex-end; margin-top: -6px; }
.form-forgot:hover { text-decoration: underline; }
.reset-back { background: none; border: none; color: var(--purple); font-size: 15px; font-weight: 600; cursor: pointer; padding: 0; margin-bottom: 20px; align-self: flex-start; }
.reset-back:hover { text-decoration: underline; }
.reset-success { display: flex; flex-direction: column; align-items: center; gap: 16px; text-align: center; padding: 12px 0; }
.reset-success-text { font-size: 17px; color: var(--black-60); line-height: 1.5; }
.modal-submit { width: 100%; padding: 18px; font-size: 20px; font-weight: 700; margin-top: 8px; }
.modal-divider { display: flex; align-items: center; gap: 14px; margin: 20px 0; }
.modal-divider::before, .modal-divider::after { content: ''; flex: 1; height: 1px; background: var(--black-15); }
.modal-divider span { font-size: 15px; color: var(--black-60); white-space: nowrap; }
.modal-social { display: flex; gap: 14px; }
.btn-social {
    flex: 1; padding: 14px 16px; border-radius: var(--radius-sm);
    border: 1.5px solid var(--black-15); box-shadow: 0 3px 0 var(--black-15);
    background: var(--white); font-size: 17px; font-weight: 600;
    cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 10px;
    transition: box-shadow 0.15s, transform 0.15s;
}
.btn-social:hover { box-shadow: 0 5px 0 var(--black-15); transform: translateY(-1px); }
.modal-footer { text-align: center; margin-top: 28px; font-size: 17px; color: var(--black-60); }
.modal-footer a { color: var(--purple); font-weight: 700; text-decoration: none; }
.modal-footer a:hover { text-decoration: underline; }
.modal-panel { display: none; }
.modal-panel.active { display: flex; flex-direction: column; }
.hiw-modal { max-width: 560px; }
.wip-modal { max-width: 420px; text-align: center; }
.wip-face { margin: 8px auto 24px; width: 80px; height: 80px; color: var(--purple); }
.wip-face svg { width: 100%; height: 100%; }
.wip-title { text-align: center; }
.wip-subtitle { text-align: center; }
.hiw-steps { display: flex; flex-direction: column; gap: 24px; margin: 8px 0 32px; }
.hiw-step { display: flex; gap: 20px; align-items: flex-start; }
.hiw-step-num { flex-shrink: 0; width: 48px; height: 48px; border-radius: 50%; background: var(--purple); color: #fff; font-family: Poppins, sans-serif; font-weight: 800; font-size: 15px; display: flex; align-items: center; justify-content: center; }
.hiw-step-body { flex: 1; min-width: 0; }
.hiw-step-title { font-family: Poppins, sans-serif; font-weight: 700; font-size: 17px; color: var(--black); margin: 0 0 4px; }
.hiw-step-desc { font-size: 15px; color: var(--black-60); line-height: 1.55; margin: 0; }
.name-row { display: flex; gap: 16px; min-width: 0; }
.name-row .form-field { flex: 1; min-width: 0; }
.name-row .form-input { width: 100%; }
.form-error { font-size: 14px; color: #e03131; margin-top: 4px; display: none; }
.form-field.invalid .form-input { border-color: #e03131; box-shadow: 0 0 0 3px rgba(224,49,49,0.12); }
.form-field.invalid .form-error { display: block; }
.pw-rules { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.pw-rule {
    display: flex; align-items: center; gap: 6px;
    font-size: 14px; font-weight: 500; color: var(--black-60);
    background: #f4f4f5; border-radius: 999px;
    padding: 5px 12px; transition: background 0.2s, color 0.2s;
}
.pw-rule .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--black-15); flex-shrink: 0; transition: background 0.2s; }
.pw-rule.met { background: #e6f9f0; color: #1a7a4a; }
.pw-rule.met .dot { background: #2ecc71; }
.pw-input-wrap { position: relative; display: flex; align-items: center; }
.pw-input-wrap .form-input { width: 100%; padding-right: 52px; }
.pw-toggle {
    position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
    background: none; border: none; cursor: pointer; padding: 4px;
    color: var(--black-60); display: flex; align-items: center;
    border-radius: 4px; transition: color 0.2s;
}
.pw-toggle:hover { color: var(--purple); }

/* ── SCROLL ANIMATIONS ── */
.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-group > * {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal-group.visible > *:nth-child(1) { opacity: 1; transform: none; transition-delay: 0s; }
.reveal-group.visible > *:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.1s; }
.reveal-group.visible > *:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.2s; }
.reveal-group.visible > *:nth-child(4) { opacity: 1; transform: none; transition-delay: 0.3s; }
.reveal-group.visible > *:nth-child(5) { opacity: 1; transform: none; transition-delay: 0.4s; }
.reveal-group.visible > *:nth-child(6) { opacity: 1; transform: none; transition-delay: 0.5s; }

/* ── RESPONSIVE ── */
@media (max-width: 1600px) {
    nav, nav.top-nav { padding: 0 48px; }
    .nav-links { gap: 32px; padding: 0 16px; }
    .nav-links a { min-width: 140px; }
    body.user-logged-in .nav-links { gap: 60px; padding: 0 24px; }
    body.user-logged-in .nav-links a { min-width: 190px; }
    .nav-actions { margin-right: 80px; }
    body.user-logged-in .nav-actions { margin-right: 0; }
    .hero { padding: 80px 48px; }
    .features, .gallery, .faq { padding: 80px 48px; }
    .steps { padding: 80px 48px; }
    .testimonials { padding: 80px 48px; }
    footer { padding: 64px 48px 40px; }
    .cta-banner { padding: 80px 48px; }
}
@media (max-width: 1280px) {
    nav, nav.top-nav { padding: 0 32px; }
    .nav-links { gap: 20px; padding: 0 8px; }
    .nav-links a { min-width: 120px; font-size: 18px; padding: 6px 14px; }
    body.user-logged-in .nav-links { gap: 32px; padding: 0 16px; }
    body.user-logged-in .nav-links a { min-width: 150px; }
    .nav-actions { gap: 16px; margin-right: 40px; padding-left: 24px; }
    body.user-logged-in .nav-actions { margin-right: 0; }
    .hero { padding: 60px 32px; }
    .hero-inner { gap: 48px; }
    .cards-row { gap: 20px; }
    .steps-grid { gap: 16px; }
    .testi-grid { gap: 20px; }
    .features, .gallery, .faq { padding: 64px 32px; }
    .steps, .testimonials { padding: 64px 32px; }
    .cta-banner { padding: 64px 32px; }
    footer { padding: 48px 32px 32px; }
    .footer-links { grid-template-columns: repeat(3, 1fr); }
    .faq-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1024px) {
    .nav-links { display: none; }
    .nav-actions { margin-right: 0; padding-left: 0; }
    .hero-inner { flex-direction: column; }
    .cards-row { grid-template-columns: 1fr 1fr; }
    .steps-grid { grid-template-columns: 1fr 1fr; }
    .testi-grid { grid-template-columns: 1fr 1fr; }
    .faq-grid { grid-template-columns: 1fr; }
    .footer-links { grid-template-columns: repeat(2, 1fr); }
}

/* ── DARK MODE TOGGLE BUTTON ── */
.dark-toggle {
    display: flex; align-items: center; justify-content: center;
    opacity: 0;
    width: 44px; height: 44px;
    border: 1.5px solid var(--black-15);
    border-radius: 50%;
    background: var(--white); cursor: pointer;
    box-shadow: 0 3px 0 var(--black-15);
    transition: background .15s, box-shadow .15s, border-color .15s;
    flex-shrink: 0;
}
.dark-toggle:hover { background: #f5f5f7; box-shadow: 0 5px 0 var(--black-15); }
.dark-toggle svg { width: 20px; height: 20px; color: var(--black); transition: color .15s; }
.dark-toggle .icon-sun { display: none; }
.dark-toggle .icon-moon { display: block; }

/* ── DARK MODE ─────────────────────────────────────────────────────────────
   Palette:
     page bg      #0f0e13
     surface      #1a1825
     surface-hi   #1e1c28
     surface-top  #262336
     border       rgba(255,255,255,0.08)
     border-hi    rgba(255,255,255,0.13)
     text         #e8e6f0
     text-muted   rgba(232,230,240,0.55)
     purple       #8B6FE8  (brightened for dark bg)
     purple-dim   rgba(139,111,232,0.55)
   ──────────────────────────────────────────────────────────────────────── */
body.dark {
    background: #0f0e13;
    color: #e8e6f0;
}

/* NAV */
body.dark nav,
body.dark nav.top-nav {
    background: rgba(26,24,37,0.97);
    border-bottom-color: rgba(255,255,255,0.08);
}
body.dark .nav-links a {
    color: #e8e6f0;
    border-color: rgba(139,111,232,0.55);
    box-shadow: 0 4px 0 rgba(139,111,232,0.4);
}
body.dark .nav-links a:hover { box-shadow: 0 6px 0 rgba(139,111,232,0.4); }
body.dark #nav-logo-light,
body.dark #footer-logo-light { display: none !important; }
body.dark #nav-logo-dark,
body.dark #footer-logo-dark  { display: block !important; }
body:not(.dark) #nav-logo-dark,
body:not(.dark) #footer-logo-dark { display: none !important; }

/* DARK TOGGLE */
body.dark .dark-toggle {
    background: #1e1c28;
    border-color: rgba(255,255,255,0.12);
    box-shadow: 0 3px 0 rgba(255,255,255,0.06);
}
body.dark .dark-toggle:hover { background: #262336; box-shadow: 0 5px 0 rgba(255,255,255,0.06); }
body.dark .dark-toggle svg { color: #e8e6f0; }
body.dark .dark-toggle .icon-sun  { display: block; }
body.dark .dark-toggle .icon-moon { display: none; }

/* LANG DROPDOWN */
body.dark .lang-toggle {
    background: #1e1c28; border-color: rgba(255,255,255,0.12);
    color: #e8e6f0; box-shadow: 0 3px 0 rgba(255,255,255,0.06);
}
body.dark .lang-toggle:hover { background: #262336; box-shadow: 0 5px 0 rgba(255,255,255,0.06); }
body.dark .lang-menu { background: #1e1c28; border-color: rgba(255,255,255,0.1); box-shadow: 0 12px 40px rgba(0,0,0,0.45); }
body.dark .lang-option { color: #e8e6f0; }
body.dark .lang-option:hover,
body.dark .lang-option.active { background: rgba(139,111,232,0.15); }
body.dark .lang-opt-code { color: #8B6FE8; }
body.dark .lang-opt-name { color: rgba(232,230,240,0.55); }

/* AVATAR DROPDOWN */
body.dark .nav-avatar-dropdown { background: #1e1c28; border-color: rgba(139,111,232,0.2); box-shadow: 0 16px 56px rgba(0,0,0,0.45); }
body.dark .nav-dd-item { color: #e8e6f0; }
body.dark .nav-dd-item:hover { background: rgba(139,111,232,0.12); }
body.dark .nav-dd-divider { background: rgba(255,255,255,0.08); }
body.dark .nav-dd-logout { color: #f87171; }
body.dark .nav-dd-logout:hover { background: rgba(248,113,113,0.1); }

/* BUTTONS */
body.dark .btn-secondary {
    background: #1e1c28; color: #e8e6f0;
    border-color: rgba(255,255,255,0.13); box-shadow: 0 4px 0 rgba(255,255,255,0.06);
}
body.dark .btn-secondary:hover { box-shadow: 0 6px 0 rgba(255,255,255,0.06); }

/* SECTION TITLES */
body.dark .section-h2 { color: #e8e6f0; }
body.dark .section-tag { color: #8B6FE8; }
body.dark .section-sub { color: rgba(232,230,240,0.55); }

/* FEATURES */
body.dark .features { background: #0f0e13; }
body.dark .card { background: #1a1825; border-color: rgba(255,255,255,0.08); }
body.dark .card-h3 { color: #e8e6f0; }
body.dark .card-tag { color: #8B6FE8; }
body.dark .card-p { color: rgba(232,230,240,0.55); }
body.dark .card-link { color: #e8e6f0; }

/* STEPS */
body.dark .steps { background: #0f0e13; }

/* GALLERY */
body.dark .gallery { background: #0f0e13; }
body.dark .gallery-dot { background: #e8e6f0; opacity: 0.2; }
body.dark .gallery-dot.active { opacity: 1; }
body.dark .gallery-arrow { background: #1a1825; border-color: rgba(255,255,255,0.08); }
body.dark .gallery-arrow:hover { background: #262336; }
body.dark .gallery-arrow svg path { fill: #ffffff; }

/* TESTIMONIALS */
body.dark .testimonials { background: #1a1825; }
body.dark .testi-card { background: #262336; }
body.dark .testi-quote { color: #e8e6f0; }
body.dark .testi-name { color: #e8e6f0; }
body.dark .testi-role { color: rgba(232,230,240,0.55); }

/* FAQ */
body.dark .faq { background: #0f0e13; }
body.dark .faq-q { color: #e8e6f0; }
body.dark .faq-a { color: rgba(232,230,240,0.55); }
body.dark .faq-cta-h3 { color: #e8e6f0; }
body.dark .faq-cta-p { color: rgba(232,230,240,0.55); }

/* FOOTER */
body.dark footer { background: #0f0e13; border-top-color: rgba(255,255,255,0.08); }
body.dark .footer-brand p { color: rgba(232,230,240,0.55); }
body.dark .footer-newsletter-sub { color: rgba(232,230,240,0.55); }
body.dark .newsletter-input {
    background: #1a1825; border-color: rgba(255,255,255,0.1);
    color: #e8e6f0;
}
body.dark .newsletter-input::placeholder { color: rgba(232,230,240,0.4); }
body.dark .footer-divider { background: rgba(255,255,255,0.08); }
body.dark .footer-col-title { color: #e8e6f0; }
body.dark .footer-col a { color: rgba(232,230,240,0.55); }
body.dark .footer-col a:hover { color: #e8e6f0; }
body.dark .footer-bottom { border-top-color: rgba(255,255,255,0.08); }
body.dark .footer-copy { color: rgba(232,230,240,0.45); }

/* MODAL */
body.dark .modal-backdrop { background: rgba(0,0,0,0.75); }
body.dark .modal { background: #1a1825; box-shadow: 0 24px 80px rgba(0,0,0,0.5); }
body.dark .modal-close { color: rgba(232,230,240,0.55); }
body.dark .modal-close:hover { background: rgba(255,255,255,0.08); color: #e8e6f0; }
body.dark .modal-close svg path { stroke: #e8e6f0; }
body.dark .modal-title { color: #e8e6f0; }
body.dark .modal-subtitle { color: rgba(232,230,240,0.55); }
body.dark .modal-tabs { border-color: rgba(255,255,255,0.1); }
body.dark .modal-tab { color: rgba(232,230,240,0.55); }
body.dark .modal-tab.active { background: #8B6FE8; color: #fff; }
body.dark .form-label { color: #e8e6f0; }
body.dark .form-input {
    background: #262336; border-color: rgba(255,255,255,0.1);
    color: #e8e6f0;
}
body.dark .form-input::placeholder { color: rgba(232,230,240,0.4); }
body.dark .form-input:focus { border-color: #8B6FE8; box-shadow: 0 0 0 3px rgba(139,111,232,0.2); }
body.dark .modal-divider::before,
body.dark .modal-divider::after { background: rgba(255,255,255,0.1); }
body.dark .modal-divider span { color: rgba(232,230,240,0.45); }
body.dark .btn-social {
    background: #262336; border-color: rgba(255,255,255,0.1);
    box-shadow: 0 3px 0 rgba(255,255,255,0.06); color: #e8e6f0;
}
body.dark .btn-social:hover { box-shadow: 0 5px 0 rgba(255,255,255,0.06); }
body.dark .modal-footer { color: rgba(232,230,240,0.55); }
body.dark .modal-footer a { color: #8B6FE8; }
body.dark .pw-rule { background: #262336; color: rgba(232,230,240,0.6); }
body.dark .pw-rule .dot { background: rgba(255,255,255,0.15); }
body.dark .hiw-step-title { color: #e8e6f0; }
body.dark .hiw-step-desc { color: rgba(232,230,240,0.55); }