/* ============================================
   Click2Mail Automate - Styles
   ============================================ */

/* Font Face Declarations */
/* Note: Add your font files to /fonts/ directory or comment out if not using custom fonts */
/*
@font-face {
    font-family: 'Slippy';
    src: url('../fonts/Slippy-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Slippy';
    src: url('../fonts/Slippy-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Slippy';
    src: url('../fonts/Slippy-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
*/

/* ============================================
   CSS Variables - Click2Mail Color Scheme
   ============================================ */
:root {
    /* Primary Colors */
    --c2m-navy: #002D6B;
    --c2m-red: #E31837;
    --c2m-white: #FFFFFF;

    /* Shades & Tints */
    --c2m-navy-dark: #001a3d;
    --c2m-navy-light: #003d8f;
    --c2m-red-dark: #b81229;
    --c2m-red-light: #ff3d5a;

    /* Grays */
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-600: #4b5563;
    --gray-900: #111827;

    /* Typography */
    --font-family: 'Slippy', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Responsive Breakpoints */
    --mobile-max: 767px;
    --tablet-min: 768px;
    --tablet-max: 1024px;
    --desktop-min: 1025px;

    /* Spacing Scale */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;

    /* Container Widths */
    --container-mobile: 100%;
    --container-tablet: 720px;
    --container-desktop: 1140px;
}

/* ============================================
   CSS Reset & Base Styles
   ============================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-family);
    font-weight: 400;
    line-height: 1.6;
    color: var(--gray-900);
    background-color: var(--c2m-white);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--c2m-red);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--c2m-red-dark);
}

/* ============================================
   Typography
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--c2m-navy);
    margin-bottom: var(--space-md);
}

h1 {
    font-size: 2rem;
}

h2 {
    font-size: 1.75rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: var(--space-sm);
}

/* ============================================
   Container & Layout
   ============================================ */
.container {
    width: 100%;
    max-width: var(--container-desktop);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.section {
    padding: var(--space-xl) 0;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--c2m-red);
    color: var(--c2m-white);
}

.btn-primary:hover {
    background-color: var(--c2m-red-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(227, 24, 55, 0.3);
}

.btn-secondary {
    background-color: var(--c2m-navy);
    color: var(--c2m-white);
}

.btn-secondary:hover {
    background-color: var(--c2m-navy-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 45, 107, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: var(--c2m-navy);
    border: 2px solid var(--c2m-navy);
}

.btn-outline:hover {
    background-color: var(--c2m-navy);
    color: var(--c2m-white);
}

/* ============================================
   Header/Hero Backgrounds
   ============================================ */
.bg-navy {
    background-color: var(--c2m-navy);
    color: var(--c2m-white);
}

.bg-navy h1,
.bg-navy h2,
.bg-navy h3,
.bg-navy h4,
.bg-navy h5,
.bg-navy h6 {
    color: var(--c2m-white);
}

.bg-red {
    background-color: var(--c2m-red);
    color: var(--c2m-white);
}

/* ============================================
   Utility Classes
   ============================================ */
.text-center {
    text-align: center;
}

.text-navy {
    color: var(--c2m-navy);
}

.text-red {
    color: var(--c2m-red);
}

.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }

.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

/* Mobile Devices (up to 767px) */
@media (max-width: 767px) {
    :root {
        --space-xl: 2rem;
        --space-2xl: 2.5rem;
    }

    html {
        font-size: 14px;
    }

    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    .container {
        padding: 0 var(--space-sm);
    }

    .section {
        padding: var(--space-lg) 0;
    }

    .btn {
        width: 100%;
        padding: 1rem;
    }
}

/* Tablet Devices (768px to 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
    .container {
        max-width: var(--container-tablet);
    }

    h1 {
        font-size: 2.25rem;
    }

    h2 {
        font-size: 2rem;
    }
}

/* Desktop Devices (1025px and up) */
@media (min-width: 1025px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2.25rem;
    }

    h3 {
        font-size: 1.75rem;
    }

    .section {
        padding: var(--space-2xl) 0;
    }
}

/* Landscape Orientation Adjustments */
@media (max-width: 1024px) and (orientation: landscape) {
    .section {
        padding: var(--space-lg) 0;
    }
}

