:root {
    /* Color Palette - Premium Dark Obsidian Glassmorphism */
    --primary-main: #FF9F1C;
    --primary-hover: #E88E10;
    --primary-glow: rgba(255, 159, 28, 0.25);
    --secondary-main: #0B1120; /* Deep navy slate block background */
    --secondary-light: #1E293B; /* Lighter slate block background */
    --accent: #FFD700; /* Metallic Gold */
    
    --bg-page: #030712; /* Deep Obsidian dark background */
    --bg-card: rgba(15, 23, 42, 0.55); /* Glassmorphic card fill */
    --bg-card-hover: rgba(20, 30, 55, 0.75); /* Hover glass card fill */
    --bg-glass: rgba(3, 7, 18, 0.7); /* Sleek backdrop navigation fill */
    --bg-white: #0B1120; /* Deep slate alternative to white */
    
    --text-strong: #F8FAFC; /* Crisp slate white for headers */
    --text-regular: #CBD5E1; /* Readable slate for body text */
    --text-dim: #94A3B8; /* Muted gray for less prominent labels */
    
    --border-light: rgba(255, 255, 255, 0.08); /* Frosted thin border */
    --border-glass: rgba(255, 255, 255, 0.05); /* Card frosted border */
    --border-focus: rgba(255, 159, 28, 0.5); /* Focus outline amber */
    
    /* Typography */
    --font-h: 'Outfit', sans-serif;
    --font-b: 'Inter', sans-serif;
    
    /* Spacing & Radii */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --section-gap: clamp(60px, 8vw, 100px);
    --container-width: 1200px;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    
    /* Shadow Elevation & Ambient Glows */
    --shadow-soft: 0 4px 20px -2px rgba(0, 0, 0, 0.5);
    --shadow-float: 0 20px 40px -15px rgba(0, 0, 0, 0.7);
    --shadow-glass: 0 8px 32px 0 rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 25px 0 rgba(255, 159, 28, 0.15);
}

/* Custom Scrollbar styling */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-page);
}
::-webkit-scrollbar-thumb {
    background: #1E293B;
    border-radius: var(--radius-sm);
    border: 2px solid var(--bg-page);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary-main);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-b);
    color: var(--text-regular);
    background-color: var(--bg-page);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: var(--font-h);
    font-weight: 700;
    line-height: 1.15;
    color: var(--text-strong);
    letter-spacing: -0.02em;
    text-wrap: balance;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: var(--section-gap) 0;
    position: relative;
    z-index: 1;
}

/* Decorative ambient glow nodes behind sections */
.ambient-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 159, 28, 0.08) 0%, rgba(255, 215, 0, 0.03) 50%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
    z-index: -1;
}

.glow-top-right { top: -10%; right: -5%; }
.glow-bottom-left { bottom: -10%; left: -5%; }

.section-badge {
    background: linear-gradient(135deg, rgba(255, 159, 28, 0.1), rgba(255, 215, 0, 0.15));
    border: 1px solid rgba(255, 159, 28, 0.25);
    color: var(--primary-main);
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-block;
    margin-bottom: 20px;
}

h2 {
    font-size: clamp(2.25rem, 5vw, 3rem);
    margin-bottom: 40px;
    line-height: 1.2;
    font-weight: 800;
}

h2 span {
    background: linear-gradient(135deg, var(--primary-main), #FFD700);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Premium Dynamic Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    font-family: var(--font-h);
    transition: var(--transition);
    letter-spacing: 0.02em;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-main), var(--primary-hover));
    color: #030712;
    box-shadow: 0 8px 24px -6px rgba(255, 159, 28, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px -4px rgba(255, 159, 28, 0.6), 0 0 15px rgba(255, 159, 28, 0.2);
}

.btn-primary-small {
    padding: 10px 20px;
    font-size: 0.875rem;
    background: linear-gradient(135deg, var(--primary-main), var(--primary-hover));
    color: #030712;
    border-radius: 10px;
    box-shadow: 0 4px 12px -3px rgba(255, 159, 28, 0.3);
}

.btn-primary-small:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px -2px rgba(255, 159, 28, 0.5);
}

.btn-outline {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--text-strong);
}

.btn-outline:hover {
    border-color: var(--primary-main);
    color: var(--primary-main);
    background-color: rgba(255, 159, 28, 0.06);
    box-shadow: 0 0 15px rgba(255, 159, 28, 0.1);
}

.btn-white {
    background-color: var(--text-strong);
    color: var(--bg-page);
}

