/* ===================================
   CONNECTAID - NETFLIX CINEMATIC THEME
   Original Design System
   =================================== */

/* === CSS Variables === */
:root {
    --deep-black: #0B0B0B;
    --netflix-red: #E50914;
    --dark-charcoal: #141414;
    --soft-white: #F5F5F5;
    --muted-grey: #9CA3AF;
    --red-glow: rgba(229, 9, 20, 0.3);
    --red-glow-intense: rgba(229, 9, 20, 0.5);
    
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.6);
    --shadow-red: 0 4px 20px var(--red-glow);
    
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* === Global Reset & Base === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    background-color: var(--deep-black);
    color: var(--soft-white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* === Container === */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* === Typography === */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    color: var(--muted-grey);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

/* === Gradient Text === */
.gradient-text {
    background: linear-gradient(135deg, var(--netflix-red) 0%, #FF4040 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* === Floating Call Button === */
.floating-call-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.75rem;
    background: linear-gradient(135deg, var(--netflix-red) 0%, #C00813 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: var(--shadow-red);
    transition: var(--transition-smooth);
    animation: pulse-glow 2s infinite;
}

.floating-call-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 30px var(--red-glow-intense);
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 4px 20px var(--red-glow);
    }
    50% {
        box-shadow: 0 6px 30px var(--red-glow-intense);
    }
}

/* === Modal === */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--dark-charcoal);
    border: 1px solid rgba(229, 9, 20, 0.3);
    border-radius: 16px;
    padding: 3rem;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    transform: scale(0.9);
    transition: var(--transition-bounce);
    box-shadow: var(--shadow-lg);
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--muted-grey);
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    line-height: 1;
}

.modal-close:hover {
    color: var(--netflix-red);
    transform: rotate(90deg);
}

.modal-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(229, 9, 20, 0.2) 0%, rgba(229, 9, 20, 0.1) 100%);
    border-radius: 50%;
    border: 2px solid var(--netflix-red);
}

.modal-icon svg {
    stroke: var(--netflix-red);
}

.modal-content h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--soft-white);
}

.modal-subtitle {
    color: var(--muted-grey);
    margin-bottom: 2rem;
}

.modal-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: linear-gradient(135deg, var(--netflix-red) 0%, #C00813 100%);
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 8px;
    transition: var(--transition-smooth);
    margin-bottom: 1rem;
}

.modal-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-red);
}

.modal-disclaimer {
    font-size: 0.75rem;
    color: var(--muted-grey);
    margin-top: 1rem;
}

/* === Navigation === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(11, 11, 11, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    background: rgba(11, 11, 11, 0.98);
    box-shadow: var(--shadow-md);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
}

.logo {
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo-accent {
    color: var(--netflix-red);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--soft-white);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
}

.nav-link {
    color: var(--soft-white);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--netflix-red);
    transition: var(--transition-smooth);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-cta-btn {
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--netflix-red) 0%, #C00813 100%);
    color: white;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.nav-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-red);
}

/* === New Navbar Layout === */
.navbar-new {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(11, 11, 11, 0.98), rgba(11, 11, 11, 0.95));
    backdrop-filter: blur(15px);
    border-bottom: 2px solid rgba(229, 9, 20, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 1.5rem;
    gap: 2rem;
}

.logo-new {
    flex-shrink: 0;
}

.logo-img {
    height: 55px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 3rem;
    flex: 1;
}

.nav-menu-new {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-link-new {
    color: var(--soft-white);
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.nav-link-new::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--netflix-red), #FF3344);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.nav-link-new:hover,
.nav-link-new.active {
    color: var(--netflix-red);
}

.nav-link-new:hover::before,
.nav-link-new.active::before {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-left: 2rem;
    border-left: 2px solid rgba(255, 255, 255, 0.1);
}

.nav-phone-text {
    color: var(--muted-grey);
    font-size: 0.85rem;
    font-weight: 500;
}

.nav-cta-new {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, var(--netflix-red) 0%, #C00813 100%);
    color: white;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(229, 9, 20, 0.3);
}

.nav-cta-new:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(229, 9, 20, 0.5);
    background: linear-gradient(135deg, #FF1F2A 0%, #E50914 100%);
}

.nav-cta-new svg {
    animation: ring 2s ease-in-out infinite;
}

@keyframes ring {
    0%, 100% { transform: rotate(0deg); }
    10%, 30% { transform: rotate(-10deg); }
    20%, 40% { transform: rotate(10deg); }
    50% { transform: rotate(0deg); }
}

/* === New Footer Layout === */
.footer-new {
    background: linear-gradient(to bottom, #0a0a0a, #000000);
    color: var(--muted-grey);
    position: relative;
    overflow: hidden;
}

.footer-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--netflix-red), transparent);
}