/* ============================================
   NAVBAR STYLES
   ============================================ */
.navbar {
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--c2m-white);
    border-bottom: 2px solid var(--c2m-navy);
    box-shadow: 0 2px 8px rgba(0, 45, 107, 0.08);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    max-width: var(--container-desktop);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    color: var(--c2m-navy);
    transition: opacity 0.3s ease;
}

.brand:hover {
    opacity: 0.8;
}

.brand img {
    height: 36px;
    width: auto;
}

.brand span {
    font-size: 20px;
    letter-spacing: 0.3px;
    color: var(--c2m-navy);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-links a {
    color: var(--c2m-navy);
    font-weight: 600;
    font-size: 15px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--c2m-red);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--c2m-red);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Layout groups */
.left {
    display: flex;
    align-items: center;
}

.right {
    display: flex;
    align-items: center;
    gap: 32px;
}

/* CTA buttons in nav */
.nav-cta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 42px;
    padding: 0 20px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
    border: 2px solid transparent;
    transition: all 0.2s ease;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-nav:active {
    transform: translateY(1px);
}

.btn-nav-outline {
    border-color: var(--c2m-navy);
    color: var(--c2m-navy);
    background: transparent;
}

.btn-nav-outline:hover {
    background: var(--c2m-navy);
    color: var(--c2m-white);
}

.btn-nav-primary {
    background: var(--c2m-red);
    color: var(--c2m-white);
    border-color: var(--c2m-red);
}

.btn-nav-primary:hover {
    background: var(--c2m-red-dark);
    border-color: var(--c2m-red-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(227, 24, 55, 0.3);
}

/* Hamburger (mobile) */
.hamburger {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    border: 2px solid var(--c2m-navy);
    background: var(--c2m-white);
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.hamburger:hover {
    background: var(--gray-50);
}

.hamburger-icon {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 20px;
}

.hamburger-icon span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--c2m-navy);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active .hamburger-icon span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.hamburger.active .hamburger-icon span:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-icon span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* Mobile menu panel */
.mobile-menu {
    display: none;
    border-top: 2px solid var(--c2m-navy);
    background: var(--c2m-white);
    box-shadow: 0 8px 16px rgba(0, 45, 107, 0.1);
}

.mobile-menu.show {
    display: block;
    animation: slideDown 0.3s ease;
}

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

.mobile-menu .menu-block {
    padding: 16px 20px;
}

.mobile-menu .menu-block a {
    display: block;
    padding: 14px 0;
    color: var(--c2m-navy);
    font-weight: 600;
    font-size: 16px;
    border-bottom: 1px solid var(--gray-200);
    transition: color 0.2s ease;
}

.mobile-menu .menu-block a:last-child {
    border-bottom: none;
}

.mobile-menu .menu-block a:hover {
    color: var(--c2m-red);
}

.mobile-menu .mobile-cta {
    padding: 16px 20px;
    border-top: 2px solid var(--c2m-navy);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mobile-menu .mobile-cta .btn-nav {
    width: 100%;
}

/* ============================================
   PAGE SPECIFIC STYLES
   ============================================ */

/* Teaser Section - Sticky Image Crossfade */
.teaser-section {
    padding: var(--space-2xl) 0;
    background: var(--c2m-white);
}

.teaser-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    align-items: flex-start;
}

/* Two-column layout for larger screens */
@media (min-width: 992px) {
    .teaser-grid {
        grid-template-columns: 45% 55%;
    }
}

@media (min-width: 1200px) {
    .teaser-grid {
        grid-template-columns: 40% 60%;
    }
}

/* Left Column - Scrolling Text */
.teaser-text-column {
    display: flex;
    flex-direction: column;
    gap: var(--space-2xl);
}

.teaser-text-block {
    padding: var(--space-lg);
    opacity: 0.3;
    transition: opacity 0.6s ease;
}

.teaser-text-block.active {
    opacity: 1;
}

@media (min-width: 992px) {
    .teaser-text-block {
        min-height: 80vh;
    }
}

@media (max-width: 991px) {
    .teaser-text-block {
        opacity: 1;
    }
}

.teaser-text-block h3 {
    color: var(--c2m-navy);
    font-size: 2rem;
    margin-bottom: var(--space-md);
}

.teaser-text-block p {
    color: var(--gray-600);
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

.teaser-list {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-lg) 0;
}

.teaser-list li {
    color: var(--gray-600);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: var(--space-md);
    padding-left: var(--space-md);
    position: relative;
}

.teaser-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--c2m-red);
    font-weight: bold;
}