.btn-white:hover {
    background-color: var(--text-regular);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

/* Header & Nav */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: transparent;
    z-index: 1000;
    padding: 24px 0;
    transition: var(--transition);
}

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

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Typographic Logo Styling */
.logo {
    font-family: var(--font-h);
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--text-strong) 40%, var(--primary-main) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: var(--transition);
}

.logo span {
    background: linear-gradient(135deg, var(--primary-main), #FFD700);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-left: 2px;
}

.logo:hover {
    filter: drop-shadow(0 0 10px rgba(255, 159, 28, 0.35));
}

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

.nav-links a {
    font-weight: 500;
    color: var(--text-regular);
    font-size: 0.95rem;
    position: relative;
    padding: 6px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-main), #FFD700);
    transition: width 0.3s ease;
    border-radius: 2px;
}

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

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

/* Specific overrides for the button in the navigation to prevent style leaks */
.nav-links a.btn {
    padding: 10px 20px !important;
    color: #030712 !important;
    background: linear-gradient(135deg, var(--primary-main), var(--primary-hover)) !important;
    border-radius: 10px !important;
    font-weight: 700 !important;
    display: inline-flex !important;
    align-items: center !important;
    font-size: 0.875rem !important;
    box-shadow: 0 4px 12px -3px rgba(255, 159, 28, 0.3) !important;
    transition: var(--transition) !important;
}

.nav-links a.btn:hover {
    transform: translateY(-1px) !important;
    box-shadow: 0 6px 16px -2px rgba(255, 159, 28, 0.5) !important;
    color: #030712 !important;
}

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

/* Hero Section with Mesh Gradient */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background-color: var(--bg-page);
    background-image: 
        radial-gradient(at 0% 0%, rgba(255, 159, 28, 0.12) 0px, transparent 40%),
        radial-gradient(at 100% 0%, rgba(30, 41, 59, 0.3) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(255, 159, 28, 0.05) 0px, transparent 40%);
    padding-top: 100px;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    top: 30%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 159, 28, 0.05) 0%, transparent 60%);
    filter: blur(80px);
    z-index: -1;
    animation: float-slow 15s infinite alternate ease-in-out;
}

.hero-container {
    width: 100%;
}

.hero-content {
    max-width: 850px;
}

.hero h1 {
    font-size: clamp(2.5rem, 6.5vw, 4.25rem);
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 800;
}

.hero h1 span {
    background: linear-gradient(135deg, var(--primary-main), #FFD700);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 10px rgba(255, 159, 28, 0.15));
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-regular);
    margin-bottom: 40px;
    max-width: 700px;
    line-height: 1.6;
}

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

/* About Section */
.about {
    background-color: #050814;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

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

.about-text p {
    font-size: 1.125rem;
    color: var(--text-regular);
    margin-bottom: 24px;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.stat-card {
    padding: 32px 24px;
    background-color: var(--bg-card);
    border-radius: var(--radius-md);
    text-align: center;
    border: 1px solid var(--border-glass);
    backdrop-filter: blur(12px);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 159, 28, 0.2);
    box-shadow: var(--shadow-soft);
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-main);
    margin-bottom: 8px;
    font-family: var(--font-h);
    background: linear-gradient(135deg, var(--primary-main), #FFD700);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-text {
    font-size: 0.8125rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

/* Fail vs Win Grid Section (New Trust Building Element) */
.comparisons {
    background-color: var(--bg-page);
}

.compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 40px;
}

.compare-card {
    padding: 40px;
    border-radius: var(--radius-lg);
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    backdrop-filter: blur(12px);
    position: relative;
    overflow: hidden;
}

.compare-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
}

.compare-card.fail {
    border-left: 4px solid #EF4444;
}

.compare-card.win {
    border-left: 4px solid var(--primary-main);
    background: rgba(15, 23, 42, 0.85);
    box-shadow: var(--shadow-glow);
}

.compare-card h3 {
    font-size: 1.5rem;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.compare-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.compare-list li {
    display: flex;
    gap: 12px;
    font-size: 0.975rem;
    line-height: 1.5;
}

.compare-list li svg {
    flex-shrink: 0;
    margin-top: 3px;
}

.compare-list li .text-muted {
    color: var(--text-dim);
}

.compare-list li .text-strong {
    color: var(--text-strong);
    font-weight: 600;
}

/* Services Section */
.services {
    background-color: #050814;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.service-card {
    background: var(--bg-card);
    padding: 48px 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-glass);
    backdrop-filter: blur(12px);
    transition: var(--transition);
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 159, 28, 0.25);
    box-shadow: 0 20px 40px -15px rgba(0,0,0,0.6), 0 0 20px rgba(255, 159, 28, 0.05);
    background-color: var(--bg-card-hover);
}

