/* ========================================
   GLOBAL RESET & VARIABLES
   ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette */
    --color-black: #0B0B0B;
    --color-charcoal: #141414;
    --color-orange: #FF6A00;
    --color-red: #E53935;
    --color-white: #F5F5F5;
    --color-grey: #9CA3AF;
    --color-grey-dark: #4B5563;
    
    /* Typography */
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', sans-serif;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-bold: 700;
    --font-weight-black: 900;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Animation */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-black);
    color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    transition: var(--transition-normal);
}

ul {
    list-style: none;
}

/* ========================================
   NAVIGATION
   ======================================== */

.nav-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(11, 11, 11, 0.98);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 106, 0, 0.15);
}

.nav-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 1.25rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    font-size: 1.75rem;
}

.nav-logo .logo-text {
    font-size: 1.5rem;
    font-weight: var(--font-weight-black);
    color: var(--color-white);
    letter-spacing: -0.02em;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: var(--font-weight-medium);
    color: var(--color-grey);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-white);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-orange);
    transition: width var(--transition-normal);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.15rem;
}

.nav-phone {
    font-size: 1rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-orange);
    letter-spacing: 0.02em;
}

.nav-hours {
    font-size: 0.75rem;
    color: var(--color-grey);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.75rem;
    background: linear-gradient(135deg, var(--color-orange), var(--color-red));
    color: var(--color-white);
    font-weight: var(--font-weight-bold);
    font-size: 0.9rem;
    border-radius: 4px;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 15px rgba(255, 106, 0, 0.3);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 106, 0, 0.5);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--color-white);
    transition: var(--transition-normal);
}

/* ========================================
   STICKY CALL BUTTON
   ======================================== */

.sticky-call-btn {
    position: fixed;
    right: 2rem;
    top: 70%;
    transform: translateY(-50%);
    z-index: 999;
}

.call-icon-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, var(--color-orange), var(--color-red));
    color: var(--color-white);
    font-weight: var(--font-weight-bold);
    font-size: 0.9rem;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(255, 106, 0, 0.4);
    letter-spacing: 0.05em;
}

.call-icon-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 106, 0, 0.6);
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--color-black);
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1920&q=80') center/cover no-repeat;
    opacity: 0.08;
    z-index: 1;
}

.hero-bg-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(11, 11, 11, 0.95) 0%, 
        rgba(20, 20, 20, 0.9) 50%,
        rgba(255, 106, 0, 0.1) 100%);
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 8rem 2rem 4rem;
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-left {
    animation: fadeSlideUp 1s ease-out backwards;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--color-orange), var(--color-red));
    color: var(--color-white);
    font-size: 0.7rem;
    font-weight: var(--font-weight-bold);
    letter-spacing: 0.15em;
    border-radius: 4px;
    margin-bottom: 1.5rem;
    animation: fadeSlideUp 1s ease-out 0.2s backwards;
}

.hero-headline {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: var(--font-weight-black);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.headline-line {
    display: block;
    animation: fadeSlideUp 1s ease-out backwards;
}

.headline-line:nth-child(1) {
    animation-delay: 0.3s;
}

.headline-line:nth-child(2) {
    color: var(--color-orange);
    animation-delay: 0.5s;
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtext {
    font-size: 1.15rem;
    color: var(--color-grey);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    animation: fadeSlideUp 1s ease-out 0.7s backwards;
    max-width: 600px;
}

.hero-cta-group {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    animation: fadeSlideUp 1s ease-out 0.9s backwards;
    flex-wrap: wrap;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    font-size: 1rem;
    font-weight: var(--font-weight-bold);
    border-radius: 4px;
    letter-spacing: 0.05em;
    transition: all var(--transition-normal);
}

.hero-cta.primary {
    background: linear-gradient(135deg, var(--color-orange), var(--color-red));
    color: var(--color-white);
    box-shadow: 0 15px 40px rgba(255, 106, 0, 0.4);
}

.hero-cta.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(255, 106, 0, 0.6);
}

.hero-cta.secondary {
    background: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-grey-dark);
}

.hero-cta.secondary:hover {
    border-color: var(--color-orange);
    color: var(--color-orange);
    transform: translateY(-3px);
}

.hero-trust-line {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    animation: fadeSlideUp 1s ease-out 1.1s backwards;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--color-grey);
}

.trust-item svg {
    color: var(--color-orange);
    flex-shrink: 0;
}

