/* ===================================
   Dominark - Shopify Agency Website
   Premium, Colorful, Modern UI (Mobile-First)
   =================================== */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* CSS Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors - Harvest Orange Theme */
    --primary-color: #f97316;
    --primary-dark: #ea580c;
    --primary-light: #fb923c;
    --accent-teal: #ff6b35;
    --accent-green: #16a34a;
    --text-dark: #0f172a;
    --text-medium: #3a4a63;
    --text-light: #64748b;
    --bg-white: #ffffff;
    --bg-light: #fff7ed;
    --bg-dark: #1a0a00;
    --border-color: #fed7aa;
    --success-color: #10b981;
    --gradient-primary: linear-gradient(120deg, #ea580c 0%, #f97316 45%, #fb923c 100%);
    --gradient-secondary: linear-gradient(135deg, #ea580c 0%, #ff6b35 50%, #fb923c 100%);
    --glass: rgba(255, 247, 237, 0.7);
    --glass-border: rgba(249, 115, 22, 0.35);
    
    /* Typography */
    --font-primary: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 220ms ease;
    --transition-slow: 360ms ease;
    
    /* Shadows */
    --shadow-sm: 0 8px 24px -12px rgba(15, 23, 42, 0.18);
    --shadow-md: 0 16px 45px -20px rgba(15, 23, 42, 0.25);
    --shadow-lg: 0 30px 80px -35px rgba(15, 23, 42, 0.35);
    --shadow-glow: 0 10px 40px rgba(249, 115, 22, 0.30);
}

html {
    scroll-behavior: smooth;
    background: radial-gradient(circle at 10% 20%, rgba(249, 115, 22, 0.08), transparent 25%),
                radial-gradient(circle at 90% 10%, rgba(255, 107, 53, 0.08), transparent 20%),
                radial-gradient(circle at 50% 80%, rgba(251, 146, 60, 0.08), transparent 18%),
                #fff7ed;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    background-color: transparent;
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    z-index: 0;
}

body::before {
    content: "";
    position: fixed;
    inset: -12%;
    z-index: -1;
    background:
        radial-gradient(circle at 18% 20%, rgba(249, 115, 22, 0.22), transparent 30%),
        radial-gradient(circle at 78% 12%, rgba(255, 107, 53, 0.22), transparent 32%),
        radial-gradient(circle at 52% 78%, rgba(251, 146, 60, 0.18), transparent 30%),
        conic-gradient(from 120deg at 50% 50%, rgba(249, 115, 22, 0.18), rgba(255, 107, 53, 0.16), rgba(251, 146, 60, 0.14), rgba(249, 115, 22, 0.18));
    filter: blur(32px) saturate(120%);
    transform: perspective(1400px) rotateX(24deg) scale(1.05);
    transform-origin: center;
    opacity: 0.9;
    animation: slowRotate 28s ease-in-out infinite alternate;
    pointer-events: none;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: var(--font-weight-bold);
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.02em;
}

h1 {
    font-size: 2.75rem;
    line-height: 1.05;
}

h2 {
    font-size: 2.15rem;
}

h3 {
    font-size: 1.6rem;
}

h4 {
    font-size: 1.3rem;
}

p {
    margin-bottom: var(--spacing-md);
    color: var(--text-medium);
}

/* Accent Text for Multi-Color Headings */
.text-accent {
    color: var(--primary-color);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-base), transform var(--transition-base);
    position: relative;
}

a:focus-visible,
.btn:focus-visible,
.nav-menu a:focus-visible,
.btn-nav:focus-visible {
    outline: 2px solid rgba(37, 99, 235, 0.8);
    outline-offset: 3px;
    box-shadow: 0 0 0 6px rgba(14, 165, 233, 0.18);
    border-radius: 10px;
}

a:hover {
    color: var(--primary-dark);
}

.nav-menu li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
    border-radius: 999px;
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
    transform: scaleX(1);
}

ul, ol {
    margin-bottom: var(--spacing-md);
}

li {
    margin-bottom: var(--spacing-xs);
}

.lead {
    font-size: 1.25rem;
    color: var(--text-medium);
    margin-bottom: var(--spacing-lg);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.95rem 1.9rem;
    font-size: 1rem;
    font-weight: var(--font-weight-semibold);
    text-align: center;
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
    line-height: 1;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    letter-spacing: 0.3px;
}

.btn-primary {
    background-image: linear-gradient(135deg, #ea580c 0%, #f97316 50%, #fb923c 100%);
    color: var(--bg-white);
    box-shadow: 0 16px 45px rgba(249, 115, 22, 0.32);
    position: relative;
}

.section-cta .btn-primary,
.final-cta .btn-primary,
.hero-cta .btn-primary {
    background-image: linear-gradient(135deg, #ea580c 0%, #f97316 50%, #fb923c 100%);
    box-shadow: 0 18px 52px rgba(249, 115, 22, 0.35);
}

.btn-primary::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.35), rgba(255,255,255,0));
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.btn-primary::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255,255,255,0.15), rgba(255,255,255,0));
    border-radius: var(--radius-lg);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 60px rgba(249, 115, 22, 0.4);
    background-image: linear-gradient(135deg, #f97316 0%, #fb923c 50%, #fbbf24 100%);
}

.btn-primary:hover::after {
    opacity: 1;
}

.btn-primary:active {
    transform: translateY(-1px);
    box-shadow: 0 12px 35px rgba(249, 115, 22, 0.35);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.95);
    color: #f97316;
    border: 2px solid #f97316;
    box-shadow: 0 8px 25px rgba(15, 23, 42, 0.08);
    font-weight: var(--font-weight-semibold);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.05), rgba(249, 115, 22, 0.1));
    border-color: #fb923c;
    color: #ea580c;
    transform: translateY(-3px);
    box-shadow: 0 14px 35px rgba(249, 115, 22, 0.18);
}

.btn-secondary:active {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.15);
}

.btn-large {
    padding: 1.125rem 2.25rem;
    font-size: 1.125rem;
}

.btn-small {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
}

/* Subtle stagger animations */
.services-grid .service-card:nth-child(1) { animation-delay: 0.02s; }
.services-grid .service-card:nth-child(2) { animation-delay: 0.08s; }
.services-grid .service-card:nth-child(3) { animation-delay: 0.14s; }
.services-grid .service-card:nth-child(4) { animation-delay: 0.2s; }
.services-grid .service-card:nth-child(5) { animation-delay: 0.26s; }
.services-grid .service-card:nth-child(6) { animation-delay: 0.32s; }

.value-grid .value-item:nth-child(1) { animation-delay: 0.04s; }
.value-grid .value-item:nth-child(2) { animation-delay: 0.1s; }
.value-grid .value-item:nth-child(3) { animation-delay: 0.16s; }

.reasons-grid .reason-item:nth-child(1) { animation-delay: 0.02s; }
.reasons-grid .reason-item:nth-child(2) { animation-delay: 0.08s; }
.reasons-grid .reason-item:nth-child(3) { animation-delay: 0.14s; }
.reasons-grid .reason-item:nth-child(4) { animation-delay: 0.2s; }
.reasons-grid .reason-item:nth-child(5) { animation-delay: 0.26s; }
.reasons-grid .reason-item:nth-child(6) { animation-delay: 0.32s; }

.process-steps .process-step:nth-child(1) { animation-delay: 0.04s; }
.process-steps .process-step:nth-child(2) { animation-delay: 0.1s; }
.process-steps .process-step:nth-child(3) { animation-delay: 0.16s; }
.process-steps .process-step:nth-child(4) { animation-delay: 0.22s; }

.methods-grid .method-card:nth-child(1) { animation-delay: 0.04s; }
.methods-grid .method-card:nth-child(2) { animation-delay: 0.1s; }
.methods-grid .method-card:nth-child(3) { animation-delay: 0.16s; }