.footer-top {
    padding: 4rem 0 3rem;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 4rem;
    align-items: start;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 1.5rem;
}

.footer-tagline {
    color: var(--soft-white);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.footer-social {
    background: rgba(229, 9, 20, 0.1);
    border: 1px solid rgba(229, 9, 20, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
}

.social-label {
    color: var(--soft-white);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.footer-cta-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, var(--netflix-red) 0%, #C00813 100%);
    color: white;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(229, 9, 20, 0.4);
    white-space: nowrap;
}

.footer-cta-phone:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(229, 9, 20, 0.6);
}

.footer-links-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.footer-col-new {
    
}

.footer-heading-new {
    color: var(--soft-white);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-heading-new::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--netflix-red);
    border-radius: 2px;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    margin-bottom: 0.75rem;
}

.footer-list a {
    color: var(--muted-grey);
    transition: all 0.3s ease;
    font-size: 0.95rem;
    display: inline-block;
}

.footer-list a:hover {
    color: var(--netflix-red);
    transform: translateX(5px);
}

.footer-bottom-new {
    background: rgba(0, 0, 0, 0.5);
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
}

.footer-disclaimer {
    font-size: 0.85rem;
    line-height: 1.7;
    color: var(--muted-grey);
    max-width: 900px;
    margin: 0 auto;
}

.footer-copyright-new {
    font-size: 0.9rem;
    color: var(--muted-grey);
    margin: 0;
}

/* === Background Images === */
.hero-bg-image,
.section-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.12;
    z-index: 0;
    pointer-events: none;
}

.hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
    z-index: 0;
    pointer-events: none;
}

.what-we-do-bg {
    background-image: url('https://images.unsplash.com/photo-1517694712202-14dd9538aa97?w=1920&q=80');
}

.help-bg {
    background-image: url('https://images.unsplash.com/photo-1558494949-ef010cbdcc31?w=1920&q=80');
}

.not-bg {
    background-image: url('https://images.unsplash.com/photo-1589149098258-3e9102cd63d3?w=1920&q=80');
}

.why-bg {
    background-image: url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?w=1920&q=80');
}

.contact-bg {
    background-image: url('https://images.unsplash.com/photo-1423666639041-f56000c27a9a?w=1920&q=80');
}

/* === Hero Section === */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 8rem 0 4rem;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, var(--red-glow) 0%, transparent 70%);
    opacity: 0.4;
    animation: float 8s ease-in-out infinite;
    z-index: 1;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(-50px, -80px) scale(1.1);
    }
}

.hero-container {
    position: relative;
    z-index: 2;
}

.hero-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 4rem;
    align-items: start;
}

.hero-main {
    max-width: 700px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(229, 9, 20, 0.15);
    border: 1px solid rgba(229, 9, 20, 0.4);
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--soft-white);
    margin-bottom: 2rem;
    font-weight: 600;
}

