/* ==========================================================================
   INKRAH Web Design - High-End Luxury Dark Theme & Advanced Special Effects CSS
   ========================================================================== */

:root {
    --bg-primary: #0a0b0f;
    --bg-secondary: #12151c;
    --bg-card: rgba(18, 21, 28, 0.75);
    --accent-gold: #d4af37;
    --accent-gold-light: #f3e5ab;
    --accent-gold-dark: #aa8c2c;
    --text-primary: #f8f9fa;
    --text-secondary: #adb5bd;
    --border-color: rgba(212, 175, 55, 0.25);
    --border-glow: rgba(212, 175, 55, 0.6);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    position: relative;
    line-height: 1.6;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: var(--accent-gold-dark);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-gold);
}

/* Canvas Background Special Effect */
#hero-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 1;
    opacity: 0.4;
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, var(--accent-gold-dark), var(--accent-gold), var(--accent-gold-light));
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.7);
    z-index: 10000;
    transition: width 0.1s ease-out;
}

/* Ambient Gradient Orbs */
.ambient-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.25;
}

.orb-one {
    width: 480px;
    height: 480px;
    top: -100px;
    left: -120px;
    background: radial-gradient(circle, var(--accent-gold) 0%, transparent 70%);
    animation: orbDrift 22s ease-in-out infinite;
}

.orb-two {
    width: 520px;
    height: 520px;
    top: 50%;
    right: -180px;
    background: radial-gradient(circle, #8a6d1f 0%, transparent 70%);
    animation: orbDrift 26s ease-in-out infinite reverse;
}

.orb-three {
    width: 380px;
    height: 380px;
    bottom: -140px;
    left: 30%;
    background: radial-gradient(circle, var(--accent-gold-light) 0%, transparent 70%);
    animation: orbDrift 30s ease-in-out infinite;
}

@keyframes orbDrift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(40px, -30px) scale(1.08); }
    66% { transform: translate(-30px, 25px) scale(0.95); }
}

/* Custom Cursor */
.cursor-dot, .cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-gold);
}

.cursor-outline {
    width: 35px;
    height: 35px;
    border: 1px solid rgba(212, 175, 55, 0.5);
    transition: transform 0.1s ease-out, width 0.3s, height 0.3s;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

/* Glassmorphism Header */
.glass-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 11, 15, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

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

.header-logo {
    max-height: 45px;
    transition: transform 0.3s ease;
}

.header-logo:hover {
    transform: scale(1.05);
}

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

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

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

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

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

.nav-link.active {
    color: var(--accent-gold);
}

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

.btn-nav {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
    color: #000;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
    transition: var(--transition);
}

.btn-nav:hover {
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.8);
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    color: var(--accent-gold);
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    padding: 180px 0 120px 0;
    position: relative;
    z-index: 2;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--border-color);
    padding: 8px 16px;
    border-radius: 30px;
    color: var(--accent-gold);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    box-shadow: inset 0 0 10px rgba(212, 175, 55, 0.05);
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
}

.gradient-text {
    background: linear-gradient(135deg, #fff, var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-lead {
    font-size: 17px;
    color: var(--text-secondary);
    margin-bottom: 36px;
    line-height: 1.8;
}

.gold-link {
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px dashed var(--accent-gold);
}

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

.hero-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 32px;
}

.hero-trust-row span {
    font-size: 13px;
    color: var(--text-secondary);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero-trust-row i {
    color: var(--accent-gold);
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

.btn-primary, .btn-secondary {
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
    color: #0a0b0f;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
}

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

.btn-secondary:hover {
    border-color: var(--accent-gold);
    background: rgba(212, 175, 55, 0.05);
    transform: translateY(-3px);
}

/* Floating Card Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.floating-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    padding: 50px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    animation: floatCard 6s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Floating Feature Chips around Hero Visual */
.floating-chip {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-card);
    backdrop-filter: blur(15px);
    border: 1px solid var(--border-color);
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-primary);
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
    z-index: 3;
    animation: chipFloat 5s ease-in-out infinite;
}

.floating-chip i {
    color: var(--accent-gold);
}

.chip-one { top: -10px; left: -20px; animation-delay: 0s; }
.chip-two { bottom: 30%; right: -35px; animation-delay: 1.2s; }
.chip-three { bottom: -15px; left: 10%; animation-delay: 2.4s; }

@keyframes chipFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.icon-glow {
    font-size: 64px;
    color: var(--accent-gold);
    margin-bottom: 20px;
    text-shadow: 0 0 25px rgba(212, 175, 55, 0.6);
}

