@import url('reset.css');
@import url('https://fonts.googleapis.com/css2?family=Inconsolata:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* Fonts Configuration - Place your custom font files in assets/fonts/ */
@font-face {
    font-family: 'CasperFont';
    src: url('../fonts/CasperFont-Regular.woff2') format('woff2'),
         url('../fonts/CasperFont-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'CasperFont';
    src: url('../fonts/CasperFont-Bold.woff2') format('woff2'),
         url('../fonts/CasperFont-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}

/* Design Tokens & Variables */
:root {
    /* Color Palette */
    --primary: #2563eb;
    --primary-hover: #1d4ed8;
    --primary-light: #eff6ff;
    --accent: #f59e0b;
    --text-main: #111111;
    --text-muted: #555555;
    --bg-main: #eaeae8;
    --bg-light: #eaeae8;
    --bg-card: #ffffff;
    --border: #dcdcd9;
    
    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-mono: 'Inconsolata', 'SFMono-Regular', Consolas, monospace;
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-normal: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    
    /* Layout */
    --container-max-width: 100%;
    --border-radius: 20px;
}

/* Base Styles */
body {
    font-family: var(--font-sans);
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

/* Georgian (GEO) Specific Font & Responsive Sizing Override */
html[lang="ka"],
html:lang(ka),
body[data-lang="ka"],
[lang="ka"] {
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
    --font-mono: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
    letter-spacing: normal !important;
}

html[lang="ka"] *,
html[lang="ka"] p,
html[lang="ka"] h1,
html[lang="ka"] h2,
html[lang="ka"] h3,
html[lang="ka"] h4,
html[lang="ka"] h5,
html[lang="ka"] span,
html[lang="ka"] div,
html[lang="ka"] button,
html[lang="ka"] a,
html[lang="ka"] input,
body[data-lang="ka"] *,
body[data-lang="ka"] p,
body[data-lang="ka"] h1,
body[data-lang="ka"] h2,
body[data-lang="ka"] h3,
body[data-lang="ka"] h4,
body[data-lang="ka"] span,
body[data-lang="ka"] div,
body[data-lang="ka"] button,
body[data-lang="ka"] a,
body[data-lang="ka"] input {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
}

/* Georgian Hero Quiz Pill Button Sizing */
html[lang="ka"] .quiz-pill-btn,
body[data-lang="ka"] .quiz-pill-btn {
    width: auto !important;
    min-width: clamp(300px, 28vw, 470px) !important;
    max-width: min(94vw, 520px) !important;
    height: auto !important;
    min-height: clamp(74px, 6vw, 94px) !important;
    padding: 14px clamp(24px, 3vw, 44px) !important;
    border-radius: 94px !important;
}

html[lang="ka"] .quiz-pill-btn .action-text,
body[data-lang="ka"] .quiz-pill-btn .action-text {
    font-size: clamp(16px, 1.3vw, 21px) !important;
    line-height: 1.25 !important;
    text-align: center !important;
    white-space: nowrap !important;
}

html[lang="ka"] .quiz-pill-btn .sub-text,
body[data-lang="ka"] .quiz-pill-btn .sub-text {
    font-size: clamp(12px, 0.95vw, 15px) !important;
    line-height: 1.25 !important;
    text-align: center !important;
    white-space: nowrap !important;
}

@media (max-width: 520px) {
    html[lang="ka"] .quiz-pill-btn,
    body[data-lang="ka"] .quiz-pill-btn {
        width: 92vw !important;
        min-width: unset !important;
        padding: 12px 16px !important;
    }
    html[lang="ka"] .quiz-pill-btn .sub-text,
    body[data-lang="ka"] .quiz-pill-btn .sub-text {
        font-size: clamp(11px, 3.2vw, 13px) !important;
        white-space: normal !important;
        word-break: break-word !important;
    }
}

/* Georgian Typography Fine-tuning */
html[lang="ka"] .approach-title,
body[data-lang="ka"] .approach-title {
    font-size: clamp(30px, 3.2vw, 56px) !important;
}

html[lang="ka"] .approach-content h3,
body[data-lang="ka"] .approach-content h3 {
    font-size: clamp(22px, 2.1vw, 36px) !important;
    line-height: 1.3 !important;
}

html[lang="ka"] .feature-card h4,
body[data-lang="ka"] .feature-card h4 {
    font-size: clamp(18px, 1.35vw, 24px) !important;
    line-height: 1.3 !important;
}

html[lang="ka"] .feature-card p,
body[data-lang="ka"] .feature-card p {
    font-size: clamp(13px, 0.9vw, 15px) !important;
    line-height: 1.45 !important;
}

/* Layout & Utility */
.container {
    width: 100%;
    max-width: 1840px;
    margin: 0 auto;
    padding: 0 clamp(20px, 3vw, 48px);
    box-sizing: border-box;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: all var(--transition-fast);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--primary);
    color: #ffffff;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-1px);
}

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

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-main);
}

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    background-color: #ffffff;
    transition: border-color var(--transition-fast);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* Header & Nav */
header {
    height: 76px;
    display: flex;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--bg-main);
    width: 100%;
    z-index: 99999 !important;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    width: 131px;
    height: 37px;
    object-fit: contain;
}

.lang-selector {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
}

.lang-selector a, .lang-selector .lang-btn {
    font-weight: 500;
    color: #111111;
    opacity: 0.5;
    transition: all var(--transition-fast);
    text-decoration: none;
    cursor: pointer;
}

.lang-selector a:hover, .lang-selector .lang-btn:hover {
    opacity: 0.85;
}

.lang-selector a.active, .lang-selector .lang-btn.active {
    font-weight: 700;
    opacity: 1;
}

.lang-separator {
    display: flex;
    align-items: center;
}

.lang-icon {
    width: 18px;
    height: auto;
    display: block;
    filter: brightness(0);
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 560px;
    max-height: 960px;
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 3rem;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* Hero Quiz Pill Button */
.quiz-pill-btn {
    position: fixed;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    background-color: #AEC2CF;
    width: clamp(280px, 24vw, 368px);
    height: clamp(74px, 6vw, 94px);
    border-radius: 94px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
    transition: background-color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}

.quiz-pill-btn:hover {
    background-color: #1747DF;
    transform: translateX(-50%) scale(1.03);
    box-shadow: 0 20px 48px rgba(23, 71, 223, 0.35);
}

.quiz-pill-btn .action-text {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: clamp(18px, 1.5vw, 24px);
    color: #111111;
    display: block;
    line-height: 1.2;
    transition: color var(--transition-fast);
}

.quiz-pill-btn:hover .action-text {
    color: #ffffff;
}

.quiz-pill-btn .sub-text {
    font-family: var(--font-mono);
    font-weight: 500;
    font-size: clamp(14px, 1.1vw, 18px);
    color: #111111;
    display: block;
    margin-top: 2px;
    line-height: 1.2;
    transition: color var(--transition-fast);
}

.quiz-pill-btn:hover .sub-text {
    color: #ffffff;
}

/* Approach Section */
.approach-section {
    padding: clamp(3.5rem, 6vw, 7rem) 0;
}

.approach-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    gap: clamp(24px, 4vw, 64px);
}

.approach-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: auto;
    max-width: 480px;
    flex: 0 0 auto;
    gap: 20px;
}

