:root {
    /* Colors - Hyfindr Brand */
    --blue: #4b93cf;
    --text: #25252c;
    --muted: #717586;
    --soft: #f7f8fa;
    --border: #d8e5f3;
    /* Shadows & Borders */
    --shadow: 1px 1px 16px rgba(0, 0, 0, 0.04);
    --radius-lg: 10px;
    --radius: 8px;
    --radius-sm: 6px;
    /* Layout */
    --max-width: 1200px;
    /* Spacing System */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 40px;
    --spacing-xl: 20px;
    --spacing-2xl: 80px;
    /* Typography */
    --font-family: Inter, sans-serif;
    --line-height-tight: 1.18;
    --line-height-normal: 1.5;
    --line-height-relaxed: 1.6;
    /* Font Sizes */
    --font-xs: 0.95rem;
    --font-sm: 1.05rem;
    --font-base: 1.2rem;
    --font-lg: 1.22rem;
    --font-xl: 1.35rem;
    --font-2xl: 1.6rem;
    --font-3xl: 1.85rem;
    --font-4xl: 2.35rem;
    --font-5xl: 2.6rem;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    font-family: var(--font-family);
    color: var(--text);
    background: #fff;
    line-height: var(--line-height-normal);
    font-size: var(--font-base);
}
a {
    color: inherit;
    text-decoration: none;
}
section {
    padding: var(--spacing-2xl) 0;
}
.container {
    max-width: var(--max-width);
    margin: 4rem auto;
    padding: 0 var(--spacing-md);
}
.headline {
    font-weight: 800;
    font-size: var(--font-5xl);
    line-height: var(--line-height-tight);
    letter-spacing: -.015em;
    margin-bottom: 0;
    text-align: left;
}
.headline .brand {
    color: var(--blue);
}
.lead {
    margin-top: var(--spacing-sm);
    color: var(--muted);
    font-size: var(--font-xl);
    line-height: var(--line-height-normal);
    max-width: 760px;
}
.section-title {
    font-size: var(--font-3xl);
    font-weight: 600;
    line-height: var(--line-height-tight);
    letter-spacing: -0.01em;
    margin-top: var(--spacing-xl);
    margin-bottom: var(--spacing-sm);
    padding-bottom: var(--spacing-xs);
}
p {
    margin-bottom: var(--spacing-md);
    font-size: var(--font-base);
}
h4 {
    font-size: var(--font-lg);
    font-weight: 600;
    line-height: var(--line-height-tight);
    margin-bottom: var(--spacing-sm);
}
.hero-wrap {
    background: linear-gradient(180deg, #d7e7ff, transparent) 0 0 / 100% 70%
        no-repeat;
}
.hero {
    padding: var(--spacing-2xl) var(--spacing-md) var(--spacing-xl);
    border-bottom: 1px solid var(--border);
    text-align: left;
}
.cta-row {
    margin-top: 60px;
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
    margin-bottom: 12px;
}
.btn {
    display: inline-block;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius);
    background: var(--blue);
    color: #fff;
    font-weight: 700;
    font-size: var(--font-base);
    box-shadow: 1px 1px 16px rgba(0, 0, 0, 0.04);
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
}
.btn:hover {
    background: #2f77b3;
}
.full-bleed {
    width: 100vw;
    margin: auto;
}
.video-section {
    padding: var(--spacing-xl) 0;
}
.video-wrap {
    background: transparent;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    max-width: var(--max-width);
    margin: var(--spacing-md) auto 0;
}
.video {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    max-height: 675px;
    border-radius: 8px;
    background: transparent;
}
.intro {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}
@media (max-width: 1100px) {
    .intro {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
}
.dark-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 420px;
    margin: auto;
}
.dark-card img {
    max-width: 100%;
    height: auto;
    display: block;
}
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}
@media (max-width: 992px) {
    .grid-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 640px) {
    .grid-3 {
        grid-template-columns: 1fr;
    }
}
.card {
    background: #fff;
    border-radius: var(--radius);
    border: 1px solid #eeeef0;
    box-shadow: var(--shadow);
    padding: var(--spacing-md);
    text-align: left;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 -2px 20px -2px rgba(0, 0, 0, 0.1),
        0 12px 15px -6px rgba(0, 0, 0, 0.12);
}
.card .card-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: #e8f2fc;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-sm);
}
.card .card-icon i {
    font-size: 24px;
    color: var(--blue);
}
.card h4 {
    font-size: var(--font-lg);
    font-weight: 600;
    line-height: var(--line-height-tight);
    margin-bottom: var(--spacing-sm);
    padding-bottom: var(--spacing-xs);
    color: var(--text);
}
.card p {
    color: var(--muted);
    font-size: var(--font-base);
    line-height: var(--line-height-relaxed);
    margin: 0;
}
.timeline-steps {
    display: flex;
    gap: var(--spacing-lg);
    align-items: flex-start;
    margin-top: var(--spacing-lg);
}
@media (max-width: 1024px) {
    .timeline-steps {
        flex-direction: column;
        gap: var(--spacing-md);
    }
}
.step {
    text-align: center;
    flex: 1;
    width: 100%;
}
.step h4 {
    font-size: var(--font-lg);
    font-weight: 600;
    line-height: var(--line-height-tight);
    margin-bottom: var(--spacing-xs);
    margin-top: var(--spacing-xs);
    color: var(--text);
}
.step p {
    color: var(--muted);
    font-size: var(--font-base);
    line-height: var(--line-height-relaxed);
    margin: 0;
    padding-top: var(--spacing-xs);
}
.step-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), #6bb5f6);
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 30px;
    margin: 0 auto var(--spacing-sm);
    box-shadow: 0 4px 12px rgba(73, 147, 207, 0.3);
}
.form-wrap {
    margin-top: var(--spacing-md);
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: var(--spacing-lg);
    border: 1px solid #eeeef0;
}
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
}
@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
}
input {
    width: 100%;
    padding: 14px var(--spacing-md);
    border: 1px solid #e0e0e6;
    border-radius: var(--radius-sm);
    font-family: var(--font-family);
    font-size: var(--font-base);
    line-height: var(--line-height-normal);
    transition: border-color 0.2s ease;
    background: #fff;
}
input::placeholder {
    color: #a0a0aa;
}
input:focus {
    outline: none;
    border-color: var(--blue);
}
.form-submit {
    margin-top: var(--spacing-md);
}
.form-submit .btn {
    width: auto;
    padding: 14px 32px;
}
.privacy {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-xs);
    margin-top: var(--spacing-md);
    font-size: var(--font-sm);
    line-height: var(--line-height-relaxed);
    color: var(--muted);
}
.privacy i {
    color: var(--blue);
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}
.privacy a {
    color: var(--blue);
    text-decoration: none;
}
.privacy a:hover {
    text-decoration: underline;
}
.support-section {
    padding: var(--spacing-xl) var(--spacing-md);
    text-align: center;
    background: var(--soft);
}
.support-section .container {
    margin: 0 auto;
}
.support-section .container h2 {
    margin: 1rem 0;
}
.support-section h2 {
    font-size: var(--font-3xl);
    font-weight: 600;
    line-height: var(--line-height-tight);
    letter-spacing: -0.01em;
    margin-top: var(--spacing-xl);
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-xs);
}
.support-links {
    display: flex;
    gap: var(--spacing-lg);
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.support-link {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-weight: 600;
    font-size: var(--font-base);
    color: var(--text);
    transition: color 0.2s ease;
}
.support-link:hover {
    color: var(--blue);
}
.support-link::before {
    content: "✉";
    font-size: var(--font-xl);
    color: var(--blue);
}
.support-link.meeting::before {
    content: "📅";
}
.divider {
    color: var(--muted);
    font-size: var(--font-base);
}
.support-label {
    color: var(--text);
    font-size: var(--font-base);
    margin-right: 4px;
}
/* Toast Notifications */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.toast {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    border-radius: var(--radius);
    color: white;
    font-size: var(--font-base);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 300px;
    max-width: 500px;
    animation: slideIn 0.3s ease;
}
.toast i {
    margin-right: 12px;
    font-size: 20px;
}
@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}
/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 9998;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
}
.modal.show {
    display: flex;
}
.modal-content {
    background-color: white;
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    text-align: center;
}
.modal-content h3 {
    font-size: var(--font-2xl);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--text);
}
.modal-content p {
    font-size: var(--font-base);
    color: var(--muted);
    margin-bottom: var(--spacing-sm);
}
.modal-email {
    font-weight: 600;
    color: var(--blue);
    font-size: var(--font-lg);
}
.btn-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: 700;
    color: var(--muted);
    cursor: pointer;
    background: none;
    border: none;
    line-height: 1;
}
.btn-close:hover {
    color: var(--text);
}
.modal-content .btn {
    margin-top: var(--spacing-md);
}
/* Responsive Typography */
@media (max-width: 768px) {
    .headline {
        font-size: var(--font-4xl);
    }
    .section-title {
        font-size: var(--font-2xl);
    }
    .lead {
        font-size: var(--font-lg);
    }
    .hero {
        padding: var(--spacing-xl) var(--spacing-md) var(--spacing-lg);
    }
    .support-links {
        gap: var(--spacing-md);
    }
}