html, body {
    overflow-x: hidden;
    overflow-y: auto;
}
.contact-page {
    display: flex;
    flex-direction: column;
    min-height: calc(var(--vh, 1vh) * 100);
    background: #f3f4f6;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}
.hero-section {
    padding: 24px 0;
    display: flex;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
}
.hero-text-col {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 28px 56px 48px 64px;
    width: 44%;
    flex-shrink: 0;
    position: relative;
    z-index: 10;
}
@media (max-width: 900px) {
    .hero-text-col {
        width: 100%;
        padding: 40px 32px;
        background: rgba(243, 244, 246, 0.92);
    }
    .hero-section {
        position: relative;
    }
    .hero-canvas-col {
        position: absolute;
        inset: 0;
        z-index: 1;
    }
    .hero-text-col {
        position: relative;
        z-index: 2;
    }
}

/* Mobile adjustments for hero section */
@media (max-width: 768px) {
    .hero-section {
        overflow: hidden;
        min-height: auto;
        padding-bottom: 40px;
    }
    .channels-section,
    .tips-section {
        position: relative;
        z-index: 3;
    }
}

.hero-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #64748b;
    margin-bottom: 16px;
}
.hero-title {
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: #0f172a;
    margin: 0 0 20px;
}
.hero-title span {
    color: #334155;
}
.hero-desc {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #475569;
    margin: 0 0 28px;
    max-width: 420px;
}
.hero-email-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    padding: 12px 18px;
    font-size: 0.9rem;
    color: #0f172a;
    font-weight: 500;
    text-decoration: none;
    transition: border-color 0.15s, box-shadow 0.15s, transform 0.1s;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
    max-width: max-content;
}
.hero-email-badge:hover {
    border-color: #94a3b8;
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.1);
    transform: translateY(-1px);
}
.hero-email-badge .email-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
}
.hero-canvas-col {
    flex: 1;
    position: relative;
    overflow: hidden;
    align-self: flex-start;
}
#contact-canvas-container {
    width: 100%;
    height: 100%;
}
#contact-canvas-container canvas {
    display: block;
    width: 100% !important;
    height: 100% !important;
}
.hero-canvas-col::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 80px;
    height: 100%;
    background: linear-gradient(to right, #f3f4f6 0%, transparent 100%);
    pointer-events: none;
    z-index: 5;
}
.channels-section {
    padding: 80px 64px;
    background: #ffffff;
    border-top: 1px solid #e2e8f0;
}
@media (max-width: 768px) {
    .channels-section {
        padding: 56px 24px;
    }
}
.channels-header {
    text-align: center;
    margin-bottom: 56px;
}
.channels-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #64748b;
    margin-bottom: 12px;
}
.channels-title {
    font-size: clamp(1.6rem, 2.5vw, 2.4rem);
    font-weight: 700;
    letter-spacing: -0.025em;
    color: #0f172a;
    margin: 0 0 12px;
}
.channels-subtitle {
    font-size: 1rem;
    color: #64748b;
    margin: 0 auto;
    max-width: 480px;
    line-height: 1.6;
}
.channels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1060px;
    margin: 0 auto;
}
.channel-card {
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 18px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
    position: relative;
    overflow: hidden;
}
.channel-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #0f172a;
    opacity: 0;
    transition: opacity 0.2s;
}
.channel-card:hover {
    border-color: #cbd5e1;
    box-shadow: 0 10px 32px rgba(15, 23, 42, 0.09);
    transform: translateY(-3px);
}
.channel-card:hover::before {
    opacity: 1;
}
.channel-icon {
    width: 48px;
    height: 48px;
    background: #0f172a;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.channel-icon svg {
    width: 24px;
    height: 24px;
    color: #ffffff;
}
.channel-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
}
.channel-desc {
    font-size: 0.875rem;
    line-height: 1.65;
    color: #64748b;
    margin: 0;
    flex: 1;
}
.channel-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #0f172a;
    text-decoration: none;
    padding: 9px 16px;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    transition: background 0.15s, transform 0.1s;
    align-self: flex-start;
}
.channel-cta:hover {
    background: #e2e8f0;
    transform: translateX(2px);
}
.tips-section {
    padding: 72px 64px;
    background: #f3f4f6;
    border-top: 1px solid #e2e8f0;
}
@media (max-width: 768px) {
    .tips-section {
        padding: 48px 24px;
    }
}
.tips-inner {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
@media (max-width: 700px) {
    .tips-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}
.tips-text-col .tips-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #64748b;
    margin-bottom: 12px;
}
.tips-text-col h2 {
    font-size: clamp(1.4rem, 2vw, 1.9rem);
    font-weight: 700;
    letter-spacing: -0.025em;
    color: #0f172a;
    margin: 0 0 14px;
}
.tips-text-col p {
    font-size: 0.925rem;
    line-height: 1.7;
    color: #475569;
    margin: 0;
}
.tips-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.tips-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.6;
}
.tips-list li .tip-check {
    width: 20px;
    height: 20px;
    background: #0f172a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}
.tips-list li .tip-check svg {
    width: 10px;
    height: 10px;
    color: #ffffff;
}
.cta-section {
    padding: 72px 64px;
    text-align: center;
    background: #0f172a;
}
@media (max-width: 768px) {
    .cta-section {
        padding: 56px 24px;
    }
}
.cta-title {
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 700;
    letter-spacing: -0.025em;
    color: #ffffff;
    margin: 0 0 12px;
}
.cta-desc {
    font-size: 1rem;
    color: #94a3b8;
    margin: 0 0 32px;
}
.btn-launch-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    color: #0f172a;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 13px 26px;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.15s, transform 0.1s;
}
.btn-launch-cta:hover {
    background: #f1f5f9;
    transform: translateY(-1px);
}
.home-footer {
    padding: 20px 64px;
    background: #0f172a;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
@media (max-width: 768px) {
    .home-footer {
        padding: 20px 24px;
        flex-direction: column;
        text-align: center;
    }
}
.footer-brand {
    font-size: 0.875rem;
    font-weight: 600;
    color: #94a3b8;
}
.footer-note {
    font-size: 0.8rem;
    color: #475569;
}
.footer-links {
    display: flex;
    align-items: center;
    gap: 20px;
}
.footer-links a {
    font-size: 0.8rem;
    color: #475569;
    text-decoration: none;
    transition: color 0.15s;
}
.footer-links a:hover {
    color: #94a3b8;
}