/* Navigation */
.navbar {
    background-color: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(226, 232, 240, 0.6);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    backdrop-filter: saturate(180%) blur(12px);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-md) 0;
}

.logo {
    font-size: 1.6rem;
    font-weight: var(--font-weight-bold);
    color: var(--text-dark);
    letter-spacing: -0.01em;
}

.logo:hover {
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-lg);
    align-items: center;
    margin: 0;
}

.nav-menu li a {
    color: var(--text-medium);
    font-weight: var(--font-weight-medium);
    transition: color var(--transition-base);
    padding: 0.25rem 0;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: var(--primary-color);
}

.btn-nav {
    padding: 0.65rem 1.35rem;
    background-image: linear-gradient(135deg, #ea580c 0%, #f97316 50%, #fb923c 100%);
    color: var(--bg-white) !important;
    border-radius: var(--radius-lg);
    font-weight: var(--font-weight-semibold);
    box-shadow: 0 10px 28px rgba(249, 115, 22, 0.28);
    transition: all var(--transition-base);
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 38px rgba(249, 115, 22, 0.35);
    background-image: linear-gradient(135deg, #f97316 0%, #fb923c 50%, #fbbf24 100%);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    margin: 3px 0;
    transition: all var(--transition-base);
    border-radius: 2px;
}

/* Hero Section */
.hero {
    position: relative;
    background: 
        linear-gradient(165deg, rgba(10, 16, 32, 0.92) 0%, rgba(13, 19, 40, 0.88) 35%, rgba(255, 255, 255, 0.94) 100%),
        url('https://images.unsplash.com/photo-1460925895917-afdab827c52f?w=1920&q=90') center/cover no-repeat;
    padding: var(--spacing-3xl) 0;
    text-align: center;
    overflow: hidden;
    background-attachment: fixed;
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.16), transparent 60%);
    filter: blur(78px);
    z-index: 0;
    opacity: 0.64;
}

.hero::before {
    top: -160px;
    left: -120px;
    animation: slowDrift 52s ease-in-out infinite;
}

.hero::after {
    bottom: -180px;
    right: -120px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.14), transparent 60%);
    animation: slowDrift 56s ease-in-out infinite reverse;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1020px;
    margin: 0 auto;
    padding: calc(var(--spacing-2xl) + 0.5rem) var(--spacing-xl);
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 28px;
    box-shadow: 0 32px 90px rgba(0, 8, 20, 0.32), 
                0 16px 50px rgba(249, 115, 22, 0.12),
                0 10px 35px rgba(15, 23, 42, 0.20);
    backdrop-filter: blur(20px) saturate(180%);
    animation: fadeUp 0.8s ease both;
}

.hero-content::before,
.hero-content::after {
    content: "";
    position: absolute;
    inset: -12% -8% auto -8%;
    height: 65%;
    background: radial-gradient(circle at 30% 40%, rgba(249, 115, 22, 0.14), transparent 50%),
                radial-gradient(circle at 70% 60%, rgba(255, 107, 53, 0.12), transparent 55%);
    filter: blur(40px);
    z-index: -1;
    opacity: 0.9;
}

.hero-content::after {
    inset: auto -8% -14% -8%;
    height: 55%;
    background: radial-gradient(circle at 50% 50%, rgba(15, 23, 42, 0.18), transparent 58%);
    filter: blur(55px);
    opacity: 0.75;
}

.hero h1 {
    font-size: 3.35rem;
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
    letter-spacing: -0.025em;
    line-height: 1.05;
    animation: fadeUp 0.8s ease both;
    animation-delay: 0.05s;
}

.hero-subtitle {
    font-size: 1.18rem;
    color: #475569;
    margin-bottom: var(--spacing-md);
    line-height: 1.65;
    animation: fadeUp 0.85s ease both;
    animation-delay: 0.12s;
}

.trust-line {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-xl);
    font-weight: var(--font-weight-medium);
    letter-spacing: 0.01em;
    animation: fadeUp 0.9s ease both;
    animation-delay: 0.18s;
}

.hero-cta {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeUp 0.9s ease both;
    animation-delay: 0.24s;
}

/* ===================================
   PREMIUM ANIMATED HERO SECTION
   =================================== */

.hero-premium {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: linear-gradient(135deg, #0f172a 0%, #1a1f35 50%, #0f172a 100%);
    overflow: hidden;
}

/* Background Animated Elements */
.hero-bg-gradient {
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(45deg, transparent 0%, rgba(249, 115, 22, 0.15) 25%, transparent 50%),
        linear-gradient(-45deg, transparent 0%, rgba(249, 115, 22, 0.12) 25%, transparent 50%),
        radial-gradient(circle at 20% 30%, rgba(249, 115, 22, 0.25), transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(234, 88, 12, 0.2), transparent 45%);
    background-size: 300% 300%;
    animation: gradientShift 15s ease infinite;
    z-index: 0;
}

.hero-animated-lines {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(90deg, rgba(249, 115, 22, 0.1) 1px, transparent 1px),
        linear-gradient(rgba(249, 115, 22, 0.1) 1px, transparent 1px);
    background-size: 80px 80px;
    background-position: 0 0, 40px 40px;
    animation: dataLines 20s linear infinite;
    z-index: 1;
    opacity: 0.3;
}

.hero-canvas {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0.4;
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: var(--spacing-3xl) var(--spacing-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Left Content */
.hero-left {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    align-items: center;
    width: 100%;
}

.hero-label {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
}

.label-badge {
    display: inline-block;
    background: rgba(249, 115, 22, 0.2);
    border: 1px solid rgba(249, 115, 22, 0.4);
    color: #f97316;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    animation: fadeUp 0.8s ease both;
}

/* Headline with Word-by-Word Animation */
.hero-headline {
    font-size: 3.5rem;
    line-height: 1.15;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 0;
    word-spacing: 0.05em;
}

.headline-word {
    display: inline-block;
    margin-right: 0.05em;
    opacity: 0;
    animation: headlineReveal 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.headline-word:nth-child(1) { animation-delay: 0.1s; }
.headline-word:nth-child(2) { animation-delay: 0.2s; }
.headline-word:nth-child(3) { animation-delay: 0.3s; }
.headline-word:nth-child(4) { animation-delay: 0.4s; }
.headline-word:nth-child(5) { animation-delay: 0.5s; }
.headline-word:nth-child(6) { animation-delay: 0.6s; }
.headline-word:nth-child(7) { animation-delay: 0.7s; }
.headline-word:nth-child(8) { animation-delay: 0.8s; }
.headline-word:nth-child(9) { animation-delay: 0.9s; }
.headline-word:nth-child(10) { animation-delay: 1s; }

/* Highlight accent for special words */
.highlight-accent {
    color: #f97316 !important;
    font-weight: 800;
    text-shadow: 0 0 20px rgba(249, 115, 22, 0.6), 0 0 40px rgba(249, 115, 22, 0.3);
    letter-spacing: 0.02em;
}

/* Subheading */
.hero-subheading {
    font-size: 1.25rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    animation: fadeUp 0.8s ease both;
    animation-delay: 1s;
    margin: 0 auto;
}

/* Trust Metrics */
.hero-trust-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(249, 115, 22, 0.2);
    animation: fadeUp 0.8s ease both;
    animation-delay: 1.1s;
    margin: 0 auto;
}

.metric {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.metric-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: #f97316;
}

.metric-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Premium CTA Buttons */
.hero-cta-premium {
    display: flex;
    gap: var(--spacing-md);
    padding-top: var(--spacing-lg);
    animation: fadeUp 0.8s ease both;
    animation-delay: 1.2s;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.btn-hero-primary {
    background: linear-gradient(135deg, #ea580c 0%, #f97316 50%, #fb923c 100%);
    color: #ffffff;
    box-shadow: 0 12px 35px rgba(249, 115, 22, 0.4);
}

.btn-hero-primary::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left var(--transition-base);
}

.btn-hero-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 50px rgba(249, 115, 22, 0.55), 
                0 0 30px rgba(249, 115, 22, 0.35);
}

.btn-hero-primary:hover::before {
    left: 100%;
}

.btn-hero-secondary {
    background: transparent;
    color: #f97316;
    border: 2px solid rgba(249, 115, 22, 0.6);
}

.btn-hero-secondary:hover {
    background: rgba(249, 115, 22, 0.15);
    border-color: #f97316;
    transform: translateY(-4px);
}

/* Hero Footnote */
.hero-footnote {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.55);
    animation: fadeUp 0.8s ease both;
    animation-delay: 1.3s;
    margin: 0;
}

/* Right Visual */
.hero-right {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeUp 0.8s ease both;
    animation-delay: 0.3s;
}

.hero-image-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1;
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.2), rgba(234, 88, 12, 0.15));
    border: 2px solid rgba(249, 115, 22, 0.3);
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.hero-image-container:hover .hero-image {
    transform: scale(1.05);
}

