/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
:root {
    /* Color Palette */
    --color-bg: #070e17;
    --color-bg-darker: #04090f;
    --color-primary: #ff6b08;
    --color-primary-rgb: 255, 107, 8;
    --color-secondary: #00bcd4;
    --color-text-light: #ffffff;
    --color-text-muted: #8892b0;
    --color-text-muted-dark: #4f5b70;
    --color-white: #ffffff;
    
    /* Gradients */
    --grad-primary: linear-gradient(135deg, #ff6b08 0%, #ff8838 100%);
    --grad-dark: linear-gradient(135deg, #0a192f 0%, #070e17 100%);
    --grad-glow: radial-gradient(circle, rgba(255, 107, 8, 0.15) 0%, rgba(7, 14, 23, 0) 70%);
    --grad-text: linear-gradient(135deg, #ffffff 30%, #ffaa70 100%);
    
    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-bg-hover: rgba(255, 255, 255, 0.06);
    --glass-border-hover: rgba(255, 255, 255, 0.15);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    
    /* Fonts */
    --font-title: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
    /* Transitions & Layout */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --container-width: 1200px;
    --header-height: 80px;
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    background-color: var(--color-bg);
    background-image: 
        radial-gradient(circle at 80% 20%, rgba(255, 107, 8, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 20% 80%, rgba(0, 188, 212, 0.04) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(7, 14, 23, 1) 0%, #04090f 100%);
    background-attachment: scroll;
    color: var(--color-text-light);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    /* Soft noise texture simulation or smooth rendering */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    background: none;
    border: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

/* ==========================================================================
   TYPOGRAPHY & UTILITIES
   ========================================================================== */
h1, h2, h3, h4 {
    font-family: var(--font-title);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.text-gradient {
    background: var(--grad-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 107, 8, 0.1);
    border: 1px solid rgba(255, 107, 8, 0.2);
    border-radius: 100px;
    color: var(--color-primary);
    font-family: var(--font-title);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.badge-orange {
    background: rgba(255, 107, 8, 0.2);
    border-color: var(--color-primary);
    color: #ffffff;
}

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

.section-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
    font-weight: 800;
}

.section-subtitle {
    color: var(--color-text-muted);
    font-size: 1.1rem;
}

/* Glassmorphism Common Class */
.glass {
    background: rgba(10, 21, 38, 0.85);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    transition: var(--transition-smooth);
}

.glass-hover:hover {
    background: var(--glass-bg-hover);
    border-color: var(--glass-border-hover);
    transform: translateY(-5px);
}

/* Icon class */
.icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    stroke-width: 0;
    stroke: currentColor;
    fill: currentColor;
    vertical-align: middle;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: 50px;
    font-family: var(--font-title);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    white-space: nowrap;
    text-align: center;
}

.btn-primary {
    background: var(--grad-primary);
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(255, 107, 8, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 8, 0.5);
    background: linear-gradient(135deg, #ff8838 0%, #ff6b08 100%);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    backdrop-filter: blur(8px);
}

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

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: transparent;
    color: var(--color-white);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--color-primary);
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.btn-full {
    width: 100%;
}

/* ==========================================================================
   HEADER SECTION
   ========================================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    display: flex;
    align-items: center;
    z-index: 1000;
    transition: var(--transition-smooth);
}

.site-header.scrolled {
    background: rgba(4, 9, 15, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    height: 70px;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.logo {
    font-family: var(--font-title);
    font-weight: 800;
    font-size: 1.6rem;
    display: flex;
    align-items: baseline;
    color: var(--color-white);
    letter-spacing: -0.03em;
}

.logo .dot {
    color: var(--color-primary);
}

.logo .subtext {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    font-weight: 400;
    margin-left: 2px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Navigation */
.primary-navigation {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text-muted);
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: var(--transition-smooth);
}

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

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

.header-cta {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-phone {
    font-size: 0.95rem;
    padding: 10px 20px;
}

.btn-phone .icon {
    fill: var(--color-primary);
}

/* Mobile Toggle Hamburger */
.mobile-nav-toggle {
    display: none;
    cursor: pointer;
    z-index: 1001;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-white);
    position: relative;
    transition: background 0.3s ease;
}

.hamburger::before, .hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--color-white);
    transition: transform 0.3s ease;
}

.hamburger::before { top: -8px; }
.hamburger::after { bottom: -8px; }

/* Sticky mobile CTA at bottom */
.mobile-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: none;
    z-index: 999;
    background: rgba(7, 14, 23, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.5);
}

.mobile-cta-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px;
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.mobile-cta-btn.phone {
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-white);
}

.mobile-cta-btn.phone .icon {
    fill: var(--color-primary);
}

.mobile-cta-btn.quote {
    background: var(--grad-primary);
    color: var(--color-white);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    padding-top: calc(var(--header-height) + 80px);
    padding-bottom: 80px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: transparent;
}

#hero-canvas {
    display: none;
}

