/* ==========================================
   קו קולי — Premium Design System
   ========================================== */

:root {
    --primary: #FA4453;
    --primary-dark: #cc3744;
    --primary-light: #ff6e7b;
    --primary-glow: rgba(250, 68, 83, 0.18);
    --secondary: #FF6B6B;
    --secondary-dark: #ee5253;
    --secondary-light: #ff9f9f;
    --bg-white: #FFFFFF;
    --bg-light: #fffafa;
    --bg-surface: #fdf5f5;
    --text-dark: #1A1A2E;
    --text-body: #3D3D56;
    --text-muted: #7A7A96;
    --border: #f7eaea;
    --shadow-sm: 0 2px 10px rgba(250, 68, 83, 0.06);
    --shadow-md: 0 10px 40px rgba(250, 68, 83, 0.10);
    --shadow-lg: 0 24px 64px rgba(250, 68, 83, 0.14);
    --shadow-card: 0 8px 32px rgba(250, 68, 83, 0.08);
    --shadow-glow: 0 0 40px rgba(250, 68, 83, 0.15);
    --radius-sm: 10px;
    --radius-md: 20px;
    --radius-lg: 28px;
    --radius-xl: 32px;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --font: 'Noto Sans Hebrew', sans-serif;
}

/* ========== RESET & BASE ========== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font);
    color: var(--text-body);
    background: var(--bg-white);
    line-height: 1.75;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

button {
    cursor: pointer;
    font-family: inherit;
}

.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 28px;
}

/* ========== TYPOGRAPHY ========== */
h1,
h2,
h3,
h4 {
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.3;
}

.section-title {
    font-size: clamp(1.9rem, 4vw, 2.7rem);
    text-align: center;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.08rem;
    color: var(--text-muted);
    margin-bottom: 60px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.highlight {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 36px;
    border-radius: 100px;
    /* Pill shape */
    font-size: 0.98rem;
    font-weight: 700;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn:hover::before {
    opacity: 1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    border-color: transparent;
    box-shadow: 0 6px 20px rgba(250, 68, 83, 0.25);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(250, 68, 83, 0.4);
}

.btn-outline {
    background: rgba(250, 68, 83, 0.04);
    color: var(--primary);
    border-color: rgba(250, 68, 83, 0.2);
    backdrop-filter: blur(8px);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(250, 68, 83, 0.3);
}

.btn-lg {
    padding: 16px 48px;
    font-size: 1.05rem;
    border-radius: 100px;
}

.btn-block {
    width: 100%;
    padding: 15px 24px;
}

/* ========== ANNOUNCEMENT BAR ========== */
.announcement-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(-45deg, #00B55E, #00C868, #22C55E, #00B55E);
    background-size: 400% 400%;
    animation: gradientBG 20s ease infinite;
    /* Slowed down to 20s */
    color: white;
    z-index: 1100;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    font-weight: 800;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 181, 94, 0.3);
}

@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.announcement-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 40%;
    height: 100%;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.4) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    animation: barShine 15s infinite;
    /* Increased cycle to 15s */
}

@keyframes barShine {
    0% {
        left: -100%;
    }

    25% {
        left: 150%;
    }

    /* Takes 25% of 15s (~4s) to cross - much slower */
    100% {
        left: 150%;
    }
}

.announcement-bar.hidden {
    transform: translateY(-100%);
}

.bar-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    width: 100%;
    position: relative;
    z-index: 2;
}

.bar-pill {
    background: rgba(255, 255, 255, 0.25);
    padding: 6px 22px;
    border-radius: 100px;
    font-size: 0.8rem;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    animation: pillPulse 4s infinite ease-in-out;
    /* Slowed down to 4s */
}

@keyframes pillPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.04);
        background: rgba(255, 255, 255, 0.35);
    }

    100% {
        transform: scale(1);
    }
}

