/* ==========================================================================
   Nurse in Germany — Main Stylesheet
   Design: Modern, Premium, Healthcare SaaS (Stripe/Webflow feel)
   Palette: Blue #3F7BFA | Orange #FF981A | Dark #172B4D | BG #F8FAFD
   Fonts: Poppins (headings) | Inter (body)
   ========================================================================== */

/* --------------------------------------------------------------------------
   CSS Custom Properties
-------------------------------------------------------------------------- */
:root {
    /* Colors */
    --blue:          #3F7BFA;
    --blue-hover:    #2F69E8;
    --blue-light:    #EBF1FF;
    --blue-dark:     #1D4ED8;
    --orange:        #FF981A;
    --orange-hover:  #F28705;
    --dark:          #172B4D;
    --body-text:     #5F6C7B;
    --light-text:    #8A94A6;
    --white:         #FFFFFF;
    --bg:            #F8FAFD;
    --card-bg:       #FFFFFF;
    --border:        #E7ECF5;
    --success:       #22C55E;
    --error:         #EF4444;
    --warning:       #F59E0B;

    /* Typography */
    --font-heading:  'Poppins', sans-serif;
    --font-body:     'Inter', sans-serif;

    /* Sizing */
    --max-w:         1280px;
    --nav-h:         90px;
    --section-py:    120px;
    --card-radius:   20px;
    --btn-radius:    12px;
    --input-radius:  12px;
    --img-radius:    24px;

    /* Shadows */
    --shadow-card:   0 12px 35px rgba(23,43,77,0.08);
    --shadow-btn:    0 8px 20px rgba(63,123,250,0.25);
    --shadow-hover:  0 20px 60px rgba(23,43,77,0.14);

    /* Transitions */
    --transition:    all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--body-text);
    background-color: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--blue-hover); }
ul { list-style: none; }
input, textarea, select, button { font-family: var(--font-body); }

/* --------------------------------------------------------------------------
   Typography
-------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--dark);
    line-height: 1.25;
    font-weight: 700;
}

h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.text-blue   { color: var(--blue); }
.text-orange { color: var(--orange); }
.text-dark   { color: var(--dark); }
.text-light  { color: var(--light-text); }
.text-center { text-align: center; }
.text-sm     { font-size: 0.875rem; }

/* --------------------------------------------------------------------------
   Layout
-------------------------------------------------------------------------- */
.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: var(--section-py) 0;
}

.section-sm { padding: 60px 0; }
.section-bg { background: var(--bg); }
.section-white { background: var(--white); }
.section-dark {
    background: var(--dark);
    color: var(--white);
}
.section-dark h1, .section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,0.75); }

.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--blue);
    background: var(--blue-light);
    padding: 0.35rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.25rem;
}

.section-header {
    max-width: 700px;
    margin-bottom: 60px;
}

.section-header.centered {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 { margin-bottom: 1rem; }
.section-header p { font-size: 1.125rem; color: var(--body-text); }

/* --------------------------------------------------------------------------
   Grid Utilities
-------------------------------------------------------------------------- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* --------------------------------------------------------------------------
   Buttons
-------------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-family: var(--font-heading);
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--btn-radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    text-decoration: none;
    line-height: 1.2;
}

.btn-primary {
    background: var(--blue);
    color: var(--white);
    border-color: var(--blue);
    box-shadow: var(--shadow-btn);
}
.btn-primary:hover {
    background: var(--blue-hover);
    border-color: var(--blue-hover);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(63,123,250,0.35);
}

.btn-secondary {
    background: var(--orange);
    color: var(--white);
    border-color: var(--orange);
    box-shadow: 0 8px 20px rgba(255,152,26,0.3);
}
.btn-secondary:hover {
    background: var(--orange-hover);
    border-color: var(--orange-hover);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--blue);
    border-color: var(--blue);
}
.btn-outline:hover {
    background: var(--blue-light);
    color: var(--blue);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
    color: var(--white);
}

.btn-lg { padding: 1.1rem 2.25rem; font-size: 1.05rem; }
.btn-sm { padding: 0.6rem 1.25rem; font-size: 0.875rem; }
.btn-full { width: 100%; justify-content: center; }

.btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

/* --------------------------------------------------------------------------
   Cards
-------------------------------------------------------------------------- */
.card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--card-radius);
    box-shadow: var(--shadow-card);
    padding: 2rem;
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.card-icon {
    width: 56px;
    height: 56px;
    background: var(--blue-light);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    font-size: 1.5rem;
}