.approach-title {
    font-family: var(--font-sans);
    font-size: clamp(36px, 3.8vw, 64px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.04em;
    flex-shrink: 0;
}

.approach-arrow {
    width: clamp(40px, 3.5vw, 64px);
    height: clamp(40px, 3.5vw, 64px);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.approach-arrow-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0);
}

.approach-content {
    width: 100%;
    max-width: 753px;
}

.approach-content h3 {
    font-family: var(--font-sans);
    font-size: clamp(24px, 2.4vw, 40px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.04em;
    margin-bottom: clamp(1rem, 2vw, 2rem);
}

.approach-content p {
    font-family: var(--font-mono);
    font-size: clamp(16px, 1.4vw, 24px);
    font-weight: 500;
    color: #111111;
    line-height: 1.25;
    letter-spacing: 0;
    margin-bottom: clamp(1rem, 2vw, 2rem);
}

/* Cards / Features Section */
.features-section {
    padding-bottom: clamp(3.5rem, 6vw, 7rem);
}

.grid-4col {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(14px, 1.6vw, 24px);
    width: 100%;
}

.feature-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.feature-img-wrapper {
    width: 100%;
    aspect-ratio: 442 / 530;
    height: auto;
    overflow: hidden;
    margin-bottom: clamp(12px, 1.2vw, 20px);
    border-radius: 4px;
}

.feature-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}

.feature-card:hover .feature-img-wrapper img {
    transform: scale(1.03);
}