.hero-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.3), transparent 50%);
    z-index: 2;
}

.hero-glow-element {
    position: absolute;
    top: -20%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.25), transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    animation: floatingGlow 6s ease-in-out infinite;
    z-index: 1;
}

/* Animation Keyframes */
@keyframes headlineReveal {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes dataLines {
    0% { background-position: 0 0, 40px 40px; }
    100% { background-position: 80px 80px, 120px 120px; }
}

@keyframes floatingGlow {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-30px); }
}

/* Parallax on scroll */
.hero-image {
    will-change: transform;
}

/* Page Header */
.page-header {
    background-color: var(--bg-light);
    padding: var(--spacing-3xl) 0 var(--spacing-2xl);
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.page-header h1 {
    font-size: 2.75rem;
    margin-bottom: var(--spacing-md);
}

.page-header p {
    font-size: 1.25rem;
    color: var(--text-medium);
    max-width: 700px;
    margin: 0 auto;
}

/* Sections */
section {
    padding: var(--spacing-3xl) 0;
}

/* Subtle section dividers for scanability */
section:not(.hero):not(.page-header):not(.final-cta) {
    position: relative;
}

section:not(.hero):not(.page-header):not(.final-cta)::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(15, 23, 42, 0.08) 18%, rgba(15, 23, 42, 0.12) 50%, rgba(15, 23, 42, 0.08) 82%, transparent 100%);
    pointer-events: none;
}

.section-intro {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-medium);
    max-width: 700px;
    margin: 0 auto var(--spacing-2xl);
}

.section-cta {
    text-align: center;
    margin-top: var(--spacing-2xl);
}

/* Value Proposition */
.value-proposition {
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.02) 0%, #ffffff 60%, #f8fafc 100%);
}

.value-proposition {
    background-color: var(--bg-white);
}

.value-proposition h2 {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: var(--spacing-2xl);
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
}

.value-item {
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.9);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    animation: fadeUp 0.9s ease both;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.value-item h3 {
    font-size: 1.375rem;
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
}

.value-item p {
    color: var(--text-medium);
    line-height: 1.7;
}

/* Services Snapshot */
.services-snapshot {
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.035) 0%, rgba(255, 255, 255, 0.96) 55%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.services-snapshot::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 25% 20%, rgba(37, 99, 235, 0.1), transparent 35%),
                radial-gradient(circle at 80% 10%, rgba(6, 182, 212, 0.12), transparent 32%);
    opacity: 0.8;
    pointer-events: none;
}

.services-snapshot h2 {
    text-align: center;
    font-size: 2.3rem;
    margin-bottom: var(--spacing-sm);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin-top: var(--spacing-2xl);
    position: relative;
    z-index: 1;
}

.service-card {
    background: rgba(255, 255, 255, 0.98);
    padding: calc(var(--spacing-xl) + 0.75rem);
    border-radius: 20px;
    border: 2px solid rgba(249, 115, 22, 0.2);
    transition: all var(--transition-base);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    animation: fadeUp 0.9s ease both;
}

.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.08), rgba(251, 146, 60, 0.08));
    opacity: 0;
    transition: opacity var(--transition-base);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.14), 0 10px 25px rgba(249, 115, 22, 0.25);
    border-color: rgba(249, 115, 22, 0.4);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: var(--bg-white);
    font-size: 2.5rem;
    margin: 0 auto var(--spacing-md);
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.3);
}

.service-card h3 {
    font-size: 1.35rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
    text-align: center;
}

.service-card p {
    color: var(--text-medium);
    line-height: 1.65;
    margin-bottom: 0;
    text-align: center;
}

/* Why Choose Us */
.why-choose-us {
    background-color: var(--bg-white);
}

.why-choose-us h2 {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: var(--spacing-2xl);
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
}

.reason-item {
    padding: calc(var(--spacing-xl) + 0.75rem);
    border-radius: 20px;
    border: 2px solid rgba(249, 115, 22, 0.2);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
    transition: all var(--transition-base);
    animation: fadeUp 0.9s ease both;
    text-align: center;
}

.reason-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.14), 0 10px 25px rgba(249, 115, 22, 0.25);
    border-color: rgba(249, 115, 22, 0.4);
}

.reason-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: var(--bg-white);
    font-size: 2.5rem;
    margin: 0 auto var(--spacing-md);
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.3);
}

.reason-item h3 {
    font-size: 1.35rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
}

.reason-item p {
    color: var(--text-medium);
    line-height: 1.65;
    margin: 0;
}

/* Process Overview */
.process-overview {
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.03) 0%, rgba(255, 255, 255, 0.96) 60%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.process-overview::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 15% 40%, rgba(37,99,235,0.08), transparent 40%),
                radial-gradient(circle at 85% 70%, rgba(6,182,212,0.1), transparent 40%);
    pointer-events: none;
}

.process-overview h2 {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: var(--spacing-sm);
    position: relative;
    z-index: 1;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-2xl);
    position: relative;
    z-index: 1;
}

.process-step {
    text-align: center;
    padding: var(--spacing-lg);
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    animation: fadeUp 0.9s ease both;
}

.process-step:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.step-number {
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
    opacity: 0.35;
}

.process-step h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
}

.process-step p {
    color: var(--text-medium);
    line-height: 1.6;
}

/* Service Details (Services Page) */
.service-detail {
    padding: var(--spacing-2xl) 0;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.service-detail.alt {
    background-color: var(--bg-light);
}

.service-detail h2 {
    font-size: 2rem;
    margin-bottom: var(--spacing-md);
    position: relative;
    z-index: 1;
}

.service-intro {
    font-size: 1.125rem;
    color: var(--text-medium);
    margin-bottom: var(--spacing-xl);
    max-width: 900px;
    position: relative;
    z-index: 1;
}

.service-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
    position: relative;
    z-index: 1;
}

.feature-col {
    padding: var(--spacing-xl);
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    animation: fadeUp 0.9s ease both;
}

.feature-col:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-col h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
}

.feature-col ul {
    list-style: none;
    padding-left: 0;
}

.feature-col ul li {
    padding-left: 1.75rem;
    position: relative;
    margin-bottom: var(--spacing-sm);
    color: var(--text-medium);
}

.feature-col ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: var(--font-weight-bold);
}

.feature-col ul li strong {
    color: var(--text-dark);
    font-weight: var(--font-weight-semibold);
}

/* Process Page Styles */
.process-intro-section {
    background-color: var(--bg-white);
    padding: var(--spacing-2xl) 0;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
}