.card-icon.orange { background: rgba(255,152,26,0.1); }

.card h3 { font-size: 1.2rem; margin-bottom: 0.625rem; }
.card p { font-size: 0.9375rem; color: var(--body-text); }

/* --------------------------------------------------------------------------
   Navigation
-------------------------------------------------------------------------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
}

.site-header.scrolled {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 20px rgba(23,43,77,0.06);
}

.nav-container {
    background: transparent;
    height: var(--nav-h);
}

.nav-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--dark);
}

.logo-main { color: var(--dark); }
.logo-sep  { color: var(--body-text); }

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    flex: 1;
    justify-content: center;
}

.nav-link {
    padding: 0.5rem 1rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--body-text);
    border-radius: 8px;
    transition: var(--transition);
    text-decoration: none;
}

.nav-link:hover, .nav-link.active {
    color: var(--blue);
    background: var(--blue-light);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: var(--transition);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999;
    background: var(--white);
    padding: calc(var(--nav-h) + 1.5rem) 1.5rem 2rem;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.mobile-menu.open {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.mobile-nav-featured {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: var(--bg);
    border-radius: 14px;
    text-decoration: none;
    transition: var(--transition);
}

.mobile-nav-featured:hover { background: var(--blue-light); }
.mobile-nav-featured strong { display: block; color: var(--dark); font-size: 1rem; }
.mobile-nav-featured span:not(.mobile-nav-icon) { font-size: 0.8rem; color: var(--body-text); }
.mobile-nav-icon { font-size: 1.5rem; }

.mobile-nav-links { margin-bottom: 1.5rem; }
.mobile-nav-links li a {
    display: block;
    padding: 0.875rem 0;
    border-bottom: 1px solid var(--border);
    color: var(--dark);
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
}

/* --------------------------------------------------------------------------
   Hero Section
-------------------------------------------------------------------------- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: calc(var(--nav-h) + 60px) 0 80px;
    background: var(--bg);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -100px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(63,123,250,0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,152,26,0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--blue-light);
    color: var(--blue);
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.hero-content h1 {
    margin-bottom: 1.5rem;
}

.hero-content h1 em {
    font-style: normal;
    color: var(--blue);
}

.hero-content .hero-sub {
    font-size: 1.125rem;
    color: var(--body-text);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 520px;
}

.trust-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.5rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--body-text);
}

.trust-item::before {
    content: '✓';
    color: var(--success);
    font-weight: 700;
    font-size: 0.875rem;
}

/* Hero Image */
.hero-image {
    position: relative;
}

.hero-image-wrap {
    position: relative;
    border-radius: var(--img-radius);
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(23,43,77,0.18);
}

.hero-image-wrap img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.hero-blob-1 {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    background: var(--orange);
    border-radius: 50% 30% 60% 40%;
    opacity: 0.15;
    z-index: -1;
}

.hero-blob-2 {
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 100px;
    height: 100px;
    background: var(--blue);
    border-radius: 40% 60% 30% 70%;
    opacity: 0.12;
    z-index: -1;
}

/* Hero Stats Card */
.hero-stat-card {
    position: absolute;
    background: var(--white);
    border-radius: 16px;
    padding: 1rem 1.25rem;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border);
}

.hero-stat-card.card-tl {
    top: 30px;
    left: -40px;
}

.hero-stat-card.card-br {
    bottom: 30px;
    right: -30px;
}

.hero-stat-card strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1;
}

.hero-stat-card span {
    font-size: 0.75rem;
    color: var(--body-text);
}

/* Inner page hero */
.page-hero {
    background: var(--bg);
    padding: calc(var(--nav-h) + 60px) 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(63,123,250,0.07) 0%, transparent 70%);
    pointer-events: none;
}

.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { margin-bottom: 1.25rem; }
.page-hero .hero-sub { font-size: 1.125rem; max-width: 650px; margin: 0 auto 2rem; }

/* --------------------------------------------------------------------------
   Stats Strip
-------------------------------------------------------------------------- */
.stats-strip {
    background: var(--dark);
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--blue);
    line-height: 1;
    margin-bottom: 0.375rem;
}

.stat-item span {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.7);
}