.hero-badge svg {
    stroke: var(--netflix-red);
    flex-shrink: 0;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
    margin-top: 0;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: var(--muted-grey);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-cta-group {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 8px;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
}

.primary-cta {
    background: linear-gradient(135deg, var(--netflix-red) 0%, #C00813 100%);
    color: white;
    box-shadow: var(--shadow-red);
}

.primary-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px var(--red-glow-intense);
}

.secondary-cta {
    background: rgba(255, 255, 255, 0.1);
    color: var(--soft-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.secondary-cta:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.mega-cta {
    font-size: 1.3rem;
    padding: 1.5rem 3rem;
}

/* === Hero Features === */
.hero-features {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.hero-feature-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem 1.75rem;
    background: rgba(20, 20, 20, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: var(--transition-smooth);
}

.hero-feature-card:hover {
    border-color: var(--netflix-red);
    transform: translateX(5px);
    background: rgba(20, 20, 20, 0.95);
}

.feature-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(229, 9, 20, 0.15);
    border-radius: 50%;
    border: 2px solid rgba(229, 9, 20, 0.3);
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.hero-feature-card:hover .feature-icon {
    background: rgba(229, 9, 20, 0.25);
    border-color: var(--netflix-red);
    transform: rotate(5deg) scale(1.05);
}

.feature-icon svg {
    stroke: var(--netflix-red);
}

.feature-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: var(--soft-white);
    font-weight: 700;
}

.feature-content p {
    font-size: 0.9rem;
    color: var(--muted-grey);
    margin: 0;
}

.trust-line {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: 0.95rem;
    color: var(--muted-grey);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trust-item svg {
    stroke: var(--netflix-red);
    flex-shrink: 0;
}

.trust-separator {
    color: rgba(255, 255, 255, 0.3);
}

.hero-disclaimer {
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: var(--muted-grey);
    text-align: center;
    font-weight: 500;
}

/* === Sections === */
.section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--muted-grey);
}

/* === Help Grid === */
.help-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.help-card {
    background: var(--dark-charcoal);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.help-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--netflix-red) 0%, transparent 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-smooth);
}

.help-card:hover {
    border-color: var(--netflix-red);
    transform: translateY(-5px);
    box-shadow: var(--shadow-red);
}

.help-card:hover::before {
    transform: scaleX(1);
}

.help-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(229, 9, 20, 0.1);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    transition: var(--transition-smooth);
}

.help-card:hover .help-icon {
    background: rgba(229, 9, 20, 0.2);
    transform: scale(1.1);
}

.help-icon svg {
    stroke: var(--netflix-red);
}

.help-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: var(--soft-white);
}

.help-card p {
    color: var(--muted-grey);
    line-height: 1.6;
}

/* === Process Grid (How It Works) === */
.process-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
    max-width: 1300px;
    margin: 0 auto;
    padding: 2rem 0;
}

.process-step {
    background: linear-gradient(135deg, rgba(18, 18, 18, 0.9) 0%, rgba(35, 35, 35, 0.8) 100%);
    border: 2px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--netflix-red), #FF2D3A);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.process-step:hover::before {
    transform: scaleX(1);
}

.process-step:hover {
    border-color: rgba(229, 9, 20, 0.4);
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(229, 9, 20, 0.25), 
                0 0 80px rgba(229, 9, 20, 0.15);
    background: linear-gradient(135deg, rgba(25, 25, 25, 0.95) 0%, rgba(40, 40, 40, 0.9) 100%);
}

.step-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--netflix-red) 0%, #C00813 100%);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(229, 9, 20, 0.4);
}

.step-icon-wrap {
    width: 90px;
    height: 90px;
    margin: 1rem auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, rgba(229, 9, 20, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    border: 2px solid rgba(229, 9, 20, 0.3);
    transition: all 0.4s ease;
    position: relative;
}

.step-icon-wrap::after {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 2px solid transparent;
    background: linear-gradient(135deg, var(--netflix-red), transparent) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.process-step:hover .step-icon-wrap {
    background: radial-gradient(circle, rgba(229, 9, 20, 0.25) 0%, rgba(229, 9, 20, 0.05) 70%);
    border-color: var(--netflix-red);
    transform: scale(1.1) rotate(5deg);
}

.process-step:hover .step-icon-wrap::after {
    opacity: 1;
}

.step-icon-wrap svg {
    stroke: var(--netflix-red);
    filter: drop-shadow(0 0 8px rgba(229, 9, 20, 0.5));
    transition: all 0.3s ease;
}

.process-step:hover .step-icon-wrap svg {
    stroke: #FF2D3A;
    filter: drop-shadow(0 0 15px rgba(229, 9, 20, 0.8));
}

.process-step h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--soft-white);
    line-height: 1.3;
}

.process-step p {
    color: var(--muted-grey);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Old process grid kept for backwards compatibility */
.process-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1.5rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.process-card {
    grid-column: span 1;
    background: var(--dark-charcoal);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.process-card:hover {
    border-color: var(--netflix-red);
    transform: translateY(-10px);
    box-shadow: var(--shadow-red);
}

.process-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--netflix-red) 0%, #C00813 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 800;
    box-shadow: 0 4px 12px rgba(229, 9, 20, 0.4);
}

