/* ============================================
   TheForja — Premium Design System
   ============================================ */

:root {
    /* Core Palette */
    --forge-black: #060a10;
    --forge-charcoal: #0d1117;
    --forge-steel: #161b22;
    --forge-steel-light: #1c2333;
    --forge-fire: #ff6b35;
    --forge-ember: #ff8f5a;
    --forge-gold: #ffb347;
    --forge-glow: rgba(255, 107, 53, 0.35);
    --forge-glow-strong: rgba(255, 107, 53, 0.55);

    /* Text */
    --text: #e6edf3;
    --text-muted: #8b949e;
    --text-dim: #484f58;

    /* Gradients */
    --gradient-fire: linear-gradient(135deg, #ff6b35 0%, #ff8f5a 50%, #ffb347 100%);
    --gradient-fire-subtle: linear-gradient(135deg, rgba(255, 107, 53, 0.15) 0%, rgba(255, 143, 90, 0.08) 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    --gradient-dark: linear-gradient(180deg, var(--forge-black) 0%, var(--forge-charcoal) 100%);
    --gradient-section: linear-gradient(180deg, var(--forge-charcoal) 0%, var(--forge-black) 100%);

    /* Glass */
    --glass-bg: rgba(22, 27, 34, 0.6);
    --glass-border: rgba(255, 107, 53, 0.12);
    --glass-border-hover: rgba(255, 107, 53, 0.4);
    --glass-shine: rgba(255, 255, 255, 0.04);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 30px rgba(255, 107, 53, 0.15);
    --shadow-glow-strong: 0 0 60px rgba(255, 107, 53, 0.25);

    /* Radius */
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 50px;

    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ============================================
   Reset & Base
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--forge-fire) var(--forge-charcoal);
}

html::-webkit-scrollbar {
    width: 6px;
}

html::-webkit-scrollbar-track {
    background: var(--forge-charcoal);
}

html::-webkit-scrollbar-thumb {
    background: var(--forge-fire);
    border-radius: 3px;
}

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--forge-black);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background: rgba(255, 107, 53, 0.3);
    color: #fff;
}

/* ============================================
   Background Effects
   ============================================ */
.bg-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 107, 53, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 107, 53, 0.025) 1px, transparent 1px);
    background-size: 80px 80px;
    pointer-events: none;
    z-index: 0;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.bg-gradient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 20% 0%, rgba(255, 107, 53, 0.12) 0px, transparent 50%),
        radial-gradient(ellipse at 80% 10%, rgba(255, 143, 90, 0.08) 0px, transparent 40%),
        radial-gradient(ellipse at 50% 80%, rgba(255, 107, 53, 0.05) 0px, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.35;
    pointer-events: none;
    z-index: 0;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--forge-fire) 0%, transparent 70%);
    top: -150px;
    right: -150px;
    animation: float 20s ease-in-out infinite;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--forge-ember) 0%, transparent 70%);
    bottom: 10%;
    left: -150px;
    animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -30px) scale(1.05);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.95);
    }
}

/* Particle canvas */
#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

/* ============================================
   Logo
   ============================================ */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text);
    text-decoration: none;
    transition: opacity 0.3s ease;
}
.logo-icon {
    width: 45px;
    height: 45px;
    background: var(--gradient-fire);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    box-shadow: 0 4px 20px var(--forge-glow);
}

.logo:hover {
    opacity: 0.85;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: transparent;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: none;
    box-shadow: none;
}

/* ============================================
   Navigation
   ============================================ */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0.8rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(6, 10, 16, 0.7);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid rgba(255, 107, 53, 0.08);
    transition: all 0.4s var(--ease-out);
}

nav.scrolled {
    padding: 0.6rem 5%;
    background: rgba(6, 10, 16, 0.92);
    border-bottom-color: rgba(255, 107, 53, 0.15);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-fire);
    border-radius: 1px;
    transition: width 0.3s var(--ease-out);
}

.nav-links a:hover {
    color: var(--text);
}

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

.nav-cta {
    background: var(--gradient-fire);
    color: white !important;
    padding: 10px 26px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s var(--ease-spring);
    box-shadow: 0 4px 20px var(--forge-glow);
    letter-spacing: 0.02em;
}

.nav-cta:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 8px 30px var(--forge-glow-strong);
}

.mobile-menu {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 8px;
    transition: color 0.3s ease;
}

.mobile-menu:hover {
    color: var(--forge-fire);
}

/* ============================================
   Hero
   ============================================ */