/* --------------------------------------------------------------------------
   Process / Timeline
-------------------------------------------------------------------------- */
.process-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: var(--border);
    z-index: 0;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-circle {
    width: 56px;
    height: 56px;
    background: var(--white);
    border: 3px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--body-text);
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.process-step.active .step-circle,
.process-step:hover .step-circle {
    background: var(--blue);
    border-color: var(--blue);
    color: var(--white);
    box-shadow: 0 0 0 6px rgba(63,123,250,0.15);
}

.step-label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.step-desc {
    font-size: 0.75rem;
    color: var(--body-text);
}

/* Detailed process phases */
.phase-block {
    margin-bottom: 3rem;
}

.phase-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem 1.5rem;
    background: var(--blue-light);
    border-radius: 12px;
    border-left: 4px solid var(--blue);
}

.phase-number {
    width: 36px;
    height: 36px;
    background: var(--blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.phase-title { font-family: var(--font-heading); font-weight: 700; color: var(--dark); font-size: 1.1rem; }
.phase-subtitle { font-size: 0.8rem; color: var(--body-text); }

.step-list { display: flex; flex-direction: column; gap: 1.25rem; }

.step-item {
    display: flex;
    gap: 1.25rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--card-radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-card);
}

.step-num {
    width: 40px;
    height: 40px;
    background: var(--blue-light);
    color: var(--blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.step-content h4 { font-size: 1rem; margin-bottom: 0.375rem; color: var(--dark); }
.step-content p  { font-size: 0.875rem; color: var(--body-text); }

/* --------------------------------------------------------------------------
   Country Grid
-------------------------------------------------------------------------- */
.country-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.country-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.country-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    border-color: var(--blue);
}

.country-card.featured {
    border-color: var(--blue);
    background: linear-gradient(135deg, #EBF1FF 0%, #F8FAFD 100%);
}

.country-flag { font-size: 2rem; line-height: 1; flex-shrink: 0; }

.country-info h4 { font-size: 0.9375rem; margin-bottom: 0.25rem; color: var(--dark); }
.country-info p  { font-size: 0.8rem; color: var(--body-text); line-height: 1.5; }

.country-badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: var(--blue);
    color: var(--white);
    padding: 0.2rem 0.6rem;
    border-radius: 50px;
    margin-top: 0.5rem;
}

/* --------------------------------------------------------------------------
   Feature / Difference Cards
-------------------------------------------------------------------------- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.feature-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--card-radius);
    padding: 2rem;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: var(--blue);
}

.feature-card .card-icon {
    width: 52px;
    height: 52px;
    background: var(--blue-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    font-size: 1.4rem;
}

.feature-card h3 { font-size: 1.1rem; margin-bottom: 0.625rem; }
.feature-card p  { font-size: 0.9rem; color: var(--body-text); }

/* --------------------------------------------------------------------------
   Dual CTA Split
-------------------------------------------------------------------------- */
.dual-cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.dual-cta-card {
    border-radius: var(--card-radius);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}

.dual-cta-card.employers {
    background: linear-gradient(135deg, #3F7BFA 0%, #1D4ED8 100%);
    color: var(--white);
}

.dual-cta-card.nurses {
    background: linear-gradient(135deg, #FF981A 0%, #F28705 100%);
    color: var(--white);
}

.dual-cta-card h3 { color: var(--white); font-size: 1.5rem; margin-bottom: 0.75rem; }
.dual-cta-card p  { color: rgba(255,255,255,0.85); margin-bottom: 1.5rem; }

/* --------------------------------------------------------------------------
   Founder / Team Cards
-------------------------------------------------------------------------- */
.founders-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.founder-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--card-radius);
    box-shadow: var(--shadow-card);
    overflow: hidden;
    transition: var(--transition);
}

.founder-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.founder-photo {
    width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: top center;
}

.founder-photo-placeholder {
    width: 100%;
    height: 280px;
    background: linear-gradient(135deg, var(--blue-light) 0%, #dce9ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.founder-info { padding: 1.75rem; }
.founder-info h3 { font-size: 1.25rem; margin-bottom: 0.25rem; }
.founder-role {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 0.875rem;
}
.founder-bio { font-size: 0.875rem; color: var(--body-text); line-height: 1.65; margin-bottom: 1rem; }
.founder-linkedin {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--blue);
}

/* Advisor Cards (smaller) */
.advisors-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.advisor-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.75rem;
    box-shadow: var(--shadow-card);
    display: flex;
    gap: 1.25rem;
    transition: var(--transition);
}

.advisor-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }

.advisor-photo {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.advisor-photo-placeholder {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--blue-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    flex-shrink: 0;
}

.advisor-info h4 { font-size: 1rem; margin-bottom: 0.2rem; }
.advisor-title {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.625rem;
}
.advisor-bio { font-size: 0.8125rem; color: var(--body-text); line-height: 1.6; }

/* --------------------------------------------------------------------------
   Partner Cards
-------------------------------------------------------------------------- */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 700px;
    margin: 0 auto;
}

.partner-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--card-radius);
    padding: 1.75rem;
    box-shadow: var(--shadow-card);
    text-align: center;
    transition: var(--transition);
}