.process-phase {
    padding: calc(var(--spacing-3xl) + 1rem) 0;
    position: relative;
}

.process-phase::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, rgba(249, 115, 22, 0.2) 0%, rgba(249, 115, 22, 0.6) 50%, rgba(249, 115, 22, 0.2) 100%);
    transform: translateX(-50%);
    z-index: 0;
}

.process-phase:last-of-type::before {
    display: none;
}

.process-phase.alt {
    background: linear-gradient(135deg, rgba(255, 247, 237, 0.4) 0%, rgba(255, 255, 255, 0.6) 100%);
}

.phase-header {
    text-align: center;
    margin-bottom: calc(var(--spacing-xl) + 0.5rem);
    position: relative;
    z-index: 2;
}

.page-header {
    background: 
        linear-gradient(135deg, rgba(10, 10, 10, 0.88) 0%, rgba(26, 10, 0, 0.85) 50%, rgba(255, 255, 255, 0.92) 100%),
        url('https://images.unsplash.com/photo-1552664730-d307ca884978?w=1920&q=90') center/cover no-repeat;
    padding: calc(var(--spacing-3xl) + 1rem) 0 var(--spacing-2xl);
    text-align: center;
    border-bottom: 3px solid rgba(249, 115, 22, 0.3);
    position: relative;
    overflow: hidden;
    background-attachment: fixed;
}

.page-header::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.20), transparent 60%);
    filter: blur(60px);
    top: -140px;
    left: -100px;
    animation: float 18s ease-in-out infinite;
}

.page-header::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.18), transparent 60%);
    filter: blur(60px);
    bottom: -100px;
    right: -80px;
    animation: float 22s ease-in-out infinite reverse;
}

.page-header h1 {
    font-size: 3.2rem;
    margin-bottom: var(--spacing-md);
    position: relative;
    z-index: 1;
    color: #ffffff;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.03em;
}

.page-header p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 720px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
    font-weight: 400;
}
    max-width: 900px;
    margin: 0 auto;
}

.phase-description,
.phase-activities,
.phase-deliverables {
    background: rgba(255, 255, 255, 0.95);
    padding: var(--spacing-lg);
    border-radius: 20px;
    border: 1px solid rgba(249, 115, 22, 0.15);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08),
                0 2px 8px rgba(249, 115, 22, 0.1);
    transition: all var(--transition-base);
    height: 100%;
}

.phase-description:hover,
.phase-activities:hover,
.phase-deliverables:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.12),
                0 4px 15px rgba(249, 115, 22, 0.18);
    border-color: rgba(249, 115, 22, 0.3);
}

.phase-description h3,
.phase-activities h3,
.phase-deliverables h3 {
    font-size: 1.35rem;
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.phase-description h3::before {
    content: '💡';
    font-size: 1.5rem;
}

.phase-activities h3::before {
    content: '⚡';
    font-size: 1.5rem;
}

.phase-deliverables h3::before {
    content: '✅';
    font-size: 1.5rem;
}

.phase-description p {
    color: var(--text-medium);
    line-height: 1.7;
}

.phase-activities ul,
.phase-deliverables ul {
    list-style: none;
    padding-left: 0;
}

.phase-activities ul li,
.phase-deliverables ul li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 0.875rem;
    color: var(--text-medium);
    line-height: 1.6;
}

.phase-activities ul li::before {
    content: "▶";
    position: absolute;
    left: 0.5rem;
    color: var(--primary-color);
    font-size: 0.75rem;
    font-weight: var(--font-weight-bold);
}

.phase-deliverables ul li::before {
    content: "✓";
    position: absolute;
    left: 0.5rem;
    color: var(--success-color);
    font-weight: var(--font-weight-bold);
    font-size: 1.1rem;
}

/* New Professional Process Page Styling */
.phase-content {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: calc(var(--spacing-xl) + 0.5rem);
    position: relative;
    z-index: 2;
}

.phase-intro-card {
    max-width: 900px;
    margin: 0 auto var(--spacing-xl);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 247, 237, 0.95) 100%);
    padding: calc(var(--spacing-lg) + 0.75rem);
    border-radius: 24px;
    border: 2px solid rgba(249, 115, 22, 0.2);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.phase-intro-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
}

.phase-intro-icon {
    font-size: 3.5rem;
    margin-bottom: var(--spacing-md);
    display: inline-block;
    animation: float 4s ease-in-out infinite;
}

.phase-intro-card h3 {
    font-size: 1.75rem;
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
}

.phase-intro-card p {
    font-size: 1.1rem;
    color: var(--text-medium);
    line-height: 1.75;
    margin: 0;
}

.phase-card {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 20px;
    border: 2px solid rgba(249, 115, 22, 0.15);
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
    transition: all var(--transition-base);
}

.phase-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12),
                0 8px 20px rgba(249, 115, 22, 0.2);
    border-color: rgba(249, 115, 22, 0.35);
}

.card-header {
    background: var(--gradient-primary);
    padding: var(--spacing-lg);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.card-header .card-icon {
    font-size: 1.75rem;
}

.card-header h3 {
    color: #ffffff;
    margin: 0;
    font-size: 1.4rem;
    font-weight: 700;
}

.card-body {
    padding: calc(var(--spacing-lg) + 0.25rem);
}

.activity-item {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: calc(var(--spacing-md) + 0.25rem);
    padding-bottom: calc(var(--spacing-md) + 0.25rem);
    border-bottom: 1px solid rgba(249, 115, 22, 0.1);
}

.activity-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.activity-badge {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.15) 0%, rgba(255, 107, 53, 0.15) 100%);
    border: 2px solid rgba(249, 115, 22, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary-color);
    font-size: 0.95rem;
}

.activity-content h4 {
    font-size: 1.05rem;
    margin-bottom: 0.35rem;
    color: var(--text-dark);
    font-weight: 600;
}

.activity-content p {
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.6;
    margin: 0;
}

.deliverable-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid rgba(249, 115, 22, 0.08);
}

.deliverable-item:last-child {
    border-bottom: none;
}

.check-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #16a34a 0%, #22c55e 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

.deliverable-item span:last-child {
    font-size: 1rem;
    color: var(--text-medium);
    line-height: 1.7;
}

/* ===================================
   Roadmap Page Styling
   =================================== */
.roadmap-intro {
    background: rgba(255, 255, 255, 0.95);
    padding: var(--spacing-2xl) 0;
    text-align: center;
    border-bottom: 1px solid rgba(249, 115, 22, 0.15);
}

.intro-text {
    font-size: 1.3rem;
    color: var(--text-medium);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 400;
}

.roadmap-timeline {
    padding: calc(var(--spacing-3xl) + 2rem) 0;
    background: linear-gradient(180deg, rgba(255, 247, 237, 0.3) 0%, rgba(255, 255, 255, 0.5) 100%);
}

.roadmap-step {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: calc(var(--spacing-xl) + 1rem);
    margin-bottom: calc(var(--spacing-3xl) + 1rem);
    position: relative;
}

.roadmap-step.last-step {
    margin-bottom: 0;
}

.step-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.step-icon {
    width: 110px;
    height: 110px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    box-shadow: 0 16px 45px rgba(249, 115, 22, 0.35),
                0 6px 20px rgba(0, 0, 0, 0.12);
    position: relative;
    z-index: 2;
    animation: fadeUp 0.6s ease both;
}

.step-connector {
    width: 4px;
    flex: 1;
    background: linear-gradient(180deg, 
        rgba(249, 115, 22, 0.6) 0%, 
        rgba(249, 115, 22, 0.3) 50%,
        rgba(249, 115, 22, 0.6) 100%
    );
    margin-top: var(--spacing-md);
    border-radius: 2px;
    position: relative;
}