.process-icon {
    width: 90px;
    height: 90px;
    margin: 2rem auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(229, 9, 20, 0.1);
    border-radius: 50%;
    border: 2px solid rgba(229, 9, 20, 0.3);
    transition: var(--transition-smooth);
}

.process-card:hover .process-icon {
    background: rgba(229, 9, 20, 0.2);
    border-color: var(--netflix-red);
    transform: scale(1.15);
}

.process-icon svg {
    stroke: var(--netflix-red);
}

.process-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--soft-white);
}

.process-card p {
    color: var(--muted-grey);
    line-height: 1.6;
    font-size: 0.9rem;
}

.process-arrow {
    grid-column: span 1;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.5;
}

.process-arrow svg {
    stroke: var(--netflix-red);
    animation: arrowPulse 2s ease-in-out infinite;
}

@keyframes arrowPulse {
    0%, 100% {
        opacity: 0.5;
        transform: translateX(0);
    }
    50% {
        opacity: 1;
        transform: translateX(5px);
    }
}

/* === Timeline (Legacy fallback) === */
.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--netflix-red) 0%, rgba(229, 9, 20, 0.2) 100%);
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-marker {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--netflix-red) 0%, #C00813 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: 0 0 0 8px rgba(229, 9, 20, 0.2);
    transition: var(--transition-smooth);
}

.timeline-item:hover .timeline-marker {
    transform: scale(1.1);
    box-shadow: 0 0 0 12px rgba(229, 9, 20, 0.3);
}

.timeline-content {
    flex: 1;
    background: var(--dark-charcoal);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    transition: var(--transition-smooth);
}

.timeline-item:hover .timeline-content {
    border-color: var(--netflix-red);
    transform: translateX(10px);
}

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--soft-white);
}

.timeline-content p {
    color: var(--muted-grey);
    line-height: 1.6;
}

/* === NOT Section === */
.not-section {
    background: var(--dark-charcoal);
}

.not-content {
    max-width: 900px;
    margin: 0 auto;
}

.not-header {
    text-align: center;
    margin-bottom: 3rem;
}

.not-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(229, 9, 20, 0.1);
    border-radius: 50%;
    border: 2px solid var(--netflix-red);
}

.not-icon svg {
    stroke: var(--netflix-red);
}

.not-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.not-subtitle {
    font-size: 1.1rem;
    color: var(--muted-grey);
}

.not-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.not-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(229, 9, 20, 0.05);
    border: 1px solid rgba(229, 9, 20, 0.2);
    border-radius: 8px;
    transition: var(--transition-smooth);
}

.not-item:hover {
    background: rgba(229, 9, 20, 0.1);
    border-color: var(--netflix-red);
}

.not-item svg {
    stroke: var(--netflix-red);
    flex-shrink: 0;
    margin-top: 2px;
}

.not-item span {
    color: var(--soft-white);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* === Why Section === */
.why-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-text h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
}

.why-text > p {
    font-size: 1.1rem;
    color: var(--muted-grey);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.why-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.why-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--dark-charcoal);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: var(--transition-smooth);
}

.why-list li:hover {
    border-color: var(--netflix-red);
    transform: translateX(8px);
}

.why-list li svg {
    stroke: var(--netflix-red);
    flex-shrink: 0;
    margin-top: 2px;
}

.why-list li span {
    color: var(--muted-grey);
    line-height: 1.6;
}

.why-list li strong {
    color: var(--soft-white);
}

.why-visual {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.stat-card {
    background: var(--dark-charcoal);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(229, 9, 20, 0.1), transparent);
    transition: var(--transition-smooth);
}

.stat-card:hover::before {
    left: 100%;
}

.stat-card:hover {
    border-color: var(--netflix-red);
    transform: scale(1.05);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--netflix-red) 0%, #FF4040 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--muted-grey);
    font-size: 1.1rem;
    font-weight: 600;
}