.partner-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }

.partner-logo-area {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    background: var(--bg);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
}

.partner-card h4 { font-size: 1.125rem; margin-bottom: 0.25rem; }
.partner-location { font-size: 0.8rem; color: var(--light-text); margin-bottom: 0.625rem; }
.partner-service { font-size: 0.8125rem; color: var(--body-text); margin-bottom: 0.875rem; }
.partner-link { font-size: 0.8125rem; font-weight: 600; color: var(--blue); }

/* --------------------------------------------------------------------------
   Testimonials
-------------------------------------------------------------------------- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.testimonial-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--card-radius);
    padding: 2rem;
    box-shadow: var(--shadow-card);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 4rem;
    color: var(--blue-light);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-stars {
    color: var(--orange);
    font-size: 0.875rem;
    margin-bottom: 0.875rem;
}

.testimonial-text {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--body-text);
    margin-bottom: 1.25rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.875rem;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--blue-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.testimonial-author strong { display: block; font-size: 0.875rem; color: var(--dark); }
.testimonial-author span  { font-size: 0.75rem; color: var(--body-text); }

/* --------------------------------------------------------------------------
   FAQ Accordion
-------------------------------------------------------------------------- */
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }

.faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.open { border-color: var(--blue); box-shadow: var(--shadow-card); }

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--dark);
    transition: var(--transition);
}

.faq-question:hover { color: var(--blue); }
.faq-item.open .faq-question { color: var(--blue); }

.faq-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--blue-light);
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.faq-item.open .faq-icon { background: var(--blue); color: var(--white); transform: rotate(45deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.25s ease;
}

.faq-item.open .faq-answer { max-height: 600px; }

.faq-answer-inner {
    padding: 0 1.5rem 1.25rem;
    font-size: 0.9rem;
    color: var(--body-text);
    line-height: 1.7;
}

/* --------------------------------------------------------------------------
   Forms
-------------------------------------------------------------------------- */
.form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.form-label span { color: var(--error); }

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: var(--input-radius);
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: var(--dark);
    background: var(--white);
    transition: var(--transition);
    outline: none;
    appearance: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 4px rgba(63,123,250,0.12);
}

.form-textarea { resize: vertical; min-height: 130px; }

.form-select {
    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='%235F6C7B' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.875rem;
    color: var(--body-text);
    line-height: 1.5;
}

.form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    border: 2px solid var(--border);
    border-radius: 4px;
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 2px;
    accent-color: var(--blue);
}

.form-error {
    font-size: 0.8rem;
    color: var(--error);
    margin-top: 0.375rem;
}

.form-success {
    background: rgba(34,197,94,0.1);
    border: 1px solid var(--success);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    color: #15803d;
    font-size: 0.9rem;
    font-weight: 500;
}

/* --------------------------------------------------------------------------
   Multi-Step Application Form
-------------------------------------------------------------------------- */
.apply-wrap {
    max-width: 760px;
    margin: 0 auto;
}

.apply-progress {
    margin-bottom: 2.5rem;
}

.progress-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.progress-step-dot {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.375rem;
    position: relative;
    z-index: 1;
}

.dot {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--border);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--light-text);
    transition: var(--transition);
}

.progress-step-dot.active .dot   { background: var(--blue); border-color: var(--blue); color: var(--white); }
.progress-step-dot.done .dot     { background: var(--success); border-color: var(--success); color: var(--white); }
.progress-step-dot .dot-label    { font-size: 0.7rem; color: var(--light-text); font-weight: 500; white-space: nowrap; }

.progress-bar {
    height: 4px;
    background: var(--border);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--blue);
    border-radius: 4px;
    transition: width 0.4s ease;
}

