/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@400;500&family=Inter:wght@300;400;500;600;700&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* CSS Variables & Theme - Premium Orange & White Theme */
:root {
    /* Colors - Premium Orange & White Palette */
    --bg-primary: #ffffff;
    /* Main Background - Pure White */
    --bg-secondary: #f8f7f2;
    /* Component Background - Warm Off-White */
    --bg-tertiary: #f0ede0;
    /* Hover/Active State - Light Cream */
    --bg-card: #ffffff;

    --text-primary: #1a1a1a;
    /* Primary Text - Near Black */
    --text-secondary: #4a4a4a;
    /* Secondary Text - Dark Gray */
    --text-tertiary: #7a7a7a;
    /* Tertiary Text - Medium Gray */

    --accent-primary: #ff822f;
    /* Premium Dark Orange */
    --accent-secondary: #28a745;
    /* Success Green */
    --accent-hover: #ff7423;
    /* Darker Orange Hover */
    --accent-glow: rgba(230, 111, 0, 0.25);

    --kcd-pink: #ff822f;
    --kcd-blue: #ff822f;
    --kcd-purple: #ff822f;

    --border-color: #e8e4d0;
    --border-hover: #dda67a;
    --glass-bg: rgba(255, 255, 255, 0.9);

    /* Typography */
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* Borders & Radius */
    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1.25rem;

    /* Transitions */
    --transition-fast: 0.15s ease-out;
    --transition-medium: 0.3s ease-out;

    /* Hero Animation Scale */
    --island-scale: 3.5;
    --post-content-width: 1000px;
}

/* Base Reset */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

h1 {
    font-size: clamp(1.5rem, 8vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 6vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -0.01em;
}

h3 {
    font-size: clamp(1.5rem, 4vw, 1.75rem);
    font-weight: 600;
}

p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-sm);
}



/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

@media (max-width: 640px) {
    .container {
        padding: 0 1.25rem;
    }
}

.text-center {
    text-align: center;
}

.max-800 {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.max-600 {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.mt-2 {
    margin-top: 2rem;
}

.mb-1 {
    margin-bottom: 1rem !important;
}

.mb-2 {
    margin-bottom: 1.5rem !important;
}

.mb-3 {
    margin-bottom: 2rem !important;
}

.mb-4 {
    margin-bottom: 3rem !important;
}

.mb-5 {
    margin-bottom: 4rem !important;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-fast);
    border: none;
    gap: 0.5rem;
}

.btn-primary {
    background: var(--accent-primary);
    color: #1a1a1a;
    box-shadow: 0 2px 4px rgba(255, 130, 47, 0.3);
    font-weight: 700;
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(255, 130, 47, 0.5);
}

.btn-secondary {
    background: var(--bg-secondary);
    border: 1.5px solid var(--border-color);
    color: var(--text-primary);
}

.btn-secondary:hover {
    background: var(--bg-tertiary);
    border-color: var(--accent-primary);
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* Sections - KCD Dark */
section {
    padding: var(--spacing-xl) 0;
    position: relative;
    background: transparent;
}

.section-padding {
    padding: var(--spacing-lg) 0;
}



/* Header / Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    padding: 1rem 0;
    transition: var(--transition-medium);
}


.header.scrolled {
    background: var(--bg-primary);
    /* Same as body color */
    padding: 0.6rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}



.header.dark-header:not(.scrolled) .nav-link {
    color: rgba(255, 255, 255, 0.85);
}

.header.dark-header:not(.scrolled) .nav-link:hover,
.header.dark-header:not(.scrolled) .nav-link.active {
    color: #ffffff;
}

.header.dark-header:not(.scrolled) .nav-link::after {
    background: #ffffff;
}

.header.dark-header:not(.scrolled) .mobile-menu-btn {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
}

/* Header variant for dark banners (White text) */
.header.dark-header:not(.scrolled) .logo-name {
    color: #ffffff !important;
}

.header.dark-header:not(.scrolled) .logo-type {
    color: rgba(255, 255, 255, 0.8) !important;
}


.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.logo img {
    height: 2rem;
    width: auto;
    margin-right: 0.5rem;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-name {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--accent-primary) !important;
    letter-spacing: -0.02em;
}

.logo-type {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-top: 2px;
}





.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-primary);
    transition: var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.25rem;
    color: var(--text-primary);
    background: rgba(0, 0, 0, 0.04);
    border: 1px solid var(--border-color);
    width: 38px;
    height: 38px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.mobile-menu-btn:hover {
    background: rgba(255, 130, 47, 0.12);
    border-color: var(--accent-primary);
}

.mobile-menu-btn:active {
    transform: scale(0.95);
}

/* Premium Freelancer Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 60px;
    /* Offset for header */
    background-color: #ffefe7;
    overflow: hidden;
    color: var(--text-primary);
}

/* Dynamic Ambient Background */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.gradient-sphere {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float-sphere 20s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
}

.sphere-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 130, 47, 0.35) 0%, transparent 70%);
    top: -10%;
    left: -10%;
    animation-delay: 0s;
}

.sphere-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 130, 47, 0.2) 0%, transparent 70%);
    bottom: -10%;
    right: -5%;
    animation-delay: -5s;
}

.noise-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
    opacity: 0.07;
    z-index: 1;
    pointer-events: none;
}

@keyframes float-sphere {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(50px, 50px) scale(1.1);
    }
}

/* Hero Container Layout */
.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Hero Content Side */
.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Status Badge */
.badge-status {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 130, 47, 0.1);
    border: 1px solid rgba(255, 130, 47, 0.3);
    border-radius: 2rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    backdrop-filter: blur(5px);
}

.status-dot {
    width: 8px;
    height: 8px;
    background-color: #28a745;
    border-radius: 50%;
    box-shadow: 0 0 0 2px rgba(40, 167, 69, 0.2);
    animation: status-pulse 2s infinite;
}

@keyframes status-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.4);
    }

    70% {
        box-shadow: 0 0 0 6px rgba(40, 167, 69, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
    }
}

.highlight-name {
    color: var(--text-primary);
}

/* Keep .text-gradient from utility classes or redefine here locally if needed */
/* (It exists in utilities below, but ensuring specificity) */
.hero-title .text-gradient {
    background: linear-gradient(90deg, #ff822f 0%, #e65c00 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 540px;
}

/* CTA Buttons */
.hero-cta-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 3.5rem;
}

/* Stats Bar */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    width: 100%;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-separator {
    width: 1px;
    height: 40px;
    background: rgba(0, 0, 0, 0.1);
}

/* Hero Visual / Profile Card Side */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 100%;
    min-height: 500px;
}

.profile-card-wrapper {
    position: relative;
    width: 320px;
    height: 420px;
    perspective: 1000px;
}

.profile-card {
    position: relative;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 130, 47, 0.2);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    box-shadow:
        0 25px 50px -12px rgba(0, 0, 0, 0.12),
        inset 0 0 0 1px rgba(255, 130, 47, 0.1);
    transform-style: preserve-3d;
    transition: transform 0.3s ease;
    z-index: 10;
}

.profile-card:hover {
    transform: translateY(-5px) rotateX(2deg) rotateY(2deg);
}

.profile-image-placeholder {
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, #ffedd6, #ffe0b0);
    border-radius: 50%;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: var(--accent-primary);
    border: 2px solid rgba(255, 130, 47, 0.3);
    box-shadow: 0 10px 25px rgba(255, 130, 47, 0.2);
}

.profile-info {
    text-align: center;
}

.profile-info h3 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    color: var(--text-primary);
}

.profile-info p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0;
}

/* Floating Tech Icons */
.floating-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: #ffffff;
    border: 1px solid rgba(255, 130, 47, 0.25);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--text-primary);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    z-index: 20;
    transition: transform 0.3s ease;
}

.floating-icon:hover {
    transform: scale(1.1);
    border-color: var(--accent-primary);
}

.icon-react {
    top: -20px;
    right: -30px;
    color: #61DAFB;
    animation: float-icon 4s ease-in-out infinite;
}

.icon-js {
    bottom: 80px;
    left: -40px;
    color: #ff822f;
    animation: float-icon 5s ease-in-out infinite 1s;
}

.icon-code {
    bottom: -30px;
    right: 20px;
    color: var(--kcd-pink);
    animation: float-icon 4.5s ease-in-out infinite 0.5s;
}