/* Hero Right Side */
.hero-right {
    position: relative;
    animation: fadeSlideUp 1s ease-out 0.5s backwards;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 600px;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

.hero-stat-card {
    position: absolute;
    background: rgba(11, 11, 11, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 106, 0, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    animation: floatCard 3s ease-in-out infinite;
}

.hero-stat-card.card-1 {
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.hero-stat-card.card-2 {
    bottom: 15%;
    right: -10%;
    animation-delay: 1.5s;
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

.stat-value {
    font-size: 2rem;
    font-weight: var(--font-weight-black);
    color: var(--color-orange);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--color-grey);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.separator {
    color: var(--color-orange);
}

.hero-compliance {
    margin-top: 4rem;
    text-align: center;
}

.hero-compliance p {
    font-size: 0.75rem;
    color: var(--color-grey-dark);
    font-style: italic;
}

/* ========================================
   STATEMENT SECTION
   ======================================== */

.statement-section {
    padding: var(--spacing-xl) 2rem;
    background-color: var(--color-charcoal);
    position: relative;
}

.statement-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
    align-items: start;
}

.statement-left {
    position: sticky;
    top: 150px;
}

.statement-main-heading {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: var(--font-weight-black);
    line-height: 1.1;
    color: var(--color-white);
    margin-bottom: 1.5rem;
}

.statement-intro {
    font-size: 1.2rem;
    color: var(--color-grey);
    line-height: 1.7;
}

.statement-right {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.statement-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    padding: 2rem;
    background-color: rgba(20, 20, 20, 0.6);
    border-radius: 8px;
    border-left: 4px solid var(--color-charcoal);
    transition: all var(--transition-normal);
    opacity: 0;
    transform: translateX(30px);
}

.statement-item.in-view {
    opacity: 1;
    transform: translateX(0);
}

.statement-item:hover {
    border-left-color: var(--color-orange);
    background-color: rgba(20, 20, 20, 0.9);
    transform: translateX(-5px);
}

.statement-number {
    font-size: 2.5rem;
    font-weight: var(--font-weight-black);
    color: var(--color-orange);
    line-height: 1;
    flex-shrink: 0;
    opacity: 0.3;
}

.statement-content {
    flex: 1;
}

.statement-title {
    font-size: 1.8rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-white);
    margin-bottom: 0.75rem;
}

.statement-title.highlight {
    color: var(--color-orange);
}

.statement-text {
    font-size: 1.05rem;
    color: var(--color-grey);
    line-height: 1.7;
}

/* ========================================
   WHO WE ARE SECTION
   ======================================== */

.who-we-are-section {
    padding: var(--spacing-xl) 2rem;
    background-color: var(--color-black);
}

.who-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}

.who-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: var(--font-weight-black);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.title-line {
    display: block;
}

.title-line:nth-child(2) {
    color: var(--color-orange);
}

.who-description {
    font-size: 1.1rem;
    color: var(--color-grey);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.who-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: var(--font-weight-black);
    color: var(--color-orange);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--color-grey);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ========================================
   ASSISTANCE SECTION
   ======================================== */

.assistance-section {
    padding: var(--spacing-xl) 2rem;
    background: linear-gradient(180deg, var(--color-black) 0%, var(--color-charcoal) 100%);
}

.assistance-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-heading {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: var(--font-weight-black);
    text-align: center;
    margin-bottom: 4rem;
    letter-spacing: -0.02em;
}

.assistance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.assistance-card {
    background-color: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(255, 106, 0, 0.2);
    padding: 2.5rem;
    border-radius: 8px;
    transition: all var(--transition-slow);
    opacity: 0;
    transform: translateY(30px);
}

.assistance-card.in-view {
    opacity: 1;
    transform: translateY(0);
}

.assistance-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-orange);
    box-shadow: 0 20px 50px rgba(255, 106, 0, 0.3);
}

.card-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-orange), var(--color-red));
    border-radius: 8px;
    margin-bottom: 1.5rem;
    color: var(--color-white);
}

.card-title {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: 1rem;
    color: var(--color-white);
}

.card-description {
    font-size: 1rem;
    color: var(--color-grey);
    line-height: 1.7;
}

/* Stagger animation for cards */
.assistance-card:nth-child(1) { transition-delay: 0.1s; }
.assistance-card:nth-child(2) { transition-delay: 0.2s; }
.assistance-card:nth-child(3) { transition-delay: 0.3s; }
.assistance-card:nth-child(4) { transition-delay: 0.4s; }
.assistance-card:nth-child(5) { transition-delay: 0.5s; }