.form-step { display: none; }
.form-step.active { display: block; animation: fadeUp 0.3s ease; }

.step-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.step-sub { font-size: 0.9rem; color: var(--body-text); margin-bottom: 1.75rem; }

.form-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

/* --------------------------------------------------------------------------
   Unique Selling Points / Callout
-------------------------------------------------------------------------- */
.unique-callout {
    background: linear-gradient(135deg, var(--dark) 0%, #1D3461 100%);
    border-radius: var(--card-radius);
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.unique-callout::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255,152,26,0.1);
    border-radius: 50%;
}

.unique-callout h3, .unique-callout h2 { color: var(--white); }
.unique-callout p  { color: rgba(255,255,255,0.8); }

/* --------------------------------------------------------------------------
   Responsibility Table
-------------------------------------------------------------------------- */
.responsibility-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.responsibility-col {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--card-radius);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.responsibility-col-header {
    padding: 1.25rem 1.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 1rem;
}

.responsibility-col.ours .responsibility-col-header {
    background: var(--blue);
    color: var(--white);
}

.responsibility-col.yours .responsibility-col-header {
    background: var(--bg);
    color: var(--dark);
    border-bottom: 1px solid var(--border);
}

.responsibility-list { padding: 1.25rem 1.5rem; }
.responsibility-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.875rem;
    color: var(--body-text);
}
.responsibility-list li:last-child { border-bottom: none; }

.check-icon { color: var(--success); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* --------------------------------------------------------------------------
   Right For You Section
-------------------------------------------------------------------------- */
.right-for-you {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.right-col {
    border-radius: var(--card-radius);
    padding: 2rem;
}

.right-col.yes { background: rgba(34,197,94,0.07); border: 1px solid rgba(34,197,94,0.2); }
.right-col.no  { background: rgba(239,68,68,0.07);  border: 1px solid rgba(239,68,68,0.2);  }

.right-col h4 { font-size: 1rem; margin-bottom: 1rem; }
.right-col.yes h4 { color: #15803d; }
.right-col.no  h4 { color: #b91c1c; }

.right-col li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.375rem 0;
    font-size: 0.875rem;
    color: var(--body-text);
}

/* --------------------------------------------------------------------------
   Location / Map Section
-------------------------------------------------------------------------- */
.map-wrap {
    border-radius: var(--card-radius);
    overflow: hidden;
    height: 350px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-card);
}

.map-wrap iframe { width: 100%; height: 100%; border: none; display: block; }

/* --------------------------------------------------------------------------
   Blog Cards
-------------------------------------------------------------------------- */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.blog-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--card-radius);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }

.blog-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-card-image-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--blue-light), #dce9ff);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.blog-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }

.blog-cat {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 0.625rem;
}

.blog-card-body h3 {
    font-size: 1.05rem;
    margin-bottom: 0.625rem;
    line-height: 1.4;
}

.blog-card-body p { font-size: 0.875rem; color: var(--body-text); flex: 1; margin-bottom: 1rem; }

.blog-meta { font-size: 0.75rem; color: var(--light-text); margin-top: auto; }

/* --------------------------------------------------------------------------
   Newsletter Strip
-------------------------------------------------------------------------- */
.newsletter-strip {
    background: var(--dark);
    padding: 60px 0;
}

.newsletter-inner {
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.newsletter-text { flex: 1; min-width: 240px; }
.newsletter-text h3 { color: var(--white); font-size: 1.4rem; margin-bottom: 0.25rem; }
.newsletter-text p  { color: rgba(255,255,255,0.65); font-size: 0.9rem; }

.newsletter-form {
    display: flex;
    gap: 0.75rem;
    flex: 2;
    flex-wrap: wrap;
    min-width: 300px;
}

.newsletter-select {
    padding: 0.875rem 1rem;
    border-radius: var(--input-radius);
    border: 1.5px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.08);
    color: var(--white);
    font-size: 0.875rem;
    outline: none;
    flex-shrink: 0;
}

.newsletter-input {
    flex: 1;
    min-width: 200px;
    padding: 0.875rem 1rem;
    border-radius: var(--input-radius);
    border: 1.5px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.08);
    color: var(--white);
    font-size: 0.9375rem;
    outline: none;
}

.newsletter-input::placeholder { color: rgba(255,255,255,0.45); }
.newsletter-input:focus { border-color: var(--blue); }
.newsletter-success { color: var(--success); font-size: 0.875rem; width: 100%; }

