/* 
   BizWee Modern Refined 
   Theme: Full Dark / Ultra Modern / Unique Animations
*/

:root {
    --bg-dark: #0f1020;
    --card-bg: rgba(255, 255, 255, 0.05);
    --text-white: #e0e0e0;
    --text-muted: #a0a0b0;

    --primary-blue: #3b82f6;
    --primary-cyan: #00d4ff;
    --primary-purple: #8b5cf6;

    --gradient-main: linear-gradient(135deg, var(--primary-cyan) 0%, var(--primary-blue) 100%);

    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Outfit', sans-serif;

    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --header-height: 72px;
}

/* Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    font-family: var(--font-body);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Links & Buttons */
a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
}

.btn-lg {
    padding: 18px 45px;
    font-size: 1.3rem;
}

/* Larger button */
.btn-primary {
    background: var(--gradient-main);
    color: white;
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 212, 255, 0.6);
}

.btn-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #fff;
}

.btn-outline:hover {
    border-color: var(--primary-cyan);
    color: var(--primary-cyan);
    background: rgba(0, 212, 255, 0.05);
}

/* Typography */
h1,
h2,
h3 {
    font-family: var(--font-heading);
}

.text-center {
    text-align: center;
}

.mt-2 {
    margin-top: 0.5rem;
}

.mt-5 {
    margin-top: 3rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

.gradient-text {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Layout */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Wider container */
.section {
    padding: 6rem 0;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.grid {
    display: grid;
    gap: 2rem;
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 0.75rem 0;
    background: rgba(15, 16, 32, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.logo img {
    height: 56px;
    width: auto;
}

.nav-list {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    transition: var(--transition);
}

.nav-toggle:hover {
    border-color: var(--primary-cyan);
    background: rgba(0, 212, 255, 0.08);
}

.nav-toggle i {
    font-size: 1.2rem;
    color: #fff;
}

.nav-actions {
    display: none;
}

.nav-link:hover {
    color: var(--primary-cyan);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Lang bar - style like old design */
.lang-bar {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-right: 1rem;
    margin-right: 0.5rem;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.lang-bar .lang-selector {
    padding: 0.25rem;
    opacity: 0.4;
    transition: var(--transition);
}

.lang-bar .lang-selector:hover {
    opacity: 0.8;
}

.lang-bar .lang-selector.active {
    opacity: 1;
}

.lang-bar .flag-icon {
    width: 20px;
    height: 15px;
    display: block;
}

#particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    background: radial-gradient(circle at center, rgba(15, 16, 32, 0.5) 0%, rgba(15, 16, 32, 1) 90%);
}

/* Hero */
.hero {
    min-height: calc(100svh - var(--header-height));
    padding-top: var(--header-height);
    display: flex;
    align-items: center;
    background: transparent;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: clamp(1.5rem, 4vw, 4rem);
    align-items: center;
}

/* More space for text */
.hero-title {
    font-size: clamp(2.4rem, 6vw, 6rem);
    line-height: 1;
    margin-bottom: 1rem;
}

/* Larger Title */
.sub-headline {
    font-size: clamp(1.1rem, 2.4vw, 2.2rem);
    margin-bottom: 1.2rem;
    color: #fff;
    font-weight: 500;
}

/* Larger Subheadline */
.hero-subtitle {
    font-size: clamp(0.95rem, 1.6vw, 1.2rem);
    margin-bottom: clamp(1.5rem, 3vw, 3rem);
    color: var(--text-muted);
}

.hero-phone {
    width: 100%;
    max-width: clamp(220px, 35vw, 420px);
    max-height: calc(100svh - var(--header-height) - 140px);
    display: block;
    margin: 0 auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.6));
}

/* Larger Image, Shifted Right */
.hero-image-wrapper {
    animation: fadeIn 1s forwards 0.3s;
    opacity: 0;
    padding-left: clamp(0px, 2vw, 20px);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Why SMS */
.why-sms {
    background: transparent;
}

.info-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(30px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.info-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.info-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-cyan);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-cyan);
}

.info-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: white;
}

.info-card p {
    font-size: 1rem;
    color: var(--text-muted);
}

/* Use Cases */
.use-cases {
    position: relative;
}

.center-grid-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.use-case-item {
    background: var(--card-bg);
    width: 320px;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    opacity: 0;
    transform: scale(0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.use-case-item.visible {
    opacity: 1;
    transform: scale(1);
}

.use-case-item:hover {
    transform: translateY(-10px) scale(1.02);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-cyan);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

/* NEW GRADIENT ICON (Replacing Purple) */
.icon-circle.gradient-icon {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(59, 130, 246, 0.1));
    color: var(--primary-cyan);
    border: none;
    margin: 0 auto 1.5rem;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 2rem;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.1);
}

.icon-circle.gradient-icon:hover {
    transform: rotate(10deg);
    color: #fff;
    background: var(--gradient-main);
}

.use-case-text {
    margin-bottom: 1.5rem;
    font-weight: 500;
    font-size: 1.1rem;
    color: #fff;
}

.link-cyan {
    font-size: 1rem;
    color: var(--primary-cyan);
    font-weight: 700;
}

/* Advantages */
.feature-box {
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
}

.feature-box.visible {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease-out;
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 20px;
    transition: var(--transition);
    height: 100%;
}

.feature-card:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.1));
    border-color: var(--primary-cyan);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-cyan);
}

