/* ─── DESIGN TOKENS & RESET ─── */
:root {
    --bg-dark: #07080a;
    --bg-surface: rgba(255, 255, 255, 0.03);
    --bg-surface-hover: rgba(255, 255, 255, 0.06);
    --border-color: rgba(255, 255, 255, 0.08);
    
    --primary: #F97316; /* Co-Fitness Orange */
    --primary-hover: #EA580C;
    --primary-glow: rgba(249, 115, 22, 0.2);
    
    --text-primary: #FFFFFF;
    --text-secondary: #9EAFB8;
    --text-muted: #62727D;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ─── BUTTONS & UTILITIES ─── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
    gap: 8px;
}

.btn-primary {
    background-color: var(--primary);
    color: #07080a;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--primary-glow);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 16px;
}

.btn-sm {
    padding: 10px 24px;
    font-size: 14px;
}

.badge {
    display: inline-flex;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    background-color: rgba(249, 115, 22, 0.1);
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
    border: 1px solid rgba(249, 115, 22, 0.2);
    margin-bottom: 24px;
}

.highlight {
    color: var(--primary);
}

/* ─── HEADER / NAVIGATION ─── */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    background-color: rgba(7, 8, 10, 0.7);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.header-container {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-primary);
}

.logo-img {
    height: 38px;
    width: auto;
}

.logo-text {
    font-size: 22px;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.5px;
}

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

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 15px;
    font-weight: 500;
    transition: var(--transition);
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.lang-selector {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
}

.lang-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-weight: 700;
    transition: var(--transition);
}

.lang-btn.active, .lang-btn:hover {
    color: var(--primary);
}

.lang-divider {
    color: var(--text-muted);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--bg-dark);
    z-index: 150;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

.mobile-nav-link {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 600;
    text-decoration: none;
    color: var(--text-secondary);
    transition: var(--transition);
}

.mobile-nav-link:hover {
    color: var(--primary);
}

/* ─── HERO SECTION ─── */
.hero {
    padding-top: 180px;
    padding-bottom: 120px;
    position: relative;
    background: radial-gradient(circle at 70% 30%, rgba(249, 115, 22, 0.05) 0%, transparent 50%);
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 60px;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-title {
    font-size: 56px;
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero-description {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 520px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    gap: 48px;
    border-top: 1px solid var(--border-color);
    padding-top: 36px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
}

.stat-label {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 500;
}

/* ─── PREMIUM PHONE MOCKUP ─── */
.phone-mockup {
    position: relative;
    width: 320px;
    height: 640px;
    margin: 0 auto;
    background-color: #1c1d24;
    border: 12px solid #2e303d;
    border-radius: 40px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 40px rgba(249, 115, 22, 0.1);
    overflow: hidden;
    animation: float 6s ease-in-out infinite;
}

.phone-speaker {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: #2e303d;
    border-radius: var(--radius-full);
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    position: relative;
}

.screen-slider {
    display: flex;
    width: 300%; /* 3 slides */
    height: 100%;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.screen-slide {
    width: 33.333%;
    height: 100%;
    flex-shrink: 0;
    background-color: #000;
}

.screenshot-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 10;
}

.dot {
    width: 6px;
    height: 6px;
    border-radius: var(--radius-full);
    background-color: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--primary);
    width: 16px;
}

/* ─── SECTION STYLING GENERAL ─── */
.features, .spotlight, .showcase, .faq, .contact {
    padding: 100px 0;
    border-bottom: 1px solid var(--border-color);
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-badge {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary);
    margin-bottom: 12px;
}

.section-title {
    font-size: 38px;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
}

/* ─── CORE FEATURES SECTION ─── */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    transition: var(--transition);
}