.teaser-list li strong {
    color: var(--c2m-navy);
}

/* Right Column - Sticky Images */
.teaser-image-column {
    position: sticky;
    top: 80px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 992px) {
    .teaser-image-column {
        top: 100px;
        height: 80vh;
    }
}

.teaser-image-stack {
    position: relative;
    width: 100%;
    height: 100%;
    max-height: 700px;
}

.teaser-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 3s ease-in-out, transform 3s ease-in-out;
    transform: scale(0.98);
    will-change: opacity, transform;
}

.teaser-image.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
    transition: opacity 3s ease-in-out, transform 3s ease-in-out;
    transition-delay: 0.2s;
}

.teaser-image .teaser-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 45, 107, 0.2);
}

/* Teaser Section Responsive */
@media (max-width: 991px) {
    .teaser-image-column {
        order: -1;
        margin-bottom: 0;
        height: 350px;
    }

    .teaser-image-stack {
        max-height: 350px;
    }
}

@media (max-width: 767px) {
    .teaser-section {
        padding: var(--space-xl) 0;
    }

    .teaser-text-block h3 {
        font-size: 1.5rem;
    }

    .teaser-text-block p {
        font-size: 1rem;
    }

    .teaser-image-column {
        height: 300px;
        top: 70px;
    }

    .teaser-image-stack {
        max-height: 300px;
    }

    .teaser-list li {
        font-size: 0.9rem;
    }
}

/* ============================================
   Hero Section - 3 Column Grid
   ============================================ */
.hero-section {
    padding: 40px 0;
    background: var(--gray-50);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    align-items: stretch;
}

/* Left Column - Content */
.hero-content {
    background: rgba(255, 255, 255, 0.6);
    padding: 32px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.hero-content h1 {
    font-size: 2rem;
    color: var(--c2m-navy);
    margin-bottom: 12px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.5;
    margin-bottom: 20px;
}

.hero-checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.hero-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.9375rem;
    color: var(--gray-900);
    line-height: 1.4;
}

.hero-checklist li:last-child {
    margin-bottom: 0;
}

.checkmark {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--c2m-red);
    margin-top: 1px;
}

.hero-content .btn-lg {
    width: 100%;
    font-size: 1rem;
    padding: 14px 28px;
    margin-top: auto;
}

/* Video Section */
.hero-video {
    position: relative;
    background: var(--c2m-navy);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 45, 107, 0.15);
    overflow: hidden;
    width: 100%;
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
}

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

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 45, 107, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-overlay:hover {
    background: rgba(0, 45, 107, 0.5);
}

.video-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.play-button {
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
    transition: transform 0.3s ease;
}

.video-overlay:hover .play-button {
    transform: scale(1.1);
}

/* Right Column - Wrapper for Promo + Video */
.hero-right-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Right Column - Promo Card */
.hero-promo {
    background: var(--c2m-navy);
    color: var(--c2m-white);
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 45, 107, 0.2);
    display: flex;
    flex-direction: column;
    min-height: 200px;
}

.promo-badge {
    display: inline-block;
    background: var(--c2m-red);
    color: var(--c2m-white);
    padding: 6px 14px;
    border-radius: 16px;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    align-self: flex-start;
}

.hero-promo h3 {
    color: var(--c2m-white);
    font-size: 1.5rem;
    margin-bottom: 12px;
    line-height: 1.2;
}

.hero-promo p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9375rem;
    line-height: 1.5;
    margin-bottom: 24px;
    flex-grow: 1;
}

.hero-promo .btn {
    align-self: flex-start;
}

.btn-lg {
    font-size: 1.125rem;
    padding: 16px 32px;
}

.btn-outline-white {
    color: white;
    border-color: white;
}

.btn-outline-white:hover {
    background: white;
    color: var(--c2m-navy);
}