/* ========== NAVBAR ========== */
.navbar {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(226, 226, 238, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    top: 0;
    box-shadow: var(--shadow-sm);
    background: rgba(255, 255, 255, 0.92);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 44px;
    width: auto;
}

.navbar-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.navbar-links a {
    font-size: 0.93rem;
    font-weight: 500;
    color: var(--text-body);
    transition: var(--transition);
    position: relative;
    padding: 4px 0;
}

.navbar-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    right: 0;
    width: 0;
    height: 2.5px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    border-radius: 2px;
    transition: width 0.3s ease;
}

.navbar-links a:hover::after {
    width: 100%;
}

.navbar-links a:hover {
    color: var(--primary);
}

.navbar-cta {
    padding: 10px 26px;
    font-size: 0.88rem;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 4px;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition);
}

/* ========== HERO ========== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 130px 24px 80px;
    position: relative;
    background: linear-gradient(175deg, var(--bg-white) 0%, var(--bg-light) 50%, var(--bg-surface) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 600px 600px at 20% 30%, rgba(83, 74, 183, 0.06) 0%, transparent 70%),
        radial-gradient(ellipse 400px 400px at 80% 60%, rgba(29, 158, 117, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

/* ========== HERO GRID & VISUAL ========== */
.hero-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    /* Increased space for text */
    align-items: center;
    gap: 60px;
    padding: 60px 0 80px;
}

@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 100px 0 60px;
    }

    .hero-content {
        max-width: 100%;
        margin: 0 auto;
    }
}