.feature-card h4 {
    font-family: var(--font-sans);
    font-size: clamp(20px, 1.8vw, 32px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.04em;
    color: #111111;
    margin-bottom: 8px;
}

.feature-card p {
    font-family: var(--font-mono);
    font-size: clamp(14px, 1.2vw, 20px);
    font-weight: 500;
    color: #111111;
    line-height: 1.25;
    letter-spacing: 0;
}

/* Designed to belong */
.belong-section {
    padding-bottom: clamp(3.5rem, 5vw, 6rem);
}

.belong-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.belong-header h2 {
    font-family: var(--font-sans);
    font-size: clamp(36px, 3.8vw, 64px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.04em;
    color: #111111;
}

.belong-controls {
    display: flex;
    gap: 1rem;
}

.belong-controls button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: transform var(--transition);
}

.belong-controls button:hover {
    transform: scale(1.1);
}

.belong-arrow-img {
    width: clamp(24px, 2.2vw, 37px);
    height: clamp(22px, 2vw, 34px);
    object-fit: contain;
    filter: brightness(0);
    opacity: 1;
}

.belong-img-large {
    width: 100%;
    height: auto;
    aspect-ratio: 1840 / 680;
    max-height: 680px;
    object-fit: cover;
}

/* Release Section */
.release-section {
    padding-bottom: clamp(4rem, 6vw, 8rem);
}

.release-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    gap: clamp(24px, 3vw, 48px);
}

.release-text {
    width: 100%;
    max-width: 540px;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: clamp(12px, 1.5vw, 24px);
}