/* ==========================================================================
   INNER BANNER FOR SUBPAGES
   ========================================================================== */
.inner-banner {
    padding: calc(var(--header-height) + 100px) 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.inner-banner .section-header {
    margin-bottom: 0;
}

.hero-glow {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60%;
    height: 80%;
    background: radial-gradient(circle, rgba(255, 107, 8, 0.08) 0%, rgba(7, 14, 23, 0) 70%);
    z-index: 2;
    pointer-events: none;
}

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

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

.hero-title {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 24px;
    font-weight: 800;
}

.hero-subtitle {
    color: var(--color-text-muted);
    font-size: 1.15rem;
    margin-bottom: 36px;
    line-height: 1.7;
}

.hero-bullets {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 24px;
    margin-bottom: 40px;
}

.bullet-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 500;
}

.bullet-item .check-icon {
    color: var(--color-primary);
    font-weight: bold;
    font-size: 1.1rem;
}

.hero-actions {
    display: flex;
    gap: 20px;
}

/* Phone Mockup Styling */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.device-mockup {
    position: relative;
    border-radius: 40px;
    padding: 12px;
    width: 100%;
    max-width: 320px;
    animation: floatAnimation 6s ease-in-out infinite;
}

.phone-frame {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    background: #000;
    border: 3px solid rgba(255, 255, 255, 0.1);
    aspect-ratio: 9 / 19.5;
}