.feature-card:hover {
    background: var(--bg-surface-hover);
    transform: translateY(-8px);
    border-color: rgba(249, 115, 22, 0.2);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background-color: rgba(249, 115, 22, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.feature-icon i {
    width: 24px;
    height: 24px;
}

.feature-title {
    font-size: 20px;
    margin-bottom: 12px;
}

.feature-text {
    font-size: 14px;
    color: var(--text-secondary);
}

/* ─── INTERACTIVE FEATURE SPOTLIGHT ─── */
.spotlight-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.spotlight-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.spotlight-tab-btn {
    background-color: var(--bg-surface);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
}

.spotlight-tab-btn:hover, .spotlight-tab-btn.active {
    background-color: var(--primary);
    color: #07080a;
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px var(--primary-glow);
}

.spotlight-display {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.spotlight-details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.spotlight-details-title {
    font-size: 28px;
    color: var(--text-primary);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.spotlight-sub-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: rgba(249, 115, 22, 0.1);
    color: var(--primary);
    border: 1px solid rgba(249, 115, 22, 0.3);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    opacity: 0;
    transform: translateY(5px);
    transition: opacity 0.5s ease, transform 0.5s ease, background-color 0.3s ease, color 0.3s ease;
    animation: pulse-glow 2s infinite;
    text-decoration: none;
    user-select: none;
}

.spotlight-sub-toggle.visible {
    opacity: 1;
    transform: translateY(0);
}

.spotlight-sub-toggle:hover {
    background-color: var(--primary);
    color: #07080a;
}

@keyframes pulse-glow {
    0% { box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.4); }
    70% { box-shadow: 0 0 0 8px rgba(249, 115, 22, 0); }
    100% { box-shadow: 0 0 0 0 rgba(249, 115, 22, 0); }
}

.spotlight-details-text {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.7;
}

.spotlight-instructions {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px dashed var(--border-color);
    border-radius: var(--radius-md);
    padding: 16px;
    width: 100%;
}

.instruction-icon {
    width: 20px;
    height: 20px;
    color: var(--primary);
    flex-shrink: 0;
}

.spotlight-instructions span {
    font-size: 13px;
    color: var(--text-muted);
}

.spotlight-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.spotlight-phone {
    animation: none; /* Turn off default float during interactions */
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    overflow: visible !important;
}

.spotlight-phone .phone-screen {
    overflow: visible !important;
}

.spotlight-screen-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
    border-radius: 28px;
}

/* Hotspots overlay styles */
.hotspots-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
}

.hotspot-pin {
    position: absolute;
    width: 24px;
    height: 24px;
    cursor: pointer;
    transform: translate(-50%, -50%);
}

.hotspot-circle {
    width: 100%;
    height: 100%;
    border-radius: var(--radius-full);
    background-color: var(--primary);
    border: 2px solid #FFF;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    position: relative;
    z-index: 2;
    transition: var(--transition);
}

.hotspot-radar {
    position: absolute;
    top: -8px;
    left: -8px;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    border: 2px solid var(--primary);
    opacity: 0;
    z-index: 1;
    animation: pulse-radar 2s infinite;
}

.hotspot-pin:hover .hotspot-circle,
.hotspot-pin.active .hotspot-circle {
    transform: scale(1.2);
    background-color: #FFF;
    border-color: var(--primary);
}

/* Tooltip overlay styling */
.hotspot-tooltip {
    position: absolute;
    background-color: rgba(7, 8, 10, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    padding: 16px;
    border-radius: var(--radius-md);
    width: 220px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.6);
    z-index: 20;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    
    /* Centering calculation defaults */
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
}