.step-connector::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: rgba(249, 115, 22, 0.4);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: translateX(-50%) scale(1);
        opacity: 1;
    }
    50% {
        transform: translateX(-50%) scale(1.5);
        opacity: 0.6;
    }
}

.step-content {
    background: rgba(255, 255, 255, 0.98);
    padding: calc(var(--spacing-lg) + 1rem);
    border-radius: 24px;
    border: 2px solid rgba(249, 115, 22, 0.2);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.step-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: var(--gradient-primary);
}

.step-content:hover {
    transform: translateX(8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12),
                0 8px 25px rgba(249, 115, 22, 0.2);
    border-color: rgba(249, 115, 22, 0.4);
}

.step-content h3 {
    font-size: 1.85rem;
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
    font-weight: 700;
}

.step-content p {
    font-size: 1.1rem;
    color: var(--text-medium);
    line-height: 1.75;
    margin-bottom: calc(var(--spacing-md) + 0.5rem);
}

.step-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.highlight-tag {
    display: inline-block;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.12) 0%, rgba(255, 107, 53, 0.12) 100%);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(249, 115, 22, 0.25);
    transition: all var(--transition-base);
}

.highlight-tag:hover {
    background: var(--gradient-primary);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(249, 115, 22, 0.25);
}

.why-process-section {
    background: 
        linear-gradient(135deg, rgba(249, 115, 22, 0.08) 0%, rgba(255, 247, 237, 0.9) 100%),
        url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?w=1920&q=90') center/cover no-repeat;
    padding: calc(var(--spacing-3xl) + 2rem) 0;
    position: relative;
    background-attachment: fixed;
}

.why-process-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(6px);
}

.why-process-section .container {
    position: relative;
    z-index: 1;
}

.why-process-section h2 {
    text-align: center;
    font-size: 2.6rem;
    margin-bottom: calc(var(--spacing-2xl) + 1rem);
    color: var(--text-dark);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: calc(var(--spacing-xl) + 0.5rem);
    max-width: 1200px;
    margin: 0 auto;
}

.why-item {
    background: rgba(255, 255, 255, 0.98);
    padding: calc(var(--spacing-lg) + 0.75rem);
    border-radius: 20px;
    border: 2px solid rgba(249, 115, 22, 0.2);
    text-align: center;
    transition: all var(--transition-base);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.why-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.14),
                0 10px 25px rgba(249, 115, 22, 0.25);
    border-color: rgba(249, 115, 22, 0.4);
}

.why-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto var(--spacing-md);
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.3);
}

.why-item h3 {
    font-size: 1.35rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
}

.why-item p {
    font-size: 1rem;
    color: var(--text-medium);
    line-height: 1.65;
    margin: 0;
}

.collaboration-section {
    background: 
        linear-gradient(135deg, rgba(249, 115, 22, 0.05) 0%, rgba(255, 247, 237, 0.8) 100%),
        url('https://images.unsplash.com/photo-1600880292203-757bb62b4baf?w=1920&q=90') center/cover no-repeat;
    padding: calc(var(--spacing-3xl) + 1.5rem) 0;
    position: relative;
    background-attachment: fixed;
}

.collaboration-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
}

.collaboration-section .container {
    position: relative;
    z-index: 1;
}

.collaboration-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: calc(var(--spacing-2xl) + 0.5rem);
    color: var(--text-dark);
}

.collaboration-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: calc(var(--spacing-xl) + 0.5rem);
    max-width: 1200px;
    margin: 0 auto;
}

.collab-item {
    background: rgba(255, 255, 255, 0.95);
    padding: calc(var(--spacing-lg) + 0.5rem);
    border-radius: 20px;
    border: 2px solid rgba(249, 115, 22, 0.2);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.collab-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.collab-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15),
                0 8px 20px rgba(249, 115, 22, 0.2);
    border-color: rgba(249, 115, 22, 0.4);
}

.collab-item:hover::before {
    transform: scaleX(1);
}

.collab-item h3 {
    font-size: 1.4rem;
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
}

.collab-item p {
    color: var(--text-medium);
    line-height: 1.7;
}

.process-intro-section {
    background: rgba(255, 255, 255, 0.98);
    padding: calc(var(--spacing-3xl) + 0.5rem) 0;
    text-align: center;
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
}

.intro-content h2 {
    font-size: 2.3rem;
    margin-bottom: var(--spacing-lg);
    color: var(--text-dark);
}

.intro-content p {
    font-size: 1.1rem;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

/* About Page Styles */
.about-section {
    background-color: var(--bg-white);
    padding: var(--spacing-3xl) 0;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-content h2 {
    font-size: 2rem;
    margin-bottom: var(--spacing-lg);
}

.specialization-section {
    background-color: var(--bg-light);
    padding: var(--spacing-3xl) 0;
}

.specialization-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: var(--spacing-2xl);
}

.specialization-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-xl);
}

.spec-item {
    padding: var(--spacing-lg);
}

.spec-item h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
}

.approach-section {
    background-color: var(--bg-white);
    padding: var(--spacing-3xl) 0;
}

.approach-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: var(--spacing-2xl);
}

.approach-content {
    max-width: 900px;
    margin: 0 auto;
}

.approach-item {
    margin-bottom: var(--spacing-xl);
}

.approach-item h3 {
    font-size: 1.375rem;
    margin-bottom: var(--spacing-md);
}

.global-section {
    background-color: var(--bg-light);
    padding: var(--spacing-3xl) 0;
}

.global-content {
    max-width: 800px;
    margin: 0 auto;
}

.global-content h2 {
    font-size: 2rem;
    margin-bottom: var(--spacing-lg);
}

.why-dominark-section {
    background-color: var(--bg-white);
    padding: var(--spacing-3xl) 0;
}

.why-dominark-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: var(--spacing-2xl);
}

.reasons-list {
    max-width: 900px;
    margin: 0 auto;
}

.reason {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.reason-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--font-weight-bold);
    font-size: 1.125rem;
}

.reason-content h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
}

.reason-content p {
    margin-bottom: 0;
}

.values-section {
    background-color: var(--bg-light);
    padding: var(--spacing-3xl) 0;
}

.values-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: var(--spacing-2xl);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
}

.value-card {
    background-color: var(--bg-white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid var(--border-color);
}

.value-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
    color: var(--primary-color);
}

.value-card p {
    color: var(--text-medium);
    margin-bottom: 0;
}

/* Modern About Page Styles */
.about-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: calc(var(--spacing-3xl) + 3rem) 0 calc(var(--spacing-3xl) + 2rem);
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(249, 115, 22, 0.15), transparent 45%),
        radial-gradient(circle at 80% 70%, rgba(251, 146, 60, 0.12), transparent 45%);
    opacity: 1;
}

.hero-intro {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.label {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: var(--spacing-lg);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.4);
}

.section-label {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(249, 115, 22, 0.1);
    color: #f97316;
    font-size: 0.813rem;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: var(--spacing-md);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: 1px solid rgba(249, 115, 22, 0.2);
}

.hero-intro h1 {
    font-size: 3rem;
    line-height: 1.15;
    margin-bottom: var(--spacing-lg);
    font-weight: 700;
    color: white;
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    max-width: 720px;
    margin: 0 auto;
}

/* Stats Section */
.stats-section {
    background: white;
    padding: var(--spacing-3xl) 0;
    border-top: 1px solid rgba(249, 115, 22, 0.1);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-xl);
    max-width: 1100px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: var(--spacing-lg);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-sm);
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-medium);
    font-weight: 500;
}

/* Story Section */
.story-section {
    padding: calc(var(--spacing-3xl) + 2rem) 0;
    background: linear-gradient(180deg, white 0%, rgba(255, 247, 237, 0.3) 100%);
}