/* --------------------------------------------------------------------------
   Site Footer
-------------------------------------------------------------------------- */
.site-footer {
    background: #0F1E35;
    color: rgba(255,255,255,0.7);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    margin-bottom: 0.75rem;
}

.footer-logo .logo-text { color: var(--white); font-size: 1.05rem; font-family: var(--font-heading); font-weight: 700; }
.footer-tagline { font-size: 0.75rem; color: rgba(255,255,255,0.4); margin-bottom: 0.875rem; }
.footer-desc { font-size: 0.85rem; color: rgba(255,255,255,0.55); line-height: 1.7; margin-bottom: 1.25rem; }

.footer-social { display: flex; gap: 0.75rem; }
.social-link {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    text-decoration: none;
}
.social-link:hover { background: var(--blue); color: var(--white); }
.social-link.social-whatsapp:hover { background: #25D366; color: var(--white); }

.footer-heading {
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.footer-links { display: flex; flex-direction: column; gap: 0.625rem; }
.footer-links a { font-size: 0.875rem; color: rgba(255,255,255,0.55); transition: var(--transition); }
.footer-links a:hover { color: var(--white); }

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1.5rem 0;
}

.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.footer-copy a { color: rgba(255,255,255,0.55); }
.footer-copy a:hover { color: var(--white); }

.footer-legal-links { display: flex; gap: 1.5rem; }
.footer-legal-links a { font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.footer-legal-links a:hover { color: var(--white); }

/* --------------------------------------------------------------------------
   WhatsApp Float + Mobile Sticky Bar
-------------------------------------------------------------------------- */
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 1.5rem;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(37,211,102,0.45);
    z-index: 800;
    transition: var(--transition);
    text-decoration: none;
}

.whatsapp-float:hover { transform: scale(1.1); color: var(--white); }

.mobile-sticky-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background: var(--white);
    border-top: 1px solid var(--border);
    padding: 0.75rem 1rem;
    gap: 0.75rem;
    box-shadow: 0 -4px 20px rgba(23,43,77,0.1);
}

.sticky-bar-btn {
    flex: 1;
    text-align: center;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 600;
    font-family: var(--font-heading);
    text-decoration: none;
    transition: var(--transition);
    color: var(--white);
}

.sticky-bar-btn.btn-primary  { background: var(--blue); }
.sticky-bar-btn.btn-secondary { background: var(--orange); }

/* --------------------------------------------------------------------------
   Cookie Banner
-------------------------------------------------------------------------- */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    padding: 1.25rem 1.5rem;
    z-index: 9999;
    display: none;
}

.cookie-banner.show { display: block; }

.cookie-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cookie-inner p { font-size: 0.875rem; color: rgba(255,255,255,0.8); }
.cookie-inner a { color: var(--blue); }
.cookie-actions { display: flex; gap: 0.75rem; flex-shrink: 0; }

/* --------------------------------------------------------------------------
   Calendly Embed
-------------------------------------------------------------------------- */
.calendly-inline-widget {
    min-width: 320px;
    height: 700px;
    border-radius: var(--card-radius);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-card);
}

/* --------------------------------------------------------------------------
   Legal Pages (Imprint / Privacy)
-------------------------------------------------------------------------- */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.legal-content h1 { margin-bottom: 2rem; }
.legal-content h2 { font-size: 1.35rem; margin: 2rem 0 0.875rem; padding-top: 2rem; border-top: 1px solid var(--border); }
.legal-content h2:first-of-type { border-top: none; padding-top: 0; }
.legal-content h3 { font-size: 1.1rem; margin: 1.5rem 0 0.625rem; }
.legal-content p  { margin-bottom: 1rem; font-size: 0.9375rem; }
.legal-content ul { margin: 0.75rem 0 1rem 1.5rem; }
.legal-content ul li { margin-bottom: 0.375rem; font-size: 0.9375rem; list-style: disc; }
.legal-content a  { color: var(--blue); }
.legal-content a:hover { text-decoration: underline; }

/* --------------------------------------------------------------------------
   Final CTA Section
-------------------------------------------------------------------------- */
.final-cta {
    background: var(--dark);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(63,123,250,0.15) 0%, transparent 70%);
}

.final-cta::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,152,26,0.1) 0%, transparent 70%);
}