@keyframes float-icon {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Mobile Responsiveness for Hero */
@media (max-width: 968px) {
    .hero-container {
        grid-template-columns: 1fr;
        padding-top: 2rem;
        gap: 3rem;
        text-align: center;
    }

    .hero-content {
        align-items: center;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta-group {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        min-height: auto;
        padding-bottom: 2rem;
    }
}












/* Shared Components & Utilities (Restored) */

/* ══════════════════════════════════════════
   PREMIUM PAGE BANNERS — Inner Pages
   ══════════════════════════════════════════ */

/* Base Banner */
.page-banner {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 130px 0 70px;
    text-align: center;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.page-banner .banner-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.page-banner .banner-content {
    position: relative;
    z-index: 3;
}

.page-banner h1 {
    color: #ffffff;
    font-size: clamp(2.2rem, 6vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.page-banner p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.1rem;
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.7;
}

.banner-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 0.4rem 1.1rem;
    border-radius: 2rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.25rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.banner-breadcrumb a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: color 0.15s;
}

.banner-breadcrumb a:hover {
    color: #fff;
}

.banner-breadcrumb i {
    font-size: 0.6rem;
    opacity: 0.6;
}

/* Bottom fade for seamless blend into page */
.banner-bottom-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 90px;
    background: linear-gradient(to bottom, transparent, var(--bg-primary));
    z-index: 2;
    pointer-events: none;
}

/* ── SERVICES BANNER ── */
.banner-services {
    background-image: url('https://images.unsplash.com/photo-1467232004584-a241de8bcf5d?w=1600&q=80&auto=format&fit=crop');
}

.banner-services .banner-overlay {
    background: linear-gradient(135deg,
            rgba(10, 15, 30, 0.88) 0%,
            rgba(13, 27, 42, 0.82) 50%,
            rgba(17, 34, 64, 0.88) 100%);
}

/* ── PORTFOLIO BANNER ── */
.banner-portfolio {
    background-image: url('https://images.unsplash.com/photo-1545670723-196ed0954986?w=1600&q=80&auto=format&fit=crop');
}

.banner-portfolio .banner-overlay {
    background: linear-gradient(135deg,
            rgba(15, 23, 42, 0.9) 0%,
            rgba(30, 41, 59, 0.85) 50%,
            rgba(15, 23, 42, 0.9) 100%);
}

/* ── ABOUT BANNER ── */
.banner-about {
    background-image: url('https://images.unsplash.com/photo-1499750310107-5fef28a66643?w=1600&q=80&auto=format&fit=crop');
}

.banner-about .banner-overlay {
    background: linear-gradient(135deg,
            rgba(5, 8, 15, 0.88) 0%,
            rgba(11, 26, 16, 0.82) 50%,
            rgba(10, 22, 40, 0.88) 100%);
}

/* ── BLOG BANNER ── */
.banner-blog {
    /* Sharp coding workspace image */
    background-image: url('https://images.unsplash.com/photo-1498050108023-c5249f4df085?w=1600&q=80&auto=format&fit=crop');
}

.banner-blog .banner-overlay {
    background: linear-gradient(135deg,
            rgba(15, 23, 42, 0.85) 0%,
            rgba(30, 41, 59, 0.80) 50%,
            rgba(15, 23, 42, 0.85) 100%);
}


/* Blog search/filter inside banner — dark mode fix */
.banner-blog .blog-controls {
    margin-top: 2rem;
    position: relative;
    z-index: 4;
}

/* Responsive */
@media (max-width: 768px) {
    .page-banner {
        min-height: 320px;
        padding: 110px 1.5rem 55px;
    }

    .page-banner h1 {
        font-size: clamp(1.9rem, 7vw, 2.6rem);
    }

    .page-banner p {
        font-size: 1rem;
    }
}


/* ── RESOURCES BANNER ── */
.banner-resources {
    background-image: url('https://images.unsplash.com/photo-1456513080510-7bf3a84b82f8?w=1600&q=80&auto=format&fit=crop');
}

.banner-resources .banner-overlay {
    background: linear-gradient(135deg,
            rgba(10, 18, 35, 0.9) 0%,
            rgba(15, 28, 52, 0.85) 50%,
            rgba(8, 20, 40, 0.9) 100%);
}

/* ── PRIVACY POLICY BANNER ── */
.banner-privacy {
    background-image: url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?w=1600&q=80&auto=format&fit=crop');
}

.banner-privacy .banner-overlay {
    background: linear-gradient(135deg,
            rgba(8, 12, 20, 0.9) 0%,
            rgba(15, 20, 35, 0.85) 50%,
            rgba(10, 15, 30, 0.9) 100%);
}

/* Legacy page-header (not used on inner pages anymore) */
.page-header {
    padding-top: 10rem;
    padding-bottom: 5rem;
    text-align: center;
    background: linear-gradient(to bottom, var(--bg-secondary), var(--bg-primary));
    border-bottom: 1px solid var(--border-color);
}

/* Filter buttons inside dark banner (Resources page) */
.banner-filter-group {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin-top: 1.75rem;
    position: relative;
    z-index: 4;
}

.banner-filter-group .filter-btn {
    padding: 0.45rem 1.2rem;
    border-radius: 2rem;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.25);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-fast);
    font-family: inherit;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.banner-filter-group .filter-btn:hover,
.banner-filter-group .filter-btn.active {
    background: var(--accent-primary);
    color: #1a1a1a;
    border-color: var(--accent-primary);
}



.text-gradient {
    background: linear-gradient(135deg, #e6b800, #cc7700);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.availability-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(40, 167, 69, 0.2);
}

.dot {
    width: 8px;
    height: 8px;
    background: #28a745;
    border-radius: 50%;
    display: inline-block;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(40, 167, 69, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
    }
}

/* Grid Layouts */
.grid-2,
.grid-3,
.grid-4 {
    display: grid;
    gap: var(--spacing-md);
    width: 100%;
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* Cards - KCD Style */
.card {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    transition: var(--transition-medium);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-3px);
    border-color: var(--border-hover);
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.5);
}

.glass-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 130, 47, 0.2);
}

/* Services Styles */
.service-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: rgba(255, 130, 47, 0.12);
    color: var(--accent-primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: var(--spacing-md);
}

.service-btn {
    margin-top: var(--spacing-sm);
    align-self: flex-start;
    color: var(--accent-primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.service-btn:hover {
    gap: 0.5rem;
}

/* Portfolio Styles */
.project-card .project-image {
    background: var(--bg-tertiary);
    height: 250px;
    border-radius: var(--radius-sm);
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}

/* Section Header Utilities */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-lg);
}

.section-subtitle {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(255, 130, 47, 0.12);
    color: #cc5500;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Simple Footer Style - Slim Version */
footer {
    padding: 1.5rem 0;
    /* Reduced from 3rem */
    margin-top: var(--spacing-lg);
    /* Reduced margin top */
    border-top: 1px solid var(--border-color);
    background: var(--bg-primary);
}

.footer-simple {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 1rem;
}

.footer-links-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-copyright {
    color: var(--text-tertiary);
    font-size: 0.85rem;
    margin-bottom: 0;
}

.footer-link {
    font-size: 0.85rem;
    color: var(--text-tertiary);
    font-weight: 500;
    transition: var(--transition-fast);
}

.footer-link:hover {
    color: var(--accent-primary);
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-1 {
    margin-top: 1rem;
}

.mt-2 {
    margin-top: 2rem;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.max-600 {
    max-width: 600px;
    margin: 0 auto;
}

.step-number {
    width: 3.5rem;
    height: 3.5rem;
    background: var(--bg-tertiary);
    color: var(--text-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-weight: 700;
    font-size: 1.25rem;
    border: 2px solid var(--border-color);
    transition: var(--transition-fast);
}

.step-number.active {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    box-shadow: 0 0 20px -5px var(--accent-glow);
}

/* Transitions & Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Blog & Search Restored */
.search-container {
    position: relative;
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.search-input {
    width: 100%;
    padding: 1rem 1.5rem 1rem 3.5rem;
    border-radius: 3rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    font-family: inherit;
    transition: var(--transition-fast);
}

.search-input:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 4px var(--accent-glow);
}

.search-icon {
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-tertiary);
}

.filter-group {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: 0.6rem 1.5rem;
    border-radius: 2rem;
    background: var(--bg-secondary);
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--accent-primary);
    color: white;
    border-color: var(--accent-primary);
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--text-tertiary);
    margin-bottom: 0.75rem;
}

.post-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--bg-primary);
    padding: 0.3rem 0.8rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent-primary);
}

/* Newsletter & Forms Restored */
.newsletter-form {
    display: flex;
    gap: 0.75rem;
    max-width: 500px;
    margin: 2rem auto 0;
}

@media (max-width: 500px) {
    .newsletter-form {
        flex-direction: column;
    }
}

/* Contact Form Restored */
/* Contact Page New Layout */
.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
    align-items: center;
    /* Center vertically for better balance */
}

.contact-content-left {
    padding-right: 2rem;
}

.contact-header .hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
    line-height: 1.1;
}

.contact-header .section-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 90%;
}