.phone-screen {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.accent-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: radial-gradient(circle, rgba(255, 107, 8, 0.2) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: -1;
    filter: blur(15px);
}

@keyframes floatAnimation {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(1deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

/* ==========================================================================
   STATS SECTION
   ========================================================================== */
.stats-section {
    padding: 60px 0;
    position: relative;
    z-index: 10;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stat-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 20px;
}

.stat-number {
    font-family: var(--font-title);
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1.1;
    margin-bottom: 8px;
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ==========================================================================
   BEFORE & AFTER SECTION
   ========================================================================== */
.before-after-section {
    padding: 100px 0;
    position: relative;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto 50px;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

.comparison-slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.img-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    user-select: none;
}

.img-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-before {
    z-index: 1;
}

.img-after {
    z-index: 2;
    width: 50%; /* Initial width, will be updated by JS */
    border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.label-tag {
    position: absolute;
    top: 20px;
    padding: 8px 16px;
    background: rgba(4, 9, 15, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
    z-index: 10;
    letter-spacing: 0.02em;
}

.label-before {
    left: 20px;
    border-left: 3px solid #ff4a4a;
}

.label-after {
    right: 20px;
    border-right: 3px solid var(--color-primary);
}

/* Slider Controls */
.slider-handle {
    position: absolute;
    top: 0;
    left: 50%; /* Initial pos, updated by JS */
    width: 0;
    height: 100%;
    z-index: 20;
    pointer-events: none;
}

.handle-line {
    position: absolute;
    left: -2px;
    width: 4px;
    height: 100%;
    background: #ffffff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.handle-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    color: var(--color-bg);
    cursor: grab;
    pointer-events: auto;
}

.handle-button svg {
    width: 14px;
    height: 14px;
}

/* Invisible Range Input spanning the whole section to enable easy dragging */
.slider-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: ew-resize;
    z-index: 30;
    -webkit-appearance: none;
}

.slider-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 50px;
    height: 100%;
}

.social-proof-banner {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px 40px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.social-proof-text {
    font-family: var(--font-title);
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.4;
    max-width: 600px;
}

/* ==========================================================================
   WHY CHOOSE DIGITART SECTION
   ========================================================================== */
.why-us-section {
    padding: 100px 0;
    position: relative;
    background-color: var(--color-bg-darker);
}

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

.card {
    padding: 40px 30px;
    border-radius: 24px;
}

.card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 107, 8, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.card-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(255, 107, 8, 0.1);
    border: 1px solid rgba(255, 107, 8, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--color-primary);
    transition: var(--transition-smooth);
}

.card:hover .card-icon-wrapper {
    background: var(--color-primary);
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(255, 107, 8, 0.3);
}

.card-icon {
    width: 28px;
    height: 28px;
}

.card-title {
    font-size: 1.4rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.card-description {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ==========================================================================
   WHAT'S INCLUDED SECTION
   ========================================================================== */
.features-section {
    padding: 100px 0;
    position: relative;
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    border-radius: 16px;
    font-weight: 500;
}

.feature-item:hover {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
}

.feature-check {
    color: var(--color-primary);
    font-size: 1.3rem;
    font-weight: 700;
}

/* ==========================================================================
   WORK SAMPLES SECTION
   ========================================================================== */
.portfolio-section {
    padding: 100px 0;
    background-color: var(--color-bg-darker);
}

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

.portfolio-category-wrapper {
    margin-bottom: 80px;
}

.portfolio-category-wrapper:last-child {
    margin-bottom: 0;
}

.portfolio-grid-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.portfolio-grid-desc {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    margin-bottom: 40px;
}

.card-mesh-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 50% 50%, rgba(7, 14, 23, 0.4) 0%, rgba(7, 14, 23, 0.9) 100%);
    backdrop-filter: blur(2px);
    transition: var(--transition-smooth);
}

.portfolio-card:hover .card-mesh-overlay {
    transform: scale(1.05);
    backdrop-filter: blur(0px);
}

.card-logo-text {
    font-family: var(--font-title);
    font-weight: 800;
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: -0.02em;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    text-align: center;
    padding: 0 20px;
}

/* Mesh Gradients Fallbacks */
.mesh-bg-1 {
    background: radial-gradient(circle at 20% 20%, rgba(255, 107, 8, 0.2) 0%, transparent 60%),
                radial-gradient(circle at 80% 80%, rgba(0, 188, 212, 0.1) 0%, transparent 60%),
                #0a192f;
}
.mesh-bg-2 {
    background: radial-gradient(circle at 80% 20%, rgba(0, 188, 212, 0.2) 0%, transparent 60%),
                radial-gradient(circle at 20% 80%, rgba(255, 107, 8, 0.1) 0%, transparent 60%),
                #101f30;
}
.mesh-bg-3 {
    background: radial-gradient(circle at 50% 30%, rgba(255, 107, 8, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 10% 90%, rgba(0, 188, 212, 0.15) 0%, transparent 50%),
                #0d2230;
}
.mesh-bg-4 {
    background: radial-gradient(circle at 30% 80%, rgba(255, 107, 8, 0.2) 0%, transparent 60%),
                radial-gradient(circle at 70% 20%, rgba(0, 188, 212, 0.1) 0%, transparent 60%),
                #0a202d;
}
.mesh-bg-5 {
    background: radial-gradient(circle at 70% 70%, rgba(0, 188, 212, 0.2) 0%, transparent 60%),
                radial-gradient(circle at 30% 30%, rgba(255, 107, 8, 0.1) 0%, transparent 60%),
                #121d2d;
}
.mesh-bg-6 {
    background: radial-gradient(circle at 40% 50%, rgba(255, 107, 8, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 90% 10%, rgba(0, 188, 212, 0.2) 0%, transparent 55%),
                #0a1f29;
}

.portfolio-card {
    border-radius: 24px;
    overflow: hidden;
    padding: 0;
}

.portfolio-image-wrapper {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #000;
}

.portfolio-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(7, 14, 23, 0.6);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.portfolio-image-wrapper:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-info {
    padding: 30px;
}

.portfolio-title {
    font-size: 1.5rem;
    margin-bottom: 6px;
}

.portfolio-category {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.portfolio-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-title);
    font-weight: 700;
    color: var(--color-primary);
}

.portfolio-link-btn svg {
    transition: transform 0.3s ease;
}

.portfolio-link-btn:hover svg {
    transform: translateX(5px);
}

/* Placeholder card style */
.placeholder-card {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 2px dashed rgba(255, 255, 255, 0.15);
    background: transparent;
    padding: 40px;
}

.placeholder-card:hover {
    border-color: var(--color-primary);
    background: rgba(255, 255, 255, 0.02);
}

.placeholder-content {
    max-width: 320px;
}

.placeholder-icon {
    font-size: 3rem;
    color: var(--color-text-muted-dark);
    margin-bottom: 16px;
    line-height: 1;
}

.placeholder-card h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.placeholder-card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: 24px;
}

/* ==========================================================================
   SPECIAL OFFER SECTION
   ========================================================================== */
.website-offer-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.offer-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 107, 8, 0.15) 0%, rgba(7, 14, 23, 0) 70%);
    z-index: 1;
    pointer-events: none;
}

.offer-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 50px;
    border-radius: 32px;
    text-align: center;
}