/* ========================================
   COMPLIANCE SECTION
   ======================================== */

.compliance-section {
    padding: var(--spacing-xl) 2rem;
    background-color: var(--color-charcoal);
    border-top: 2px solid var(--color-red);
    border-bottom: 2px solid var(--color-red);
}

.compliance-container {
    max-width: 1200px;
    margin: 0 auto;
}

.compliance-heading {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: var(--font-weight-black);
    text-align: center;
    margin-bottom: 3rem;
    color: var(--color-red);
}

.compliance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.compliance-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background-color: rgba(11, 11, 11, 0.5);
    border-radius: 4px;
}

.compliance-icon {
    font-size: 1.5rem;
    color: var(--color-red);
    flex-shrink: 0;
}

.compliance-item p {
    font-size: 1rem;
    color: var(--color-grey);
    line-height: 1.6;
}

.compliance-disclaimer {
    text-align: center;
    font-size: 0.95rem;
    color: var(--color-grey);
    padding: 2rem;
    background-color: rgba(229, 57, 53, 0.1);
    border-radius: 4px;
    line-height: 1.8;
}

/* ========================================
   WHY SECTION
   ======================================== */

.why-section {
    padding: var(--spacing-xl) 2rem;
    background-color: var(--color-black);
}

.why-container {
    max-width: 1400px;
    margin: 0 auto;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.why-item {
    position: relative;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.8), rgba(11, 11, 11, 0.8));
    border-left: 4px solid var(--color-orange);
    border-radius: 4px;
    transition: var(--transition-slow);
}

.why-item:hover {
    transform: translateX(10px);
    border-left-color: var(--color-red);
}

.why-number {
    font-size: 3rem;
    font-weight: var(--font-weight-black);
    color: rgba(255, 106, 0, 0.2);
    margin-bottom: 1rem;
    line-height: 1;
}

.why-title {
    font-size: 1.8rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: 1rem;
    color: var(--color-white);
}

.why-description {
    font-size: 1rem;
    color: var(--color-grey);
    line-height: 1.7;
}

/* ========================================
   CONVERSION SECTION
   ======================================== */

.conversion-section {
    padding: var(--spacing-xl) 2rem;
    position: relative;
    overflow: hidden;
}

.conversion-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1526374965328-7f61d4dc18c5?w=1920&q=80') center/cover no-repeat;
    z-index: 1;
}

.conversion-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(11, 11, 11, 0.92) 0%,
        rgba(255, 106, 0, 0.85) 100%
    );
    z-index: 2;
}

.conversion-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 10;
}

.conversion-heading {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: var(--font-weight-black);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.conversion-subtext {
    font-size: 1.3rem;
    color: var(--color-grey);
    margin-bottom: 3rem;
}

.conversion-cta {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 4rem;
    background: linear-gradient(135deg, var(--color-orange), var(--color-red));
    color: var(--color-white);
    font-size: 1.2rem;
    font-weight: var(--font-weight-black);
    border-radius: 50px;
    letter-spacing: 0.1em;
    box-shadow: 0 20px 60px rgba(255, 106, 0, 0.5);
}

.conversion-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 70px rgba(255, 106, 0, 0.7);
}

.pulse-animation {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 20px 60px rgba(255, 106, 0, 0.5);
    }
    50% {
        box-shadow: 0 20px 60px rgba(255, 106, 0, 0.8), 0 0 0 20px rgba(255, 106, 0, 0);
    }
}

.conversion-note {
    margin-top: 2rem;
    font-size: 0.95rem;
    color: var(--color-grey);
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background: linear-gradient(180deg, var(--color-black) 0%, var(--color-charcoal) 100%);
    border-top: 1px solid rgba(255, 106, 0, 0.2);
    padding: 5rem 2rem 0;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    padding-bottom: 3rem;
}