/* === FAQ Section === */
.faq-wrapper {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.faq-item {
    background: var(--dark-charcoal);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item:hover {
    border-color: var(--netflix-red);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.75rem 2rem;
    background: none;
    border: none;
    color: var(--soft-white);
    font-size: 1.15rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.faq-question:hover {
    color: var(--netflix-red);
}

.faq-icon {
    stroke: var(--netflix-red);
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer p {
    padding: 0 2rem 1.75rem;
    color: var(--muted-grey);
    line-height: 1.7;
}

.faq-cta {
    text-align: center;
    padding-top: 2rem;
}

.faq-cta p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--soft-white);
}

/* === What We Do Section === */
.what-we-do-section {
    background: linear-gradient(180deg, transparent 0%, rgba(229, 9, 20, 0.05) 100%);
}

.what-we-do-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.what-we-do-card {
    background: var(--dark-charcoal);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.what-we-do-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--netflix-red) 0%, #FF4040 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.what-we-do-card:hover::before {
    transform: scaleX(1);
}

.what-we-do-card:hover {
    border-color: var(--netflix-red);
    transform: translateY(-8px);
    box-shadow: var(--shadow-red);
}

.what-we-do-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(229, 9, 20, 0.1);
    border-radius: 50%;
    border: 2px solid rgba(229, 9, 20, 0.3);
    transition: var(--transition-smooth);
}

.what-we-do-card:hover .what-we-do-icon {
    background: rgba(229, 9, 20, 0.2);
    border-color: var(--netflix-red);
    transform: scale(1.1) rotate(5deg);
}

.what-we-do-icon svg {
    stroke: var(--netflix-red);
}

.what-we-do-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--soft-white);
}

.what-we-do-card p {
    color: var(--muted-grey);
    line-height: 1.7;
    font-size: 0.95rem;
}

.what-we-do-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    background: rgba(229, 9, 20, 0.1);
    border: 2px solid var(--netflix-red);
    border-radius: 12px;
}

.what-we-do-notice svg {
    stroke: var(--netflix-red);
    flex-shrink: 0;
}

.what-we-do-notice p {
    margin: 0;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--soft-white);
}

/* === Contact Information Section === */
.contact-info-section {
    background: linear-gradient(135deg, rgba(229, 9, 20, 0.05) 0%, transparent 100%);
}

.contact-info-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--soft-white);
}

.contact-info-section h3 {
    font-size: 1.1rem;
    font-weight: 600;
}

.contact-info-section a {
    transition: var(--transition-smooth);
}

.contact-info-section a:hover {
    color: var(--netflix-red);
}

/* === Final CTA Section === */
.final-cta-section {
    background: linear-gradient(135deg, rgba(229, 9, 20, 0.1) 0%, transparent 100%);
    border-top: 1px solid rgba(229, 9, 20, 0.2);
    border-bottom: 1px solid rgba(229, 9, 20, 0.2);
}

.final-cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.final-cta-content h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
}

.final-cta-content > p {
    font-size: 1.3rem;
    color: var(--muted-grey);
    margin-bottom: 2.5rem;
}

.final-disclaimer {
    font-size: 0.85rem;
    color: var(--muted-grey);
    margin-top: 1.5rem;
}

/* === Footer === */
.footer {
    background: var(--dark-charcoal);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.footer-description {
    color: var(--muted-grey);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--soft-white);
    transition: var(--transition-smooth);
}

.footer-social a:hover {
    background: var(--netflix-red);
    transform: translateY(-3px);
}

.footer-heading {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--soft-white);
    font-weight: 700;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--muted-grey);
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--netflix-red);
    padding-left: 5px;
}

.footer-phone {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--netflix-red);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.footer-phone:hover {
    text-decoration: underline;
}