.hotspot-pin:hover .hotspot-tooltip,
.hotspot-pin.active .hotspot-tooltip {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Tooltip directions to prevent clipping inside overflow:hidden */
.hotspot-tooltip.tooltip-bottom {
    bottom: auto;
    top: 35px;
    transform: translateX(-50%) translateY(-10px);
}
.hotspot-pin:hover .hotspot-tooltip.tooltip-bottom,
.hotspot-pin.active .hotspot-tooltip.tooltip-bottom {
    transform: translateX(-50%) translateY(0);
}

.hotspot-tooltip.tooltip-right {
    left: 0;
    transform: translateX(0) translateY(10px);
}
.hotspot-pin:hover .hotspot-tooltip.tooltip-right,
.hotspot-pin.active .hotspot-tooltip.tooltip-right {
    transform: translateX(0) translateY(0);
}

.hotspot-tooltip.tooltip-left {
    left: auto;
    right: 0;
    transform: translateX(0) translateY(10px);
}
.hotspot-pin:hover .hotspot-tooltip.tooltip-left,
.hotspot-pin.active .hotspot-tooltip.tooltip-left {
    transform: translateX(0) translateY(0);
}

/* Combined directions (e.g. bottom-right, bottom-left) */
.hotspot-tooltip.tooltip-bottom.tooltip-right {
    bottom: auto;
    top: 35px;
    left: 0;
    transform: translateX(0) translateY(-10px);
}
.hotspot-pin:hover .hotspot-tooltip.tooltip-bottom.tooltip-right,
.hotspot-pin.active .hotspot-tooltip.tooltip-bottom.tooltip-right {
    transform: translateX(0) translateY(0);
}

.hotspot-tooltip.tooltip-bottom.tooltip-left {
    bottom: auto;
    top: 35px;
    left: auto;
    right: 0;
    transform: translateX(0) translateY(-10px);
}
.hotspot-pin:hover .hotspot-tooltip.tooltip-bottom.tooltip-left,
.hotspot-pin.active .hotspot-tooltip.tooltip-bottom.tooltip-left {
    transform: translateX(0) translateY(0);
}

.tooltip-title {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 6px;
}

.tooltip-desc {
    font-size: 11px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Radar pulse animation keyframe */
@keyframes pulse-radar {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

/* ─── SCREENSHOTS SHOWCASE CAROUSEL ─── */
.carousel-container {
    position: relative;
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.screenshot-carousel {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 20px 0;
    width: 100%;
}

.screenshot-carousel::-webkit-scrollbar {
    display: none;
}

.carousel-slide {
    flex: 0 0 280px;
    scroll-snap-align: center;
}

.screen-card {
    background-color: #0A0B0E;
    border: 8px solid #1C1D24;
    border-radius: var(--radius-lg);
    height: 520px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.screen-header {
    background-color: #1C1D24;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

.screen-accent {
    width: 14px;
    height: 14px;
    color: var(--primary);
}

.carousel-img {
    flex: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-nav {
    position: absolute;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    background-color: rgba(7, 8, 10, 0.9);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    transition: var(--transition);
}

.carousel-nav:hover {
    background-color: var(--primary);
    color: #000;
    border-color: var(--primary);
}

.carousel-nav.prev { left: -24px; }
.carousel-nav.next { right: -24px; }

/* ─── FAQ accordion STYLING ─── */
.faq-list {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.faq-question {
    width: 100%;
    padding: 24px;
    background: none;
    border: none;
    color: var(--text-primary);
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.faq-icon {
    width: 18px;
    height: 18px;
    color: var(--text-secondary);
    transition: transform 0.3s ease;
}

.faq-item.active {
    border-color: rgba(249, 115, 22, 0.2);
    background: var(--bg-surface-hover);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 24px;
}

.faq-answer p {
    padding-bottom: 24px;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ─── CONTACT LINKS STYLING (TEXT LINKS CARD GRID) ─── */
.contact-links-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
}

.contact-link-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-link-card:hover {
    background: var(--bg-surface-hover);
    transform: translateY(-5px);
    border-color: rgba(249, 115, 22, 0.15);
}

.card-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background-color: rgba(249, 115, 22, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.card-icon i {
    width: 24px;
    height: 24px;
}

.contact-link-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.contact-link-card p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.6;
    max-width: 280px;
}

.text-link-primary {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}

.text-link-primary:hover {
    color: var(--text-primary);
    border-color: var(--text-primary);
}

/* ─── FOOTER STYLING ─── */
.footer {
    background-color: #040507;
    border-top: 1px solid var(--border-color);
    padding: 80px 0 40px 0;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-brand {
    max-width: 320px;
}

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-tagline {
    font-size: 14px;
    color: var(--text-secondary);
}

.footer-links-group h5 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 14px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
}

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

.copyright {
    font-size: 13px;
    color: var(--text-muted);
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-full);
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary);
    color: #000;
    border-color: var(--primary);
}

.social-links a i {
    width: 16px;
    height: 16px;
}

/* ─── AGREEMENT MODAL STYLING ─── */
.agreement-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(7, 8, 10, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    padding: 24px;
}

.agreement-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-card {
    background-color: #0A0B0E;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 800px;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.modal-header {
    padding: 24px 32px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-title {
    font-size: 20px;
}

.modal-close {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--primary);
}

.modal-close i {
    width: 22px;
    height: 22px;
}

.modal-body {
    padding: 32px;
    overflow-y: auto;
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.modal-body h1, .modal-body h2, .modal-body h3 {
    color: var(--text-primary);
    margin-top: 24px;
    margin-bottom: 12px;
}

.modal-body p {
    margin-bottom: 16px;
}

.modal-body ul {
    margin-left: 20px;
    margin-bottom: 16px;
}

.modal-body li {
    margin-bottom: 8px;
}

/* ─── FLOATING & REVEAL KEYFRAMES ─── */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0px); }
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ─── RESPONSIVE MEDIA QUERIES ─── */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 46px;
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .spotlight-display {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .spotlight-visual {
        order: -1; /* Display phone on top in medium screens */
    }
}

@media (max-width: 768px) {
    .header-container {
        height: 70px;
    }
    .nav {
        display: none;
    }
    .header-actions {
        display: flex;
        gap: 12px;
        margin-right: 12px;
    }
    .header-actions .btn {
        display: none;
    }
    .menu-toggle {
        display: block;
    }
    .hero {
        padding-top: 130px;
        padding-bottom: 80px;
    }
    .hero-container {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }
    .hero-content {
        align-items: center;
    }
    .hero-buttons {
        justify-content: center;
        width: 100%;
    }
    .hero-stats {
        justify-content: center;
        width: 100%;
    }
    .contact-links-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .footer-top {
        flex-direction: column;
        gap: 32px;
    }
    .footer-bottom {
        flex-direction: column-reverse;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
    }
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    .btn-lg {
        padding: 14px 28px;
    }
    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .contact-link-card {
        padding: 24px;
    }
}