.footer-main {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.footer-brand {
    max-width: 500px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.75rem;
    font-weight: var(--font-weight-black);
    color: var(--color-white);
    margin-bottom: 0.75rem;
}

.footer-icon {
    font-size: 2rem;
}

.footer-tagline {
    font-size: 1.1rem;
    color: var(--color-orange);
    font-weight: var(--font-weight-medium);
    margin-bottom: 1rem;
}

.footer-description {
    font-size: 0.95rem;
    color: var(--color-grey);
    line-height: 1.8;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.footer-title {
    font-size: 0.85rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: 1.25rem;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-links a {
    font-size: 0.95rem;
    color: var(--color-grey);
    transition: all var(--transition-normal);
}

.footer-links a:hover {
    color: var(--color-orange);
    padding-left: 8px;
}

.footer-cta-section {
    display: flex;
    align-items: flex-start;
}

.footer-cta-card {
    background: linear-gradient(135deg, rgba(255, 106, 0, 0.1), rgba(229, 57, 53, 0.1));
    border: 1px solid rgba(255, 106, 0, 0.3);
    border-radius: 12px;
    padding: 2.5rem;
    width: 100%;
}

.footer-cta-heading {
    font-size: 1.5rem;
    font-weight: var(--font-weight-black);
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.footer-cta-text {
    font-size: 1rem;
    color: var(--color-grey);
    margin-bottom: 2rem;
}

.footer-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, var(--color-orange), var(--color-red));
    color: var(--color-white);
    font-weight: var(--font-weight-black);
    font-size: 1.05rem;
    border-radius: 6px;
    width: 100%;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(255, 106, 0, 0.4);
    letter-spacing: 0.02em;
}

.footer-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 106, 0, 0.6);
}

.footer-cta-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--color-grey);
}

.footer-feature svg {
    color: var(--color-orange);
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 106, 0, 0.1);
    padding: 2rem 0;
}

.footer-bottom-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.footer-compliance {
    font-size: 0.85rem;
    color: var(--color-grey-dark);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.footer-copyright {
    font-size: 0.85rem;
    color: var(--color-grey-dark);
}

/* ========================================
   ABOUT PAGE SPECIFIC
   ======================================== */

.image-content-section {
    background: var(--color-black);
    padding: 6rem 2rem;
}

.section-image-wrapper img {
    transition: transform var(--transition-slow);
}

.section-image-wrapper:hover img {
    transform: scale(1.05);
}

.content-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 106, 0, 0.1);
    color: var(--color-orange);
    border: 1px solid rgba(255, 106, 0, 0.3);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: var(--font-weight-semibold);
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.section-text {
    font-size: 1.05rem;
    color: var(--color-grey);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* ========================================
   CALL MODAL
   ======================================== */

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    position: relative;
    background-color: var(--color-charcoal);
    border: 2px solid var(--color-orange);
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    padding: 3rem;
    z-index: 10001;
    animation: modalSlideUp 0.4s ease;
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-grey);
    transition: var(--transition-normal);
}

.modal-close:hover {
    color: var(--color-red);
    transform: rotate(90deg);
}

.modal-header {
    text-align: center;
    margin-bottom: 2rem;
}

.modal-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-orange), var(--color-red));
    border-radius: 50%;
    color: var(--color-white);
}

.modal-title {
    font-size: 2rem;
    font-weight: var(--font-weight-black);
    margin-bottom: 0.5rem;
}

.modal-subtitle {
    font-size: 1rem;
    color: var(--color-grey);
}

.modal-body {
    text-align: center;
}

.modal-phone {
    display: block;
    font-size: 2.5rem;
    font-weight: var(--font-weight-black);
    color: var(--color-orange);
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.modal-phone:hover {
    color: var(--color-red);
}

.modal-info {
    font-size: 0.95rem;
    color: var(--color-grey);
    margin-bottom: 2rem;
}

.modal-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: left;
    padding: 1.5rem;
    background-color: rgba(11, 11, 11, 0.5);
    border-radius: 8px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-grey);
}

.feature-item svg {
    color: var(--color-orange);
    flex-shrink: 0;
}

.modal-footer {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 106, 0, 0.2);
}

.modal-disclaimer {
    font-size: 0.75rem;
    color: var(--color-grey-dark);
    text-align: center;
    font-style: italic;
}

/* ========================================
   AUTO POPUP (5-SECOND DELAY)
   ======================================== */

.auto-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.auto-popup.active {
    display: flex;
}

.auto-popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(3px);
    animation: fadeIn 0.3s ease;
}