.info-label {
    display: block;
    color: var(--accent-primary);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.info-description {
    font-size: 0.9rem;
    color: var(--text-tertiary);
}

.info-value-link {
    display: inline-block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
    transition: var(--transition-fast);
    text-decoration: none;
    border-bottom: 2px solid transparent;
}

.info-value-link:hover {
    color: var(--accent-primary);
    border-bottom-color: var(--accent-primary);
}

.contact-socials {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.contact-socials .social-icon {
    font-size: 1.5rem;
    color: var(--text-secondary);
    transition: var(--transition-fast);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
}

.contact-socials .social-icon:hover {
    color: #1a1a1a;
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    transform: translateY(-3px);
}

.contact-form {
    padding: 3rem !important;
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.08);
}

.grid-2-sm {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 1rem;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: var(--font-body);
    transition: var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    background: var(--bg-secondary);
    box-shadow: 0 0 0 4px var(--accent-glow);
}

/* Products & Pricing Restored */
.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.product-type {
    color: var(--accent-primary);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.price-tag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.price-old {
    text-decoration: line-through;
    color: var(--text-tertiary);
    font-size: 0.9rem;
}

.price-new {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--text-primary);
}

.badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--bg-tertiary);
    color: var(--text-primary);
    padding: 0.25rem 0.6rem;
    border-radius: 0.25rem;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.05em;
}

/* About Page Specifics Restored */
.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    text-align: center;
    margin-top: 2rem;
}

.stat-item h4 {
    color: var(--accent-primary);
    font-size: clamp(1.5rem, 5vw, 2.5rem);
    margin-bottom: 0;
}

.stat-item span {
    font-size: 0.85rem;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}



/* Hosting Featured Section */
.hosting-featured {
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary));
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
}

.hosting-content {
    flex: 1;
    text-align: left;
}

.hosting-content h3 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}

.hosting-content p {
    color: var(--text-secondary);
    max-width: 550px;
}

.hosting-action {
    flex-shrink: 0;
}

/* --- CONSOLIDATED RESPONSIVE SYSTEM --- */







@media (max-width: 1024px) {

    /* Navigation */
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--bg-primary);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 2rem;
        gap: 2rem;
        z-index: 2000;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        box-shadow: inset 0 0 0 1px var(--border-color);
    }

    .nav-links.active {
        display: flex;
        opacity: 1;
        visibility: visible;
    }

    /* Fix: Ensure links are visible on white background when mobile menu is open */
    .header.menu-open .nav-link {
        color: var(--text-primary) !important;
        font-size: 1.5rem;
        font-weight: 700;
    }

    /* Fix: Ensure mobile button remains visible (dark) when menu is open */
    .header.menu-open .mobile-menu-btn {
        color: var(--text-primary) !important;
        border-color: var(--border-color) !important;
        background: rgba(0, 0, 0, 0.05) !important;
    }



    .mobile-menu-btn {
        display: flex;
        position: relative;
        z-index: 2100;
    }

    /* Grids */
    .grid-3,
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-content-left {
        padding-right: 0;
        text-align: center;
    }

    .contact-header .section-desc {
        margin: 0 auto 2rem;
    }

    .contact-socials {
        justify-content: center;
    }

    .grid-2-sm {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    /* Hero */
    .hero {
        height: auto;
        padding-top: 120px;
        padding-bottom: 60px;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }

    .hero-content {
        order: 2;
        width: 100%;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .devland-visual {
        order: 1;
        width: 100%;
        min-height: 250px;
    }

    /* Page Specifics */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hosting-featured {
        flex-direction: column;
        text-align: center;
        padding: 2.5rem 2rem;
    }
}

@media (max-width: 768px) {
    .header-actions .btn-sm {
        display: none;
    }

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    /* Footer Responsive */
    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
        padding: 4rem var(--spacing-md);
    }

    .footer-left,
    .footer-right {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-nav {
        flex-direction: column;
        gap: 1rem;
    }

    /* Components */
    .info-card {
        position: static;
        padding: 2rem;
    }

    .contact-form {
        padding: 2.5rem !important;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.25rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-cta-group {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    h1 {
        font-size: 2rem;
    }

    .page-header {
        padding-top: 8rem;
        padding-bottom: 3rem;
    }
}

/* Locations Section */
.locations-section {
    background: var(--bg-primary);
    border-top: 1px solid var(--border-color);
}

.locations-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.location-tag {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: var(--bg-tertiary);
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    border-radius: 2rem;
    font-size: 0.9rem;
    transition: var(--transition-medium);
    font-weight: 500;
}

.location-tag:hover {
    background: var(--bg-tertiary);
    color: #cc5500;
    border-color: var(--accent-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 130, 47, 0.2);
}

/* Legacy Compatibility for City Pages */
.kcd-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.mesh-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float-sphere 20s infinite alternate;
}

.blob-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 130, 47, 0.3) 0%, transparent 70%);
    top: -10%;
    right: -10%;
}

.blob-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 130, 47, 0.2) 0%, transparent 70%);
    bottom: -10%;
    left: -10%;
}

.blob-3 {
    display: none;
}

.devland-hero {
    background-color: var(--bg-primary);
}

.magic-text {
    background: linear-gradient(90deg, #e6b800 0%, #cc7700 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.btn-magic {
    background: var(--accent-primary);
    color: #1a1a1a;
    font-weight: 700;
    padding: 0.875rem 2rem;
    border-radius: var(--radius-sm);
    font-size: 1.125rem;
    transition: all 0.2s ease;
    box-shadow: 0 4px 15px rgba(255, 130, 47, 0.35);
    border: 1px solid transparent;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-magic:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 130, 47, 0.5);
}

.btn-glass {
    background: #ffffff;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1.125rem;
    padding: 0.875rem 2rem;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
}

.btn-glass:hover {
    border-color: var(--accent-primary);
    background: rgba(255, 130, 47, 0.04);
}

/* Ensure Lottie is centered */
.devland-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

/* =========================================
   KCD-INSPIRED VISUAL HERO SECTION
   ========================================= */

/* Update Body Background for Deep Dark Theme on Home */
body.home-page {
    background-color: #ffffff;
}

.ultra-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    overflow: hidden;
    padding-top: 80px;
    padding-bottom: 80px;
}

/* 1. Dynamic Background - Subtle & Deep */
.tech-grid-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 15% 50%, rgba(255, 130, 47, 0.12), transparent 30%),
        radial-gradient(circle at 85% 30%, rgba(255, 130, 47, 0.08), transparent 30%);
    z-index: 0;
}

/* Organic blobs for background movement */
.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
    opacity: 0.4;
    mix-blend-mode: screen;
}

.orb-1 {
    width: 60vh;
    height: 60vh;
    background: rgba(255, 130, 47, 0.4);
    /* Dark Orange */
    top: -10%;
    right: -10%;
    animation: float-slow 15s infinite alternate ease-in-out;
    mix-blend-mode: multiply;
}

.orb-2 {
    width: 50vh;
    height: 50vh;
    background: rgba(255, 130, 47, 0.25);
    /* Softer Orange */
    bottom: -10%;
    left: -10%;
    animation: float-slow 20s infinite alternate-reverse ease-in-out;
    mix-blend-mode: multiply;
}

@keyframes float-slow {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(20px, 40px) scale(1.05);
    }
}

/* 2. Hero Layout - Two Column Image Focus */
.ultra-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    width: 100%;
    padding: 0 2rem;
    position: relative;
    z-index: 10;
}

/* LEFT: Minimal Text Content */
.hero-text-side {
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pixel-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    color: #9a7000;
    /* Deep Golden */
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.pixel-dot {
    width: 8px;
    height: 8px;
    background-color: #ff822f;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 130, 47, 0.6);
}

.ultra-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.highlight-text {
    background: linear-gradient(135deg, #e6b800 0%, #cc7700 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ultra-desc {
    font-family: var(--font-heading);
    font-size: clamp(1.55rem, 2.8vw, 2.4rem);
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: -0.015em;
    color: #1a1a1a;
    margin-bottom: 2.5rem;
    max-width: 520px;
    padding-left: 1.25rem;
    border-left: 4px solid #ff822f;
    padding-top: 0.4rem;
    padding-bottom: 0.4rem;
}

/* Hero Service Tags - Premium Pills */
.hero-services-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 2.5rem;
    max-width: 520px;
}

.service-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.45rem 1rem;
    background: rgba(255, 130, 47, 0.08);
    border: 1.5px solid rgba(255, 130, 47, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #8b3a00;
    transition: all 0.25s ease;
    text-decoration: none;
    letter-spacing: 0.01em;
}

.service-tag:hover {
    background: #ff822f;
    color: #1a1a1a;
    border-color: #ff822f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 130, 47, 0.35);
}

.ultra-actions {
    display: flex;
    gap: 1rem;
}

.btn-neon {
    background: #ff822f;
    color: #1a1a1a;
    padding: 1rem 2.2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    box-shadow: 0 4px 20px rgba(255, 130, 47, 0.4);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    cursor: pointer;
}

.btn-neon i {
    transition: transform 0.3s ease;
}

.btn-neon:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 10px 30px rgba(255, 130, 47, 0.5);
    background: #ff7423;
}

.btn-neon:hover i {
    transform: translateX(5px);
}

