@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
    /* Color Palette */
    --bg-deep: #08090b;
    --bg-dark: #101216;
    --bg-card: rgba(22, 25, 30, 0.7);
    --bg-glass: rgba(12, 14, 18, 0.75);
    --border-light: rgba(255, 255, 255, 0.05);
    --border-glass: rgba(255, 255, 255, 0.08);
    
    --orange-primary: #ff5c00;
    --orange-secondary: #ff7b25;
    --orange-dark: #cc4a00;
    --orange-glow: rgba(255, 92, 0, 0.25);
    --orange-glow-dim: rgba(255, 92, 0, 0.06);
    
    --text-primary: #ffffff;
    --text-secondary: #9ea4b0;
    --text-muted: #626875;
    
    /* Fonts */
    --font-title: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    /* Layout & Animation */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
}

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

html {
    scroll-behavior: smooth;
    background-color: var(--bg-deep);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

body {
    overflow-x: hidden;
    line-height: 1.6;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-deep);
}
::-webkit-scrollbar-thumb {
    background: #1f2229;
    border-radius: var(--radius-full);
    border: 2px solid var(--bg-deep);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--orange-primary);
}

/* Typography Selection */
::selection {
    background: var(--orange-primary);
    color: white;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-title);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

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

/* Grid & Layout Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding {
    padding: 8rem 0;
}

/* Glow Background Effects */
.glow-spotlight {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: var(--radius-full);
    background: radial-gradient(circle, var(--orange-glow) 0%, rgba(255,92,0,0) 70%);
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-normal);
    border-bottom: 1px solid transparent;
}

header.scrolled {
    background-color: var(--bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    padding: 0.75rem 0;
}

header:not(.scrolled) {
    padding: 1.5rem 0;
}

.nav-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    height: 48px;
}

.logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

/* Partner Logo Integration */
.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    justify-self: start;
}

.logo-divider {
    width: 1px;
    height: 28px;
    background-color: var(--border-glass);
}

.partner-logo-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.partner-label {
    font-size: 0.6rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 3px;
}

.partner-link {
    height: 26px;
    display: block;
}

.partner-link img {
    height: 100%;
    width: auto;
    object-fit: contain;
    filter: grayscale(1) brightness(2.2);
    transition: var(--transition-fast);
}

.partner-link:hover img {
    filter: none;
}


.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--text-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--orange-primary);
    transition: var(--transition-fast);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

nav {
    justify-self: center;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    justify-self: end;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.8rem;
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
    cursor: pointer;
    border: none;
    gap: 0.5rem;
}

.btn-primary {
    background-color: var(--orange-primary);
    color: white;
    box-shadow: 0 4px 15px var(--orange-glow);
}

.btn-primary:hover {
    background-color: var(--orange-secondary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 92, 0, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-glass);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: var(--text-primary);
    transform: translateY(-2px);
}

.btn-phone {
    font-family: var(--font-title);
    font-weight: 700;
    color: var(--orange-primary);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 92, 0, 0.15);
    background: rgba(255, 92, 0, 0.02);
}

.btn-phone:hover {
    color: var(--text-primary);
    border-color: rgba(255, 92, 0, 0.4);
    background: rgba(255, 92, 0, 0.08);
}

/* Header specific smaller CTA button */
header .btn-primary {
    padding: 0.5rem 1.2rem;
    font-size: 0.85rem;
    border-radius: var(--radius-sm);
}

header .btn-primary:hover {
    transform: translateY(-1px);
}

/* Mobile Toggle Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    background: none;
    border: none;
    z-index: 1100;
    padding: 0.5rem;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 2px;
    background-color: var(--text-primary);
    transition: var(--transition-fast);
}

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

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

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

/* Hero Section */
.hero {
    position: relative;
    padding: 12rem 0 8rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero .glow-spotlight-1 {
    top: -10%;
    right: -10%;
}

.hero .glow-spotlight-2 {
    bottom: -15%;
    left: -15%;
    background: radial-gradient(circle, rgba(255, 92, 0, 0.1) 0%, rgba(255,92,0,0) 60%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 92, 0, 0.08);
    border: 1px solid rgba(255, 92, 0, 0.2);
    border-radius: var(--radius-full);
    color: var(--orange-secondary);
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    animation: pulseGlow 3s infinite;
}

.hero-badge span.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--orange-primary);
    box-shadow: 0 0 8px var(--orange-primary);
}