.footer-hours {
    color: var(--muted-grey);
    font-size: 0.9rem;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-compliance {
    background: rgba(229, 9, 20, 0.05);
    border: 1px solid rgba(229, 9, 20, 0.2);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-compliance p {
    font-size: 0.85rem;
    color: var(--muted-grey);
    line-height: 1.6;
    margin: 0;
}

.footer-compliance strong {
    color: var(--soft-white);
}

.footer-copyright {
    text-align: center;
}

.footer-copyright p {
    font-size: 0.9rem;
    color: var(--muted-grey);
}

/* === Mobile Bottom Bar === */
.mobile-bottom-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 998;
    background: var(--dark-charcoal);
    border-top: 2px solid var(--netflix-red);
    padding: 1rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
}

.mobile-bottom-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem;
    background: linear-gradient(135deg, var(--netflix-red) 0%, #C00813 100%);
    color: white;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    width: 100%;
}

/* === Animations === */
.fade-in {
    animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* === Auto Popup Modal === */
.auto-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.auto-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.auto-popup-content {
    background: linear-gradient(145deg, #0a0a0a 0%, #1a1a1a 100%);
    border: 2px solid rgba(229, 9, 20, 0.4);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    max-width: 500px;
    width: 90%;
    position: relative;
    transform: scale(0.9);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 20px 60px rgba(229, 9, 20, 0.3);
}

.auto-popup-overlay.active .auto-popup-content {
    transform: scale(1);
}

.auto-popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    font-size: 1.5rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    line-height: 1;
}

.auto-popup-close:hover {
    background: rgba(229, 9, 20, 0.8);
    transform: rotate(90deg);
}

.auto-popup-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(229, 9, 20, 0.2) 0%, rgba(229, 9, 20, 0.05) 100%);
    border: 2px solid rgba(229, 9, 20, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
}

.auto-popup-icon svg {
    color: var(--netflix-red);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(229, 9, 20, 0.4);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(229, 9, 20, 0);
    }
}

.auto-popup-headline {
    color: white;
    font-size: 1.8rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.auto-popup-subtext {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    text-align: center;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.auto-popup-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--netflix-red);
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(229, 9, 20, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(229, 9, 20, 0.3);
}

.auto-popup-phone svg {
    width: 28px;
    height: 28px;
    animation: ring 1.5s infinite;
}

@keyframes ring {
    0%, 100% { transform: rotate(0deg); }
    10%, 30% { transform: rotate(-15deg); }
    20%, 40% { transform: rotate(15deg); }
}

.auto-popup-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1.2rem 2rem;
    background: linear-gradient(135deg, var(--netflix-red) 0%, #C00813 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(229, 9, 20, 0.4);
    letter-spacing: 0.5px;
    text-decoration: none;
}

.auto-popup-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(229, 9, 20, 0.6);
}

.auto-popup-cta svg {
    width: 22px;
    height: 22px;
}

.auto-popup-trust {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .auto-popup-content {
        padding: 2rem 1.5rem;
    }

    .auto-popup-headline {
        font-size: 1.5rem;
    }

    .auto-popup-phone {
        font-size: 1.5rem;
    }

    .auto-popup-cta {
        font-size: 1.1rem;
        padding: 1rem 1.5rem;
    }
}

/* === Content Pages === */
.page-hero {
    padding: 10rem 0 6rem;
    text-align: center;
    background: linear-gradient(180deg, var(--dark-charcoal) 0%, var(--deep-black) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.page-hero .section-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.2rem;
    color: var(--muted-grey);
    max-width: 700px;
    margin: 0 auto;
}

.content-section {
    padding: 4rem 0;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.content-card {
    background: var(--dark-charcoal);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 3rem;
    margin-bottom: 2rem;
}

.content-card h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--soft-white);
}

.content-card h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: var(--soft-white);
}

.content-card p {
    color: var(--muted-grey);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.content-card ul,
.content-card ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
    color: var(--muted-grey);
}

.content-card li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.content-card strong {
    color: var(--soft-white);
}

.content-card a {
    color: var(--netflix-red);
    text-decoration: underline;
}