.hero,
.page-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    padding: 7rem 5% 5rem;
}

.page-hero {
    min-height: 50vh;
    padding: 7rem 5% 3rem;
}

.hero-content,
.page-hero-content {
    max-width: 900px;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: rgba(255, 107, 53, 0.08);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--forge-fire);
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    animation: badge-glow 3s ease-in-out infinite alternate;
}

@keyframes badge-glow {
    0% {
        box-shadow: 0 0 10px rgba(255, 107, 53, 0.05);
    }

    100% {
        box-shadow: 0 0 25px rgba(255, 107, 53, 0.15);
    }
}

.hero h1,
.page-hero h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.page-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
}

.hero-subtitle {
    font-size: clamp(1.05rem, 1.8vw, 1.25rem);
    color: var(--text-muted);
    margin-bottom: 3rem;
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-highlight,
.text-gradient {
    background: var(--gradient-fire);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* ============================================
   Buttons
   ============================================ */
.btn-primary {
    background: var(--gradient-fire);
    color: white;
    padding: 16px 36px;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s var(--ease-spring);
    box-shadow: 0 8px 30px var(--forge-glow);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    letter-spacing: 0.01em;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px var(--forge-glow-strong);
}

.btn-secondary {
    background: transparent;
    color: var(--text);
    padding: 16px 36px;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 600;
    border: 1.5px solid var(--text-dim);
    transition: all 0.4s var(--ease-spring);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.btn-secondary:hover {
    border-color: var(--forge-fire);
    color: var(--forge-fire);
    background: rgba(255, 107, 53, 0.06);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.1);
}

/* ============================================
   Main Content & Sections
   ============================================ */
main {
    position: relative;
    z-index: 1;
}

section {
    padding: 7rem 5%;
    position: relative;
}

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

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255, 107, 53, 0.08);
    border: 1px solid rgba(255, 107, 53, 0.18);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--forge-fire);
    margin-bottom: 1.5rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.section-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.section-header p {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Section separator */
section+section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.15), transparent);
}

/* ============================================
   Grids
   ============================================ */
.problem-grid,
.solution-comparison,
.services-grid,
.pricing-grid,
.trust-grid,
.different-comparison,
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* ============================================
   Glass Cards
   ============================================ */
.problem-card,
.service-card,
.trust-card,
.different-box {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
    transition: all 0.5s var(--ease-out);
    position: relative;
    overflow: hidden;
}

/* Shine overlay */
.problem-card::before,
.service-card::before,
.trust-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.problem-card:hover,
.service-card:hover,
.trust-card:hover {
    transform: translateY(-8px);
    border-color: var(--glass-border-hover);
    box-shadow: var(--shadow-glow), var(--shadow-md);
    background: rgba(22, 27, 34, 0.8);
}

.problem-icon,
.service-icon,
.trust-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-fire);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: white;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.3);
    position: relative;
}

/* Icon glow ring */
.problem-icon::after,
.service-icon::after,
.trust-icon::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: inherit;
    background: var(--gradient-fire);
    opacity: 0.25;
    filter: blur(8px);
    z-index: -1;
}

.trust-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
}

.problem-card h3,
.service-card h3,
.trust-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.problem-card p,
.service-card p,
.trust-card p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 0.95rem;
}

.problem-stat {
    font-size: 2rem;
    font-weight: 700;
    color: var(--forge-fire);
    margin-top: 1rem;
}

.service-features {
    list-style: none;
}

.service-features li {
    padding: 10px 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-muted);
}

.service-features li i {
    color: var(--forge-fire);
    margin-top: 3px;
}

/* ============================================
   Comparison Table
   ============================================ */
#comparison {
    background: var(--forge-charcoal);
}

.comparison-container {
    overflow-x: auto;
    margin-top: 2rem;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--forge-charcoal);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.comparison-table th,
.comparison-table td {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.comparison-table th {
    background: rgba(0, 0, 0, 0.3);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
}

.comparison-table th small {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 400;
    display: block;
    margin-top: 5px;
}

.comparison-table .highlight {
    background: rgba(255, 107, 53, 0.08);
    border-color: var(--forge-fire);
    color: var(--forge-fire);
    font-weight: 700;
}

.comparison-table th.highlight {
    background: var(--forge-fire);
    color: white;
}

.comparison-table th.highlight small {
    color: rgba(255, 255, 255, 0.8);
}

/* ============================================
   Testimonials / Case Study
   ============================================ */
#testimonials {
    background: var(--gradient-section);
}