.btn-minimal {
    padding: 0.875rem 2rem;
    color: #4a4a4a;
    font-weight: 500;
    border: 1.5px solid rgba(0, 0, 0, 0.15);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-minimal:hover {
    border-color: #ff822f;
    background: rgba(255, 130, 47, 0.06);
    color: #1a1a1a;
}

/* RIGHT: Hero Image / Animation Focus */
.hero-visual-side {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    min-height: 500px;
}

/* The Main Visual "Island" */
.visual-island {
    position: relative;
    width: 100%;
    max-width: 720px;
    height: auto;
    min-height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ... (skip unchanged .hero-image-container) ... */

/* Anime Style Scale Up */
.hero-lottie-player.anime-style,
.hero-image.anime-style {
    transform: scale(1.9) translateY(40px);
    /* Ultra Massive scale */
    filter: drop-shadow(0 40px 60px rgba(255, 130, 47, 0.4));
    /* Orange glow */
}

/* Placeholder for 3D Illustration or Image */
.hero-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    background: transparent;
    border: none;
    box-shadow: none;
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
    /* Center illustration nicely */
    padding: 1rem;
}

/* Illustration Glow Effect */
.hero-image-container::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 30%;
    background: radial-gradient(ellipse at center, rgba(255, 130, 47, 0.2), transparent 70%);
    filter: blur(30px);
    z-index: -1;
    border-radius: 50%;
}



/* Hero Illustration Image */
.hero-lottie-player,
.hero-image {
    width: 110% !important;
    height: auto !important;
    max-height: 680px;
    object-fit: contain;
    mix-blend-mode: multiply;
    transform: scale(1.15);
    transform-origin: center center;
    transition: transform 0.5s ease;
    animation: hero-float 6s ease-in-out infinite;
    filter: drop-shadow(0 30px 50px rgba(255, 130, 47, 0.25));
}

.hero-image:hover {
    transform: scale(1.18) translateY(-5px);
}

@keyframes hero-float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }
}

/* Anime Style Scale Up */
.hero-lottie-player.anime-style,
.hero-image.anime-style {
    transform: scale(1.6) translateY(30px);
    /* Adjusted scale for shorter banner */
    filter: drop-shadow(0 40px 70px rgba(230, 184, 0, 0.5));
    /* Golden glow */
}

/* =========================================
   NEW SECTIONS: About, Skills, Services, etc.
   ========================================= */

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    display: block;
}

.section-desc {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.section-subtitle {
    font-size: 0.875rem;
    color: #9a9a9a;
    opacity: 0.6;
    margin: 0 auto 2rem auto;
    max-width: 700px;
    display: block;
}

/* About Section */
.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Stats Card */
.about-stats-card {
    background: #ffffff;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    box-shadow: 0 8px 30px rgba(230, 184, 0, 0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Top golden accent line */
.about-stats-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-primary), transparent);
}

.stats-numbers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

/* Vertical separator between stats */
.stat-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
}

.stat-block:not(:last-child) {
    border-right: 1px solid var(--border-color);
}

/* Number + sign on same line */
.stat-value {
    display: flex;
    align-items: flex-start;
    line-height: 1;
}

.stat-num {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--accent-primary);
    line-height: 1;
}

.stat-suffix {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--accent-primary);
    line-height: 1;
    margin-top: 4px;
}

.stat-label {
    font-size: 0.78rem;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
}


/* keep this stub so old references don't break */
.about-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-primary);
    margin-bottom: 1rem;
}

/* Checklist Highlights */
.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin: 1.75rem 0;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.highlight-item i {
    color: var(--accent-primary);
    font-size: 1rem;
    flex-shrink: 0;
}

/* === Premium Stats Card === */
.about-stats-card {
    background: #ffffff;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow:
        0 20px 50px -10px rgba(230, 184, 0, 0.12),
        0 4px 12px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-stats-card:hover {
    transform: translateY(-4px);
    box-shadow:
        0 30px 60px -10px rgba(230, 184, 0, 0.18),
        0 4px 16px rgba(0, 0, 0, 0.08);
}

/* Subtle golden shimmer top border */
.about-stats-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-primary), #cc7700, var(--accent-primary));
    background-size: 200% 100%;
    animation: shimmer-border 3s ease infinite;
}

@keyframes shimmer-border {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* Card Header */
.stats-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0;
}

.stats-avatar {
    width: 52px;
    height: 52px;
    min-width: 52px;
    background: linear-gradient(135deg, rgba(230, 184, 0, 0.15), rgba(230, 184, 0, 0.05));
    border: 1.5px solid rgba(230, 184, 0, 0.3);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent-primary);
}

.stats-card-header h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.15rem;
    color: var(--text-primary);
}

.stats-card-header p {
    font-size: 0.82rem;
    color: var(--text-tertiary);
    margin: 0;
}

.stats-status-badge {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
    border: 1px solid rgba(40, 167, 69, 0.25);
    padding: 0.3rem 0.75rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
}

.live-dot {
    width: 7px;
    height: 7px;
    background: #28a745;
    border-radius: 50%;
    display: inline-block;
    animation: pulse 2s infinite;
}

/* Divider */
.stats-divider {
    height: 1px;
    background: var(--border-color);
    margin: 1.5rem 0;
}

/* Numbers Grid */
.stats-numbers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    text-align: center;
}

.stat-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.stat-num {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-primary);
    line-height: 1;
}

.stat-num-plus {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-primary);
    line-height: 1;
    margin-left: -2px;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

/* Services List */
.stats-services-list {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.stats-service-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.65rem 0.85rem;
    background: var(--bg-secondary);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: background 0.2s ease;
}

.stats-service-row:hover {
    background: var(--bg-tertiary);
}

.stats-service-row span:first-child {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.service-tag-badge {
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.2rem 0.65rem;
    background: rgba(230, 184, 0, 0.1);
    color: #9a7000;
    border: 1px solid rgba(230, 184, 0, 0.25);
    border-radius: 50px;
    letter-spacing: 0.02em;
}



.code-header {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red {
    background: #ff5f56;
}

.dot.yellow {
    background: #ff822f;
}

.dot.green {
    background: #27c93f;
}

.code-content pre {
    color: #f8f8f2;
    font-size: 0.95rem;
    line-height: 1.6;
    overflow-x: auto;
}

.keyword {
    color: #ff79c6;
}

/* pink */
.var {
    color: #f8f8f2;
}

.key {
    color: #8be9fd;
}

/* cyan */
.string {
    color: #ff822f;
}

/* yellow */
.bool {
    color: #bd93f9;
}

/* purple */

/* Skills Section - Infinite Marquee */
.bg-secondary {
    background-color: var(--bg-secondary);
}

/* Wrapper: overflow hidden, add padding */
.skills-marquee-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 2.5rem 0 1rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

/* Fade overlay on left & right edges */
.marquee-fade-left,
.marquee-fade-right {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 160px;
    z-index: 5;
    pointer-events: none;
}

.marquee-fade-left {
    left: 0;
    background: linear-gradient(to right, var(--bg-secondary) 0%, transparent 100%);
}

.marquee-fade-right {
    right: 0;
    background: linear-gradient(to left, var(--bg-secondary) 0%, transparent 100%);
}

/* Each scrolling row */
.skills-track {
    width: 100%;
    overflow: hidden;
}

.skills-track-inner {
    display: flex;
    width: max-content;
    gap: 1rem;
    animation: scroll-left 35s linear infinite;
}

.skills-track-inner.reverse {
    animation: scroll-right 38s linear infinite;
}

/* Pause on hover */
.skills-track:hover .skills-track-inner {
    animation-play-state: paused;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes scroll-right {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

/* Individual Skill Pill */
.skill-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.65rem 1.4rem;
    background: #ffffff;
    border: 1.5px solid var(--border-color);
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
    cursor: default;
    font-family: var(--font-body);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.skill-pill:hover {
    border-color: var(--accent-primary);
    box-shadow: 0 4px 16px rgba(230, 184, 0, 0.2);
    transform: translateY(-2px);
}

.skill-pill i {
    font-size: 1.15rem;
    flex-shrink: 0;
}


/* Services Section */
.services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
    gap: 1rem;
}

.services-list-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

/* Each card */
.service-list-card {
    position: relative;
    padding: 2rem 5rem 2rem 1.75rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    background: #fff;
    transition: all 0.25s ease;
    overflow: hidden;
    height: 100%;
    box-sizing: border-box;
}

.service-list-card:hover {
    background: #fff;
    border-color: var(--accent-primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Yellow left accent on hover */
.service-list-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 3px;
    background: var(--accent-primary);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.3s ease;
}

.service-list-card:hover::before {
    transform: scaleY(1);
}

/* Number */
.service-num {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent-primary);
    letter-spacing: 0.08em;
    opacity: 0.7;
}

/* Body */
.service-list-body h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.4rem;
}

.service-list-body p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin: 0;
}

/* Icon top-right (ghost watermark) */
.service-list-icon {
    position: absolute;
    top: 1.5rem;
    right: 1.25rem;
    font-size: 3rem;
    color: var(--accent-primary);
    transition: all 0.3s ease;
    opacity: 0.12;
    z-index: 0;
    pointer-events: none;
}

.service-list-card:hover .service-list-icon {
    opacity: 0.35;
    transform: scale(1.1) rotate(-8deg);
}

/* Mobile Responsive Services */
@media (max-width: 768px) {
    .services-list-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-list-card {
        padding: 2rem 4.5rem 2rem 1.75rem;
    }

    .service-list-icon {
        font-size: 2.5rem;
        opacity: 0.12;
    }
}



/* Why Choose Me - Clean & Compact */
.why-choose-me-section {
    position: relative;
    padding: 5rem 0;
    /* Slightly more padding for the image look */
    background-image: url('https://images.unsplash.com/photo-1517694712202-14dd9538aa97?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Added parallax effect */
    overflow: hidden;
}

.relative-z {
    position: relative;
    z-index: 2;
}

/* Darker Gradient Overlay for Text Visibility */
.why-bg-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.92) 0%, rgba(30, 41, 59, 0.88) 100%);
}