.feature-showcase {
    display: flex;
    gap: 3rem;
    align-items: center;
    justify-content: center;
    background: rgba(15, 16, 32, 0.8);
    padding: 3rem;
    border-radius: 20px;
    opacity: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 5rem;
}

.showcase-visible {
    opacity: 1;
    animation: fadeIn 1s ease-out;
}

.info-grid {
    display: grid;
    gap: 2rem;
    text-align: left;
    margin-top: 2rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
}

.info-item i {
    color: var(--primary-cyan);
    font-size: 1.5rem;
}

.static-phone-small {
    width: 100%;
    max-width: 250px;
    display: block;
}

/* Pricing */
.pricing-grid {
    display: flex;
    gap: 1.5rem;
    perspective: 1000px;
    justify-content: center;
    padding-top: 3rem;
}

/* Force 4 items on one line: use flex-basis + nowrap */
.nowrap-grid {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 3rem;
    padding-top: 1rem;
}

/* Scroll on mobile if needed */
.pricing-card {
    flex: 0 0 280px;
    background: #151628;
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
    opacity: 0;
    transform-origin: center bottom;
}

.pricing-card.visible {
    opacity: 1;
}

.pricing-card:hover {
    z-index: 10;
    transform: scale(1.1) !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border-color: var(--primary-blue);
}

.pricing-header {
    padding: 20px;
    text-align: center;
    color: white;
}

.starter-bg {
    background: #333;
}

.micro-bg {
    background: var(--primary-blue);
}

.pro-bg {
    background: var(--primary-purple);
}