.featured-case-study {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border-hover);
    border-radius: var(--radius-xl);
    padding: 3rem;
    margin-bottom: 4rem;
    box-shadow: var(--shadow-glow), var(--shadow-lg);
    position: relative;
    overflow: hidden;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.featured-case-study::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-fire);
}

.case-study-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 107, 53, 0.15);
}

.company-logo {
    width: 90px;
    height: 90px;
    background: var(--gradient-fire);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 8px 30px var(--forge-glow);
    flex-shrink: 0;
}

.company-info h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 0.3rem;
    letter-spacing: -0.01em;
}

.company-type {
    color: var(--forge-fire);
    font-weight: 600;
    font-size: 0.95rem;
}

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

.case-study-challenge,
.case-study-solution,
.case-study-results,
.case-study-roi {
    margin-bottom: 2rem;
}

.case-study-challenge h4,
.case-study-solution h4,
.case-study-results h4,
.case-study-roi h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.solution-item {
    background: rgba(0, 0, 0, 0.3);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--glass-border);
}

.solution-item i {
    font-size: 2rem;
    color: var(--forge-fire);
    margin-bottom: 1rem;
}

.solution-item h5 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.result-card {
    background: rgba(0, 0, 0, 0.35);
    padding: 2rem;
    border-radius: var(--radius-md);
    text-align: center;
    border: 1px solid var(--glass-border-hover);
    transition: all 0.4s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.result-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-fire);
    opacity: 0.6;
}

.result-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.result-icon {
    font-size: 2.5rem;
    color: var(--forge-fire);
    margin-bottom: 1rem;
}

.result-before,
.result-after {
    font-size: 1.1rem;
    margin: 0.5rem 0;
}

.result-arrow {
    font-size: 1.5rem;
    color: var(--forge-fire);
    margin: 0.5rem 0;
}

.result-impact {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--forge-fire);
    margin-top: 0.5rem;
}

.roi-highlight ul {
    list-style: none;
    margin-top: 1rem;
}

.roi-highlight li {
    padding: 0.8rem 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.roi-highlight li i {
    color: var(--forge-fire);
    margin-top: 3px;
}

.case-study-quote {
    background: rgba(0, 0, 0, 0.3);
    padding: 2rem;
    border-radius: var(--radius-md);
    border-left: 3px solid var(--forge-fire);
}

.case-study-quote blockquote {
    font-style: italic;
    font-size: 1.2rem;
    line-height: 1.7;
}

.case-study-quote cite {
    display: block;
    margin-top: 1rem;
    color: var(--forge-fire);
    font-weight: 600;
}

.testimonial-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
    transition: all 0.4s var(--ease-out);
}

.testimonial-card:hover {
    border-color: var(--glass-border-hover);
    transform: translateY(-4px);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.company-avatar {
    width: 55px;
    height: 55px;
    background: var(--gradient-fire);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: white;
    flex-shrink: 0;
}

.testimonial-header h4 {
    font-size: 1.15rem;
}

.company-location {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.testimonial-text {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.testimonial-impact {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.testimonial-impact span {
    background: rgba(255, 107, 53, 0.1);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    color: var(--forge-fire);
    font-weight: 500;
}

/* ============================================
   Pricing
   ============================================ */
#pricing {
    background: var(--gradient-section);
}

.pricing-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--glass-border);
    transition: all 0.5s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
}

.pricing-card.featured {
    border-color: var(--glass-border-hover);
    box-shadow: var(--shadow-glow-strong), var(--shadow-lg);
    transform: scale(1.03);
}

.pricing-card.featured::before {
    height: 2px;
    background: var(--gradient-fire);
}

.pricing-card:hover {
    transform: translateY(-4px);
    border-color: var(--glass-border-hover);
}

.pricing-card.featured:hover {
    transform: scale(1.03) translateY(-4px);
}

.pricing-header {
    text-align: center;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 107, 53, 0.12);
    margin-bottom: 2rem;
}

.pricing-header h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 0.3rem;
}