.floating-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

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

/* Stats / Trust Bar */
.stats-bar {
    padding: 0 0 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    background: var(--bg-card);
    backdrop-filter: blur(15px);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 40px 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}

.stat-item {
    text-align: center;
    border-right: 1px solid rgba(212, 175, 55, 0.12);
}

.stat-item:last-child {
    border-right: none;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--accent-gold);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.stat-plus {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-gold);
}

.stat-item p {
    color: var(--text-secondary);
    font-size: 13px;
    margin-top: 8px;
    letter-spacing: 0.3px;
}

/* Section Common */
section {
    padding: 100px 0;
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 70px auto;
}

.sub-heading {
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 13px;
    font-weight: 600;
    display: block;
    margin-bottom: 12px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 16px;
}

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

/* Glow Box Effect */
.glow-box {
    background: var(--bg-card);
    backdrop-filter: blur(15px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.glow-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.08), transparent);
    transition: 0.5s;
}

.glow-box:hover::before {
    left: 100%;
}

.glow-box:hover {
    border-color: var(--border-glow);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
    transform: translateY(-5px);
}

/* Philosophy Section */
.logo-philosophy {
    background: linear-gradient(180deg, var(--bg-primary), var(--bg-secondary));
}

.philosophy-image-container {
    text-align: center;
    margin: 40px auto 20px auto;
}

.philosophy-img {
    max-width: 320px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 15px 30px rgba(212, 175, 55, 0.3));
    transition: transform 0.5s ease;
}

.philosophy-img:hover {
    transform: scale(1.05) rotate(2deg);
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.item {
    padding: 40px 30px;
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    font-size: 24px;
    margin-bottom: 24px;
    transition: var(--transition);
}

.item:hover .icon-wrapper {
    background: var(--accent-gold);
    color: #000;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
}

.item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    margin-bottom: 14px;
}

.item p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

/* Dynamic Web Systems Section */
.dynamic-section {
    background: var(--bg-primary);
}

.dynamic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.dynamic-card {
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    position: relative;
    will-change: transform;
}

.dyn-tag {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    color: var(--accent-gold);
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--border-color);
    padding: 5px 12px;
    border-radius: 30px;
}

.dyn-icon-tile {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.14), rgba(212, 175, 55, 0.03));
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: var(--transition);
}

.dyn-icon-img {
    width: 34px;
    height: 34px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.35));
}

.dyn-icon-fallback {
    font-size: 26px;
    color: var(--accent-gold);
    align-items: center;
    justify-content: center;
}

.tilt-card:hover .dyn-icon-tile {
    transform: scale(1.08) rotate(-4deg);
    border-color: var(--border-glow);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.35);
}

.dynamic-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 21px;
    margin-bottom: 12px;
    padding-right: 10px;
}

.dynamic-card p {
    color: var(--text-secondary);
    font-size: 14.5px;
    line-height: 1.7;
    flex-grow: 1;
}

.dyn-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 22px;
    color: var(--accent-gold);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    padding-top: 18px;
    transition: var(--transition);
}

.dyn-card-link i {
    transition: transform 0.3s ease;
    font-size: 11px;
}

.dynamic-card:hover .dyn-card-link {
    color: var(--accent-gold-light);
}

.dynamic-card:hover .dyn-card-link i {
    transform: translateX(5px);
}

.highlight-card {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(18, 21, 28, 0.8));
    border: 1px solid var(--accent-gold);
}

/* 3D Tilt Interaction (transform applied via JS custom properties) */
.tilt-card {
    transform: perspective(900px) rotateX(var(--tiltX, 0deg)) rotateY(var(--tiltY, 0deg)) translateY(0);
    transition: transform 0.15s ease-out, border-color 0.4s ease, box-shadow 0.4s ease;
}

/* Server Infrastructure Section */
.infra-section {
    background: linear-gradient(180deg, var(--bg-secondary), var(--bg-primary));
}

.infra-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
}

.infra-card {
    padding: 50px 40px;
}

.infra-icon {
    font-size: 48px;
    color: var(--accent-gold);
    margin-bottom: 24px;
}

.infra-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    margin-bottom: 16px;
}

.infra-card p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 24px;
}

.infra-list {
    list-style: none;
}

.infra-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-primary);
    font-size: 14px;
    margin-bottom: 12px;
}

.infra-list li i {
    color: var(--accent-gold);
}