.story-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: calc(var(--spacing-2xl) + 2rem);
    align-items: center;
}

.story-content .lead {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: var(--spacing-lg);
    font-weight: 500;
}

.story-content p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--text-medium);
    margin-bottom: var(--spacing-md);
}

.story-content h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-xl);
    line-height: 1.2;
}

.story-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.15);
}

.story-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Expertise Section */
.expertise-section {
    padding: calc(var(--spacing-3xl) + 2rem) 0;
    background: white;
}

.section-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto var(--spacing-3xl);
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

.section-intro {
    font-size: 1.125rem;
    color: var(--text-medium);
    line-height: 1.6;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: calc(var(--spacing-xl) + 1rem);
}

.expertise-card {
    background: rgba(255, 255, 255, 0.98);
    padding: calc(var(--spacing-xl) + 1rem);
    border-radius: 20px;
    border: 2px solid rgba(249, 115, 22, 0.15);
    transition: all var(--transition-base);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.expertise-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12), 0 8px 20px rgba(249, 115, 22, 0.2);
    border-color: rgba(249, 115, 22, 0.3);
}

.expertise-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
}

.expertise-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
}

.expertise-card > p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: var(--spacing-lg);
}

.expertise-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.expertise-list li {
    padding: 0.5rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: var(--text-medium);
    font-size: 0.95rem;
}

.expertise-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #f97316;
    font-weight: 700;
}

/* Values & Approach Modern */
.values-approach-section {
    padding: calc(var(--spacing-3xl) + 2rem) 0;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.05) 0%, rgba(255, 247, 237, 0.8) 100%);
}

.values-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
    margin-top: var(--spacing-2xl);
}

.value-modern-card {
    background: rgba(255, 255, 255, 0.98);
    padding: calc(var(--spacing-xl) + 0.5rem);
    border-radius: 18px;
    border: 2px solid rgba(249, 115, 22, 0.15);
    text-align: center;
    transition: all var(--transition-base);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.value-modern-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12), 0 6px 18px rgba(249, 115, 22, 0.18);
    border-color: rgba(249, 115, 22, 0.3);
}

.value-icon-modern {
    font-size: 2.75rem;
    margin-bottom: var(--spacing-md);
}

.value-modern-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
}

.value-modern-card p {
    font-size: 0.975rem;
    line-height: 1.65;
    color: var(--text-medium);
    margin: 0;
}

/* Why Modern Section */
.why-modern-section {
    padding: calc(var(--spacing-3xl) + 2rem) 0;
    background: white;
}

.why-modern-layout {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: calc(var(--spacing-2xl) + 2rem);
    align-items: start;
}

.why-modern-content h2 {
    font-size: 2.5rem;
    margin-bottom: calc(var(--spacing-xl) + 1rem);
    line-height: 1.2;
}

.differentiators-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
}

.differentiator-item {
    display: flex;
    gap: var(--spacing-lg);
    align-items: flex-start;
}

.diff-number {
    flex-shrink: 0;
    width: 55px;
    height: 55px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.3);
}

.diff-content h3 {
    font-size: 1.35rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
}

.diff-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin: 0;
}

.why-modern-visual {
    position: sticky;
    top: 100px;
}

.achievement-badges {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.08) 0%, rgba(255, 247, 237, 0.95) 100%);
    padding: calc(var(--spacing-xl) + 1rem);
    border-radius: 24px;
    border: 2px solid rgba(249, 115, 22, 0.15);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

.badge-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
    background: white;
    border-radius: 16px;
    margin-bottom: var(--spacing-md);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: all var(--transition-base);
}

.badge-item:last-child {
    margin-bottom: 0;
}

.badge-item:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.badge-icon {
    font-size: 2.5rem;
}

.badge-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.badge-desc {
    font-size: 0.875rem;
    color: var(--text-medium);
}

/* Modern Services Page Styles */
.services-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: calc(var(--spacing-3xl) + 3rem) 0 calc(var(--spacing-3xl) + 2rem);
    position: relative;
    overflow: hidden;
}

.services-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(249, 115, 22, 0.15), transparent 45%),
        radial-gradient(circle at 80% 70%, rgba(251, 146, 60, 0.12), transparent 45%);
    opacity: 1;
}

.services-overview-section {
    padding: calc(var(--spacing-3xl) + 2rem) 0;
    background: linear-gradient(180deg, white 0%, rgba(255, 247, 237, 0.3) 100%);
}

.services-modern-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-xl);
    margin-top: var(--spacing-2xl);
}

/* ========================================
   Services Hero Premium Animation
   ======================================== */
.services-hero-premium {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: linear-gradient(135deg, #0f172a 0%, #1a1f35 50%, #0f172a 100%);
    overflow: hidden;
}

.services-hero-premium .hero-bg-gradient {
    background: 
        linear-gradient(45deg, transparent 0%, rgba(249, 115, 22, 0.18) 25%, transparent 50%),
        linear-gradient(-45deg, transparent 0%, rgba(249, 115, 22, 0.15) 25%, transparent 50%),
        radial-gradient(circle at 30% 40%, rgba(249, 115, 22, 0.25), transparent 40%),
        radial-gradient(circle at 70% 60%, rgba(234, 88, 12, 0.2), transparent 45%);
}

.services-hero-premium .hero-container {
    padding: var(--spacing-2xl) var(--spacing-lg);
}

/* Services specific animations */
.services-hero-premium .headline-word:nth-child(1) { animation-delay: 0.1s; }
.services-hero-premium .headline-word:nth-child(2) { animation-delay: 0.2s; }
.services-hero-premium .headline-word:nth-child(3) { animation-delay: 0.3s; }
.services-hero-premium .headline-word:nth-child(4) { animation-delay: 0.4s; }
.services-hero-premium .headline-word:nth-child(5) { animation-delay: 0.5s; }
.services-hero-premium .headline-word:nth-child(6) { animation-delay: 0.6s; }
.services-hero-premium .headline-word:nth-child(7) { animation-delay: 0.7s; }
.services-hero-premium .headline-word:nth-child(8) { animation-delay: 0.8s; }

/* ========================================
   About Hero Premium Animation
   ======================================== */
.about-hero-premium {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: linear-gradient(135deg, #0f172a 0%, #1a1f35 50%, #0f172a 100%);
    overflow: hidden;
}

.about-hero-premium .hero-bg-gradient {
    background: 
        linear-gradient(45deg, transparent 0%, rgba(249, 115, 22, 0.18) 25%, transparent 50%),
        linear-gradient(-45deg, transparent 0%, rgba(249, 115, 22, 0.15) 25%, transparent 50%),
        radial-gradient(circle at 30% 40%, rgba(249, 115, 22, 0.25), transparent 40%),
        radial-gradient(circle at 70% 60%, rgba(234, 88, 12, 0.2), transparent 45%);
}

.about-hero-premium .hero-container {
    padding: var(--spacing-2xl) var(--spacing-lg);
}

/* About specific animations */
.about-hero-premium .headline-word:nth-child(1) { animation-delay: 0.1s; }
.about-hero-premium .headline-word:nth-child(2) { animation-delay: 0.2s; }
.about-hero-premium .headline-word:nth-child(3) { animation-delay: 0.3s; }
.about-hero-premium .headline-word:nth-child(4) { animation-delay: 0.4s; }
.about-hero-premium .headline-word:nth-child(5) { animation-delay: 0.5s; }
.about-hero-premium .headline-word:nth-child(6) { animation-delay: 0.6s; }
.about-hero-premium .headline-word:nth-child(7) { animation-delay: 0.7s; }
.about-hero-premium .headline-word:nth-child(8) { animation-delay: 0.8s; }
.about-hero-premium .headline-word:nth-child(9) { animation-delay: 0.9s; }

.service-modern-card {
    background: rgba(255, 255, 255, 0.98);
    padding: calc(var(--spacing-xl) + 0.5rem);
    border-radius: 20px;
    border: 2px solid rgba(249, 115, 22, 0.15);
    transition: all var(--transition-base);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
    text-align: center;
}

.service-modern-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12), 0 8px 20px rgba(249, 115, 22, 0.22);
    border-color: rgba(249, 115, 22, 0.35);
}