.pricing-header .subtitle {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.popular-tag {
    background: var(--gradient-fire);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: var(--radius-full);
    display: inline-block;
    margin-bottom: 1rem;
    letter-spacing: 0.08em;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.price-tag {
    margin-top: 1.5rem;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.currency {
    font-size: 1.4rem;
    color: var(--text-muted);
    font-weight: 500;
}

.amount {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.2rem;
    font-weight: 700;
    background: var(--gradient-fire);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.period {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 12px 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
}

.pricing-features li i {
    color: var(--forge-fire);
    margin-top: 3px;
    flex-shrink: 0;
}

.pricing-features li.disabled {
    color: var(--text-muted);
    opacity: 0.45;
}

.pricing-features li.highlight {
    color: var(--forge-fire);
    font-weight: 600;
}

/* ============================================
   CTA Section
   ============================================ */
#cta {
    text-align: center;
    padding: 8rem 5%;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.cta-tagline {
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
}

/* ============================================
   Policy & About Pages
   ============================================ */
.page-hero {
    background: transparent;
}

.page-hero p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

.policy-content,
.about-content,
.contact-content {
    padding: 4rem 5%;
}

.content-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.policy-section,
.about-section {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    margin-bottom: 1.5rem;
    border: 1px solid var(--glass-border);
    transition: all 0.4s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.policy-section::before,
.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent);
}

.policy-section:hover,
.about-section:hover {
    border-color: rgba(255, 107, 53, 0.2);
    box-shadow: var(--shadow-sm);
}

.policy-section h2,
.about-section h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--text);
}

.policy-section h3,
.about-section h3 {
    font-size: 1.2rem;
    margin: 1.5rem 0 0.8rem;
    color: var(--text);
    font-weight: 600;
}

.policy-section p,
.about-section p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 0.8rem;
}

.policy-section ul,
.policy-section ol {
    margin: 1rem 0 1rem 1.5rem;
    color: var(--text-muted);
}

.policy-section li {
    margin: 0.6rem 0;
    line-height: 1.7;
}

.policy-section a {
    color: var(--forge-fire);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.policy-section a:hover {
    text-decoration: underline;
    opacity: 0.85;
}

/* ============================================
   Values Grid
   ============================================ */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.value-card {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: var(--radius-md);
    text-align: center;
    border: 1px solid var(--glass-border);
    transition: all 0.4s var(--ease-out);
}

.value-card:hover {
    border-color: var(--glass-border-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.value-card i {
    font-size: 2.5rem;
    background: var(--gradient-fire);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    display: block;
}

.value-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    margin-bottom: 0.8rem;
}

.value-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ============================================
   Stats Grid & CTA Box
   ============================================ */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.stat-card {
    background: var(--gradient-fire);
    padding: 2rem;
    border-radius: var(--radius-md);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: white;
    position: relative;
}

.stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 0.5rem;
    position: relative;
}

.cta-box {
    background: var(--gradient-fire);
    padding: 3rem;
    border-radius: var(--radius-xl);
    text-align: center;
    margin-top: 3rem;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.cta-box h3 {
    font-size: 2rem;
    color: white;
    margin-bottom: 1rem;
    position: relative;
}

.cta-box p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    position: relative;
}

/* ============================================
   Contact Page
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-cards {
    display: grid;
    gap: 1.2rem;
}

.contact-card {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--glass-border);
    transition: all 0.4s var(--ease-out);
}

.contact-card:hover {
    border-color: var(--glass-border-hover);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.contact-card i {
    font-size: 1.8rem;
    background: var(--gradient-fire);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.8rem;
    display: block;
}

.contact-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.contact-card a {
    color: var(--forge-fire);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.contact-card a:hover {
    opacity: 0.8;
}

.contact-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 0.3rem;
}

.business-hours {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    padding: 1.8rem;
    border-radius: var(--radius-md);
    margin-top: 1.5rem;
    border: 1px solid var(--glass-border);
}

.business-hours h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
}

.business-hours ul {
    list-style: none;
    margin-top: 0.8rem;
}

.business-hours li {
    padding: 0.5rem 0;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.business-hours li strong {
    color: var(--text);
}

/* Contact Form */
.contact-form-container {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-fire);
    opacity: 0.5;
}

.contact-form-container h2 {
    font-family: 'Space Grotesk', sans-serif;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text);
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 107, 53, 0.12);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--forge-fire);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1), 0 0 20px rgba(255, 107, 53, 0.08);
    background: rgba(0, 0, 0, 0.4);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-dim);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ============================================
   Footer
   ============================================ */
footer {
    background: var(--forge-black);
    padding: 5rem 5% 2rem;
    border-top: 1px solid rgba(255, 107, 53, 0.08);
    position: relative;
    z-index: 1;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.2), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.footer-brand p {
    color: var(--text-muted);
    margin: 1.2rem 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.footer-social a {
    width: 42px;
    height: 42px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all 0.3s var(--ease-spring);
    font-size: 1rem;
}

.footer-social a:hover {
    background: var(--gradient-fire);
    color: white;
    border-color: transparent;
    transform: translateY(-3px);
}

.footer-column h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: var(--text);
    letter-spacing: 0.02em;
}

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

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