/* Services Section */
.services-section {
    background: var(--bg-primary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    padding: 45px 35px;
}

.service-icon {
    font-size: 40px;
    color: var(--accent-gold);
    margin-bottom: 24px;
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    margin-bottom: 14px;
}

.service-card p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
}

/* Free Web Tools Section */
.freetools-section {
    background: linear-gradient(180deg, var(--bg-primary), var(--bg-secondary));
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 24px;
}

.tool-card {
    padding: 32px 26px;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: var(--text-primary);
}

.tool-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    font-size: 20px;
    margin-bottom: 20px;
    transition: var(--transition);
}

.tool-card:hover .tool-icon {
    background: var(--accent-gold);
    color: #000;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
    transform: rotate(-6deg) scale(1.05);
}

.tool-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    margin-bottom: 10px;
}

.tool-card p {
    color: var(--text-secondary);
    font-size: 13.5px;
    line-height: 1.6;
    flex-grow: 1;
}

.tool-free-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 18px;
    font-size: 11.5px;
    font-weight: 600;
    color: #6fcf97;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tool-free-badge i {
    color: #6fcf97;
}

/* Templates Section */
.templates-section {
    background: var(--bg-secondary);
}

.template-list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.template-link-box {
    display: flex;
    flex-direction: column;
    padding: 24px;
    text-decoration: none;
    color: var(--text-primary);
    transition: var(--transition);
    position: relative;
}

.tpl-free-tag {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #6fcf97;
    background: rgba(111, 207, 151, 0.1);
    border: 1px solid rgba(111, 207, 151, 0.35);
    padding: 4px 10px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.tpl-num {
    font-size: 12px;
    color: var(--accent-gold);
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tpl-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    font-family: 'Playfair Display', serif;
}

.tpl-action {
    font-size: 13px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.template-link-box:hover .tpl-action {
    color: var(--accent-gold);
}

/* Features Section */
.features-section {
    background: var(--bg-primary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.feature-tag {
    padding: 24px;
    text-align: center;
    font-weight: 500;
    font-size: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.feature-tag i {
    font-size: 28px;
    color: var(--accent-gold);
}

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

.faq-list {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    padding: 0;
    overflow: hidden;
}

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

.faq-toggle-icon {
    color: var(--accent-gold);
    font-size: 14px;
    flex-shrink: 0;
    transition: transform 0.35s ease;
}

.faq-item.active .faq-toggle-icon {
    transform: rotate(135deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 28px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 28px 26px 28px;
}

.faq-answer p {
    color: var(--text-secondary);
    font-size: 14.5px;
    line-height: 1.75;
}

/* Footer */
.elegant-footer {
    background: #06070a;
    border-top: 1px solid var(--border-color);
    padding: 90px 0 30px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
    margin-top: 15px;
}

.footer-links h3, .footer-contact h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    margin-bottom: 24px;
    color: var(--text-primary);
}

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

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a, .contact-info li a, .contact-info li {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover, .contact-info li a:hover {
    color: var(--accent-gold);
}

.contact-info {
    list-style: none;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.contact-info li i {
    color: var(--accent-gold);
}

.footer-cta {
    display: inline-flex;
    margin-top: 28px;
    padding: 12px 28px;
    font-size: 14px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    font-size: 14px;
}

.interactive-time {
    font-family: monospace;
    color: var(--accent-gold);
    letter-spacing: 1px;
}

/* Back to top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--accent-gold);
    color: #000;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    background: var(--text-primary);
}

/* Responsive */
@media(max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-buttons {
        justify-content: center;
    }
    .nav-menu {
        position: fixed;
        top: 90px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 90px);
        background: rgba(10, 11, 15, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        transition: left 0.4s ease;
    }
    .nav-menu.active {
        left: 0;
    }
    .hamburger {
        display: block;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    .infra-grid {
        grid-template-columns: 1fr;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 30px;
    }
    .stat-item:nth-child(2) {
        border-right: none;
    }
    .floating-chip {
        display: none;
    }
}

@media(max-width: 640px) {
    .hero-title {
        font-size: 36px;
    }
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(212, 175, 55, 0.12);
        padding-bottom: 20px;
    }
    .stat-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
    .dyn-tag {
        position: static;
        display: inline-flex;
        margin-bottom: 16px;
    }
    .faq-question {
        font-size: 14.5px;
        padding: 20px;
    }
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
}

/* Hide custom cursor on touch devices */
@media (hover: none) and (pointer: coarse) {
    .cursor-dot, .cursor-outline {
        display: none;
    }
}