.service-card .service-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: rgba(255, 159, 28, 0.08);
    color: var(--primary-main);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    border: 1px solid rgba(255, 159, 28, 0.15);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
    color: var(--text-strong);
}

.price {
    font-family: var(--font-h);
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--primary-main);
    margin-bottom: 20px;
    display: inline-flex;
    align-items: baseline;
    background: linear-gradient(135deg, var(--primary-main), #FFD700);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-desc {
    color: var(--text-regular);
    margin-bottom: 32px;
    font-size: 0.95rem;
    flex-grow: 1;
}

.service-card .btn {
    margin-top: auto;
}

/* Featured Service Card */
.service-card.featured {
    background: rgba(11, 17, 32, 0.8);
    border: 1px solid rgba(255, 159, 28, 0.35);
    box-shadow: var(--shadow-glow);
}

.service-card.featured::before {
    content: 'NÉPSZERŰ';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    color: #030712;
    background: linear-gradient(135deg, var(--primary-main), #FFD700);
    padding: 6px 12px;
    border-radius: 6px;
}

.service-card.featured .service-icon {
    background: rgba(255, 159, 28, 0.15);
    border-color: rgba(255, 159, 28, 0.3);
}

/* Service Strip / Banner Component */
.service-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-card);
    padding: 32px 48px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-glass);
    gap: 40px;
    backdrop-filter: blur(12px);
    transition: var(--transition);
}

.service-banner:hover {
    border-color: rgba(255, 159, 28, 0.2);
    box-shadow: var(--shadow-soft);
    background-color: var(--bg-card-hover);
}

.banner-content {
    display: flex;
    align-items: center;
    gap: 24px;
    flex: 1;
}

.banner-icon {
    width: 64px;
    height: 64px;
    background-color: rgba(255, 159, 28, 0.08);
    color: var(--primary-main);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    flex-shrink: 0;
    border: 1px solid rgba(255, 159, 28, 0.15);
}

.banner-text h3 {
    font-size: 1.35rem;
    margin-bottom: 8px;
    color: var(--text-strong);
}

.banner-text p {
    color: var(--text-regular);
    font-size: 0.95rem;
    line-height: 1.5;
}

.banner-price {
    display: flex;
    align-items: center;
    gap: 24px;
}

.banner-price .price {
    margin-bottom: 0;
    font-size: 1.5rem;
    white-space: nowrap;
}

@media (max-width: 992px) {
    .service-banner {
        flex-direction: column;
        text-align: center;
        gap: 24px;
        padding: 40px;
    }
    
    .banner-content {
        flex-direction: column;
    }
    
    .banner-price {
        flex-direction: column;
        width: 100%;
    }
}

/* Portfolio Section */
.portfolio {
    background-color: var(--bg-page);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

@media (max-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}

.portfolio-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background-color: var(--bg-card);
    border: 1px solid var(--border-glass);
    backdrop-filter: blur(12px);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.portfolio-item:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 159, 28, 0.2);
    box-shadow: var(--shadow-float);
    background-color: var(--bg-card-hover);
}

.portfolio-image {
    aspect-ratio: 16 / 10;
    background-color: #0b1120;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid var(--border-glass);
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.05);
}

.portfolio-info-expanded {
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    height: 100%;
    flex-grow: 1;
}

.portfolio-info-expanded h4 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--text-strong);
}

.portfolio-info-expanded p {
    font-size: 0.9rem;
    margin-bottom: 12px;
    line-height: 1.5;
}

.ref-problem { color: var(--text-dim); }
.ref-solution { color: var(--text-regular); }
.ref-result { 
    color: var(--text-strong); 
    font-weight: 600; 
    border-left: 3px solid var(--primary-main); 
    padding-left: 12px; 
    margin-top: 20px; 
    margin-bottom: 20px !important; 
    background: rgba(255, 159, 28, 0.04);
    padding: 10px 12px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.ref-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--primary-main);
    font-weight: 700;
    font-size: 0.9rem;
    margin-top: auto;
}

.ref-link:hover {
    color: #FFD700;
    text-shadow: 0 0 8px rgba(255, 159, 28, 0.2);
}

/* Testimonials */
.testimonials {
    background-color: #050814;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

.testimonial-card {
    background-color: var(--bg-card);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-glass);
    backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
}

.testimonial-card:hover {
    border-color: rgba(255, 159, 28, 0.15);
    background-color: var(--bg-card-hover);
}

.testimonial-content p {
    font-style: italic;
    font-size: 1.05rem;
    color: var(--text-regular);
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}