.why-bg-overlay::before {
    display: none;
    /* Remove grid pattern for cleanliness */
}

/* Grid Layout */
.why-choose-me-section .section-title {
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.why-choose-me-section .section-subtitle {
    color: #94a3b8;
    margin-bottom: 0;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 0;
    /* Remove bottom margin */
}

/* Minimal Cards - No Heavy Borders */
.why-card {
    background: transparent;
    border: none;
    padding: 0;
    text-align: left;
    transition: transform 0.2s ease;
}

.why-card:hover {
    transform: translateY(-5px);
    background: transparent;
    box-shadow: none;
    border-color: transparent;
}

.why-card::after {
    display: none;
    /* Remove glow effect */
}

/* Icon Box - Clean & Small */
.why-icon-box {
    width: 42px;
    height: 42px;
    background: rgba(230, 184, 0, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--accent-primary);
    transition: all 0.2s ease;
}

.why-card:hover .why-icon-box {
    background: var(--accent-primary);
    color: #1a1a1a;
    transform: rotate(-10deg);
}

.why-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
    font-family: var(--font-heading);
    letter-spacing: -0.01em;
}

.why-card p {
    font-size: 0.92rem;
    color: #cbd5e1;
    line-height: 1.6;
    margin: 0;
    opacity: 0.9;
}

/* Trust Bar Removed */
.why-trust-bar,
.trust-item,
.trust-divider {
    display: none;
}

/* Tablet Responsive */
@media (max-width: 992px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .why-choose-me-section {
        padding: 3rem 0;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2rem;
    }
}

/* Reviews - Google Card Style */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.review-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: all 0.25s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-primary);
}

/* Header: Avatar + Name + Google Icon */
.review-header {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

/* Colored circle with initials */
.review-avatar {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    font-family: var(--font-heading);
}

.review-meta {
    flex: 1;
}

.review-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 0.1rem;
    font-family: var(--font-heading);
}

.review-role {
    font-size: 0.8rem;
    color: var(--text-tertiary);
}

/* Google 'G' logo top-right */
.review-google-icon {
    margin-left: auto;
    opacity: 0.85;
}

/* Star Rating */
.review-stars {
    display: flex;
    gap: 2px;
}

.review-stars i {
    color: #FBBC05;
    font-size: 0.85rem;
}

/* Review text */
.review-text {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
    font-style: italic;
}

/* Responsive */
@media (max-width: 992px) {
    .reviews-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

/* FAQ */
.max-800 {
    max-width: 800px;
    margin: 0 auto;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 3rem;
}

.faq-list h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.faq-list p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

.faq-item {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 2rem 2rem 2rem 2rem;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: var(--bg-secondary);
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    padding-bottom: 2rem;
    max-height: 500px;
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--accent-primary);
    font-size: 1.2rem;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Final CTA Section */
.cta-section {
    background: var(--bg-primary);
    border-top: 1px solid var(--border-color);
}

.cta-card {
    position: relative;
    background: #ffffff;
    padding: var(--spacing-lg) var(--spacing-md);
    border-radius: var(--radius-lg);
    text-align: center;
    color: #1a1a1a;
    overflow: hidden;
    border: 1px solid rgba(230, 184, 0, 0.2);
    box-shadow:
        0 20px 50px -12px rgba(230, 184, 0, 0.25),
        0 0 0 1px rgba(230, 184, 0, 0.1);
    isolation: isolate;
}

/* Abstract Network Background Pattern */
.cta-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 15% 50%, rgba(230, 184, 0, 0.08) 0%, transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(230, 184, 0, 0.05) 0%, transparent 25%),
        linear-gradient(rgba(230, 184, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(230, 184, 0, 0.03) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 40px 40px, 40px 40px;
    z-index: -2;
    mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
}

/* Glow Effect */
.cta-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(230, 184, 0, 0.05) 0%, transparent 60%);
    animation: rotate-glow 20s linear infinite;
    z-index: -1;
}

@keyframes rotate-glow {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.cta-card h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}

.cta-card p {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-card .btn-neon {
    background: #ff822f;
    color: #1a1a1a;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    box-shadow: 0 10px 25px rgba(255, 130, 47, 0.3);
}

.cta-card .btn-neon:hover {
    background: #ff7423;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 130, 47, 0.4);
}

/* Scroll Reveal Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Animation Delays */
.skill-card:nth-child(1) {
    transition-delay: 0.1s;
}

.skill-card:nth-child(2) {
    transition-delay: 0.2s;
}

.skill-card:nth-child(3) {
    transition-delay: 0.3s;
}

.skill-card:nth-child(4) {
    transition-delay: 0.4s;
}

.skill-card:nth-child(5) {
    transition-delay: 0.5s;
}

.skill-card:nth-child(6) {
    transition-delay: 0.6s;
}

/* Responsive */
@media (max-width: 992px) {
    .ultra-content-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
        height: 100%;
        align-content: center;
    }

    /* Image pehle (upar), text baad mein (neeche) */
    .hero-visual-side {
        order: 1;
        min-height: unset;
    }

    .visual-island {
        min-height: unset;
        max-width: 100%;
    }

    .hero-image-container {
        padding: 0;
    }

    .hero-text-side {
        order: 2;
        align-items: center;
    }

    .ultra-actions {
        justify-content: center;
    }

    .ultra-desc {
        border-left: none;
        border-top: 4px solid #ff822f;
        padding-left: 0;
        padding-top: 1rem;
        text-align: center;
        max-width: 100%;
    }

    /* New Sections Responsive */
    .about-wrapper,
    .why-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .about-highlights {
        grid-template-columns: 1fr;
        text-align: left;
        max-width: 360px;
        margin-left: auto;
        margin-right: auto;
    }

    .stats-numbers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    .stats-card-header {
        flex-wrap: wrap;
    }

    .about-text,
    .why-text {
        order: 1;
    }

    .about-visual,
    .why-visual {
        order: 2;
    }

    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-list-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-header {
        flex-direction: column;
        align-items: flex-start;
    }

    /* .testimonials-grid styles removed for optimization */

    .section-title {
        font-size: 2rem;
    }

    .cta-card {
        padding: 3rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .services-list-grid {
        grid-template-columns: 1fr;
    }

    .ultra-hero {
        min-height: 100svh;
        padding-top: 56px;
        padding-bottom: 0;
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        align-items: center;
    }

    .ultra-content-wrapper {
        padding: 0 1.25rem;
        gap: 0.75rem;
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .hero-visual-side {
        min-height: unset;
    }

    .hero-image {
        max-height: 380px;
        transform: scale(1.2) translateY(0px);
        transform-origin: center center;
    }

    .ultra-desc {
        font-size: 1.25rem;
        line-height: 1.4;
        margin-bottom: 1.5rem;
        padding-top: 0.75rem;
    }

    .ultra-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn-neon,
    .btn-minimal {
        width: 100%;
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}

/* Floating Contact Buttons */
.floating-contact-buttons {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 1000;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.75rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.float-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    color: #fff;
}

/* WhatsApp Green */
.whatsapp-btn {
    background: #25d366;
}

/* Call Blue */
.call-btn {
    background: #007bff;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .floating-contact-buttons {
        bottom: 1.5rem;
        right: 1.5rem;
        gap: 0.8rem;
    }

    .float-btn {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }
}

/* === Extracted from services.html === */


/* ── Services Page Specific Styles ── */

/* Category Pills / Filter Tabs */
.services-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 3rem;
}

.tab-btn {
    padding: 0.5rem 1.2rem;
    border-radius: 2rem;
    background: var(--bg-secondary);
    border: 1.5px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--font-body);
    transition: var(--transition-fast);
}

.tab-btn:hover,
.tab-btn.active {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    color: #1a1a1a;
    box-shadow: 0 4px 12px rgba(230, 184, 0, 0.25);
    transform: translateY(-1px);
}

/* Override global scroll-reveal — show all cards immediately on this page */
.srv-card.fade-in,
.srv-grid.fade-in,
.category-label.fade-in,
section.fade-in {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
}