.final-cta .container { position: relative; z-index: 1; }
.final-cta h2 { color: var(--white); margin-bottom: 1rem; }
.final-cta p  { color: rgba(255,255,255,0.7); font-size: 1.05rem; margin-bottom: 2rem; max-width: 520px; margin-left: auto; margin-right: auto; }
.final-cta .microcopy { font-size: 0.8rem; color: rgba(255,255,255,0.45); margin-top: 1rem; }

/* --------------------------------------------------------------------------
   Highlight / Info Box
-------------------------------------------------------------------------- */
.info-box {
    background: var(--blue-light);
    border-left: 4px solid var(--blue);
    border-radius: 0 12px 12px 0;
    padding: 1.25rem 1.5rem;
    margin: 1.5rem 0;
    font-size: 0.9375rem;
}

.guarantee-box {
    background: rgba(34,197,94,0.08);
    border: 1px solid rgba(34,197,94,0.25);
    border-radius: var(--card-radius);
    padding: 2rem;
    text-align: center;
}

.guarantee-box h3 { color: #15803d; margin-bottom: 0.625rem; }
.guarantee-box p  { font-size: 0.9rem; }

/* --------------------------------------------------------------------------
   Animations
-------------------------------------------------------------------------- */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes countUp {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* --------------------------------------------------------------------------
   Utility Classes
-------------------------------------------------------------------------- */
.mt-0  { margin-top: 0; }
.mt-1  { margin-top: 0.5rem; }
.mt-2  { margin-top: 1rem; }
.mt-3  { margin-top: 1.5rem; }
.mt-4  { margin-top: 2rem; }
.mb-0  { margin-bottom: 0; }
.mb-1  { margin-bottom: 0.5rem; }
.mb-2  { margin-bottom: 1rem; }
.mb-3  { margin-bottom: 1.5rem; }
.mb-4  { margin-bottom: 2rem; }
.mb-6  { margin-bottom: 3rem; }

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

/* --------------------------------------------------------------------------
   Responsive
-------------------------------------------------------------------------- */
@media (max-width: 1024px) {
    :root { --section-py: 80px; }

    .hero-inner { grid-template-columns: 1fr; text-align: center; }
    .hero-image { display: none; }
    .hero-content .hero-sub { max-width: 100%; }
    .trust-bar { justify-content: center; }

    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .country-grid  { grid-template-columns: repeat(2, 1fr); }
    .stats-grid    { grid-template-columns: repeat(2, 1fr); gap: 3rem; }
    .process-steps { grid-template-columns: repeat(3, 1fr); }
    .process-steps::before { display: none; }

    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .newsletter-inner { gap: 2rem; }
}

@media (max-width: 768px) {
    :root { --section-py: 60px; --nav-h: 70px; }

    .nav-menu, .nav-actions .btn { display: none; }
    .nav-toggle { display: flex; }

    .mobile-menu { display: block; }
    .mobile-sticky-bar { display: flex; }

    .whatsapp-float { bottom: 80px; }

    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }

    .features-grid { grid-template-columns: 1fr; }
    .country-grid  { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .dual-cta { grid-template-columns: 1fr; }
    .founders-grid { grid-template-columns: 1fr; max-width: 440px; }
    .advisors-grid { grid-template-columns: 1fr; max-width: 440px; }
    .partners-grid { grid-template-columns: 1fr; max-width: 400px; }
    .stats-grid    { grid-template-columns: repeat(2, 1fr); }
    .process-steps { grid-template-columns: 1fr; }
    .right-for-you { grid-template-columns: 1fr; }
    .responsibility-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }

    .form-grid-2 { grid-template-columns: 1fr; }

    .footer-grid { grid-template-columns: 1fr; }

    .newsletter-form { flex-direction: column; }
    .newsletter-select, .newsletter-input { width: 100%; }

    .final-cta .btn-group { justify-content: center; }

    .hero-stat-card { display: none; }

    .page-hero { padding-top: calc(var(--nav-h) + 40px); }

    .calendly-inline-widget { height: 600px; }

    .cookie-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
    .btn-lg { padding: 0.875rem 1.5rem; font-size: 0.9rem; }
    .btn-group { flex-direction: column; width: 100%; }
    .btn-group .btn { width: 100%; justify-content: center; }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.625rem; }

    .trust-bar { gap: 0.5rem 1rem; }
    .trust-item { font-size: 0.75rem; }
}