.service-modern-icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    font-size: 2rem;
    margin: 0 auto var(--spacing-sm);
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.3);
}

.service-modern-card h3 {
    font-size: 1.15rem;
    margin-bottom: var(--spacing-xs);
    color: var(--text-dark);
    font-weight: 600;
}

.service-modern-card p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-medium);
    margin-bottom: var(--spacing-sm);
}

.service-learn-more {
    display: inline-block;
    color: #f97316;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all var(--transition-base);
}

.service-learn-more:hover {
    color: #ea580c;
    transform: translateX(4px);
}

.service-detail-header {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.service-detail-icon {
    flex-shrink: 0;
    width: 75px;
    height: 75px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    font-size: 2.5rem;
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.3);
}

.service-detail-header > div {
    flex: 1;
}

.service-detail-header h2 {
    margin-bottom: var(--spacing-sm);
}

.service-detail-header .service-intro {
    margin-bottom: 0;
}

/* Contact Page Styles */
.contact-methods {
    background-color: var(--bg-white);
    padding: var(--spacing-2xl) 0;
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-xl);
}

.method-card {
    text-align: center;
    padding: var(--spacing-xl);
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    animation: fadeUp 0.9s ease both;
}

.method-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.method-icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: var(--gradient-secondary);
    color: var(--bg-white);
    font-size: 1.9rem;
    margin: 0 auto var(--spacing-md);
    box-shadow: var(--shadow-glow);
}

.method-card h3 {
    font-size: 1.375rem;
    margin-bottom: var(--spacing-md);
}

.method-card p {
    color: var(--text-medium);
    margin-bottom: var(--spacing-md);
}

.method-note {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: var(--spacing-md);
}

.contact-form-section {
    background-color: var(--bg-light);
    padding: var(--spacing-3xl) 0;
    position: relative;
    overflow: hidden;
}

.contact-form-section::before {
    content: "";
    position: absolute;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(37,99,235,0.12), transparent 60%);
    filter: blur(60px);
    top: -100px;
    left: -80px;
    pointer-events: none;
}

.contact-form-section::after {
    content: "";
    position: absolute;
    width: 340px;
    height: 340px;
    background: radial-gradient(circle, rgba(6,182,212,0.12), transparent 60%);
    filter: blur(60px);
    bottom: -80px;
    right: -60px;
    pointer-events: none;
}

.form-container {
    max-width: 780px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.96);
    padding: var(--spacing-2xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(226, 232, 240, 0.9);
    position: relative;
    z-index: 1;
}

.form-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.form-header h2 {
    font-size: 2rem;
    margin-bottom: var(--spacing-md);
}

.form-success {
    text-align: center;
    padding: var(--spacing-2xl);
}

.success-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-secondary);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: var(--font-weight-bold);
    margin: 0 auto var(--spacing-md);
    box-shadow: var(--shadow-glow);
}
.form-success h3 {
    font-size: 1.75rem;
    margin-bottom: var(--spacing-md);
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group label {
    display: block;
    font-weight: var(--font-weight-medium);
    color: var(--text-dark);
    margin-bottom: var(--spacing-xs);
    font-size: 0.875rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
    margin-bottom: 0;
}

.form-row .form-group {
    margin-bottom: var(--spacing-md);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.85rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    font-size: 1rem;
    font-family: var(--font-primary);
    transition: border-color var(--transition-base), box-shadow var(--transition-base), transform var(--transition-fast);
    background: #f8fafc;
    box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.06);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
    transform: translateY(-1px);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    cursor: pointer;
    font-weight: var(--font-weight-normal);
}

.checkbox-label input[type="checkbox"] {
    width: auto;
}

.form-submit {
    margin-top: var(--spacing-md);
    text-align: center;
}

.form-note {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: var(--spacing-sm);
}

.form-success {
    text-align: center;
    padding: var(--spacing-2xl);
}

.success-icon {
    width: 60px;
    height: 60px;
    background-color: var(--success-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: var(--font-weight-bold);
    margin: 0 auto var(--spacing-md);
}

.form-success h3 {
    font-size: 1.75rem;
    margin-bottom: var(--spacing-md);
}

.contact-info-section {
    background-color: var(--bg-white);
    padding: var(--spacing-2xl) 0;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    text-align: center;
}

.info-item {
    padding: var(--spacing-lg);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.9);
    background: rgba(248, 250, 252, 0.9);
    box-shadow: var(--shadow-sm);
}

.info-item h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
}

.info-item p {
    color: var(--text-medium);
    margin-bottom: var(--spacing-xs);
}

.info-item a {
    font-weight: var(--font-weight-medium);
}

.info-note {
    font-size: 0.875rem;
    color: var(--text-light);
}

.faq-section {
    background-color: var(--bg-light);
    padding: var(--spacing-3xl) 0;
}

.faq-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: var(--spacing-2xl);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-xl);
}

.faq-item {
    background-color: var(--bg-white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}

.faq-item h3 {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-md);
}

.faq-item p {
    color: var(--text-medium);
    margin-bottom: 0;
}

/* Final CTA */
.final-cta {
    background: 
        linear-gradient(135deg, rgba(234, 88, 12, 0.92) 0%, rgba(249, 115, 22, 0.92) 50%, rgba(251, 146, 60, 0.92) 100%),
        url('https://images.unsplash.com/photo-1552664730-d307ca884978?w=1200&h=600&fit=crop') center/cover;
    color: var(--bg-white);
    padding: var(--spacing-3xl) var(--spacing-lg);
    text-align: center;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    margin: var(--spacing-2xl) 0;
    box-shadow: 0 20px 60px rgba(249, 115, 22, 0.25);
}

.final-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255,255,255,0.15), transparent 45%),
        radial-gradient(circle at 80% 70%, rgba(255,255,255,0.15), transparent 45%),
        radial-gradient(circle at 50% 100%, rgba(0,0,0,0.08), transparent 50%);
    opacity: 1;
    border-radius: var(--radius-xl);
}

.final-cta h2 {
    color: var(--bg-white);
    font-size: 2.3rem;
    margin-bottom: var(--spacing-md);
    position: relative;
    z-index: 1;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    font-weight: 700;
    letter-spacing: -0.5px;
}

.final-cta h2 .text-accent {
    background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.final-cta p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.125rem;
    margin-bottom: var(--spacing-xl);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
    font-weight: 500;
    line-height: 1.6;
}

.final-cta .btn-primary {
    background-image: linear-gradient(135deg, #ffffff 0%, #fff7ed 100%);
    color: #f97316;
    position: relative;
    z-index: 1;
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255,255,255,0.6);
    border: none;
    font-weight: var(--font-weight-semibold);
    letter-spacing: 0.4px;
    padding: 1.05rem 2.2rem;
}

.final-cta .btn-primary:hover {
    background-image: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
    color: #ea580c;
    transform: translateY(-5px);
    box-shadow: 0 24px 65px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255,255,255,0.8);
}

.final-cta .btn-primary:active {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255,255,255,0.5);
}

/* Footer */
.footer {
    background: radial-gradient(circle at 15% 20%, rgba(37,99,235,0.16), transparent 38%),
                radial-gradient(circle at 85% 10%, rgba(6,182,212,0.12), transparent 36%),
                #0b1221;
    color: rgba(255, 255, 255, 0.82);
    padding: var(--spacing-3xl) 0 var(--spacing-lg);
    position: relative;
    overflow: hidden;
}