.testimonial-content p::before {
    content: '“';
    font-size: 6rem;
    color: var(--primary-main);
    opacity: 0.08;
    position: absolute;
    top: -45px;
    left: -20px;
    font-family: serif;
    pointer-events: none;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 16px;
}

.user-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--secondary-light), #0b1120);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-main);
    font-size: 0.95rem;
    font-weight: 800;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.user-info strong {
    display: block;
    color: var(--text-strong);
    font-size: 0.95rem;
}

.user-info span {
    font-size: 0.8125rem;
    color: var(--text-dim);
}

/* Animations */
@keyframes float-slow {
    0% { transform: translateY(0px) rotate(0deg); }
    100% { transform: translateY(-20px) rotate(5deg); }
}

@keyframes reveal-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal-up {
    opacity: 0;
    will-change: transform, opacity;
}

.reveal-up.active {
    animation: reveal-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Blog Section */
.blog {
    background-color: var(--bg-page);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

.blog-card {
    background-color: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-glass);
    backdrop-filter: blur(12px);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 159, 28, 0.2);
    box-shadow: var(--shadow-float);
    background-color: var(--bg-card-hover);
}

.blog-image {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-bottom: 1px solid var(--border-glass);
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.04);
}

.blog-content {
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-date {
    font-size: 0.8125rem;
    color: var(--text-dim);
    margin-bottom: 12px;
    display: block;
    font-weight: 500;
}

.blog-card h3 {
    font-size: 1.35rem;
    margin-bottom: 16px;
    color: var(--text-strong);
    line-height: 1.3;
}

.blog-card p {
    color: var(--text-regular);
    margin-bottom: 24px;
    font-size: 0.9rem;
    line-height: 1.6;
    flex-grow: 1;
}

.blog-link {
    color: var(--primary-main);
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: auto;
}

.blog-link:hover {
    color: #FFD700;
}

/* Blog Subpage / Article Layouts */
.blog-hero {
    background-color: #050814;
    border-bottom: 1px solid var(--border-light);
    padding-top: 140px;
    padding-bottom: 60px;
    text-align: center;
    position: relative;
}

.blog-hero h1 {
    font-size: clamp(2.25rem, 5vw, 3.25rem);
    margin-bottom: 16px;
    color: var(--text-strong);
}

.blog-hero h1 span {
    background: linear-gradient(135deg, var(--primary-main), #FFD700);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.blog-hero .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
    color: var(--text-regular);
    max-width: 600px;
}

.blog-list {
    max-width: 900px;
    margin: 0 auto;
}

.blog-post-page {
    padding-top: 120px;
}

.container-narrow {
    max-width: 800px;
}

.post-meta {
    margin-bottom: 24px;
    display: flex;
    gap: 20px;
    font-size: 0.8125rem;
    font-weight: 600;
}

.blog-category {
    color: var(--primary-main);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.blog-post-page h1 {
    font-size: clamp(2.25rem, 5vw, 3.25rem);
    margin-bottom: 32px;
    line-height: 1.2;
    font-weight: 800;
}

.post-featured-image {
    margin-bottom: 48px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--border-glass);
    box-shadow: var(--shadow-float);
    aspect-ratio: 16 / 9;
}

.post-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-body {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-regular);
}

.post-body .lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-strong);
    margin-bottom: 40px;
    line-height: 1.6;
    border-left: 4px solid var(--primary-main);
    padding-left: 20px;
}

.post-body h2 {
    font-size: 1.85rem;
    margin-top: 50px;
    margin-bottom: 20px;
    color: var(--text-strong);
}

.post-body h3 {
    font-size: 1.45rem;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--text-strong);
}

.post-body p {
    margin-bottom: 24px;
}

.post-body ul {
    margin-bottom: 32px;
}

.post-body li {
    margin-bottom: 16px;
    padding-left: 28px;
    position: relative;
}

.post-body li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-main);
    font-weight: 800;
}

.post-cta {
    margin-top: 60px;
    padding: 48px;
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    text-align: center;
    border: 1px solid rgba(255, 159, 28, 0.25);
    box-shadow: var(--shadow-glow);
    backdrop-filter: blur(12px);
}

.post-cta h3 {
    font-size: 1.6rem;
    margin-bottom: 16px;
    color: var(--text-strong);
}

.post-cta p {
    margin-bottom: 28px;
    color: var(--text-regular);
}

.post-divider {
    border: 0;
    border-top: 1px solid var(--border-light);
    margin: 60px 0;
}

.mt-40 { margin-top: 40px; }
.text-center { text-align: center; }

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

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