.srv-card.fade-in.visible,
.srv-grid.fade-in.visible,
section.fade-in.visible {
    opacity: 1 !important;
    transform: none !important;
}

/* Service Category Label */
.category-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    margin-top: 3rem;
}

.category-label:first-of-type {
    margin-top: 0;
}

.category-label h2 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0;
    color: var(--text-primary);
}

.category-label::before {
    content: '';
    width: 4px;
    height: 28px;
    background: var(--accent-primary);
    border-radius: 4px;
    flex-shrink: 0;
}

/* Enhanced Service Cards */
.srv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.srv-card {
    background: var(--bg-card);
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.srv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-primary), #cc7700);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.srv-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px -8px rgba(230, 184, 0, 0.18);
}

.srv-card:hover::before {
    transform: scaleX(1);
}

.srv-icon {
    width: 3.2rem;
    height: 3.2rem;
    background: rgba(230, 184, 0, 0.1);
    color: var(--accent-primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.1rem;
    flex-shrink: 0;
    transition: background 0.3s ease;
}

.srv-card:hover .srv-icon {
    background: rgba(230, 184, 0, 0.2);
}

.srv-badge {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    border-radius: 1rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    align-self: flex-start;
}

.badge-popular {
    background: rgba(230, 184, 0, 0.15);
    color: #9a7000;
}

.badge-advanced {
    background: rgba(99, 102, 241, 0.12);
    color: #5b21b6;
}

.badge-new {
    background: rgba(16, 185, 129, 0.12);
    color: #065f46;
}

.srv-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    color: var(--text-primary);
    line-height: 1.3;
}

.srv-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 1rem;
    flex: 1;
}

.srv-features {
    list-style: none;
    margin: 0 0 1.25rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.srv-features li {
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.6rem;
    align-items: start;
    line-height: 1.4;
}

.srv-features li i {
    color: var(--accent-primary);
    font-size: 0.8rem;
    margin-top: 0.25rem;
}

.srv-link {
    margin-top: auto;
    align-self: flex-start;
    color: var(--accent-primary);
    font-weight: 700;
    font-size: 0.88rem;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    transition: gap 0.2s ease;
}

.srv-link:hover {
    gap: 0.55rem;
}

/* CTA Banner inside Services */
.services-cta {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2410 100%);
    border-radius: var(--radius-lg);
    padding: 3.5rem 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 4rem;
}

.services-cta::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(230, 184, 0, 0.25) 0%, transparent 70%);
    pointer-events: none;
}

.services-cta::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(230, 184, 0, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.services-cta h2 {
    color: #ffffff;
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    margin-bottom: 1rem;
}

.services-cta p {
    color: rgba(255, 255, 255, 0.72);
    max-width: 520px;
    margin: 0 auto 2rem;
    font-size: 1rem;
}

.cta-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.75rem;
}

.cta-badge-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

.cta-badge-item i {
    color: var(--accent-primary);
}

/* Stats Strip */
.stats-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: var(--bg-secondary);
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 4rem;
}

.stat-cell {
    padding: 2rem 1.5rem;
    text-align: center;
    border-right: 1px solid var(--border-color);
}

.stat-cell:last-child {
    border-right: none;
}

.stat-cell .num {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-primary);
    line-height: 1;
    margin-bottom: 0.4rem;
}

.stat-cell .lbl {
    font-size: 0.82rem;
    color: var(--text-tertiary);
    font-weight: 500;
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-primary), rgba(230, 184, 0, 0.2));
    z-index: 0;
}

.process-step {
    text-align: center;
    padding: 0 0.75rem;
    position: relative;
    z-index: 1;
}

.step-circle {
    width: 56px;
    height: 56px;
    background: #ffffff;
    border: 2px solid var(--accent-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--accent-primary);
    box-shadow: 0 4px 12px rgba(230, 184, 0, 0.2);
}

.process-step h4 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.process-step p {
    font-size: 0.78rem;
    color: var(--text-tertiary);
    margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .srv-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-strip {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-strip .stat-cell:nth-child(2) {
        border-right: none;
    }

    .stats-strip .stat-cell:nth-child(3),
    .stats-strip .stat-cell:nth-child(4) {
        border-top: 1px solid var(--border-color);
    }

    .process-steps {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    .process-steps::before {
        display: none;
    }
}

@media (max-width: 640px) {
    .srv-grid {
        grid-template-columns: 1fr;
    }

    .stats-strip {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-cta {
        padding: 2.5rem 1.5rem;
    }
}


/* === Extracted from blog.html === */


/* -- Blog Page Specific Styles -- */

/* Search Bar */
.blog-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.search-wrapper {
    position: relative;
    width: 100%;
    max-width: 520px;
}

.search-wrapper .search-icon {
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    pointer-events: none;
}

.search-wrapper .search-input {
    width: 100%;
    padding: 0.85rem 1.25rem 0.85rem 3rem;
    border-radius: 0.6rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition-fast);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.search-wrapper .search-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.search-wrapper .search-input:focus {
    outline: none;
    border-color: var(--accent-primary);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(230, 184, 0, 0.2);
}

/* Filter Buttons */
.filter-group {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.45rem 1.1rem;
    border-radius: 2rem;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.25);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-fast);
    font-family: inherit;
    backdrop-filter: blur(6px);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--accent-primary);
    color: #1a1a1a;
    border-color: var(--accent-primary);
}

/* -- Blog Post Cards (grid) -- */
.blog-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.blog-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-medium);
}

.blog-item:hover {
    border-color: var(--border-hover);
    box-shadow: 0 8px 30px -10px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

/* Card thumbnail (top) */
.blog-thumb {
    width: 100%;
    background: var(--bg-tertiary);
    position: relative;
    overflow: hidden;
    min-height: 220px;
}

.blog-thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog-thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* CSS Banner visuals */
.blog-thumb-banner {
    width: 100%;
    height: 100%;
    min-height: 180px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-thumb-banner .banner-icon {
    position: relative;
    z-index: 2;
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.9);
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
}

.blog-thumb-banner .blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(30px);
    opacity: 0.5;
}

/* Dev - blue */
.banner-dev {
    background: linear-gradient(135deg, #0f1729 0%, #1a2744 100%);
}

.banner-dev .blob-a {
    width: 120px;
    height: 120px;
    background: #3b5998;
    top: -20px;
    right: -20px;
}

.banner-dev .blob-b {
    width: 80px;
    height: 80px;
    background: #1e3a8a;
    bottom: 10px;
    left: 10px;
}

/* Business - green */
.banner-biz {
    background: linear-gradient(135deg, #0a1f0a 0%, #0f2d1a 100%);
}

.banner-biz .blob-a {
    width: 120px;
    height: 120px;
    background: #166534;
    top: -20px;
    right: -20px;
}

.banner-biz .blob-b {
    width: 80px;
    height: 80px;
    background: #14532d;
    bottom: 10px;
    left: 10px;
}

/* Design - purple */
.banner-design {
    background: linear-gradient(135deg, #150d2e 0%, #1e0a3c 100%);
}

.banner-design .blob-a {
    width: 120px;
    height: 120px;
    background: #6d28d9;
    top: -20px;
    right: -20px;
}

.banner-design .blob-b {
    width: 80px;
    height: 80px;
    background: #4c1d95;
    bottom: 10px;
    left: 10px;
}

/* Tutorial - pink */
.banner-tutorial {
    background: linear-gradient(135deg, #1f0a1f 0%, #2d0a2d 100%);
}

.banner-tutorial .blob-a {
    width: 120px;
    height: 120px;
    background: #9d174d;
    top: -20px;
    right: -20px;
}

.banner-tutorial .blob-b {
    width: 80px;
    height: 80px;
    background: #831843;
    bottom: 10px;
    left: 10px;
}

.blog-thumb .post-tag {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    right: auto;
    background: var(--accent-primary);
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 2rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.blog-thumb .post-tag.tag-business {
    background: var(--accent-secondary);
}

.blog-thumb .post-tag.tag-design {
    background: var(--kcd-purple);
}

.blog-thumb .post-tag.tag-tutorial {
    background: var(--kcd-pink);
}

/* Right content */
.blog-content {
    flex: 1;
    padding: 1rem 1.25rem 1.25rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    font-size: 0.8rem;
    color: var(--text-tertiary);
    margin-bottom: 0.6rem;
}

.blog-meta i {
    margin-right: 0.3rem;
}

.blog-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0.25rem 0 0.5rem;
    line-height: 1.3;
}

.blog-content h3 a {
    color: var(--text-primary);
    transition: var(--transition-fast);
}

.blog-content h3 a:hover {
    color: var(--accent-primary);
}

.blog-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0 0 1rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--accent-primary);
    font-size: 0.875rem;
    font-weight: 600;
    transition: var(--transition-fast);
    margin-top: 0.5rem;
}

.read-more-link:hover {
    gap: 0.6rem;
}

/* No results message */
.no-results {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--text-tertiary);
    display: none;
}

.no-results i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
    opacity: 0.4;
}