/* Desktop 2-Column Layout */
@media (min-width: 992px) {
    .hero-grid {
        grid-template-columns: 0.9fr 1.1fr;
        gap: 16px;
    }

    .hero-content {
        padding: 36px;
    }

    .hero-content h1 {
        font-size: 2.25rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-promo {
        min-height: auto;
    }

    .hero-video {
        min-height: auto;
    }
}

/* Tablet 2-Column Layout */
@media (min-width: 768px) and (max-width: 991px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .hero-content {
        grid-column: 1 / -1;
    }

    .hero-promo {
        min-height: 200px;
    }

    .play-button {
        width: 60px;
        height: 60px;
    }
}

/* Mobile Stacked Layout */
@media (max-width: 767px) {
    .hero-section {
        padding: 32px 0;
    }

    .hero-content {
        padding: 24px;
    }

    .hero-content h1 {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 0.875rem;
    }

    .hero-checklist li {
        font-size: 0.875rem;
    }

    .hero-promo {
        min-height: 200px;
        padding: 24px;
    }

    .hero-content .btn-lg {
        font-size: 0.9375rem;
        padding: 12px 20px;
    }

    .play-button {
        width: 60px;
        height: 60px;
    }
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    padding: 2rem;
    border: 2px solid var(--gray-200);
    border-radius: 8px;
}

/* Footer */
.footer {
    background: var(--c2m-navy);
    color: white;
    padding: 3rem 0 2rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer p {
    color: var(--gray-200);
    font-size: 0.875rem;
}

.footer a {
    display: block;
    color: var(--gray-200);
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    color: var(--gray-200);
    font-size: 0.875rem;
}

/* CTA Section */
.cta-heading {
    color: white;
}

.cta-text {
    font-size: 1.125rem;
    color: white;
}

.btn-white {
    background: white;
    color: var(--c2m-red);
}

.btn-white:hover {
    background: var(--gray-100);
    color: var(--c2m-red-dark);
}

/* ============================================
   FEATURE SLIDEOUT PANEL
   ============================================ */
.slideout-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.slideout-overlay.show {
    opacity: 1;
    visibility: visible;
}

.slideout-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: 600px;
    max-width: 90%;
    height: 100%;
    background: var(--c2m-white);
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.2);
    transform: translateX(100%);
    transition: transform 0.5s ease;
    overflow-y: auto;
    z-index: 1001;
}

.slideout-overlay.show .slideout-panel {
    transform: translateX(0);
}

.slideout-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    border: none;
    background: var(--gray-100);
    color: var(--c2m-navy);
    cursor: pointer;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 10;
}

.slideout-close:hover {
    background: var(--c2m-navy);
    color: var(--c2m-white);
}

.slideout-content {
    padding: 80px 48px 48px 48px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.slideout-video {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, var(--c2m-navy) 0%, var(--c2m-navy-light) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 45, 107, 0.15);
}

.slideout-video-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.slideout-video-placeholder:hover {
    transform: scale(1.1);
}

.slideout-video-placeholder svg {
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.slideout-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.slideout-title {
    font-size: 2rem;
    color: var(--c2m-navy);
    margin-bottom: 0;
    line-height: 1.2;
}

.slideout-description {
    font-size: 1.125rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 0;
}

/* Mobile Full Screen */
@media (max-width: 767px) {
    .slideout-panel {
        width: 100%;
        max-width: 100%;
    }

    .slideout-content {
        padding: 80px 24px 40px 24px;
        gap: 24px;
    }

    .slideout-close {
        top: 16px;
        right: 16px;
    }

    .slideout-title {
        font-size: 1.5rem;
    }

    .slideout-description {
        font-size: 1rem;
    }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1024px) {
    .slideout-panel {
        width: 500px;
    }

    .slideout-content {
        padding: 80px 36px 40px 36px;
    }
}

/* ============================================
   NAVBAR RESPONSIVE STYLES
   ============================================ */
@media (max-width: 980px) {
    .nav-links,
    .nav-cta {
        display: none;
    }

    .hamburger {
        display: inline-flex;
    }

    .right {
        gap: 16px;
    }

    .brand span {
        font-size: 18px;
    }

    .brand img {
        height: 32px;
    }

    .nav-inner {
        height: 70px;
    }
}

@media (max-width: 767px) {
    .brand span {
        display: none;
    }

    .nav-inner {
        height: 64px;
        padding: 0 var(--space-sm);
    }
}