.faq-item {
    border-radius: var(--radius-md);
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    backdrop-filter: blur(12px);
    transition: var(--transition);
    overflow: hidden;
}

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

.faq-question {
    width: 100%;
    padding: 24px 32px;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.15rem;
    font-weight: 700;
    font-family: var(--font-h);
    color: var(--text-strong);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question span {
    color: var(--primary-main);
    font-size: 1.5rem;
    font-weight: 500;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.faq-answer {
    padding: 0 32px 24px 32px;
    color: var(--text-regular);
    font-size: 0.95rem;
    line-height: 1.6;
    display: none;
}

.faq-item.active {
    background-color: var(--bg-card-hover);
    border-color: rgba(255, 159, 28, 0.2);
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-question span {
    transform: rotate(45deg);
    color: #FFD700;
}

/* Contact Section */
.contact {
    background-color: #050814;
    border-top: 1px solid var(--border-light);
}

.contact-layout {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 80px;
    align-items: center;
}

.contact-info p {
    font-size: 1.125rem;
    color: var(--text-regular);
    margin-bottom: 40px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 20px;
}

.method-icon {
    font-size: 1.5rem;
    background-color: rgba(255, 159, 28, 0.08);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    border: 1px solid rgba(255, 159, 28, 0.15);
    color: var(--primary-main);
}

.method-details span {
    display: block;
    font-size: 0.8125rem;
    color: var(--text-dim);
    font-weight: 500;
}

.method-details a {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-strong);
    font-family: var(--font-h);
}

.method-details a:hover {
    color: var(--primary-main);
}

.contact-form-wrapper {
    background-color: var(--bg-card);
    padding: 48px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-glass);
    box-shadow: var(--shadow-float);
    backdrop-filter: blur(12px);
    position: relative;
}

.contact-form-wrapper.form-glow {
    border-color: rgba(255, 159, 28, 0.25);
    box-shadow: var(--shadow-glow);
}

.form-title-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-main), #FFD700);
    color: #030712;
    padding: 6px 16px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 12px rgba(255, 159, 28, 0.3);
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--text-strong);
}

.form-group input, 
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background-color: rgba(3, 7, 18, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--text-strong);
    transition: var(--transition);
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FF9F1C' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 16px;
    padding-right: 48px;
    cursor: pointer;
}

.form-group select option {
    background-color: #0B1120;
    color: var(--text-strong);
}

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

.form-group input:focus, 
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-main);
    background-color: rgba(3, 7, 18, 0.8);
    box-shadow: 0 0 0 3px rgba(255, 159, 28, 0.15);
}

/* Footer */
.footer {
    padding: 48px 0;
    background-color: #030712;
    border-top: 1px solid var(--border-light);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.footer-links a {
    color: var(--text-dim);
    font-size: 0.875rem;
}

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

/* Mobile Nav Toggle */
.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1100;
}

.mobile-nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text-strong);
    transition: var(--transition);
    border-radius: 2px;
}

/* Mobile Responsive Adjustments */
@media (max-width: 992px) {
    .about-grid, .contact-layout, .compare-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .nav-links {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(3, 7, 18, 0.95);
        backdrop-filter: blur(20px);
        padding: 120px 40px 40px 40px;
        z-index: 1050;
        justify-content: flex-start;
        gap: 28px;
        border-bottom: none;
        box-shadow: none;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links li {
        width: 100%;
        text-align: center;
    }
    
    .nav-links a {
        font-size: 1.5rem;
        font-weight: 700;
    }
    
    .mobile-nav-toggle {
        display: flex;
    }
    
    .mobile-nav-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
        background-color: var(--primary-main);
    }
    
    .mobile-nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-nav-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
        background-color: var(--primary-main);
    }
    
    .logo {
        z-index: 1100;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: 24px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* Dynamic Interactive Mouse-spotlight Hover Glow */
.service-card, .portfolio-item, .blog-card, .compare-card, .testimonial-card, .contact-form-wrapper {
    position: relative;
    overflow: hidden;
}

.service-card::before,
.portfolio-item::before,
.blog-card::before,
.compare-card::before,
.testimonial-card::before,
.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(400px circle at var(--mouse-x, 0px) var(--mouse-y, 0px), rgba(255, 159, 28, 0.08), transparent 80%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
    border-radius: inherit;
    pointer-events: none;
}

.service-card:hover::before,
.portfolio-item:hover::before,
.blog-card:hover::before,
.compare-card:hover::before,
.testimonial-card:hover::before,
.contact-form-wrapper:hover::before {
    opacity: 1;
}