.premium-bg {
    background: linear-gradient(135deg, #ff00cc, #333399);
}

.sms-amount {
    font-size: 1.8rem;
    font-weight: 700;
    margin-top: 5px;
}

.pricing-body {
    padding: 20px;
    text-align: center;
}

.feature-line {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 0;
    font-size: 1rem;
    color: #ccc;
}

.price-tag {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin: 1.5rem 0 0.5rem;
}

.pricing-disclaimer {
    background: rgba(59, 130, 246, 0.1);
    padding: 2rem;
    border-radius: 12px;
    font-size: 1rem;
    color: #ddd;
    max-width: 900px;
    margin: 3rem auto 0;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

/* PARTNERS TICKER */
.partners-section {
    padding: 4rem 0;
    overflow: hidden;
    background: transparent;
    border-top: none;
}

.ticker-wrapper {
    width: 60%;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.ticker-track {
    display: flex;
    width: max-content;
    animation: scrollTicker 30s linear infinite;
}

.ticker-track img {
    height: 80px;
    width: 80px;
    margin: 0 20px;
    border-radius: 50%;
    background: white;
    padding: 15px;
    object-fit: contain;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

@keyframes scrollTicker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Footer Split */
.footer {
    background: #050510;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4rem 0 2rem;
    color: #ccc;
}

.footer-split-layout {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 4rem;
}

.footer-left {
    flex: 1;
    max-width: 500px;
}

.footer-right {
    flex: 1;
    text-align: right;
}

.footer h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    border-left: 3px solid var(--primary-cyan);
    padding-left: 10px;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo img {
    height: 36px;
    width: auto;
    display: block;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    margin-top: 3rem;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Legal (CGU) page */
.legal-main {
    padding-top: var(--header-height);
}

.legal-page .section-title {
    text-align: center;
}

.legal-card {
    max-width: 980px;
    margin: 0 auto;
    text-align: justify;
    color: #f2f4ff;
    background: rgba(10, 14, 30, 0.7);
    border-color: rgba(0, 212, 255, 0.15);
    line-height: 1.85;
}

.legal-card p {
    margin-bottom: 1.1rem;
    color: #f2f4ff;
}

.legal-card h2,
.legal-card h3 {
    color: #ffffff;
    margin-top: 2rem;
}

.legal-card h2 {
    font-size: 1.6rem;
}

.legal-card h3 {
    font-size: 1.2rem;
}

/* Modals */
.modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(3, 7, 18, 0.75);
    backdrop-filter: blur(6px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    z-index: 2000;
    padding: 1.5rem;
}

.modal.is-open {
    opacity: 1;
    pointer-events: auto;
}

.modal-card {
    width: min(520px, 92vw);
    background: linear-gradient(160deg, rgba(11, 22, 48, 0.95), rgba(6, 10, 22, 0.98));
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 18px;
    padding: 2rem;
    color: #f5f7ff;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
    position: relative;
    transform: translateY(16px) scale(0.98);
    opacity: 0;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.modal.is-open .modal-card {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.modal-card.slide-out-right {
    transform: translateX(40px);
    opacity: 0;
}

.modal-card.slide-in-right {
    animation: modalSlideIn 0.3s ease;
}

.modal-card h3 {
    margin-bottom: 1.25rem;
    font-size: 1.6rem;
}

.modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    cursor: pointer;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.modal-form label {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    font-weight: 500;
    color: #e8edff;
}

.modal-form input {
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    outline: none;
}

.modal-form input:focus {
    border-color: var(--primary-cyan);
    box-shadow: 0 0 0 2px rgba(0, 212, 255, 0.2);
}

/* Signup flash messages */
.signup-flash {
    padding: 0.75rem 1rem;
    border-radius: 10px;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    min-height: 1.5rem;
}
.signup-flash.flash-success {
    background: rgba(34, 197, 94, 0.2);
    color: #4ade80;
    border: 1px solid rgba(34, 197, 94, 0.4);
}
.signup-flash.flash-error {
    background: rgba(239, 68, 68, 0.2);
    color: #f87171;
    border: 1px solid rgba(239, 68, 68, 0.4);
}
.signup-flash.flash-info {
    background: rgba(59, 130, 246, 0.2);
    color: #60a5fa;
    border: 1px solid rgba(59, 130, 246, 0.4);
}

.modal-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.modal-check {
    flex-direction: row;
    align-items: center;
    gap: 0.6rem;
    font-weight: 400;
    flex-wrap: nowrap;
}

.modal-check span {
    display: inline;
    line-height: 1.4;
}

.modal-check input {
    width: 16px;
    height: 16px;
    accent-color: var(--primary-cyan);
}

.modal-check a {
    color: var(--primary-cyan);
    text-decoration: underline;
}

.modal-switch {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: #cfd6f6;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 0.75rem;
}

.modal-switch-btn {
    background: none;
    border: none;
    color: var(--primary-cyan);
    font-weight: 600;
    cursor: pointer;
}

@keyframes modalSlideIn {
    from {
        transform: translateX(40px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@media (max-width: 520px) {
    .modal-card {
        padding: 1.5rem;
    }

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

/* Responsive */
@media (max-width: 1100px) {
    .nowrap-grid {
        flex-wrap: wrap;
        justify-content: center;
    }

    /* Fallback for smaller screens */
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-image-wrapper {
        padding-left: 0;
    }

    .hero-phone {
        margin: 0 auto;
    }

    .footer-split-layout {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .footer-right {
        text-align: center;
    }

    .footer-logo img {
        margin: 0 auto;
    }
}

@media (max-width: 980px) {
    .header-container {
        flex-wrap: wrap;
        gap: 1rem;
        position: relative;
    }

    .nav-toggle {
        display: inline-flex;
        margin-left: auto;
    }

    .nav {
        width: auto;
        order: 3;
        position: absolute;
        top: calc(var(--header-height) - 8px);
        right: 0;
        z-index: 1001;
    }

    .nav.is-open {
        background: #0b1630;
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 16px;
        padding: 0.75rem 0.75rem 0.5rem;
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        padding: 1rem 0;
        border-radius: 16px;
        background: rgba(15, 16, 32, 0.95);
        border: 1px solid rgba(255, 255, 255, 0.08);
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        pointer-events: none;
        transition: max-height 0.35s ease, opacity 0.25s ease;
        width: min(280px, 92vw);
        margin: 0;
    }

    .nav.is-open .nav-list {
        max-height: 320px;
        opacity: 1;
        pointer-events: auto;
    }

    .header-actions {
        display: none;
    }

    .nav-actions {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        padding: 0 0 1rem;
        align-items: center;
        margin-top: 0.5rem;
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        pointer-events: none;
        transition: max-height 0.35s ease, opacity 0.25s ease;
    }

    .nav.is-open .nav-actions {
        max-height: 160px;
        opacity: 1;
        pointer-events: auto;
    }

    .nav-actions .lang-bar {
        border-right: none;
        margin-right: 0;
        padding-right: 0;
        justify-content: center;
    }

    .nav-list {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.2rem;
    }

    .header-actions {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }

    .ticker-wrapper {
        width: 80%;
    }
}

@media (max-width: 720px) {
    .header {
        padding: 0.5rem 0;
    }

    .logo img {
        height: 44px;
    }

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

    .nav-toggle {
        margin-left: auto;
    }

    .nav-list {
        gap: 0.9rem;
        font-size: 0.95rem;
    }

    .header-actions {
        display: none;
        width: 100%;
        gap: 0.75rem;
    }

    .header-actions .btn {
        flex: 1 1 180px;
        text-align: center;
    }

    .section {
        padding: 4.5rem 0;
    }

    .use-case-item {
        width: min(100%, 320px);
    }

    .pricing-grid {
        gap: 1rem;
        padding-top: 2rem;
    }

    .pricing-card {
        flex: 0 0 240px;
    }

    .ticker-wrapper {
        width: 90%;
    }

    .ticker-track img {
        height: 64px;
        width: 64px;
        margin: 0 12px;
        padding: 10px;
    }

    .contact-info {
        text-align: center;
    }

    .contact-info p {
        text-align: center;
    }

    .footer-right {
        text-align: center;
    }

    .hero-content {
        text-align: center;
    }

    .hero-buttons {
        display: flex;
        justify-content: center;
    }

    .hero-phone,
    .static-phone-small {
        display: none;
    }
}

@media (max-width: 520px) {
    .container {
        padding: 0 1.25rem;
    }

    .btn {
        padding: 11px 22px;
    }

    .btn-lg {
        padding: 14px 28px;
        font-size: 1.1rem;
    }

    .nav-list {
        gap: 0.75rem;
    }

    .hero-phone {
        max-width: 280px;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Short viewport height optimizations (landscape phones, small laptops) */
@media (max-height: 800px) {
    .hero-title { font-size: clamp(2rem, 5vw, 4.5rem); }
    .sub-headline { font-size: clamp(1rem, 2vw, 1.6rem); }
    .hero-subtitle { margin-bottom: clamp(1rem, 2vw, 2rem); }
    .section { padding: 4rem 0; }
}

@media (max-height: 650px) {
    .hero { align-items: center; }
    .hero-phone { max-height: calc(100svh - var(--header-height) - 100px); }
    .hero-container { gap: clamp(1rem, 2vw, 2rem); }
}