.hero-content {
    max-width: 680px;
    position: relative;
    z-index: 2;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

/* Phone Mockup */
.phone-mockup {
    position: relative;
    width: 320px;
    height: 640px;
    background: #111;
    border: 12px solid #222;
    border-radius: 48px;
    box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.5),
        0 30px 60px -30px rgba(0, 0, 0, 0.3),
        inset 0 0 0 2px rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transform: rotateY(-10deg) rotateX(5deg);
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.phone-mockup:hover {
    transform: rotateY(0) rotateX(0) scale(1.02);
}

.phone-screen {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
    display: flex;
    flex-direction: column;
}

.phone-header {
    height: 44px;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
}

.call-interface {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
    /* Removed top padding to keep container height stable */
}

.call-avatar {
    position: relative;
    width: 60px;
    height: 60px;
    margin-top: 50px;
    /* Use margin-top here instead of padding on container */
    margin-bottom: 12px;
}

.avatar-ring {
    position: absolute;
    top: -6px;
    left: -6px;
    right: -6px;
    bottom: -6px;
    border: 3px solid var(--primary);
    border-radius: 50%;
    opacity: 0.3;
    animation: ringPulse 2s infinite;
}

@keyframes ringPulse {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

.avatar-img-placeholder {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.avatar-img-placeholder svg {
    width: 24px;
    height: 24px;
}

.caller-name {
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.caller-status {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 30px;
}

/* Dialog Pills */
.dialog-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.dialog-pill {
    max-width: 85%;
    padding: 10px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    line-height: 1.4;
    animation: pillSlide 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes pillSlide {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pill-bot {
    align-self: flex-start;
    background: var(--primary);
    color: white;
    border-bottom-left-radius: 4px;
}

.pill-user {
    align-self: flex-end;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    border-bottom-right-radius: 4px;
    text-align: right;
}

.call-actions {
    position: absolute;
    bottom: 80px;
    /* Lifted higher to avoid being cut off */
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-around;
    padding: 0 45px;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 5;
}

.phone-screen.call-active .call-actions {
    opacity: 0;
    transform: translateY(40px) scale(0.8);
    pointer-events: none;
}

.action-btn {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.action-btn:hover {
    transform: scale(1.1);
}

.action-btn.decline {
    background: #ff3b30;
    /* Official iOS Red */
    transform: rotate(135deg);
}

.action-btn.accept {
    background: #4cd964;
    /* Official iOS Green */
}

.action-btn svg {
    width: 28px;
    height: 28px;
    fill: white;
}

.dialog-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
    transition: all 0.5s ease;
    opacity: 0;
}

.phone-screen.call-active .dialog-container {
    opacity: 1;
}

/* Simulation Badge */
.simulation-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    background: #00B55E;
    color: white;
    padding: 12px 24px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 10px 30px rgba(0, 181, 94, 0.4);
    opacity: 0;
    pointer-events: none;
    z-index: 10;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.simulation-badge.visible {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.hero-title {
    font-size: clamp(2.1rem, 5.5vw, 3.4rem);
    font-weight: 900;
    margin-bottom: 26px;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: clamp(1.15rem, 2.5vw, 1.45rem);
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto 44px;
    line-height: 1.75;
}

.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-glow {
    position: absolute;
    top: -300px;
    left: 50%;
    transform: translateX(-50%);
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(83, 74, 183, 0.07) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

/* Sound Wave */
.sound-wave-container {
    display: none;
    /* Replaced by phone mockup */
}

.sound-wave {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3.5px;
    height: 64px;
}

.sound-wave .bar {
    display: inline-block;
    width: 4px;
    border-radius: 4px;
    background: linear-gradient(180deg, var(--primary) 0%, var(--secondary) 100%);
    animation: soundWave 1.2s ease-in-out infinite;
    opacity: 0.7;
}

.sound-wave .bar:nth-child(1) {
    height: 15px;
    animation-delay: 0.0s;
}

.sound-wave .bar:nth-child(2) {
    height: 25px;
    animation-delay: 0.05s;
}

.sound-wave .bar:nth-child(3) {
    height: 40px;
    animation-delay: 0.1s;
}

.sound-wave .bar:nth-child(4) {
    height: 30px;
    animation-delay: 0.15s;
}

.sound-wave .bar:nth-child(5) {
    height: 50px;
    animation-delay: 0.2s;
}

.sound-wave .bar:nth-child(6) {
    height: 35px;
    animation-delay: 0.25s;
}

.sound-wave .bar:nth-child(7) {
    height: 20px;
    animation-delay: 0.3s;
}

.sound-wave .bar:nth-child(8) {
    height: 45px;
    animation-delay: 0.35s;
}

.sound-wave .bar:nth-child(9) {
    height: 55px;
    animation-delay: 0.4s;
}

.sound-wave .bar:nth-child(10) {
    height: 30px;
    animation-delay: 0.45s;
}

.sound-wave .bar:nth-child(11) {
    height: 40px;
    animation-delay: 0.5s;
}

.sound-wave .bar:nth-child(12) {
    height: 20px;
    animation-delay: 0.55s;
}

.sound-wave .bar:nth-child(13) {
    height: 50px;
    animation-delay: 0.6s;
}

.sound-wave .bar:nth-child(14) {
    height: 35px;
    animation-delay: 0.65s;
}

.sound-wave .bar:nth-child(15) {
    height: 25px;
    animation-delay: 0.7s;
}

.sound-wave .bar:nth-child(16) {
    height: 45px;
    animation-delay: 0.75s;
}

.sound-wave .bar:nth-child(17) {
    height: 55px;
    animation-delay: 0.8s;
}

.sound-wave .bar:nth-child(18) {
    height: 30px;
    animation-delay: 0.85s;
}

.sound-wave .bar:nth-child(19) {
    height: 20px;
    animation-delay: 0.9s;
}

.sound-wave .bar:nth-child(20) {
    height: 40px;
    animation-delay: 0.95s;
}

.sound-wave .bar:nth-child(21) {
    height: 50px;
    animation-delay: 1.0s;
}

.sound-wave .bar:nth-child(22) {
    height: 25px;
    animation-delay: 1.05s;
}

.sound-wave .bar:nth-child(23) {
    height: 35px;
    animation-delay: 1.1s;
}

.sound-wave .bar:nth-child(24) {
    height: 15px;
    animation-delay: 1.15s;
}

.sound-wave .bar:nth-child(25) {
    height: 45px;
    animation-delay: 0.2s;
}

.sound-wave .bar:nth-child(26) {
    height: 30px;
    animation-delay: 0.3s;
}

.sound-wave .bar:nth-child(27) {
    height: 55px;
    animation-delay: 0.4s;
}

.sound-wave .bar:nth-child(28) {
    height: 20px;
    animation-delay: 0.5s;
}

.sound-wave .bar:nth-child(29) {
    height: 40px;
    animation-delay: 0.6s;
}

.sound-wave .bar:nth-child(30) {
    height: 35px;
    animation-delay: 0.7s;
}

@keyframes soundWave {

    0%,
    100% {
        transform: scaleY(0.35);
        opacity: 0.4;
    }

    50% {
        transform: scaleY(1);
        opacity: 0.9;
    }
}

/* ========== CAPABILITIES ========== */
.capabilities {
    padding: 110px 0;
    background: var(--bg-white);
    position: relative;
}

.capabilities::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.cap-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.cap-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.45s ease;
}

.cap-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(135deg, rgba(83, 74, 183, 0.02), rgba(29, 158, 117, 0.02));
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.cap-card:hover::before {
    transform: scaleX(1);
}

.cap-card:hover::after {
    opacity: 1;
}

.cap-card:hover {
    border-color: rgba(83, 74, 183, 0.15);
    box-shadow: var(--shadow-card);
    transform: translateY(-6px);
}

.cap-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(83, 74, 183, 0.1), rgba(83, 74, 183, 0.05));
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    transition: var(--transition);
}

.cap-card:hover .cap-icon {
    transform: scale(1.08);
    box-shadow: 0 4px 16px rgba(83, 74, 183, 0.15);
}

.cap-icon.icon-teal {
    background: linear-gradient(135deg, rgba(29, 158, 117, 0.1), rgba(29, 158, 117, 0.05));
    color: var(--secondary);
}

.cap-card:hover .cap-icon.icon-teal {
    box-shadow: 0 4px 16px rgba(29, 158, 117, 0.15);
}

.hero-content {
    text-align: right;
    max-width: 800px;
    /* Increased from 600px to allow 2 lines */
}

.hero-title {
    font-size: clamp(2.2rem, 5vw, 3rem);
    /* Reduced from 3.2rem */
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--dark);
    font-weight: 800;
}

.cap-icon svg {
    width: 24px;
    height: 24px;
}

.cap-card h3 {
    font-size: 1.12rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.cap-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.75;
}

/* ========== AUDIO RECORDINGS (REFINED) ========== */
.audio-recordings {
    padding: 100px 0;
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.audio-recordings::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 40%;
    height: 40%;
    background: radial-gradient(circle, rgba(183, 28, 28, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.audio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-top: 32px;
    justify-content: flex-start;
    /* Corrected to flex-start for RTL Right alignment */
}

.audio-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: var(--radius-xl);
    padding: 24px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow:
        0 12px 40px -10px rgba(250, 68, 83, 0.12),
        inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
}

.audio-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-xl);
    padding: 1px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(250, 68, 83, 0.1), rgba(255, 255, 255, 0.2));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.audio-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow:
        0 20px 40px -15px rgba(250, 68, 83, 0.18),
        0 0 0 1px rgba(250, 68, 83, 0.1);
    background: rgba(255, 255, 255, 0.85);
}

.audio-card h3 {
    margin: 0 0 5px 0;
    color: var(--text-dark);
    font-weight: 800;
}

.audio-desc {
    font-size: 0.9rem;
    color: #000;
    margin: 0 0 16px 0;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

/* Wave Visualizer - Integrated in Track */
.wave-visualizer {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 0 12px;
    pointer-events: none;
    z-index: 2;
}

.wave-visualizer span {
    flex: 1;
    width: 3px;
    height: 4px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    transition: height 0.1s ease, background 0.3s ease;
}

/* Logic for bars inside the progress zone */
.audio-card.playing .wave-visualizer span {
    background: rgba(0, 0, 0, 0.15);
}

.custom-audio-player {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(245, 245, 247, 0.6);
    padding: 10px 16px;
    border-radius: var(--radius-lg);
    margin-top: 2px;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.play-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 6px 15px rgba(250, 68, 83, 0.25);
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.audio-card.playing .play-btn {
    animation: buttonPulse 2s infinite;
}

@keyframes buttonPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(250, 68, 83, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(250, 68, 83, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(250, 68, 83, 0);
    }
}

.play-btn:hover {
    transform: scale(1.1);
}

.play-btn svg {
    width: 20px;
    height: 20px;
}

.player-controls {
    flex: 1;
}

.progress-container {
    width: 100%;
    height: 44px;
    background: rgba(0, 0, 0, 0.04);
    border-radius: 60px;
    /* Force pill shape */
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.progress-bar {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(90deg, #FA4453, #ff6e7b);
    width: 0%;
    border-left: 2px solid white;
    z-index: 1;
}

/* This makes the bars inside the progress bar area look "active" */
.progress-container::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: inherit;
    /* This will be handled by JS or a clever overlay if needed, 
                      but for now let's use a simpler approach filtering the spans */
}

.progress-container:hover .progress-bar::after {
    opacity: 1;
}


/* ========== HOW IT WORKS ========== */
.how-it-works {
    padding: 110px 0;
    background: var(--bg-white);
    position: relative;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.steps-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.step-card {
    flex: 1;
    max-width: 310px;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 26px 36px;
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.step-card:hover {
    box-shadow: var(--shadow-card);
    transform: translateY(-6px);
    border-color: rgba(83, 74, 183, 0.12);
}

.step-number {
    position: absolute;
    top: -18px;
    right: 26px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    font-weight: 800;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(83, 74, 183, 0.35);
}

.step-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(83, 74, 183, 0.1), rgba(83, 74, 183, 0.04));
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    transition: var(--transition);
}

.step-card:hover .step-icon {
    transform: scale(1.1);
}

.step-icon.icon-teal {
    background: linear-gradient(135deg, rgba(29, 158, 117, 0.1), rgba(29, 158, 117, 0.04));
    color: var(--secondary);
}

.step-icon svg {
    width: 26px;
    height: 26px;
}

.step-card h3 {
    font-size: 1.08rem;
    margin-bottom: 10px;
}

.step-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.75;
}

.step-connector {
    color: var(--primary-light);
    flex-shrink: 0;
    opacity: 0.35;
}

.step-connector svg {
    width: 28px;
    height: 28px;
    transform: scaleX(-1);
}

/* ========== PRICING ========== */
.pricing {
    padding: 110px 0;
    background: var(--bg-light);
    position: relative;
}

.pricing::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 800px 500px at 50% 100%, rgba(83, 74, 183, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    max-width: 780px;
    margin: 0 auto;
    position: relative;
}

.pricing-card {
    background: var(--bg-white);
    border: 2px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 44px 34px;
    position: relative;
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.pricing-card.featured {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg), 0 0 0 1px var(--primary-glow);
    transform: scale(1.04);
    background: linear-gradient(180deg, var(--bg-white) 0%, rgba(83, 74, 183, 0.02) 100%);
}

.pricing-card.featured:hover {
    transform: scale(1.04) translateY(-6px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    padding: 7px 24px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(83, 74, 183, 0.3);
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border);
}

.pricing-header h3 {
    font-size: 1.35rem;
    margin-bottom: 14px;
    font-weight: 800;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.price-amount {
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-dark);
    letter-spacing: -1px;
}

.featured .price-amount {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-period {
    font-size: 1rem;
    color: var(--text-muted);
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 34px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-body);
}

.pricing-features svg {
    width: 18px;
    height: 18px;
    color: var(--secondary);
    flex-shrink: 0;
}

/* ========== FAQ ========== */
.faq {
    padding: 110px 0;
    background: var(--bg-white);
    position: relative;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.faq-list {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(83, 74, 183, 0.2);
    box-shadow: var(--shadow-sm);
}

.faq-item.active {
    border-color: var(--primary-light);
    box-shadow: 0 4px 20px rgba(83, 74, 183, 0.1);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 26px;
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: right;
    cursor: pointer;
    transition: var(--transition);
}

.faq-item.active .faq-question {
    color: var(--primary);
}

.section-title .highlight {
    font-weight: 900;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-chevron {
    width: 22px;
    height: 22px;
    color: var(--text-muted);
    transition: transform 0.35s ease, color 0.35s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 26px 22px;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.85;
}

/* ========== FOOTER ========== */
.footer {
    background: linear-gradient(180deg, #1A1A2E 0%, #141425 100%);
    color: rgba(255, 255, 255, 0.6);
    padding: 70px 0 0;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(83, 74, 183, 0.3), transparent);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 44px;
    padding-bottom: 44px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-brand p {
    margin-top: 16px;
    font-size: 0.88rem;
    line-height: 1.8;
    max-width: 280px;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-nav h4,
.footer-contact h4 {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-nav ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav a {
    font-size: 0.88rem;
    transition: var(--transition);
}

.footer-nav a:hover {
    color: white;
    padding-right: 6px;
}

.whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: #25D366;
    transition: var(--transition);
    padding: 8px 16px;
    background: rgba(37, 211, 102, 0.08);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(37, 211, 102, 0.15);
}

.whatsapp-link:hover {
    color: #4AE87E;
    background: rgba(37, 211, 102, 0.14);
    transform: translateY(-2px);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 26px 0;
    font-size: 0.8rem;
}

.footer-legal {
    display: flex;
    gap: 22px;
}

.footer-legal a {
    transition: var(--transition);
}

.footer-legal a:hover {
    color: rgba(255, 255, 255, 0.9);
}

/* ========== ANIMATIONS ========== */
.fade-up {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-up.delay-1 {
    transition-delay: 0.15s;
}

.fade-up.delay-2 {
    transition-delay: 0.3s;
}

.fade-up.delay-3 {
    transition-delay: 0.45s;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
    .capabilities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-container {
        flex-direction: column;
        gap: 24px;
    }

    .step-connector {
        transform: rotate(90deg);
    }

    .step-connector svg {
        transform: scaleX(-1) rotate(90deg);
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-6px);
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 36px;
    }
}

@media (max-width: 768px) {
    .navbar-links {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 32px 28px;
        gap: 20px;
        border-bottom: 1px solid var(--border);
        transform: translateY(-20px);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: -1;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    }

    .navbar-links.open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        pointer-events: all;
    }

    .navbar-cta {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .capabilities-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .hero {
        padding: 110px 20px 60px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 14px;
        text-align: center;
    }

    .chat-window {
        margin: 0 8px;
    }
}

/* ========== RESPONSIVE AUDIO ========== */
@media (max-width: 900px) {
    .audio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .audio-grid {
        grid-template-columns: 1fr;
    }

    .audio-card {
        padding: 22px;
    }
}

.site-credits {
    background: #fff;
    text-align: center;
    padding: 18px 0;
    font-size: 0.82rem;
    color: #444;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.site-credits a {
    color: #000;
    font-weight: 700;
    transition: var(--transition);
}

.site-credits a:hover {
    color: var(--primary);
}

/* ========== DEMO SECTION (PREMIUM LIGHT REDESIGN) ========== */
.demo-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    background: #f8fafc;
    color: var(--text-dark);
}

.demo-section .container {
    z-index: 10;
}

.demo-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Info Side */
.demo-info {
    text-align: right;
    transform: translateX(80px);
    /* Shift content exactly 80px to the right */
}

.demo-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(250, 68, 83, 0.1);
    color: var(--primary);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 24px;
    border: 1px solid rgba(250, 68, 83, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.demo-section .section-title {
    font-size: 3rem;
    margin-bottom: 24px;
    color: var(--text-dark);
    line-height: 1.1;
}

.demo-description {
    font-size: 1.2rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 600px;
}

.demo-pro-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.demo-pro-item {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.pro-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(250, 68, 83, 0.4);
}

/* Form Container */
.demo-form-container {
    position: relative;
}

.demo-glass-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-xl);
    padding: 35px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

/* Animated Border Effect */
.demo-glass-card::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 2px;
    border-radius: var(--radius-xl);
    background: linear-gradient(45deg, transparent, rgba(250, 68, 83, 0.3), transparent);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
}

.demo-header {
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: right;
    margin-bottom: 24px;
}

.demo-header-text {
    flex: 1;
}

.demo-icon {
    width: 44px;
    height: 44px;
    background: rgba(250, 68, 83, 0.08);
    /* More subtle */
    color: var(--primary);
    border-radius: 12px;
    /* More elegant */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.demo-icon svg {
    width: 24px;
    height: 24px;
    filter: drop-shadow(0 0 8px rgba(250, 68, 83, 0.2));
}

.demo-header h3 {
    font-size: 1.4rem;
    margin-bottom: 4px;
    color: var(--text-dark);
}

.demo-header p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.demo-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.demo-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: right;
}

.demo-form .form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    padding-right: 4px;
}

.demo-form .form-group input {
    height: 50px;
    padding: 0 16px;
    border-radius: var(--radius-md);
    border: 2px solid var(--border);
    background: white;
    font-size: 0.95rem;
    font-family: inherit;
    transition: var(--transition);
    width: 100%;
}

.demo-form .form-group input:focus {
    outline: none;
    background: white;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-glow);
}

.demo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(15, 23, 42, 0.03) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

@media (max-width: 1024px) {
    .demo-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .demo-info {
        text-align: center;
    }

    .demo-description {
        margin: 0 auto 40px;
    }

    .demo-pro-item {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .demo-section .section-title {
        font-size: 2.2rem;
    }

    .demo-glass-card {
        padding: 40px 20px;
    }
}

/* ========== FLOATING WHATSAPP BUTTON ========== */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
}

.wow-tooltip {
    position: absolute;
    right: 80px;
    background-color: #1e293b;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    pointer-events: none;
}

.floating-whatsapp:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

.floating-whatsapp:hover .wow-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

@media (max-width: 480px) {
    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    .wow-tooltip {
        display: none;
    }
}

/* ==========================================================
   FULL MOBILE RESPONSIVE — COMPREHENSIVE OVERRIDES
   ========================================================== */

/* ===== TABLET (max-width: 768px) ===== */
@media (max-width: 768px) {

    /* --- General Spacing --- */
    section {
        padding: 60px 0 !important;
    }

    .container {
        padding: 0 16px;
    }

    .section-title {
        font-size: 1.9rem !important;
        margin-bottom: 12px;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 36px;
    }

    /* --- Announcement Bar --- */
    .announcement-bar {
        font-size: 0.82rem;
        padding: 8px 12px;
    }

    .bar-pill {
        display: none;
    }

    /* --- Hero --- */
    .hero {
        min-height: auto !important;
        padding: 160px 16px 50px !important;
    }

    .hero-grid {
        grid-template-columns: 1fr !important;
        text-align: center;
        gap: 30px;
        padding: 20px 0 40px;
    }

    .hero-title {
        font-size: 1.9rem !important;
        line-height: 1.2 !important;
        letter-spacing: -0.5px;
        margin-bottom: 12px;
    }

    .hero-title span {
        white-space: normal !important;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        padding: 0;
        line-height: 1.6;
        margin-top: 10px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    /* --- Phone Mockup --- */
    .phone-mockup {
        width: 240px;
        height: 480px;
        border-width: 8px;
        border-radius: 36px;
        transform: none;
    }

    .phone-mockup:hover {
        transform: none;
    }

    .caller-name {
        font-size: 1rem !important;
    }

    .caller-status {
        font-size: 0.75rem !important;
    }

    .call-avatar {
        width: 60px !important;
        height: 60px !important;
    }

    .dialog-pill {
        font-size: 0.75rem !important;
        padding: 6px 12px !important;
        max-width: 180px !important;
    }

    .action-btn {
        width: 40px !important;
        height: 40px !important;
    }

    /* --- Capabilities --- */
    .capabilities {
        padding: 50px 0 !important;
    }

    .cap-card {
        padding: 28px 20px;
    }

    .cap-card h3 {
        font-size: 1.05rem;
    }

    .cap-card p {
        font-size: 0.9rem;
    }

    /* --- Audio Cards --- */
    .audio-recordings {
        padding: 50px 0 !important;
    }

    .audio-card h3 {
        font-size: 1rem;
    }

    .audio-desc {
        font-size: 0.85rem;
    }

    /* --- Demo Section --- */
    .demo-section {
        padding: 50px 0 !important;
    }

    .demo-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    .demo-info {
        text-align: center !important;
        transform: none !important;
    }

    .demo-info .section-title {
        text-align: center !important;
    }

    .demo-description {
        margin: 0 auto 24px !important;
        text-align: center;
        font-size: 0.95rem;
    }

    .demo-pro-list {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .demo-pro-item {
        justify-content: center;
        font-size: 0.95rem;
    }

    .demo-glass-card {
        padding: 24px 18px !important;
    }

    .demo-header {
        gap: 12px;
    }

    .demo-header h3 {
        font-size: 1.2rem;
    }

    .demo-header p {
        font-size: 0.8rem;
    }

    .demo-form .form-group label {
        font-size: 0.85rem;
    }

    .demo-form .form-group input {
        padding: 12px 14px;
        font-size: 0.95rem;
    }

    /* --- Pricing --- */
    .pricing {
        padding: 50px 0 !important;
    }

    .pricing-grid {
        grid-template-columns: 1fr !important;
        max-width: 100% !important;
        gap: 20px;
    }

    .pricing-card {
        padding: 28px 20px;
    }

    .price-amount {
        font-size: 2.2rem;
    }

    /* --- How It Works --- */
    .how-it-works {
        padding: 50px 0 !important;
    }

    .step-card {
        padding: 28px 20px;
    }

    .step-card h3 {
        font-size: 1.05rem;
    }

    .step-card p {
        font-size: 0.9rem;
    }

    .step-connector {
        display: none;
    }

    /* --- FAQ --- */
    .faq {
        padding: 50px 0 !important;
    }

    .faq-question {
        padding: 16px;
        font-size: 0.95rem;
    }

    .faq-answer p {
        padding: 0 16px 16px;
        font-size: 0.9rem;
    }

    /* --- Footer --- */
    .footer {
        padding: 40px 0 !important;
    }

    .footer-top {
        grid-template-columns: 1fr !important;
        text-align: right;
        gap: 32px;
    }

    .footer-brand p {
        font-size: 0.95rem;
        margin: 0;
    }

    .footer-logo-img {
        margin: 0 0 12px auto;
        /* Push to right in RTL if needed, but margin-right: 0 is better */
    }

    .footer-logo-img {
        margin-left: auto;
        margin-right: 0;
    }

    .footer-links ul {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-contact {
        align-items: flex-start;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: right;
        align-items: flex-start;
    }

    .footer-legal {
        justify-content: flex-start;
        width: 100%;
    }

    .site-credits {
        font-size: 0.75rem;
        padding: 12px 0;
    }
}

/* ===== SMALL PHONE (max-width: 400px) ===== */
@media (max-width: 400px) {

    .hero-title {
        font-size: 1.8rem !important;
        line-height: 1.2 !important;
    }

    .hero-subtitle {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.92rem;
    }

    .btn-lg {
        padding: 14px 28px;
        font-size: 1rem;
    }

    .phone-mockup {
        width: 200px;
        height: 400px;
        border-radius: 30px;
    }

    .section-title {
        font-size: 1.5rem !important;
    }

    .demo-glass-card {
        padding: 20px 14px !important;
    }

    .pricing-card {
        padding: 24px 16px;
    }

    .cap-card {
        padding: 24px 16px;
    }

    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
        width: 54px;
        height: 54px;
    }

    .floating-whatsapp svg {
        width: 28px;
        height: 28px;
    }
}