.auto-popup-content {
    position: relative;
    background: linear-gradient(135deg, #1a1a1a 0%, #141414 100%);
    border: 2px solid var(--color-orange);
    border-radius: 16px;
    max-width: 420px;
    width: 90%;
    padding: 2.5rem 2rem;
    z-index: 10000;
    text-align: center;
    animation: popupBounce 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 20px 60px rgba(255, 106, 0, 0.3);
}

@keyframes popupBounce {
    0% {
        opacity: 0;
        transform: scale(0.3) translateY(100px);
    }
    50% {
        transform: scale(1.05) translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.auto-popup-close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 106, 0, 0.1);
    border-radius: 50%;
    color: var(--color-grey);
    transition: var(--transition-normal);
}

.auto-popup-close:hover {
    background-color: var(--color-red);
    color: var(--color-white);
    transform: rotate(90deg);
}

.auto-popup-headline {
    font-size: 1.75rem;
    font-weight: var(--font-weight-black);
    color: var(--color-white);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.auto-popup-subtext {
    font-size: 0.95rem;
    color: var(--color-grey);
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.auto-popup-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--color-orange), var(--color-red));
    color: var(--color-white);
    font-size: 1rem;
    font-weight: var(--font-weight-bold);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: var(--transition-normal);
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(255, 106, 0, 0.4);
    animation: pulse 2s infinite;
}

.auto-popup-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 106, 0, 0.6);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(255, 106, 0, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(255, 106, 0, 0.6);
    }
}

.auto-popup-phone {
    font-size: 1.5rem;
    font-weight: var(--font-weight-black);
    color: var(--color-orange);
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.auto-popup-trust {
    font-size: 0.8rem;
    color: var(--color-grey-dark);
    line-height: 1.4;
}

/* ========================================
   MOBILE CALL BAR
   ======================================== */

.mobile-call-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 998;
    padding: 1rem;
    background-color: rgba(11, 11, 11, 0.98);
    border-top: 2px solid var(--color-orange);
}

.mobile-call-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--color-orange), var(--color-red));
    color: var(--color-white);
    font-weight: var(--font-weight-bold);
    font-size: 1rem;
    border-radius: 8px;
    letter-spacing: 0.1em;
}

/* ========================================
   SCROLL ANIMATIONS
   ======================================== */

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   DIAGONAL SCROLLING TEXT BAND
   ======================================== */

.scrolling-band-section {
    background-color: var(--color-orange);
    overflow: hidden;
    transform: rotate(-3deg) translateY(-20px);
    margin: 4rem 0;
    box-shadow: 0 10px 40px rgba(255, 106, 0, 0.3);
}

.scrolling-band {
    padding: 2rem 0;
    position: relative;
}

.scrolling-text {
    display: flex;
    white-space: nowrap;
    animation: scrollText 40s linear infinite;
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-white);
    letter-spacing: 0.1em;
}

.scrolling-text span {
    padding-right: 4rem;
}

@keyframes scrollText {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ========================================
   IMAGE + CONTENT SPLIT SECTIONS
   ======================================== */

.image-content-section {
    padding: 6rem 0;
    background-color: var(--color-black);
}

.image-content-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.image-content-section.reverse .image-content-container {
    direction: rtl;
}

.image-content-section.reverse .image-content-left,
.image-content-section.reverse .image-content-right {
    direction: ltr;
}

.section-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: transform var(--transition-slow);
}

.section-image:hover {
    transform: scale(1.02);
}

.content-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--color-orange), var(--color-red));
    color: var(--color-white);
    font-size: 0.75rem;
    font-weight: var(--font-weight-bold);
    letter-spacing: 0.15em;
    border-radius: 4px;
    margin-bottom: 1.5rem;
}

.content-heading {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: var(--font-weight-black);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.heading-line {
    display: block;
}

.content-text {
    font-size: 1.1rem;
    color: var(--color-grey);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.content-features {
    margin-top: 2rem;
}

.feature-point {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: var(--color-white);
}

.feature-icon-small {
    width: 24px;
    height: 24px;
    background-color: var(--color-orange);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--font-weight-bold);
    flex-shrink: 0;
}

/* Process Steps Styling */
.process-steps {
    margin-top: 2rem;
}

.process-step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-orange), var(--color-red));
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1.2rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.step-content p {
    font-size: 1rem;
    color: var(--color-grey);
    line-height: 1.6;
}

/* ========================================
   FULL WIDTH IMAGE BANNER
   ======================================== */

.image-banner-section {
    position: relative;
    margin: 4rem 0;
    overflow: hidden;
}