.footer::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0) 40%);
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
    position: relative;
    z-index: 1;
}

.footer-col h4 {
    color: var(--bg-white);
    font-size: 1.125rem;
    margin-bottom: var(--spacing-md);
}

.footer-col p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: var(--spacing-sm);
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-base);
}

.footer-col ul li a:hover {
    color: var(--bg-white);
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.875rem;
    margin: 0;
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-8px) scale(1.01); }
    100% { transform: translateY(0px) scale(1); }
}

@keyframes glowPulse {
    0% { box-shadow: 0 10px 40px rgba(37, 99, 235, 0.15); }
    50% { box-shadow: 0 14px 46px rgba(6, 182, 212, 0.22); }
    100% { box-shadow: 0 10px 40px rgba(37, 99, 235, 0.15); }
}

@keyframes slowRotate {
    0% { transform: perspective(1400px) rotateX(24deg) rotateZ(0deg) scale(1.05); }
    50% { transform: perspective(1400px) rotateX(18deg) rotateZ(6deg) scale(1.07); }
    100% { transform: perspective(1400px) rotateX(22deg) rotateZ(-4deg) scale(1.05); }
}

@keyframes slowDrift {
    0% { transform: translate3d(0, 0, 0) scale(1); opacity: 0.9; }
    50% { transform: translate3d(20px, -14px, 0) scale(1.05); opacity: 1; }
    100% { transform: translate3d(-18px, 12px, 0) scale(1.03); opacity: 0.9; }
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Typography */
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    h3 {
        font-size: 1.25rem;
    }
    
    /* Navigation */
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--bg-white);
        flex-direction: column;
        align-items: flex-start;
        padding: var(--spacing-lg);
        gap: var(--spacing-md);
        transition: left var(--transition-slow);
        box-shadow: var(--shadow-lg);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .btn-nav {
        width: 100%;
        text-align: center;
    }
    
    /* Hero */
    .hero {
        padding: calc(var(--spacing-2xl) - 0.75rem) 0;
    }

    .hero-content {
        box-shadow: 0 18px 44px rgba(0, 8, 20, 0.16), 0 8px 24px rgba(15, 23, 42, 0.14);
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: var(--spacing-md);
    }
    
    .hero-cta .btn {
        width: 100%;
    }
    
    /* Premium Hero Responsive */
    .hero-premium {
        min-height: auto;
        padding: var(--spacing-2xl) 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
    }
    
    .hero-headline {
        font-size: 2.25rem;
    }
    
    .hero-subheading {
        font-size: 1.1rem;
    }
    
    .hero-trust-metrics {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing-md);
    }
    
    .hero-cta-premium {
        flex-direction: column;
    }
    
    .btn-hero {
        width: 100%;
        text-align: center;
    }
    
    .hero-image-container {
        max-width: 100%;
    }
    
    /* Page Header */
    .page-header {
        padding: var(--spacing-2xl) 0 var(--spacing-xl);
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-header p {
        font-size: 1.125rem;
    }
    
    /* Sections */
    section {
        padding: calc(var(--spacing-2xl) - 0.75rem) 0;
    }

    /* Final CTA */
    .final-cta {
        padding: var(--spacing-2xl) var(--spacing-lg);
        margin: var(--spacing-xl) 0;
        border-radius: var(--radius-lg);
    }

    .final-cta h2 {
        font-size: 1.75rem;
        margin-bottom: var(--spacing-md);
    }

    .final-cta p {
        font-size: 1rem;
        margin-bottom: var(--spacing-lg);
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .reasons-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Modern About Responsive */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-lg);
    }

    .story-layout {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
    }

    .story-image {
        order: -1;
    }

    .expertise-grid {
        grid-template-columns: 1fr;
    }

    .values-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-modern-layout {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
    }

    .why-modern-visual {
        position: static;
    }

    @media (max-width: 640px) {
    section:not(.hero):not(.page-header):not(.final-cta)::before {
        opacity: 0.35;
    }
}
    /* Grids */
    .value-grid,
    .services-grid,
    .reasons-grid,
    .process-steps,
    .service-features,
    .specialization-grid,
    .phase-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .process-phase::before {
        display: none;
    }
    
    .phase-number {
        width: 75px;
        height: 75px;
        font-size: 1.25rem;
    }
    
    .page-header h1 {
        font-size: 2.2rem;
    }
    
    .page-header p {
        font-size: 1.05rem;
    }
    
    .phase-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .process-phase::before {
        display: none;
    }
    
    .phase-number {
        width: 75px;
        height: 75px;
        font-size: 1.25rem;
    }
    
    /* Roadmap Mobile */
    .roadmap-step {
        grid-template-columns: 80px 1fr;
        gap: var(--spacing-lg);
        margin-bottom: calc(var(--spacing-2xl) + 0.5rem);
    }
    
    .step-icon {
        width: 80px;
        height: 80px;
        font-size: 2.2rem;
    }
    
    .step-content h3 {
        font-size: 1.5rem;
    }
    
    .step-content p {
        font-size: 1rem;
    }
    
    .highlight-tag {
        font-size: 0.85rem;
        padding: 0.4rem 0.85rem;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .intro-text {
        font-size: 1.1rem;
    }
    
    .collaboration-grid,
    .values-grid,
    .methods-grid,
    .contact-info-grid,
    .faq-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    /* Modern About Mobile */
    .hero-intro h1 {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1.05rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .stat-number {
        font-size: 2.25rem;
    }

    .story-content h2,
    .section-header h2,
    .why-modern-content h2 {
        font-size: 1.875rem;
    }

    .values-grid-modern {
        grid-template-columns: 1fr;
    }

    .differentiator-item {
        gap: var(--spacing-md);
    }

    .diff-number {
        width: 45px;
        height: 45px;
        font-size: 1.05rem;
    }
    
    /* Form */
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-container {
        padding: var(--spacing-lg);
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    /* Services Page */
    .services-modern-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-modern-icon {
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
    }
    
    .service-detail-icon {
        width: 65px;
        height: 65px;
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-sm);
    }
    
    .hero h1 {
        font-size: 1.75rem;
    }
    
    .page-header h1 {
        font-size: 1.75rem;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
    }
    
    /* Services Page */
    .services-modern-grid {
        grid-template-columns: 1fr;
    }
    
    .service-modern-icon {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
    }
    
    .service-detail-icon {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
    }
    
    .service-detail-header {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-md);
    }
    
    .service-modern-card h3 {
        font-size: 1.15rem;
    }
    
    /* Premium Hero - Mobile */
    .hero-headline {
        font-size: 1.75rem;
        word-spacing: 0.1em;
    }
    
    .hero-premium {
        min-height: auto;
        padding: var(--spacing-xl) 0;
    }
    
    .hero-container {
        padding: var(--spacing-xl) var(--spacing-md);
    }
    
    .hero-subheading {
        font-size: 1rem;
    }
    
    .hero-trust-metrics {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
        padding-top: var(--spacing-md);
        border-top: 1px solid rgba(249, 115, 22, 0.15);
    }
    
    .metric-value {
        font-size: 1.35rem;
    }
    
    .metric-label {
        font-size: 0.75rem;
    }
    
    .hero-animated-lines,
    .hero-canvas {
        opacity: 0;
    }
}

/* Smooth Scroll Offset for Fixed Nav */
html {
    scroll-padding-top: 80px;
}

/* Print Styles */
@media print {
    .navbar,
    .footer,
    .final-cta,
    .hero-cta,
    .section-cta,
    .btn {
        display: none;
    }
}