.content-card a:hover {
    text-decoration: none;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 3rem auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--soft-white);
    font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    background: var(--dark-charcoal);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: var(--soft-white);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--netflix-red);
    box-shadow: 0 0 0 3px rgba(229, 9, 20, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-submit {
    width: 100%;
    padding: 1.25rem;
    background: linear-gradient(135deg, var(--netflix-red) 0%, #C00813 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-red);
}

/* === Responsive Design === */
@media (max-width: 1200px) {
    /* Hero - Adjust spacing */
    .hero-content-wrapper {
        grid-template-columns: 1fr 320px;
        gap: 3rem;
    }
    
    .hero-feature-card {
        padding: 1.25rem 1.5rem;
    }
    
    /* Process Grid - Reduce spacing on larger tablets */
    .process-grid {
        gap: 1rem;
    }
    
    .process-card {
        padding: 1.75rem 1.25rem;
    }

    .process-grid-new {
        gap: 2rem;
    }

    .process-step {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 1024px) {
    .why-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    /* Hero - Single column on tablets */
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-main {
        max-width: 100%;
    }
    
    /* Process Grid - 2 rows on tablets */
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .process-arrow {
        display: none;
    }
    
    .process-card {
        grid-column: span 1;
    }

    .process-grid-new {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    /* What We Do Grid - 2 columns on tablets */
    .what-we-do-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Navigation */
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(11, 11, 11, 0.98);
        backdrop-filter: blur(10px);
        padding: 2rem;
        gap: 1.5rem;
        transform: translateY(-150%);
        transition: var(--transition-smooth);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-menu.active {
        transform: translateY(0);
    }
    
    .nav-link::after {
        display: none;
    }

    /* New Navbar Responsive */
    .nav-content {
        position: fixed;
        top: 75px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(11, 11, 11, 0.98);
        backdrop-filter: blur(10px);
        padding: 2rem;
        gap: 2rem;
        transform: translateY(-150%);
        transition: all 0.3s ease;
        border-bottom: 2px solid rgba(229, 9, 20, 0.2);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

    .nav-content.active {
        transform: translateY(0);
    }

    .nav-menu-new {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .nav-link-new {
        text-align: center;
        padding: 0.75rem 0;
        width: 100%;
    }

    .nav-actions {
        flex-direction: column;
        padding-left: 0;
        border-left: none;
        border-top: 2px solid rgba(255, 255, 255, 0.1);
        padding-top: 1.5rem;
        width: 100%;
    }

    .nav-cta-new {
        width: 100%;
        justify-content: center;
    }

    /* New Footer Responsive */
    .footer-main {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-links-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-cta-phone {
        font-size: 1.1rem;
        justify-content: center;
        white-space: nowrap;
    }

    .footer-cta-phone span {
        white-space: nowrap;
    }
    
    /* Floating Button */
    .floating-call-btn {
        display: none;
    }
    
    /* Mobile Bottom Bar */
    .mobile-bottom-bar {
        display: block;
    }
    
    /* Hero */
    .hero {
        padding: 6rem 0 2rem;
        min-height: auto;
    }
    
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .hero-features {
        order: -1;
    }
    
    .hero-cta-group {
        flex-direction: column;
    }
    
    .cta-btn {
        width: 100%;
        justify-content: center;
    }
    
    /* Sections */
    .section {
        padding: 4rem 0;
    }
    
    /* Help Grid */
    .help-grid {
        grid-template-columns: 1fr;
    }
    
    /* What We Do Grid */
    .what-we-do-grid {
        grid-template-columns: 1fr;
    }
    
    /* Process Grid */
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .process-arrow {
        display: none;
    }
    
    .process-card {
        min-height: auto;
    }

    .process-grid-new {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .process-step {
        padding: 2rem 1.5rem;
    }

    .step-icon-wrap {
        width: 80px;
        height: 80px;
    }

    .step-icon-wrap svg {
        width: 36px;
        height: 36px;
    }
    
    /* Timeline */
    .timeline::before {
        left: 20px;
    }
    
    .timeline-marker {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    /* NOT Grid */
    .not-grid {
        grid-template-columns: 1fr;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    /* Content Cards */
    .content-card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-badge {
        font-size: 0.7rem;
        padding: 0.4rem 0.85rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-feature-card {
        padding: 1rem 1.25rem;
    }
    
    .feature-icon {
        width: 48px;
        height: 48px;
    }
    
    .feature-content h3 {
        font-size: 1rem;
    }
    
    .feature-content p {
        font-size: 0.85rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .timeline-item {
        gap: 1rem;
    }
    
    .timeline-marker {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .timeline-content {
        padding: 1.5rem;
    }
    
    .modal-content {
        padding: 2rem 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

/* === Print Styles === */
@media print {
    .navbar,
    .floating-call-btn,
    .mobile-bottom-bar,
    .modal-overlay,
    .hero-glow,
    .footer-social {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
}