.image-banner-container {
    position: relative;
    width: 100%;
    height: 500px;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(11, 11, 11, 0.9) 0%,
        rgba(255, 106, 0, 0.6) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-content {
    text-align: center;
    max-width: 800px;
    padding: 2rem;
}

.banner-heading {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: var(--font-weight-black);
    color: var(--color-white);
    margin-bottom: 1rem;
    line-height: 1.1;
}

.banner-subtext {
    font-size: 1.5rem;
    color: var(--color-white);
    font-weight: var(--font-weight-medium);
}

/* ========================================
   THREE COLUMN IMAGE GRID
   ======================================== */

.image-grid-section {
    padding: 6rem 0;
    background-color: var(--color-charcoal);
}

.image-grid-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-heading.centered {
    text-align: center;
    margin-bottom: 4rem;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.grid-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.grid-item.in-view {
    opacity: 1;
    transform: translateY(0);
}

.grid-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    height: 300px;
}

.grid-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.grid-item:hover .grid-image {
    transform: scale(1.1);
}

.grid-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(
        to top,
        rgba(11, 11, 11, 0.95) 0%,
        rgba(11, 11, 11, 0) 100%
    );
    padding: 2rem 1.5rem;
    transform: translateY(10px);
    transition: transform var(--transition-normal);
}

.grid-item:hover .grid-overlay {
    transform: translateY(0);
}

.grid-title {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-white);
}

.grid-description {
    font-size: 1rem;
    color: var(--color-grey);
    line-height: 1.6;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1024px) {
    .who-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-image-wrapper {
        height: 500px;
    }
    
    .hero-stat-card.card-1 {
        left: 5%;
    }
    
    .hero-stat-card.card-2 {
        right: 5%;
    }
    
    .sticky-call-btn {
        display: none;
    }
    
    .mobile-call-bar {
        display: block;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-cta {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-headline {
        font-size: 2.5rem;
    }
    
    .hero-image-wrapper {
        height: 400px;
    }
    
    .hero-stat-card {
        padding: 1rem;
    }
    
    .hero-stat-card.card-1 {
        top: 5%;
        left: 0%;
    }
    
    .hero-stat-card.card-2 {
        bottom: 5%;
        right: 0%;
    }
    
    .stat-value {
        font-size: 1.5rem;
    }
    
    .hero-trust-line {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-cta-group {
        flex-direction: column;
    }
    
    .hero-cta {
        width: 100%;
        justify-content: center;
    }
    
    .separator {
        display: none;
    }
    
    .statement-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .statement-left {
        position: static;
    }
    
    .statement-item {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .statement-number {
        font-size: 2rem;
    }
    
    .statement-title {
        font-size: 1.5rem;
    }
    
    .assistance-grid {
        grid-template-columns: 1fr;
    }
    
    .who-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .compliance-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-links-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-cta-card {
        padding: 2rem;
    }
    
    .modal-content {
        padding: 2rem 1.5rem;
    }
    
    .modal-phone {
        font-size: 1.8rem;
    }
    
    .image-content-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .section-image {
        height: 400px;
    }
    
    .image-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .image-content-container {
        grid-template-columns: 1fr !important;
        gap: 3rem !important;
    }
    
    .section-image-wrapper {
        height: 400px !important;
    }
    
    .scrolling-text {
        font-size: 1.2rem;
    }
    
    .banner-container {
        height: 400px;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
    }
    
    .content-heading {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 1rem;
    }
    
    .hero-container {
        padding: 6rem 1rem 3rem;
    }
    
    .hero-image-wrapper {
        height: 300px;
    }
    
    .hero-stat-card {
        display: none;
    }
    
    .hero-headline {
        font-size: 2rem;
    }
    
    .hero-cta {
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .section-heading {
        font-size: 2rem;
    }
    
    .conversion-cta {
        padding: 1.25rem 2rem;
        font-size: 1rem;
    }
    
    .section-image {
        height: 300px;
    }
    
    .section-image-wrapper {
        height: 300px !important;
    }
    
    .banner-container {
        height: 300px;
    }
    
    .banner-heading {
        font-size: 1.8rem;
    }
    
    .banner-subtext {
        font-size: 1rem;
    }
    
    .scrolling-text {
        font-size: 1rem;
    }
    
    .scrolling-band-section {
        margin: 2rem 0;
    }
    
    .grid-image-wrapper {
        height: 250px;
    }
    
    .statement-main-heading {
        font-size: 2rem;
    }
    
    .statement-intro {
        font-size: 1rem;
    }
    
    .statement-item {
        padding: 1rem;
        gap: 0.75rem;
    }
    
    .statement-number {
        font-size: 1.5rem;
    }
    
    .statement-title {
        font-size: 1.3rem;
    }
    
    .statement-text {
        font-size: 0.95rem;
    }
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

.text-center {
    text-align: center;
}

.text-orange {
    color: var(--color-orange);
}

.text-grey {
    color: var(--color-grey);
}

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