/* Newsletter */
.newsletter-form {
    display: flex;
    gap: 0.75rem;
    max-width: 480px;
    margin: 2rem auto 0;
}

.newsletter-form .form-input {
    flex: 1;
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-sm);
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.95rem;
}

.newsletter-form .form-input:focus {
    outline: none;
    border-color: var(--accent-primary);
}

/* Responsive */
@media (max-width: 640px) {
    .blog-item {
        flex-direction: column;
    }

    .blog-thumb {
        flex: none;
        height: 180px;
        width: 100%;
    }

    .blog-content {
        padding: 1.25rem;
    }

    .newsletter-form {
        flex-direction: column;
    }
}

/* Responsive grid adjustments for blog cards */
@media (max-width: 1000px) {
    .blog-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .blog-list {
        grid-template-columns: 1fr;
    }
    .blog-item {
        border-radius: var(--radius-sm);
    }
}


/* === Extracted from blog\blog-slow-website-fix.html === */


.blog-content-body {
    max-width: 1000px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

/* Simple centered header for single posts */
.post-header {
    text-align: center;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}
.post-header h1 {
    margin-bottom: 0.5rem;
}
.post-header p {
    margin: 0.5rem 0 0.75rem;
    color: var(--text-tertiary);
}

/* Feature image under the post header */
.post-feature-image {
    max-width: var(--post-content-width);
    margin: 1.5rem auto;
    text-align: center;
}
.post-feature-image img {
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
    display: block;
    object-fit: cover;
}

.blog-content-body h2 {
    margin-top: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    position: relative;
    padding-left: 1rem;
    border-left: 4px solid var(--accent-primary);
}

.blog-content-body h3 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 600;
}

.blog-content-body p {
    margin-bottom: 1.5rem;
}

.blog-content-body strong {
    color: var(--text-primary);
}

.fix-box {
    background: rgba(40, 167, 69, 0.1);
    border-left: 4px solid #28a745;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: var(--radius-sm);
}

.fix-box h4 {
    color: #28a745;
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
}


/* === Extracted from blog\blog-signs-website-killing-business.html === */


.blog-content-body {
    max-width: var(--post-content-width);
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.blog-content-body h2 {
    margin-top: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    position: relative;
    padding-left: 1rem;
    border-left: 4px solid var(--accent-primary);
}

.blog-content-body h3 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 600;
}

.blog-content-body {
    max-width: var(--post-content-width);
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.blog-content-body li {
    margin-bottom: 0.5rem;
}

.warning-box {
    background: rgba(255, 99, 71, 0.1);
    border-left: 4px solid #ff6347;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: var(--radius-sm);
}


/* === Extracted from blog\blog-developer-seo-role.html === */


.blog-content-body {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.blog-content-body h2 {
    margin-top: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    position: relative;
    padding-left: 1rem;
    border-left: 4px solid var(--accent-primary);
}

.blog-content-body h3 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 600;
}

.blog-content-body p {
    margin-bottom: 1.5rem;
}

.blog-content-body ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.code-snippet {
    background: #1e1e1e;
    color: #d4d4d4;
    padding: 1.5rem;
    border-radius: var(--radius-sm);
    font-family: monospace;
    font-size: 0.9rem;
    margin: 1.5rem 0;
    overflow-x: auto;
}

.key-concept {
    border: 2px solid var(--accent-primary);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    margin: 2rem 0;
}

.key-concept h4 {
    color: var(--accent-primary);
    margin-bottom: 0.5rem;
}


/* === Extracted from blog\blog-website-cost-2026.html === */


.blog-content-body {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.blog-content-body h2 {
    margin-top: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    position: relative;
    padding-left: 1rem;
    border-left: 4px solid var(--accent-primary);
}

.blog-content-body h3 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 600;
}

.blog-content-body p {
    margin-bottom: 1.5rem;
}

.blog-content-body ul,
.blog-content-body ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.blog-content-body li {
    margin-bottom: 0.5rem;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    font-size: 1rem;
}

.price-table th,
.price-table td {
    border: 1px solid var(--border-color);
    padding: 1rem;
    text-align: left;
}

.price-table th {
    background: var(--bg-secondary);
    font-weight: 700;
    color: var(--text-primary);
}

.cta-box {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--accent-primary);
    margin: 2rem 0;
}


/* ══════════════════════════════════════════
   ABOUT PAGE — Full Section Styles
   ══════════════════════════════════════════ */

/* Section Tag (breadcrumb-style label above headings) */
.about-section-tag {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-primary);
    background: rgba(255, 130, 47, 0.1);
    padding: 0.3rem 0.85rem;
    border-radius: 2rem;
    margin-bottom: 1rem;
}

/* INTRO SECTION */
.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 5rem;
    align-items: center;
}

.about-intro-heading {
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 1.25rem;
}

.about-intro-text p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.about-intro-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 1.75rem;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.4rem 1rem;
    background: var(--bg-secondary);
    border: 1.5px solid var(--border-color);
    border-radius: 2rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.about-badge i {
    color: var(--accent-primary);
    font-size: 0.85rem;
}

/* ABOUT CARD */
.about-card {
    background: var(--bg-card);
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: 0 20px 60px -12px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    position: sticky;
    top: 100px;
}

.about-card-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 130, 47, 0.15), rgba(255, 130, 47, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 130, 47, 0.25);
    font-size: 3rem;
    color: var(--accent-primary);
}

.about-card-info h3 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 0.2rem;
}

.about-card-info p {
    font-size: 0.88rem;
    color: var(--text-tertiary);
    margin: 0;
}

.about-card-status {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: #28a745;
    background: rgba(40, 167, 69, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 2rem;
    margin-top: 0.3rem;
}

.about-card-stats {
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 100%;
    padding: 1rem;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    gap: 0.5rem;
}

.abt-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
}

.abt-stat strong {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-primary);
    line-height: 1;
}

.abt-stat span {
    font-size: 0.72rem;
    color: var(--text-tertiary);
    font-weight: 500;
}

.abt-stat-divider {
    width: 1px;
    height: 36px;
    background: var(--border-color);
}

/* BELIEFS SECTION */
.about-beliefs-section {
    background: var(--bg-secondary);
}

.beliefs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.belief-card {
    background: var(--bg-card);
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1.75rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.belief-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px -8px rgba(255, 130, 47, 0.15);
    border-color: var(--border-hover);
}

.belief-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 130, 47, 0.1);
    color: var(--accent-primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 1.1rem;
}

.belief-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    color: var(--text-primary);
}

.belief-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* SKILLS SECTION */
.about-skills-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 5rem;
    align-items: start;
}

.about-skills-left h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    margin-bottom: 1.25rem;
}

.about-skills-left p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.about-skills-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.skill-group {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.skill-group-label {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-tertiary);
    margin: 0;
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.skill-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.9rem;
    background: var(--bg-secondary);
    border: 1.5px solid var(--border-color);
    border-radius: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    transition: border-color 0.2s ease, color 0.2s ease;
}

.skill-tag:hover {
    border-color: var(--accent-primary);
    color: var(--text-primary);
}

.skill-tag i {
    color: var(--accent-primary);
}

/* PROCESS SECTION */
.about-process-section {
    background: var(--bg-secondary);
}

.about-process-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 820px;
    margin: 0 auto;
    position: relative;
}

.about-process-steps::before {
    content: '';
    position: absolute;
    left: 28px;
    top: 56px;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--accent-primary), rgba(255, 130, 47, 0.1));
}

.about-process-step {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 2rem;
    padding: 2.5rem 0;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.about-process-step:last-child {
    border-bottom: none;
}

.about-step-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 2px solid var(--accent-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 800;
    color: var(--accent-primary);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 12px rgba(255, 130, 47, 0.15);
}

.about-step-content {
    padding-top: 0.6rem;
}

.about-step-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    color: var(--text-primary);
}

.about-step-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin: 0;
}

/* WHY HIRE ME */
.about-hire-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.about-hire-text h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    margin-bottom: 1.25rem;
}

.about-hire-text p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1.02rem;
}

.compare-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.compare-col {
    padding: 1.5rem;
}

.compare-col--me {
    background: rgba(255, 130, 47, 0.04);
}

.compare-col--agency {
    background: var(--bg-secondary);
    border-left: 1.5px solid var(--border-color);
}