.release-text h2 {
    font-family: var(--font-sans);
    font-size: clamp(36px, 3.8vw, 64px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.04em;
    color: #111111;
    margin: 0;
}

.release-text p {
    font-family: var(--font-mono);
    font-size: clamp(16px, 1.4vw, 24px);
    font-weight: 500;
    line-height: 1.25;
    letter-spacing: 0;
    color: #111111;
    margin: 0;
}

.release-cards {
    display: flex;
    gap: clamp(12px, 1.5vw, 24px);
    flex-shrink: 0;
}

.spec-card {
    width: clamp(170px, 15vw, 286px);
    height: clamp(320px, 26vw, 470px);
    background-color: #AEC2CF;
    border-radius: 20px;
    padding: clamp(14px, 1.2vw, 20px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-shrink: 0;
    cursor: pointer;
    box-sizing: border-box;
    transition: background-color var(--transition-fast), transform var(--transition-fast);
}

.spec-icon-img {
    width: clamp(44px, 4vw, 72px);
    height: clamp(44px, 4vw, 72px);
    object-fit: contain;
    opacity: 1;
    transition: filter var(--transition-fast);
}

.spec-details {
    margin-top: auto;
}

.spec-label {
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: clamp(15px, 1.3vw, 24px);
    line-height: 1.2;
    letter-spacing: -0.04em;
    color: #111111;
    margin-bottom: 6px;
    transition: color var(--transition-fast);
}

.spec-value {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: clamp(32px, 3.2vw, 58px);
    line-height: 1.1;
    letter-spacing: -0.04em;
    color: #111111;
    transition: color var(--transition-fast);
}

/* Hover & Active states for Spec Cards (Desktop & Mobile) */
.spec-card:hover, .spec-card:active {
    background-color: #1747DF !important;
    transform: translateY(-4px);
}

.spec-card:hover .spec-icon-img, 
.spec-card:active .spec-icon-img,
.spec-card:hover .card-icon img,
.spec-card:active .card-icon img {
    filter: brightness(0) invert(1) !important;
}

.spec-card:hover .spec-label, 
.spec-card:active .spec-label,
.spec-card:hover .card-label,
.spec-card:active .card-label {
    color: #ffffff !important;
}

.spec-card:hover .spec-value, 
.spec-card:active .spec-value,
.spec-card:hover .card-value,
.spec-card:active .card-value {
    color: #ffffff !important;
}

/* Footer Styles */
footer {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding: 60px 0 140px 0;
}

.footer-container {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.footer-top-flow {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.footer-logo-casper {
    width: 287px;
    height: 81px;
    object-fit: contain;
}

.footer-logo-bp {
    width: 285px;
    height: 77px;
    object-fit: contain;
}



.footer-flow-arrow {
    width: 22.2px;
    height: 20.4px;
    object-fit: contain;
    filter: brightness(0);
}

.by-badge {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #bac9d4;
    color: #111111;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
}

.footer-bottom-info {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: flex-start;
}

.footer-info-col {
    display: flex;
    flex-direction: column;
    gap: 4px; /* Gap between info lines */
}

.footer-info-col.left-col {
    width: 284px;
}

.footer-info-col.right-col {
    width: 287px;
    text-align: right;
    align-items: flex-end;
}

.footer-info-col h4 {
    font-family: var(--font-sans);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.04em;
    color: #111111;
    margin-top: 0;
    margin-bottom: 12px; /* Margin below the column header */
}

.footer-info-col p {
    font-family: var(--font-sans);
    font-size: 20px;
    font-weight: 500;
    color: #111111;
    margin: 0;
    line-height: 1.1;
    letter-spacing: -0.04em;
}



/* Multi-step Quiz Lead Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-container {
    background-color: #E9E9E7;
    width: 1513px;
    max-width: 95%;
    height: 928px;
    max-height: 90vh;
    padding: 56px 48px;
    position: relative;
    border-radius: 56px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
    border: none;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.modal-container::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
}

.modal-close {
    position: absolute;
    top: 30px;
    right: 30px;
    background: none;
    border: 1px solid rgba(0, 0, 0, 0.15);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    color: #111111;
    transition: all var(--transition-fast);
}

.modal-close:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.quiz-step {
    display: none;
    max-width: 1120px;
    width: 100%;
    margin: 0 auto;
}

.quiz-step.active {
    display: block;
    animation: fadeIn 0.4s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.quiz-modal-title {
    text-align: center;
    font-family: var(--font-sans);
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.04em;
    color: #111111;
    margin-top: 0;
    margin-bottom: 80px;
}

.quiz-step-num {
    font-family: var(--font-sans);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.04em;
    color: #1747DF;
    margin-bottom: 16px;
}

.quiz-question {
    font-family: var(--font-sans);
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.04em;
    color: #1A1A1A;
    margin-top: 0;
    margin-bottom: 12px;
}

.quiz-subtext {
    font-family: var(--font-mono);
    font-size: 24px;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: 0;
    color: #555555;
    margin-top: 0;
    margin-bottom: 48px;
}

.quiz-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.quiz-option {
    background-color: #F3F3F1;
    border-radius: 16px;
    height: 76px;
    border: 2px solid transparent;
    padding: 0 28px;
    font-family: var(--font-sans);
    font-size: 20px;
    font-weight: 500;
    color: #111111;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    transition: all var(--transition-fast);
}

.quiz-option:hover {
    border-color: #1747DF;
    background-color: #F3F3F1;
    color: #1A1A1A;
}

.quiz-option.selected {
    background-color: #1747DF;
    color: #ffffff;
    border-color: #1747DF;
}

.quiz-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

/* Step 2 Cards Grid & Option Cards */
.quiz-options-row {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 40px;
    width: 100%;
}

.quiz-option-card {
    background-color: #F3F3F1;
    width: 285px;
    height: 285px;
    border-radius: 24px;
    padding: 24px;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    cursor: pointer;
    transition: all var(--transition-fast);
    text-align: left;
}

.option-card-title {
    font-family: var(--font-sans);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.04em;
    color: #111111;
    margin-bottom: 0;
    transition: color var(--transition-fast);
}

.option-card-img {
    width: 172px;
    height: 181px;
    object-fit: contain;
    margin: auto auto 0 auto;
}

/* Hover & Selected states for Option Cards */
.quiz-option-card:hover {
    background-color: #AEC2CF;
    border-color: #AEC2CF;
    color: #111111;
}

.quiz-option-card.selected {
    background-color: #1747DF;
    border-color: #1747DF;
    color: #ffffff;
}

.quiz-option-card.selected .option-card-title {
    color: #ffffff;
}

/* Step 3 Goal Grid & Goal Cards */
.quiz-options-grid-2x2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
    width: 100%;
}

.quiz-goal-card {
    background-color: #F3F3F1;
    border-radius: 24px;
    padding: 24px 32px;
    border: 2px solid transparent;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    cursor: pointer;
    transition: all var(--transition-fast);
    height: 140px;
    text-align: left;
    width: 100%;
}

.goal-card-text {
    display: flex;
    flex-direction: column;
    gap: 6px;
    max-width: 80%;
}

.goal-card-title {
    font-family: var(--font-sans);
    font-size: 22px;
    font-weight: 700;
    color: #111111;
    line-height: 1.2;
    letter-spacing: -0.02em;
    transition: color var(--transition-fast);
}

.goal-card-desc {
    font-family: var(--font-mono);
    font-size: 16px;
    font-weight: 500;
    color: #555555;
    line-height: 1.2;
    transition: color var(--transition-fast);
}

.goal-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.goal-card-icon.badge-yellow { background-color: #FEF987; }
.goal-card-icon.badge-red { background-color: #DE9C8A; }
.goal-card-icon.badge-purple { background-color: #E2B2E3; }
.goal-card-icon.badge-grey { background-color: #E2E2DF; }

.goal-icon-img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

/* Hover & Selected states for Goal Cards */
.quiz-goal-card:hover {
    background-color: #AEC2CF;
    border-color: #AEC2CF;
    color: #111111;
}

.quiz-goal-card.selected {
    background-color: #1747DF;
    border-color: #1747DF;
    color: #ffffff;
}

.quiz-goal-card.selected .goal-card-title {
    color: #ffffff;
}

.quiz-goal-card.selected .goal-card-desc {
    color: #ffffff;
}

/* Centered Navigation bottom */
.quiz-navigation-bottom {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 40px;
}

.quiz-btn-goback {
    background: none;
    border: none;
    font-family: var(--font-sans);
    font-size: 20px;
    font-weight: 500;
    color: #111111;
    text-decoration: underline;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity var(--transition-fast);
}

.quiz-btn-goback:hover {
    opacity: 1;
}

/* Step 5: Final Contact Info Form styling */
.quiz-step-title-final {
    text-align: center;
    font-family: var(--font-sans);
    font-size: 40px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.04em;
    color: #111111;
    margin-top: 20px;
    margin-bottom: 20px;
}

.quiz-subtext-final {
    text-align: center;
    font-family: var(--font-mono);
    font-size: 18px;
    font-weight: 500;
    color: #555555;
    max-width: 720px;
    margin: 0 auto 40px auto;
    line-height: 1.3;
}

.quiz-form-row {
    display: flex;
    gap: 24px;
    width: 100%;
    margin-bottom: 24px;
}

.quiz-form-row .form-group {
    flex: 1;
}

.form-input {
    background-color: #E2E2DF;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    height: 56px;
    padding: 0 20px;
    font-family: var(--font-sans);
    font-size: 18px;
    color: #111111;
    width: 100%;
}

.form-input::placeholder {
    color: #888885;
}

.phone-input-wrapper {
    display: flex;
    background-color: #E2E2DF;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    overflow: hidden;
    height: 56px;
    width: 100%;
}

.phone-country-select {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 16px;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.02);
}

.phone-country-select .flag-icon {
    font-size: 20px;
}

.phone-country-select .country-code {
    font-family: var(--font-sans);
    font-size: 18px;
    font-weight: 600;
    color: #111111;
}

.phone-country-select .arrow-down {
    font-size: 10px;
    color: #777777;
}

.form-input-tel {
    background: transparent;
    border: none;
    flex: 1;
    padding: 0 20px;
    font-family: var(--font-sans);
    font-size: 18px;
    color: #111111;
    outline: none;
}

.form-input-tel::placeholder {
    color: #888885;
}

.quiz-submit-wrapper-final {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 48px;
    margin-bottom: 24px;
}

.quiz-btn-submit-final {
    background-color: #AEAEAA;
    color: #ffffff;
    width: 380px;
    height: 64px;
    border-radius: 64px;
    font-family: var(--font-sans);
    font-size: 20px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

.privacy-disclaimer-text {
    font-family: var(--font-mono);
    font-size: 14px;
    font-weight: 500;
    color: #777777;
    margin-top: 14px;
    margin-bottom: 0;
    text-align: center;
}

.quiz-btn-submit-final.active {
    background-color: #FEF987;
    color: #111111;
}

.quiz-btn-submit-final.active:hover {
    background-color: #FEF08A;
    transform: scale(1.02);
}

/* Success Step Modal State */
.modal-container.modal-success-mode {
    background-color: #AEC2CF;
    width: 680px;
    max-width: 90%;
    height: auto;
    padding: 60px 48px;
    text-align: center;
    border-radius: 40px;
}

.success-icon-wrapper {
    margin: 0 auto 24px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quiz-success-title {
    font-family: var(--font-sans);
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.04em;
    color: #111111;
    text-align: center;
    margin-top: 0;
    margin-bottom: 16px;
}

.quiz-success-subtext {
    font-family: var(--font-mono);
    font-size: 18px;
    font-weight: 500;
    color: #111111;
    text-align: center;
    margin: 0;
}

.progress-bar-container {
    width: 100%;
    height: 3px;
    background: rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.progress-bar-fill {
    height: 100%;
    background: var(--text-primary);
    width: 33%;
    transition: width 0.3s ease;
}

/* Tablet & Medium Laptop Breakpoints (1024px - 1280px like 13" Mac) */
@media (max-width: 1200px) {
    .approach-grid {
        flex-direction: column;
        gap: 32px;
    }
    .approach-header-row {
        width: 100%;
        max-width: 100%;
    }
    .approach-content {
        max-width: 100%;
    }
    .release-grid {
        flex-direction: column;
        gap: 40px;
    }
    .release-text {
        max-width: 100%;
    }
    .release-cards {
        width: 100%;
        justify-content: space-between;
    }
    .spec-card {
        flex: 1;
        width: auto;
    }
}

@media (max-width: 1024px) {
    .grid-4col {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

/* Responsiveness Settings (Mobile) */
@media (max-width: 768px) {
    /* Global Mobile Container */
    .container {
        padding: 0 24px !important;
    }
    
    /* Header Mobile Settings */
    header {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        width: 100% !important;
        height: auto !important;
        padding: 20px 16px 12px 16px !important;
        background-color: var(--bg-main) !important;
        border-bottom: none !important;
        z-index: 100 !important;
    }
    .header-container, header .container {
        padding: 0 !important;
        height: 100%;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
    }
    .logo-img {
        height: 28px !important;
        width: auto !important;
    }
    .nav-links {
        display: none !important;
    }
    .lang-selector {
        gap: 0 !important;
    }
    .lang-selector a:not(.active) {
        display: none !important;
    }
    .lang-separator {
        display: flex !important;
        align-items: center !important;
    }
    .lang-selector {
        display: flex !important;
        align-items: center !important;
        gap: 8px !important;
        font-size: 15px !important;
    }
    .lang-selector a {
        display: inline-block !important;
        font-family: var(--font-sans) !important;
        font-size: 15px !important;
        color: #111111 !important;
    }
    .lang-selector a.active {
        font-weight: 700 !important;
        opacity: 1 !important;
    }
    
    /* Hero Section Mobile */
    section.hero {
        width: 100% !important;
        max-width: 100% !important;
        height: 52vh !important;
        min-height: 360px !important;
        max-height: 500px !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        position: relative !important;
        overflow: hidden !important;
        padding: 0 !important;
    }
    .hero-video {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }

    /* Philosophy / Approach Section Mobile */
    .approach-section {
        padding: 3rem 0 2rem 0 !important;
    }
    .approach-grid {
        flex-direction: column !important;
        gap: 16px !important;
        width: 100% !important;
    }
    .approach-header-row {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        width: 100% !important;
        margin-bottom: 8px !important;
    }
    .approach-title {
        font-family: var(--font-sans) !important;
        font-size: 36px !important;
        font-weight: 700 !important;
        line-height: 1.1 !important;
        letter-spacing: -0.04em !important;
        color: #111111 !important;
        width: auto !important;
        margin: 0 !important;
    }
    .approach-arrow {
        width: 32px !important;
        height: 32px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin: 0 !important;
        opacity: 1 !important;
    }
    .approach-arrow-img {
        width: 32px !important;
        height: 32px !important;
        object-fit: contain !important;
        filter: none !important;
        opacity: 1 !important;
    }
    .approach-content {
        width: 100% !important;
        max-width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 14px !important;
    }
    .approach-content h3 {
        font-family: var(--font-sans) !important;
        font-size: 24px !important;
        font-weight: 700 !important;
        line-height: 1.2 !important;
        letter-spacing: -0.03em !important;
        color: #111111 !important;
        margin-bottom: 0 !important;
    }
    .approach-content p {
        font-family: var(--font-mono) !important;
        font-size: 16px !important;
        font-weight: 500 !important;
        line-height: 1.4 !important;
        color: #111111 !important;
        margin: 0 !important;
    }

    /* Feature Cards on Mobile - Clean Vertical 1-Column Stack */
    .features-section {
        padding: 1.5rem 0 3rem 0 !important;
        overflow: visible !important;
    }
    .grid-4col {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 36px !important;
        margin: 0 !important;
        padding: 0 !important;
        width: 100% !important;
        overflow: visible !important;
    }
    .feature-card {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        display: flex !important;
        flex-direction: column !important;
    }
    .feature-img-wrapper {
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 442 / 530 !important;
        border-radius: 6px !important;
        overflow: hidden !important;
        margin-bottom: 14px !important;
    }
    .feature-img-wrapper img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        object-position: center !important;
        border-radius: 6px !important;
    }
    .feature-card h4, .feature-card h3 {
        font-family: var(--font-sans) !important;
        font-size: 26px !important;
        font-weight: 700 !important;
        line-height: 1.2 !important;
        letter-spacing: -0.03em !important;
        color: #111111 !important;
        margin-bottom: 8px !important;
    }
    .feature-card p {
        font-family: var(--font-mono) !important;
        font-size: 16px !important;
        font-weight: 500 !important;
        line-height: 1.4 !important;
        color: #111111 !important;
        margin: 0 !important;
    }

    /* Designed to Belong / Spaces that inspire Section Mobile */
    .belong-section {
        padding: 2rem 0 !important;
    }
    .belong-header h2 {
        font-family: var(--font-sans) !important;
        font-size: 28px !important;
        font-weight: 700 !important;
        line-height: 1.1 !important;
        letter-spacing: -0.04em !important;
        color: #111111 !important;
        margin-bottom: 1rem !important;
    }
    .belong-img-large {
        content: url('../images/space-slide-m.png') !important;
        width: 100% !important;
        height: auto !important;
        border-radius: 0 !important;
        display: block !important;
    }
    .belong-controls {
        display: flex !important;
        gap: 12px !important;
    }
    .belong-arrow-img {
        width: 24px !important;
        height: 24px !important;
    }

    /* Release Section Mobile */
    .release-section {
        padding: 2.5rem 0 !important;
    }
    .release-grid {
        flex-direction: column !important;
        gap: 1.5rem !important;
    }
    .release-text {
        width: 100% !important;
        height: auto !important;
    }
    .release-text h2 {
        font-family: var(--font-sans) !important;
        font-size: 32px !important;
        font-weight: 700 !important;
        line-height: 1.1 !important;
        letter-spacing: -0.04em !important;
        color: #111111 !important;
        margin-bottom: 12px !important;
    }
    .release-text p {
        font-family: var(--font-mono) !important;
        font-size: 16px !important;
        font-weight: 500 !important;
        line-height: 1.35 !important;
        color: #111111 !important;
        margin-bottom: 24px !important;
    }
    .release-cards {
        flex-direction: column !important;
        width: 100% !important;
        gap: 16px !important;
    }
    .spec-card {
        width: 100% !important;
        max-width: 100% !important;
        height: 150px !important;
        border-radius: 24px !important;
        padding: 20px !important;
        position: relative !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
        opacity: 1 !important;
        margin: 0 !important;
        overflow: hidden !important;
        background-color: #AEC2CF !important;
    }
    /* Blurred blue glowing backdrop effect on release cards */
    .spec-card::before {
        content: '' !important;
        position: absolute !important;
        width: 181px !important;
        height: 137px !important;
        background: #1747DF !important;
        filter: blur(40px) !important;
        backdrop-filter: blur(100px) !important;
        transform: rotate(135deg) !important;
        border-radius: 50% !important;
        opacity: 0.9 !important;
        z-index: 1 !important;
        pointer-events: none !important;
    }
    .spec-card:nth-child(1)::before {
        top: -10px !important;
        right: -20px !important;
    }
    .spec-card:nth-child(2)::before {
        bottom: -20px !important;
        left: -20px !important;
    }
    .spec-card:nth-child(3)::before {
        bottom: -20px !important;
        right: -20px !important;
    }
    .spec-card > * {
        position: relative !important;
        z-index: 2 !important;
    }
    .spec-icon, .card-icon {
        position: absolute !important;
        top: 16px !important;
        right: 16px !important;
        z-index: 3 !important;
        margin: 0 !important;
    }
    .spec-icon-img, .card-icon img {
        width: 32px !important;
        height: 32px !important;
        object-fit: contain !important;
        display: block !important;
    }
    .spec-label, .card-label {
        font-family: var(--font-sans) !important;
        font-size: 18px !important;
        font-weight: 500 !important;
        line-height: 1.2 !important;
        letter-spacing: -0.04em !important;
        color: #111111 !important;
    }
    .spec-value, .card-value {
        font-family: var(--font-sans) !important;
        font-size: 32px !important;
        font-weight: 700 !important;
        line-height: 1.2 !important;
        letter-spacing: -0.04em !important;
        color: #111111 !important;
    }

    /* Footer Mobile */
    footer {
        padding-bottom: 110px !important;
    }
    .footer-top-flow {
        flex-wrap: nowrap !important;
        justify-content: space-between !important;
        align-items: center !important;
        gap: 1rem !important;
    }
    .footer-logo-casper {
        width: 110px !important;
        height: auto !important;
    }
    .footer-logo-bp {
        width: 110px !important;
        height: auto !important;
    }
    .footer-by-badge {
        width: 28px !important;
        height: 28px !important;
        font-size: 11px !important;
    }
    .footer-flow-arrow {
        display: none !important;
    }
    .footer-bottom-info {
        display: flex !important;
        flex-direction: column !important;
        gap: 1.5rem !important;
        margin-top: 2rem !important;
    }
    .footer-info-col {
        width: 100% !important;
        text-align: left !important;
    }
    .footer-info-col.right-col {
        text-align: left !important;
        align-items: flex-start !important;
    }
    .footer-info-col h4 {
        font-family: var(--font-sans) !important;
        font-size: 20px !important;
        font-weight: 700 !important;
        line-height: 1.2 !important;
        letter-spacing: -0.04em !important;
        color: #111111 !important;
        margin-bottom: 8px !important;
    }
    .footer-info-col p {
        font-family: var(--font-sans) !important;
        font-size: 16px !important;
        font-weight: 500 !important;
        line-height: 1.3 !important;
        letter-spacing: -0.04em !important;
        color: #111111 !important;
        margin: 0 0 4px 0 !important;
    }
    /* Sticky Mobile Take a Quiz Floating Pill Button */
    .quiz-pill-btn {
        position: fixed !important;
        bottom: 16px !important;
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%) !important;
        width: calc(100% - 32px) !important;
        max-width: 440px !important;
        height: 72px !important;
        border-radius: 72px !important;
        z-index: 999 !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
        background-color: #AEC2CF !important;
        margin: 0 auto !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        box-sizing: border-box !important;
        transition: background-color var(--transition-fast), transform var(--transition-fast) !important;
    }
    .quiz-pill-btn .action-text {
        font-size: 19px;
        color: #111111;
        text-align: center !important;
        width: 100% !important;
        transition: color var(--transition-fast);
    }
    .quiz-pill-btn .sub-text {
        font-size: 14px;
        color: #111111;
        text-align: center !important;
        width: 100% !important;
        transition: color var(--transition-fast);
    }
    .quiz-pill-btn:hover, .quiz-pill-btn:active {
        background-color: #1747DF !important;
        transform: translateX(-50%) scale(1.02) !important;
    }
    .quiz-pill-btn:hover .action-text, .quiz-pill-btn:active .action-text {
        color: #ffffff !important;
    }
    .quiz-pill-btn:hover .sub-text, .quiz-pill-btn:active .sub-text {
        color: #ffffff !important;
    }

    footer.main-footer {
        padding-bottom: 110px !important;
    }

    /* Quiz Modal Mobile Responsiveness */
    .modal-container {
        width: 95% !important;
        padding: 32px 20px !important;
        border-radius: 32px !important;
        height: auto !important;
        max-height: 90vh !important;
        scrollbar-width: none !important;
        -ms-overflow-style: none !important;
    }
    .modal-container::-webkit-scrollbar {
        display: none !important;
        width: 0 !important;
        height: 0 !important;
    }
    .modal-close {
        top: 16px;
        right: 16px;
        width: 36px;
        height: 36px;
        font-size: 20px;
    }
    .quiz-modal-title {
        font-size: 28px;
        margin-bottom: 32px;
    }
    .quiz-step-num {
        font-size: 18px;
        margin-bottom: 8px;
    }
    .quiz-question {
        font-size: 22px;
        margin-bottom: 8px;
    }
    .quiz-subtext {
        font-size: 16px;
        margin-bottom: 24px;
    }
    .quiz-options {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .quiz-option {
        height: 60px;
        font-size: 16px;
        padding: 0 16px;
    }
    .quiz-options-row {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 12px !important;
    }
    .quiz-option-card {
        width: 100% !important;
        height: 160px !important;
        border-radius: 20px !important;
        padding: 16px !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
        background-color: #F4F4F4 !important;
    }
    .quiz-option-card.selected {
        background-color: #1747DF !important;
    }
    .quiz-option-card.selected .option-card-title {
        color: #ffffff !important;
    }
    .option-card-title {
        font-family: var(--font-sans) !important;
        font-size: 15px !important;
        font-weight: 700 !important;
        line-height: 1.2 !important;
        text-align: left !important;
    }
    .option-card-img {
        width: 90px !important;
        height: 90px !important;
        object-fit: contain !important;
        margin: auto auto 0 auto !important;
    }
    .quiz-options-grid-2x2 {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .quiz-goal-card {
        height: auto;
        padding: 16px 20px;
    }
    .goal-card-title {
        font-size: 18px;
    }
    .goal-card-desc {
        font-size: 14px;
    }
    .goal-card-icon {
        width: 40px;
        height: 40px;
    }
    .goal-icon-img {
        width: 20px;
        height: 20px;
    }
    .quiz-form-row {
        flex-direction: column;
        gap: 16px;
    }
    .quiz-step-title-final {
        font-size: 26px;
        margin-top: 10px;
    }
    .quiz-subtext-final {
        font-size: 14px;
        margin-bottom: 24px;
    }
    .quiz-btn-submit-final {
        width: 100%;
        height: 56px;
        font-size: 18px;
    }
    .modal-container.modal-success-mode {
        width: 95%;
        padding: 40px 20px;
    }
    .quiz-success-title {
        font-size: 24px;
    }
    .quiz-success-subtext {
        font-size: 15px;
    }
}