.offer-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 800;
}

.offer-description {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    max-width: 650px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

/* ==========================================================================
   PROCESS SECTION
   ========================================================================== */
.process-section {
    padding: 100px 0;
    position: relative;
    background-color: var(--color-bg-darker);
}

.process-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 50px;
}

.step-card {
    flex: 1;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    position: relative;
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 107, 8, 0.2);
}

.step-number {
    position: absolute;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--grad-primary);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-title);
    font-weight: 800;
    font-size: 1.3rem;
    box-shadow: 0 4px 15px rgba(255, 107, 8, 0.3);
}

.step-title {
    font-size: 1.25rem;
    margin-top: 10px;
    margin-bottom: 12px;
}

.step-desc {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

.step-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted-dark);
    transform: rotate(-90deg); /* points right */
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.testimonials-section {
    padding: 100px 0;
    position: relative;
}

.testimonials-carousel-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto 40px;
    overflow: hidden;
}

.testimonials-carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-slide {
    flex: 0 0 100%;
    padding: 50px 40px;
    border-radius: 24px;
    text-align: center;
}

.stars {
    color: #ffd700;
    font-size: 1.5rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 1.25rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 30px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.author-name {
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 1.05rem;
}

.author-business {
    color: var(--color-primary);
    font-size: 0.9rem;
    font-weight: 500;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.dot-btn {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-text-muted-dark);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.dot-btn.active {
    background: var(--color-primary);
    width: 24px;
    border-radius: 100px;
}

.google-reviews-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin: 40px auto 0;
    display: flex;
    width: max-content;
}

.google-reviews-badge span {
    font-weight: 600;
    font-size: 0.9rem;
}

/* ==========================================================================
   FAQ ACCORDION SECTION
   ========================================================================== */
.faq-section {
    padding: 100px 0;
    background-color: var(--color-bg-darker);
}

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

.faq-item {
    border-radius: 16px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 1.15rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.02);
}

.faq-icon {
    width: 20px;
    height: 20px;
    position: relative;
    flex-shrink: 0;
}