.compare-header {
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-tertiary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.compare-col--me .compare-header {
    color: var(--accent-primary);
}

.compare-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.compare-list li {
    font-size: 0.875rem;
    color: var(--text-secondary);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    line-height: 1.5;
}

.compare-col--me .compare-list li i {
    color: #28a745;
    margin-top: 2px;
    flex-shrink: 0;
}

.compare-col--agency .compare-list li i {
    color: #dc3545;
    margin-top: 2px;
    flex-shrink: 0;
}

/* ABOUT CTA */
.about-cta-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c1a08 100%);
    border-radius: var(--radius-lg);
    padding: 5rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-cta-glow {
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 130, 47, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.about-cta-icon {
    font-size: 2.5rem;
    color: var(--accent-primary);
    margin-bottom: 1.5rem;
    display: block;
}

.about-cta-card h2 {
    color: #ffffff;
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    margin-bottom: 1rem;
}

.about-cta-card>p {
    color: rgba(255, 255, 255, 0.72);
    max-width: 580px;
    margin: 0 auto 2.5rem;
    font-size: 1.05rem;
    line-height: 1.75;
}

.about-cta-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.about-cta-meta {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 0.5rem;
}

.about-cta-meta span {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.about-cta-meta span i {
    color: var(--accent-primary);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .about-intro-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-card {
        position: static;
        max-width: 480px;
        margin: 0 auto;
    }

    .about-skills-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-hire-wrap {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .beliefs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .beliefs-grid {
        grid-template-columns: 1fr;
    }

    .compare-card {
        grid-template-columns: 1fr;
    }

    .compare-col--agency {
        border-left: none;
        border-top: 1.5px solid var(--border-color);
    }

    .about-process-steps::before {
        display: none;
    }

    .about-process-step {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        padding: 1.75rem 0;
    }

    .about-cta-card {
        padding: 3rem 1.5rem;
    }

    .about-intro-badges {
        flex-direction: column;
    }

    .about-cta-actions {
        flex-direction: column;
    }
}

/* ══ ABOUT PAGE — Simple Layout ══ */
.about-simple-wrap {
    max-width: 900px;
}

@media (max-width: 640px) {
    .about-simple-wrap {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }
}

.about-simple-block {
    padding: 2.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.about-simple-block:last-of-type {
    border-bottom: none;
}

.about-simple-block h2 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.about-simple-block p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 0.85rem;
}

.about-simple-block p:last-child {
    margin-bottom: 0;
}

.about-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.about-info-list li {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.about-info-list li strong {
    color: var(--text-primary);
    font-weight: 600;
    min-width: 130px;
    display: inline-block;
}

.about-info-list li a {
    color: var(--accent-primary);
    font-weight: 500;
}

.about-belief-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.about-belief-list li {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    padding-left: 1rem;
    border-left: 2px solid var(--accent-primary);
}

.about-belief-list li strong {
    color: var(--text-primary);
}

.about-simple-cta {
    padding: 3rem 0 1rem;
    text-align: left;
}

.about-simple-cta h2 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.about-simple-cta p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    max-width: 520px;
}


/* ══════════════════════════════════════════════════════
   BLOG ARTICLE PAGE — Complete Styles
   Simple, readable, wide text, mobile-first
   ══════════════════════════════════════════════════════ */

/* ── Article wrapper: centred, wide readable column ── */
.blog-content-body {
    max-width: 780px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* ── Banner tag pill ── */
.banner-tag {
    background: rgba(255, 130, 47, 0.18);
    border: 1px solid rgba(255, 130, 47, 0.45);
    color: #ffd0ad;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.35rem 1rem;
    border-radius: 2rem;
    margin-bottom: 1.25rem;
    display: inline-block;
}

/* ── Body text — comfortable reading ── */
.blog-content-body p {
    font-size: 1.08rem;
    line-height: 1.85;
    color: var(--text-secondary);
    margin-bottom: 1.4rem;
}

.blog-content-body p.lead {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 1.75rem;
    padding-bottom: 1.75rem;
    border-bottom: 1px solid var(--border-color);
}

/* ── Headings inside article ── */
.blog-content-body h2 {
    font-size: clamp(1.35rem, 3.5vw, 1.75rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 2.75rem;
    margin-bottom: 0.85rem;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.blog-content-body h3 {
    font-size: clamp(1.15rem, 2.5vw, 1.35rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 2rem;
    margin-bottom: 0.65rem;
    line-height: 1.35;
}

.blog-content-body h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.6rem;
}

/* ── Lists ── */
.blog-content-body ul,
.blog-content-body ol {
    list-style: disc;
    padding-left: 1.6rem;
    margin-bottom: 1.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.blog-content-body ol {
    list-style: decimal;
}

.blog-content-body li {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--text-secondary);
}

.blog-content-body li strong {
    color: var(--text-primary);
}

/* ── Inline code ── */
.blog-content-body code {
    font-family: 'Fira Code', monospace;
    font-size: 0.88em;
    background: rgba(255, 130, 47, 0.08);
    border: 1px solid rgba(255, 130, 47, 0.18);
    color: #c45a00;
    padding: 0.15em 0.45em;
    border-radius: 4px;
}

/* ── Emphasis ── */
.blog-content-body em {
    font-style: italic;
    color: var(--text-primary);
}

.blog-content-body strong {
    font-weight: 700;
    color: var(--text-primary);
}

/* ══ CALLOUT BOXES ══ */

/* Fix / How-to box — green-tinted */
.fix-box {
    background: #f0faf4;
    border: 1.5px solid #b2dfcd;
    border-left: 4px solid #28a745;
    border-radius: var(--radius-md);
    padding: 1.4rem 1.6rem;
    margin: 1.75rem 0;
}

.fix-box h4 {
    color: #1a7a3a;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.fix-box ul {
    margin-bottom: 0;
}

.fix-box li {
    color: #2d6a4f;
}

/* Warning / attention box — amber-tinted */
.warning-box {
    background: #fffbf0;
    border: 1.5px solid #f0e0a0;
    border-left: 4px solid #f0a500;
    border-radius: var(--radius-md);
    padding: 1.25rem 1.5rem;
    margin: 1.75rem 0;
    font-size: 1rem;
    line-height: 1.7;
    color: #7a5800;
}

.warning-box strong {
    color: #5a3a00;
}

/* Key concept / info box — blue-tinted */
.key-concept {
    background: #f5f8ff;
    border: 1.5px solid #c5d5f5;
    border-left: 4px solid #3a7bd5;
    border-radius: var(--radius-md);
    padding: 1.4rem 1.6rem;
    margin: 1.75rem 0;
}

.key-concept h4 {
    color: #1a3a7a;
    font-size: 0.92rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.75rem;
}

.key-concept p,
.key-concept li {
    color: #2a4a8a;
    font-size: 1rem;
}

.key-concept ul {
    margin-bottom: 0;
    gap: 0.5rem;
}

/* CTA box — orange-branded */
.cta-box {
    background: linear-gradient(135deg, #fff7f2 0%, #ffeddf 100%);
    border: 1.5px solid rgba(255, 130, 47, 0.3);
    border-radius: var(--radius-lg);
    padding: 2rem 2.25rem;
    margin: 2.5rem 0;
    text-align: center;
}

.cta-box h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.65rem;
    margin-top: 0;
}

.cta-box p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.4rem;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.cta-box .btn {
    margin-top: 0.25rem;
}

/* ══ PRICE TABLE ══ */
.price-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.75rem 0 2rem;
    font-size: 0.95rem;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.price-table thead tr {
    background: var(--text-primary);
    color: #ffffff;
}

.price-table th {
    padding: 0.9rem 1.1rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.88rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.price-table td {
    padding: 0.85rem 1.1rem;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
    vertical-align: top;
    line-height: 1.55;
}

.price-table td strong {
    color: var(--text-primary);
}

.price-table tbody tr:last-child td {
    border-bottom: none;
}

.price-table tbody tr:nth-child(even) {
    background: var(--bg-secondary);
}

.price-table tbody tr:hover {
    background: var(--bg-tertiary);
    transition: background 0.15s;
}

/* ── Blog Footer ── */
.blog-footer {
    padding: 1.5rem 0 0.5rem;
}

/* ══ MOBILE RESPONSIVENESS ══ */

@media (max-width: 768px) {
    .blog-content-body {
        padding: 0 0.25rem;
    }

    .blog-content-body p {
        font-size: 1.03rem;
        line-height: 1.8;
    }

    .blog-content-body p.lead {
        font-size: 1.1rem;
    }

    .blog-content-body h2 {
        font-size: 1.35rem;
        margin-top: 2.25rem;
    }

    .blog-content-body h3 {
        font-size: 1.15rem;
        margin-top: 1.75rem;
    }

    .blog-content-body li {
        font-size: 1rem;
    }

    .fix-box,
    .key-concept {
        padding: 1.1rem 1.2rem;
    }

    .warning-box {
        padding: 1rem 1.2rem;
    }

    .cta-box {
        padding: 1.6rem 1.25rem;
        text-align: left;
    }

    .cta-box p {
        margin-left: 0;
        margin-right: 0;
    }

    .price-table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .price-table th,
    .price-table td {
        padding: 0.7rem 0.75rem;
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .blog-content-body p {
        font-size: 1rem;
    }

    .blog-content-body h2 {
        font-size: 1.25rem;
    }

    .blog-content-body h3 {
        font-size: 1.1rem;
    }

    .cta-box h3 {
        font-size: 1.1rem;
    }
}