.footer-column ul li a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.footer-column ul li a:hover {
    color: var(--forge-fire);
    transform: translateX(3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 107, 53, 0.08);
}

.footer-bottom p {
    color: var(--text-dim);
    font-size: 0.9rem;
    margin: 0.3rem 0;
}

/* ============================================
   Hero Demo Box
   ============================================ */
.hero-demo-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin: 3rem auto 0;
    flex-wrap: wrap;
    max-width: 700px;
}

.demo-step {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    max-width: 280px;
    text-align: left;
    transition: all 0.4s var(--ease-out);
    flex: 1;
    min-width: 220px;
}

.demo-step:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 107, 53, 0.2);
}

.demo-step.result {
    background: rgba(255, 107, 53, 0.08);
    border-color: rgba(255, 107, 53, 0.3);
}

.demo-step.result:hover {
    border-color: var(--forge-fire);
    box-shadow: var(--shadow-glow);
}

.demo-icon {
    font-size: 1.5rem;
    color: var(--forge-fire);
    margin-bottom: 0.5rem;
}

.demo-text small {
    color: var(--text-muted);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.demo-text p {
    font-size: 1rem;
    font-weight: 600;
    margin-top: 0.4rem;
    color: var(--text);
    line-height: 1.5;
}

.demo-arrow {
    color: var(--forge-fire);
    font-size: 1.5rem;
    animation: arrow-pulse 2s ease-in-out infinite;
}

@keyframes arrow-pulse {

    0%,
    100% {
        opacity: 0.5;
        transform: translateX(0);
    }

    50% {
        opacity: 1;
        transform: translateX(5px);
    }
}

/* Demo Video */
.demo-video-container,
.demo-video-section {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.demo-video-label,
.demo-video-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255, 107, 53, 0.08);
    border: 1px solid rgba(255, 107, 53, 0.18);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--forge-fire);
    margin-bottom: 1.5rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.demo-video-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--glass-border-hover);
    box-shadow: var(--shadow-glow), var(--shadow-lg);
    background: var(--forge-charcoal);
}

.demo-video-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-fire);
    z-index: 1;
}

.demo-video-wrapper video {
    display: block;
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
}

/* ============================================
   Animations
   ============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s var(--ease-out);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered delays */
.animate-on-scroll:nth-child(1) {
    transition-delay: 0s;
}

.animate-on-scroll:nth-child(2) {
    transition-delay: 0.1s;
}

.animate-on-scroll:nth-child(3) {
    transition-delay: 0.2s;
}

.animate-on-scroll:nth-child(4) {
    transition-delay: 0.15s;
}

@keyframes gentle-pulse {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(255, 107, 53, 0.2);
    }

    50% {
        box-shadow: 0 0 40px rgba(255, 107, 53, 0.35);
    }
}

.pulse-glow {
    animation: gentle-pulse 3s ease-in-out infinite;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 0.8rem 4%;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(6, 10, 16, 0.97);
        backdrop-filter: blur(24px);
        flex-direction: column;
        padding: 1.5rem 4%;
        gap: 0.5rem;
        border-bottom: 1px solid var(--glass-border);
    }

    .nav-links a {
        padding: 10px 0;
        display: block;
        font-size: 1rem;
    }

    .nav-links a::after {
        display: none;
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu {
        display: block;
    }

    .hero,
    .page-hero {
        padding: 5rem 4% 3rem;
    }

    section {
        padding: 4rem 4%;
    }

    .problem-grid,
    .solution-comparison,
    .services-grid,
    .pricing-grid,
    .trust-grid,
    .different-comparison,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-4px);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .case-study-header {
        flex-direction: column;
        text-align: center;
    }

    .hero-demo-box {
        flex-direction: column;
    }

    .demo-arrow {
        transform: rotate(90deg);
    }

    @keyframes arrow-pulse {

        0%,
        100% {
            opacity: 0.5;
            transform: rotate(90deg) translateX(0);
        }

        50% {
            opacity: 1;
            transform: rotate(90deg) translateX(5px);
        }
    }

    .animate-on-scroll {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    section+section::before {
        left: 5%;
        right: 5%;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 14px 28px;
        font-size: 0.9rem;
    }

    .problem-card,
    .service-card {
        padding: 2rem;
    }

    .pricing-card {
        padding: 2rem;
    }

    .featured-case-study {
        padding: 2rem;
    }
}