.hero-content h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 60%, #a2a8b5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content h1 span.orange-text {
    background: linear-gradient(135deg, var(--orange-primary) 30%, #ff8a00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 580px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Glass Card Logo Wrapper in Hero */
.hero-logo-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 3rem;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 480px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-slow);
}

.hero-logo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.03) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    transition: 0.75s;
    pointer-events: none;
}

.hero-logo-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(255, 92, 0, 0.2);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5), 0 0 30px rgba(255,92,0,0.1);
}

.hero-logo-card:hover::before {
    left: 100%;
}

.hero-logo-card img {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.3));
}

.hero-logo-badge {
    position: absolute;
    bottom: 1.5rem;
    font-family: var(--font-title);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    text-transform: uppercase;
}

/* Stats Section */
.stats-section {
    position: relative;
    background-color: var(--bg-dark);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    padding: 5rem 0;
    z-index: 10;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition-normal);
}

.stat-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--orange-primary), transparent);
    transform: scaleX(0);
    transition: var(--transition-normal);
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 92, 0, 0.15);
    background: rgba(22, 25, 30, 0.9);
}

.stat-card:hover::after {
    transform: scaleX(1);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--orange-primary);
    margin-bottom: 0.5rem;
    font-family: var(--font-title);
    line-height: 1;
}

.stat-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.stat-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Section Title */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem;
}

.section-header .subtitle {
    color: var(--orange-primary);
    text-transform: uppercase;
    font-size: 0.85rem;
    font-family: var(--font-title);
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    display: inline-block;
}

.section-header h2 {
    font-size: 2.75rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Services / Process Section */
.process-section {
    position: relative;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.process-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: 2.5rem 2rem;
    position: relative;
    transition: var(--transition-normal);
}

.process-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 92, 0, 0.2);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.process-step {
    position: absolute;
    top: -20px;
    right: 20px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--bg-deep);
    border: 2px solid var(--border-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-title);
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--orange-primary);
    transition: var(--transition-fast);
}

.process-card:hover .process-step {
    background-color: var(--orange-primary);
    color: white;
    border-color: var(--orange-primary);
    box-shadow: 0 0 15px var(--orange-glow);
}

.process-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--orange-primary);
    display: inline-block;
}

.process-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.process-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* Interactive Estimator Widget (Diagnostic) */
.estimator-section {
    background-color: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.estimator-section .glow-spotlight {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.6;
}

.widget-container {
    max-width: 750px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 3.5rem;
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    position: relative;
    z-index: 10;
}

.widget-progress {
    width: 100%;
    height: 4px;
    background-color: var(--border-light);
    border-radius: var(--radius-full);
    margin-bottom: 3rem;
    overflow: hidden;
}

.widget-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--orange-primary), var(--orange-secondary));
    transition: width var(--transition-normal);
}

.widget-step {
    display: none;
    animation: fadeIn 0.4s ease-in-out forwards;
}

.widget-step.active {
    display: block;
}

.widget-step h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.options-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.option-btn {
    width: 100%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: 1.25rem 1.5rem;
    text-align: left;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.option-btn:hover {
    background: rgba(255, 92, 0, 0.04);
    border-color: rgba(255, 92, 0, 0.4);
    transform: translateX(4px);
}

.option-btn::after {
    content: '→';
    font-size: 1.2rem;
    color: var(--text-muted);
    transition: var(--transition-fast);
    opacity: 0;
}

.option-btn:hover::after {
    opacity: 1;
    color: var(--orange-primary);
    transform: translateX(4px);
}

/* Results Screen */
.result-box {
    text-align: center;
}

.result-meter {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--bg-deep);
    border: 8px solid var(--border-light);
    position: relative;
}

.result-meter.high-risk {
    border-color: #ff3333;
    box-shadow: 0 0 25px rgba(255, 51, 51, 0.2);
}

.result-meter.med-risk {
    border-color: #ffb700;
    box-shadow: 0 0 25px rgba(255, 183, 0, 0.2);
}