.faq-icon::before, .faq-icon::after {
    content: '';
    position: absolute;
    background-color: var(--color-text-light);
    transition: var(--transition-smooth);
}

/* Plus Icon lines */
.faq-icon::before {
    top: 9px;
    left: 2px;
    width: 16px;
    height: 2px;
}

.faq-icon::after {
    top: 2px;
    left: 9px;
    width: 2px;
    height: 16px;
}

/* Expanded state icon */
.faq-item.active .faq-icon::after {
    transform: rotate(90deg);
    opacity: 0;
}

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

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

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

/* ==========================================================================
   CONTACT FORM & FINAL CTA
   ========================================================================== */
.contact-section {
    padding: 100px 0;
    position: relative;
}

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

.contact-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 800;
}

.contact-desc {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    margin-bottom: 40px;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    border-radius: 16px;
}

.contact-detail-item:hover {
    border-color: rgba(255, 107, 8, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.detail-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(255, 107, 8, 0.1);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.detail-icon svg {
    width: 22px;
    height: 22px;
}

.detail-label {
    display: block;
    font-size: 0.8rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.detail-value {
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 1.15rem;
}

.detail-value.font-small {
    font-size: 1rem;
}

/* Lead Form */
.contact-form-wrapper {
    padding: 40px;
    border-radius: 28px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-light);
    letter-spacing: 0.02em;
}

.form-group input, .form-group select, .form-group textarea {
    padding: 14px 20px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.95rem;
    color: #ffffff;
    transition: var(--transition-smooth);
    width: 100%;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 10px rgba(255, 107, 8, 0.15);
}

.form-group select option {
    background: var(--color-bg-darker);
    color: white;
}

.form-group textarea {
    resize: none;
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
.site-footer {
    background: var(--color-bg-darker);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 80px 0 40px;
    position: relative;
    z-index: 10;
}

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

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

.footer-desc {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    max-width: 320px;
    line-height: 1.6;
}

.footer-links h4, .footer-contact-info h4 {
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: white;
}

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

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

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

.footer-contact-info p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.footer-contact-info a {
    color: var(--color-text-light);
    font-weight: 600;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
}

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

.copyright {
    color: var(--color-text-muted-dark);
    font-size: 0.85rem;
}

/* ==========================================================================
   MODAL DIALOG STYLE
   ========================================================================== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(4, 9, 15, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

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

.modal-content {
    max-width: 480px;
    width: 90%;
    border-radius: 28px;
    padding: 40px;
    text-align: center;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    color: var(--color-text-muted);
    cursor: pointer;
    line-height: 0.5;
}

.modal-close:hover {
    color: white;
}

.modal-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255, 107, 8, 0.1);
    border: 1px solid rgba(255, 107, 8, 0.2);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    margin: 0 auto 24px;
}

.modal-title {
    font-size: 1.6rem;
    margin-bottom: 12px;
}

.modal-desc {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES (Mobile-First Overrides)
   ========================================================================== */

/* Up to 1024px */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-container {
        gap: 30px;
    }
    
    .grid-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-container {
        gap: 40px;
    }
    
    .contact-title {
        font-size: 2.4rem;
    }
}

/* Up to 768px (Tablets & Mobile) */
@media (max-width: 768px) {
    body {
        padding-bottom: 60px; /* Space for sticky bottom CTA */
    }

    /* Mobile Header Layout */
    .site-header {
        height: 70px;
    }
    
    .header-cta {
        display: none; /* Hide desktop CTA buttons */
    }
    
    .mobile-nav-toggle {
        display: flex; /* Show Hamburger */
    }
    
    /* Mobile Navigation menu panel overlay */
    .primary-navigation {
        position: fixed;
        inset: 0 0 0 30%; /* sidedrawer layout sliding in */
        background: rgba(4, 9, 15, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        z-index: 1000;
        flex-direction: column;
        padding: 100px 30px 40px;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        border-left: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .primary-navigation[data-visible="true"] {
        transform: translateX(0);
    }
    
    .nav-list {
        flex-direction: column;
        gap: 24px;
        width: 100%;
    }
    
    .nav-link {
        font-size: 1.15rem;
        display: block;
    }
    
    .contact-btn-mobile {
        color: var(--color-primary);
        font-weight: 700;
    }

    /* Hamburger Active states */
    .mobile-nav-toggle[aria-expanded="true"] .hamburger {
        background: transparent;
    }
    
    .mobile-nav-toggle[aria-expanded="true"] .hamburger::before {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-nav-toggle[aria-expanded="true"] .hamburger::after {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    /* Sticky Mobile CTA visibility */
    .mobile-sticky-cta {
        display: flex;
    }

    /* Hero Section Mobile styling */
    .hero-section {
        padding-top: 100px;
        padding-bottom: 40px;
        min-height: auto;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-content {
        margin: 0 auto;
    }
    
    .hero-title {
        font-size: 2.6rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 24px;
    }
    
    .hero-bullets {
        grid-template-columns: 1fr;
        gap: 12px;
        text-align: left;
        max-width: 320px;
        margin: 0 auto 30px;
    }
    
    .hero-actions {
        justify-content: center;
        flex-direction: column;
        gap: 12px;
    }
    
    .btn-large {
        width: 100%;
    }
    
    /* Stats grid mobile */
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .stat-card {
        padding: 20px 10px;
    }
    
    .stat-number {
        font-size: 2.3rem;
    }

    /* Before/After mobile */
    .before-after-section {
        padding: 60px 0;
    }
    
    .slider-wrapper {
        aspect-ratio: 4 / 3; /* Better suited portrait-leaning ratio for mobile screens */
    }
    
    .social-proof-banner {
        flex-direction: column;
        text-align: center;
        padding: 24px;
        gap: 20px;
    }
    
    .social-proof-text {
        font-size: 1.1rem;
    }

    /* Grid cards mobile */
    .why-us-section {
        padding: 60px 0;
    }
    
    .grid-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .features-section {
        padding: 60px 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    /* Portfolio mobile */
    .portfolio-section {
        padding: 60px 0;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    /* Process steps mobile flowchart (vertical) */
    .process-section {
        padding: 60px 0;
    }
    
    .process-steps {
        flex-direction: column;
        gap: 40px;
    }
    
    .step-connector {
        transform: rotate(0deg); /* point down */
    }
    
    .step-card {
        width: 100%;
    }

    /* Special Offer */
    .website-offer-section {
        padding: 60px 0;
    }
    
    .offer-content {
        padding: 40px 24px;
    }
    
    .offer-title {
        font-size: 2.1rem;
    }
    
    .offer-description {
        font-size: 1rem;
    }

    /* Testimonials */
    .testimonials-section {
        padding: 60px 0;
    }
    
    .testimonial-slide {
        padding: 30px 20px;
    }
    
    .testimonial-text {
        font-size: 1.1rem;
    }

    /* FAQ accordion mobile styling */
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-question {
        padding: 18px 20px;
        font-size: 1.05rem;
    }
    
    .faq-answer p {
        padding: 0 20px 20px;
        font-size: 0.9rem;
    }

    /* Contact mobile styling */
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .contact-desc {
        font-size: 1rem;
        text-align: center;
    }
    
    .contact-form-wrapper {
        padding: 24px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Footer mobile */
    .site-footer {
        padding: 60px 0 20px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-desc {
        margin: 0 auto;
    }
    
    .footer-bottom-container {
        flex-direction: column;
        gap: 16px;
    }
}

/* Small screens adjustments */
@media (max-width: 480px) {
    .section-title {
        font-size: 2rem;
    }
    
    .logo {
        font-size: 1.35rem;
    }
    
    .primary-navigation {
        inset: 0 0 0 15%;
    }
}