.result-meter.low-risk {
    border-color: #00cc66;
    box-shadow: 0 0 25px rgba(0, 204, 102, 0.2);
}

.meter-score {
    font-size: 2rem;
    font-weight: 800;
    font-family: var(--font-title);
}

.meter-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    margin-top: 2px;
}

.result-verdict {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: var(--font-title);
}

.result-desc {
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    font-size: 1.05rem;
}

.result-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

/* Call to Action Grid Section */
.cta-banner-section {
    position: relative;
}

.cta-glass-card {
    background: linear-gradient(135deg, rgba(22, 25, 30, 0.85) 0%, rgba(12, 14, 18, 0.95) 100%);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 5rem 4rem;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    position: relative;
    overflow: hidden;
}

.cta-glass-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--orange-glow) 0%, rgba(255,92,0,0) 60%);
    filter: blur(50px);
    pointer-events: none;
}

.cta-card-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

.cta-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-text p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-highlights {
    display: flex;
    gap: 2rem;
}

.cta-hl-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.95rem;
}

.cta-hl-item span.icon {
    color: var(--orange-primary);
    font-size: 1.2rem;
}

.cta-form-wrapper h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.form-control {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-sm);
    padding: 0.9rem 1rem;
    color: white;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--orange-primary);
    background: rgba(255, 92, 0, 0.02);
    box-shadow: 0 0 10px rgba(255, 92, 0, 0.1);
}

textarea.form-control {
    resize: none;
    height: 100px;
}

.form-cta-btn {
    width: 100%;
    padding: 1rem;
    font-family: var(--font-title);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* FAQ Accordion Section */
.faq-section {
    background-color: var(--bg-dark);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: var(--transition-normal);
}

.faq-item:hover {
    border-color: rgba(255, 92, 0, 0.15);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    color: white;
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 1.15rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question span.arrow {
    font-size: 1.2rem;
    color: var(--orange-primary);
    transition: transform var(--transition-normal);
}

.faq-item.open .faq-question span.arrow {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal) ease-out;
}

.faq-answer-inner {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Footer Section */
footer {
    background-color: var(--bg-deep);
    border-top: 1px solid var(--border-light);
    padding: 6rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand p {
    color: var(--text-secondary);
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    max-width: 320px;
    font-size: 0.95rem;
}

.footer-partner-container {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.footer-partner-link {
    height: 36px;
    display: inline-block;
}

.footer-partner-link img {
    height: 100%;
    width: auto;
    object-fit: contain;
    filter: grayscale(1) brightness(1.8);
    transition: var(--transition-fast);
}

.footer-partner-link:hover img {
    filter: none;
}

.footer-links h4, .footer-contact h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links ul li a {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.footer-links ul li a:hover {
    color: var(--orange-primary);
    transform: translateX(4px);
    display: inline-block;
}

.footer-contact p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-contact strong {
    color: white;
}

.footer-bottom {
    border-top: 1px solid var(--border-light);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.footer-socials a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: var(--bg-card);
    border: 1px solid var(--border-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
}

.footer-socials a:hover {
    color: white;
    background-color: var(--orange-primary);
    border-color: var(--orange-primary);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 92, 0, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 92, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 92, 0, 0);
    }
}

/* Scroll reveal helper classes */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-grid {
        gap: 2rem;
    }
    
    .stats-grid {
        gap: 1.5rem;
    }
    
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
    
    .cta-card-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 1.5rem;
    }

    .section-padding {
        padding: 5rem 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: var(--bg-deep);
        flex-direction: column;
        justify-content: center;
        gap: 2.5rem;
        transition: var(--transition-normal);
        z-index: 1000;
        padding: 2rem;
        backdrop-filter: blur(20px);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-cta {
        display: none; /* Hide top CTA on mobile */
    }
    
    .hero {
        padding: 8rem 0 4rem;
        min-height: auto;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-content p {
        margin: 0 auto 2.5rem;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-image-container {
        order: -1; /* Place logo card first on mobile */
    }
    
    .hero-logo-card {
        padding: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .widget-container {
        padding: 2rem;
    }
    
    .cta-glass-card {
        padding: 3rem 1.5rem;
    }
    
    .cta-highlights {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
