/* CSS Reset */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Custom Properties - Dark Theme Color Scheme */
:root {
    --primary-bg: #0f0f0f;
    --secondary-bg: #1a1a1a;
    --card-bg: #262626;
    --text-primary: #ffffff;
    --text-secondary: #b3b3b3;
    --accent-primary: #00d4ff;
    --accent-secondary: #ff6b6b;
    --accent-tertiary: #4ecdc4;
    --border-color: #333333;
    --gradient-primary: linear-gradient(135deg, var(--accent-primary), var(--accent-tertiary));
    --gradient-secondary: linear-gradient(135deg, var(--accent-secondary), var(--accent-primary));
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    --shadow-hover: 0 8px 30px rgba(0, 212, 255, 0.2);
    --transition: all 0.3s ease;
    --border-radius: 8px;
    --max-width: 1200px;
    --section-padding: clamp(3rem, 6vw, 5rem) clamp(1rem, 3vw, 2rem);
}

/* Typography - Enhanced Scaling and Spacing */
html {
    font-size: clamp(14px, 2vw, 16px);
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--primary-bg);
    min-height: 100vh;
    letter-spacing: 0.01em;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: clamp(0.75rem, 2vw, 1.5rem);
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
}

h4 {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
}

p, li {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    margin-bottom: clamp(0.75rem, 2vw, 1.25rem);
    line-height: 1.7;
}

h2 {
    font-size: clamp(1.25rem, 3.5vw, 2rem);
    color: var(--text-primary);
}

h3 {
    font-size: clamp(1rem, 3vw, 1.5rem);
}

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

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

a:hover {
    color: var(--accent-tertiary);
}

/* Utility Classes */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header & Navigation */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--secondary-bg);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.header.scrolled {
    background-color: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
}

.header-top {
    background-color: var(--primary-bg);
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.header.scrolled .header-top {
    transform: translateY(-100%);
    opacity: 0;
    height: 0;
    padding: 0;
    overflow: hidden;
}

.contact-info {
    text-align: center;
}

.contact-info span {
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
}

.navbar {
    padding: 1rem 0;
    transition: var(--transition);
}

.header.scrolled .navbar {
    padding: 0.75rem 0;
}

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

.logo {
    flex-shrink: 0;
}

.logo a {
    display: block;
    text-decoration: none;
}

.logo h1 {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0;
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    transition: var(--transition);
}

.logo:hover h1 {
    transform: scale(1.05);
}

.nav-menu {
    display: none;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.75rem 0;
    position: relative;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
    border-radius: 1px;
}

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

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

.nav-menu a:focus {
    outline: 2px solid var(--accent-primary);
    outline-offset: 4px;
    border-radius: 2px;
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.75rem;
    gap: 4px;
    border-radius: 4px;
    transition: var(--transition);
    position: relative;
}

.nav-toggle:hover {
    background-color: rgba(0, 212, 255, 0.1);
}

.nav-toggle:focus {
    outline: 2px solid var(--accent-primary);
    outline-offset: 2px;
}

.hamburger-line {
    width: 26px;
    height: 3px;
    background-color: var(--text-primary);
    transition: var(--transition);
    border-radius: 2px;
    transform-origin: center;
}

.nav-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.nav-toggle.active .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Hero Section */
.hero {
    background: var(--primary-bg);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
}

/* Animated Background */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

/* Gradient orbs — small elements animated only via transform (GPU composited).
   Much cheaper than rotating a 200vmax painted pseudo-element. */
.orb {
    position: absolute;
    border-radius: 50%;
    will-change: transform;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.35) 0%, transparent 70%);
    top: -180px;
    left: -120px;
    animation: orbFloat1 22s ease-in-out infinite;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(78, 205, 196, 0.28) 0%, transparent 70%);
    bottom: -120px;
    right: -80px;
    animation: orbFloat2 28s ease-in-out infinite;
}

.orb-3 {
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.22) 0%, transparent 70%);
    top: 35%;
    left: 45%;
    animation: orbFloat3 19s ease-in-out infinite;
}

@keyframes orbFloat1 {
    0%, 100% { transform: translate(0, 0); }
    33%       { transform: translate(70px, 90px); }
    66%       { transform: translate(-40px, 60px); }
}

@keyframes orbFloat2 {
    0%, 100% { transform: translate(0, 0); }
    40%      { transform: translate(-90px, -70px); }
    80%      { transform: translate(50px, -110px); }
}

@keyframes orbFloat3 {
    0%, 100% { transform: translate(0, 0); }
    50%      { transform: translate(-130px, -90px); }
}

.code-animation {
    position: absolute;
    top: 20%;
    left: 10%;
    font-family: 'Courier New', monospace;
    font-size: 0.875rem;
    color: var(--accent-primary);
    animation: float 20s infinite linear;
}

.code-line {
    margin-bottom: 0.5rem;
    opacity: 0;
    animation: fadeInOut 8s infinite;
    white-space: nowrap;
}

.code-line:nth-child(1) { animation-delay: 0s; }
.code-line:nth-child(2) { animation-delay: 1.5s; }
.code-line:nth-child(3) { animation-delay: 3s; }
.code-line:nth-child(4) { animation-delay: 4.5s; }
.code-line:nth-child(5) { animation-delay: 6s; }
.code-line:nth-child(6) { animation-delay: 7.5s; }

.terminal-animation {
    position: absolute;
    bottom: 20%;
    right: 10%;
    font-family: 'Courier New', monospace;
    font-size: 0.8rem;
    color: var(--accent-tertiary);
    animation: float 25s infinite linear reverse;
}

.terminal-line {
    margin-bottom: 0.4rem;
    opacity: 0;
    animation: fadeInOut 10s infinite;
    white-space: nowrap;
}

.terminal-line:nth-child(1) { animation-delay: 2s; }
.terminal-line:nth-child(2) { animation-delay: 4s; }
.terminal-line:nth-child(3) { animation-delay: 6s; }
.terminal-line:nth-child(4) { animation-delay: 8s; }
.terminal-line:nth-child(5) { animation-delay: 10s; }

@keyframes float {
    0%, 100% { transform: translateY(0px) translateX(0px); }
    25% { transform: translateY(-20px) translateX(10px); }
    50% { transform: translateY(-10px) translateX(-5px); }
    75% { transform: translateY(-30px) translateX(5px); }
}

@keyframes fadeInOut {
    0%, 15% { opacity: 0; transform: translateY(10px); }
    25%, 75% { opacity: 0.8; transform: translateY(0px); }
    85%, 100% { opacity: 0; transform: translateY(-10px); }
}

/* Pause hero background animations when hero is off-screen */
.hero-background.paused,
.hero-background.paused * {
    animation-play-state: paused;
}

/* Hero Content */
.hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.trust-indicators span {
    background: rgba(0, 212, 255, 0.1);
    color: var(--accent-primary);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(0, 212, 255, 0.3);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.trust-indicators span:hover {
    background: rgba(0, 212, 255, 0.2);
    transform: translateY(-2px);
}

/* Typography */
.hero-headline {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.hero-subheadline {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto 3rem;
    line-height: 1.6;
    font-weight: 400;
}

/* CTA Buttons */
.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.cta-primary {
    background: var(--gradient-primary);
    color: var(--primary-bg);
    padding: 1.25rem 2.5rem;
    border-radius: var(--border-radius);
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    box-shadow: var(--shadow);
    display: inline-block;
    text-decoration: none;
    min-width: 280px;
    position: relative;
    overflow: hidden;
}

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

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    color: var(--primary-bg);
}

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

.cta-secondary {
    color: var(--text-primary);
    padding: 1rem 2rem;
    border: 2px solid var(--accent-primary);
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    min-width: 200px;
}

.cta-secondary:hover {
    background: rgba(0, 212, 255, 0.1);
    transform: translateY(-2px);
    color: var(--text-primary);
}

/* Location Indicator */
.location-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
}

.location-indicator svg {
    color: var(--accent-secondary);
    flex-shrink: 0;
}

/* Sections */
section {
    padding: var(--section-padding);
}

section:nth-child(even) {
    background-color: var(--secondary-bg);
}

section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

/* Services Section */
.services-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-intro {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 1rem auto 0;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

/* Service Card Base */
.service-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 0;
    position: relative;
    transition: var(--transition);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: var(--accent-primary);
}

/* Featured Service Styling */
.featured-service {
    border: 2px solid var(--accent-primary);
    position: relative;
    background: linear-gradient(135deg, var(--card-bg) 0%, rgba(0, 212, 255, 0.05) 100%);
}

.featured-service::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

/* Service Badge */
.service-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gradient-secondary);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Service Icon */
.service-icon {
    text-align: center;
    padding: 2rem 2rem 1rem;
    color: var(--accent-primary);
}

.service-icon svg {
    transition: var(--transition);
}

.service-card:hover .service-icon svg {
    transform: scale(1.1);
    color: var(--accent-tertiary);
}

/* Service Header */
.service-header {
    padding: 0 2rem 1rem;
    text-align: center;
}

.service-header h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

/* Service Pricing */
.service-pricing {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 0.5rem;
}

.current-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-primary);
    line-height: 1;
}

.current-price small {
    font-size: 1rem;
    font-weight: 600;
    opacity: 0.8;
}

.original-price {
    font-size: 1.25rem;
    color: var(--text-secondary);
    text-decoration: line-through;
    opacity: 0.7;
}

.savings {
    background: var(--gradient-secondary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
}

.starting-from {
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

/* Service Content */
.service-content {
    padding: 0 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-description {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Service Features */
.service-features {
    list-style: none;
    margin: 0;
    padding: 0;
    flex-grow: 1;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 0;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features li:hover {
    color: var(--text-primary);
    background: rgba(0, 212, 255, 0.05);
    border-radius: 6px;
    padding-left: 0.5rem;
    margin: 0 -0.5rem;
}

.service-features svg {
    color: var(--accent-tertiary);
    flex-shrink: 0;
}

/* Service Note */
.service-note {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.service-note small {
    color: var(--text-secondary);
    font-style: italic;
    font-size: 0.875rem;
}

/* Service CTA */
.service-cta {
    padding: 2rem;
    margin-top: auto;
}

.service-button {
    display: block;
    width: 100%;
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
    text-decoration: none;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

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

.service-button:hover::before {
    left: 100%;
}

.service-button.primary {
    background: var(--gradient-primary);
    color: var(--primary-bg);
    box-shadow: var(--shadow);
}

.service-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    color: var(--primary-bg);
}

.service-button.secondary {
    background: transparent;
    color: var(--accent-primary);
    border: 2px solid var(--accent-primary);
}

.service-button.secondary:hover {
    background: var(--accent-primary);
    color: var(--primary-bg);
    transform: translateY(-2px);
}

/* Trust Section */
.trust-section {
    background: var(--primary-bg);
    position: relative;
    overflow: hidden;
}

.trust-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(78, 205, 196, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.trust-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.trust-intro {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 1rem auto 0;
    line-height: 1.6;
}

/* Trust Points Grid */
.trust-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.trust-point {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 2rem;
    background: rgba(38, 38, 38, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.trust-point::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
    transition: width 0.6s ease;
}

.trust-point:hover::before {
    width: 100%;
}

.trust-point:hover {
    transform: translateY(-4px);
    border-color: var(--accent-primary);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.trust-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-primary);
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.trust-point:hover .trust-icon {
    background: rgba(0, 212, 255, 0.2);
    transform: scale(1.1);
    color: var(--accent-tertiary);
}

.trust-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.trust-content h3 {
    color: var(--text-primary);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.trust-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Tech Badges */
.tech-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 25px;
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
    transition: var(--transition);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.badge:hover {
    border-color: var(--accent-primary);
    color: var(--text-primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.badge-icon {
    font-size: 1rem;
    filter: grayscale(0.3);
    transition: filter 0.3s ease;
}

.badge:hover .badge-icon {
    filter: grayscale(0);
}

/* Testimonials Placeholder */
.testimonials-placeholder {
    text-align: center;
    position: relative;
    z-index: 2;
}

.testimonials-placeholder h3 {
    color: var(--text-primary);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.testimonial-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    transition: var(--transition);
    text-align: left;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 4rem;
    color: var(--accent-primary);
    opacity: 0.2;
    font-family: serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-primary);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

.testimonial-content {
    position: relative;
    z-index: 2;
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0;
    font-size: 1rem;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    position: relative;
    z-index: 2;
}

.author-info h4 {
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.author-info span {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.author-rating {
    font-size: 0.875rem;
    color: #ffc107;
}

.testimonial-note {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.testimonial-note small {
    color: var(--text-secondary);
    opacity: 0.7;
}

/* About Section */
.about {
    text-align: center;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.about-photo {
    flex-shrink: 0;
}

.profile-photo {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-primary);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.2);
    display: block;
}

.about-text h2 {
    margin-bottom: 1rem;
}

.about p {
    font-size: 1.1rem;
    line-height: 1.7;
}

@media (max-width: 767px) {
    .about-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .profile-photo {
        width: 160px;
        height: 160px;
        margin: 0 auto;
    }
}

/* Process Section */
.process-header {
    text-align: center;
    margin-bottom: 3rem;
}

.process-intro {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 1rem auto 0;
}

/* Terminal Styling */
.terminal-wrapper {
    max-width: 900px;
    margin: 0 auto 3rem;
    background: #1a1a1a;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    position: relative;
}

.terminal-header {
    background: #2d2d2d;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.terminal-buttons {
    display: flex;
    gap: 0.5rem;
}

.terminal-button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.terminal-button.red {
    background: #ff5f56;
}

.terminal-button.yellow {
    background: #ffbd2e;
}

.terminal-button.green {
    background: #27ca3f;
}

.terminal-title {
    font-family: 'Courier New', Consolas, Monaco, monospace;
    font-size: 0.9rem;
    color: var(--text-secondary);
    flex: 1;
    text-align: center;
}

.terminal-content {
    padding: 2rem;
    font-family: 'Courier New', Consolas, Monaco, monospace;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #00ff00;
    background: #0a0a0a;
    height: 660px;
    position: relative;
    opacity: 1;
    overflow-y: auto;
}

/* Realistic Terminal Animation Styles */
.terminal-line {
    margin: 0.2em 0;
    line-height: 1.4;
}

.terminal-prompt {
    color: #00ff00;
    font-weight: bold;
}

.terminal-cursor {
    background: #00ff00;
    animation: blink 1s infinite;
}

.terminal-text {
    color: #ffffff;
}

.step-header {
    color: #ff6b35;
    font-weight: bold;
}

.step-complete {
    color: #28a745;
    font-weight: bold;
}

.duration {
    color: #6c757d;
    font-style: italic;
    margin-left: 0.75em;
}

.tree-item {
    color: #17a2b8;
    margin-left: 1em;
}

.final-success {
    color: #28a745;
    font-weight: bold;
    font-size: 1.1em;
}

.progress-bar-visual {
    display: inline-block;
    width: 30ch;
    height: 1em;
    background: #333;
    position: relative;
    border: 1px solid #555;
    vertical-align: middle;
    overflow: hidden;
}

.progress-fill-visual {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, #00d4ff, #4ecdc4);
    width: 0%;
    transition: width 0.2s linear !important;
    position: absolute;
    top: 0;
    left: 0;
}

.progress-percent {
    color: #00d4ff;
    font-weight: bold;
}

.final-cursor {
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Remove old process step animations - using new terminal system */
/* Override old terminal animations that cause conflicts */
.terminal-content .terminal-line,
.terminal-content .process-step,
.terminal-content .loading-section,
.terminal-content .loading-bar,
.terminal-content .process-output {
    opacity: 1 !important;
    animation: none !important;
    transform: none !important;
    transition: none !important;
}

/* Enhanced Loading Bar Animation */
.loading-bar-fill {
    transition: width 0.3s ease-out;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-tertiary));
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}


@keyframes typewriter {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Command Line */
.command-line {
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.prompt {
    color: var(--accent-primary);
    font-weight: bold;
}

.command {
    color: #ffffff;
}

.cursor {
    color: var(--accent-primary);
    animation: blink 1s infinite;
    font-weight: bold;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Typing Effect */
.typing-effect {
    overflow: hidden;
    border-right: 2px solid var(--accent-primary);
    white-space: nowrap;
    animation: typing 3s steps(40, end), blink-caret 0.5s step-end infinite;
}

@keyframes typing {
    from { width: 0; }
    to { width: 20ch; }
}

@keyframes blink-caret {
    from, to { border-color: transparent; }
    50% { border-color: var(--accent-primary); }
}

/* Loading Section */
.loading-section {
    margin-bottom: 2rem;
}

.loading-bar {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.loading-text {
    color: var(--accent-tertiary);
    font-size: 0.9rem;
}

.progress-bar {
    width: 100%;
    height: 20px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-tertiary));
    border-radius: 3px;
    width: 0%;
    position: relative;
    transition: width 0.4s ease-out;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 1.5s infinite;
}


@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.loading-percentage {
    color: var(--text-primary);
    font-size: 0.85rem;
    text-align: right;
    opacity: 0;
    animation: fadeIn 0.3s forwards;
    animation-delay: 5.8s;
}

@keyframes fadeInDelay {
    to { opacity: 1; }
}

@keyframes fadeIn {
    to { opacity: 1; }
}

/* Process Output */
.process-output {
    margin-bottom: 2rem;
}

.process-step {
    margin-bottom: 2rem;
    border-left: 2px solid var(--accent-primary);
    padding-left: 1.5rem;
    position: relative;
}

.process-step::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 0.5rem;
    width: 10px;
    height: 10px;
    background: var(--accent-primary);
    border-radius: 50%;
}

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

.step-label {
    color: var(--accent-secondary);
    font-weight: bold;
}

.step-title {
    color: #ffffff;
    font-weight: bold;
    font-size: 1.1rem;
}

.step-tree {
    margin-bottom: 1rem;
    margin-left: 1rem;
}

.tree-item {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    align-items: center;
}

.tree-icon {
    color: var(--text-secondary);
    font-weight: bold;
    width: 30px;
}

.tree-text {
    color: var(--text-secondary);
    flex: 1;
}

.step-status {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.status-text {
    color: var(--accent-tertiary);
    font-size: 0.9rem;
}

.duration {
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-style: italic;
}

/* Terminal Footer */
.terminal-footer {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.success-message {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--accent-tertiary);
}

.success-icon {
    font-size: 1.2rem;
}

.next-command {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
}

.command-hint {
    color: #888;
}

.blinking-cursor {
    color: var(--accent-primary);
    animation: blink 1s infinite;
}

/* Process Summary */
.process-summary {
    text-align: center;
}

.summary-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

/* Technology Section */
.technology {
    background: var(--secondary-bg);
    position: relative;
    overflow: hidden;
}

.technology::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(0, 212, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.tech-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.tech-intro {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 1rem auto 0;
}

/* Tech Badges */
.tech-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 5rem;
    position: relative;
    z-index: 2;
}

.tech-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem 1.5rem;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    min-width: 120px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.tech-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.tech-badge:hover::before {
    left: 100%;
}

.tech-badge:hover {
    transform: translateY(-8px);
    border-color: var(--accent-primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, var(--card-bg) 0%, rgba(0, 212, 255, 0.05) 100%);
}

.badge-icon {
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.badge-icon img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    transition: var(--transition);
}

.tech-badge:hover .badge-icon {
    transform: scale(1.2);
}

.tech-badge:hover .badge-icon img {
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.3));
}

.badge-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.tech-badge:hover .badge-label {
    color: var(--text-primary);
    transform: scale(1.05);
}

/* Tech Features */
.tech-features {
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 2.5rem;
    background: rgba(38, 38, 38, 0.6);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    transition: var(--transition);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.08), transparent);
    transition: width 0.8s ease;
}

.feature-item:hover::before {
    width: 100%;
}

.feature-item:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    background: rgba(38, 38, 38, 0.8);
}

.feature-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-primary);
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.feature-item:hover .feature-icon {
    background: rgba(0, 212, 255, 0.2);
    transform: scale(1.1) rotate(5deg);
    color: var(--accent-tertiary);
}

.feature-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.feature-content h3 {
    color: var(--text-primary);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.feature-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0;
    font-size: 0.95rem;
}

.feature-item:hover .feature-content h3 {
    color: var(--accent-primary);
}

.feature-item:hover .feature-content p {
    color: var(--text-primary);
}

/* Tech CTA */
.tech-cta {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(78, 205, 196, 0.1) 100%);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

/* Subtle static glow accent at top of the tech-cta box */
.tech-cta::before {
    content: '';
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(0, 212, 255, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

@keyframes rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h3 {
    color: var(--text-primary);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.cta-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.tech-cta-button {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--primary-bg);
    padding: 1.25rem 2.5rem;
    border-radius: var(--border-radius);
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.tech-cta-button::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 0.5s;
}

.tech-cta-button:hover::before {
    left: 100%;
}

.tech-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 212, 255, 0.4);
    color: var(--primary-bg);
}

/* Portfolio Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.portfolio-item {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.portfolio-image {
    height: 200px;
    background: var(--gradient-secondary);
    opacity: 0.8;
}

/* Portfolio thumbnail styling */
.portfolio-thumbnail {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.portfolio-link {
    display: block;
    position: relative;
    text-decoration: none;
}

.portfolio-thumbnail img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: top;
    transition: var(--transition);
}

.portfolio-hover {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.portfolio-link:hover .portfolio-hover {
    opacity: 1;
}

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

.portfolio-tech {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.tech-tag {
    background: var(--accent-primary);
    color: var(--primary-bg);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

.visit-site {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-primary);
    font-weight: 600;
}

.portfolio-content {
    padding: 1.5rem;
}

.portfolio-type {
    color: var(--accent-primary);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
    background: rgba(0, 212, 255, 0.1);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    display: inline-block;
}

.portfolio-features {
    margin-top: 1rem;
}

.portfolio-features ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.portfolio-features li {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.portfolio-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-primary);
    font-weight: bold;
}

.portfolio-item h3,
.portfolio-item p {
    padding: 0 1.5rem;
}

.portfolio-item h3 {
    padding-top: 1.5rem;
    color: var(--accent-primary);
}

.portfolio-item p {
    padding-bottom: 1.5rem;
}

/* Portfolio Preview Styles */
.portfolio-preview {
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    position: relative;
}

.preview-header {
    background: #e9ecef;
    padding: 0.75rem;
    border-bottom: 1px solid #dee2e6;
}

.preview-dots {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.preview-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: block;
}

.preview-dots span:nth-child(1) {
    background: #ff5f56;
}

.preview-dots span:nth-child(2) {
    background: #ffbd2e;
}

.preview-dots span:nth-child(3) {
    background: #27ca3f;
}

.preview-content {
    padding: 2rem 1.5rem;
    text-align: center;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.band-preview {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
}

.salon-preview {
    background: linear-gradient(135deg, #faf8f5 0%, #f8f4e6 100%);
    color: #2c2c2c;
}

.preview-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: inherit;
}

.band-preview h4 {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.salon-preview h4 {
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.preview-content p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.preview-buttons {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

.preview-btn {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 2px solid;
    transition: all 0.3s ease;
}

.band-preview .preview-btn {
    color: #ff6b35;
    border-color: #ff6b35;
    background: transparent;
}

.salon-preview .preview-btn {
    color: #d4af37;
    border-color: #d4af37;
    background: transparent;
}

.portfolio-link-text {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-primary);
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
    transition: var(--transition);
}

.portfolio-link-text:hover {
    color: var(--accent-secondary);
    transform: translateX(5px);
}

/* Pricing Section */
.pricing {
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: clamp(2rem, 4vw, 4rem);
    position: relative;
    z-index: 2;
    padding: 0 1rem;
}

.section-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: var(--text-secondary);
    margin: clamp(0.75rem, 2vw, 1.5rem) auto 0;
    max-width: 650px;
    line-height: 1.7;
    text-align: center;
    letter-spacing: 0.01em;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 107, 107, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(78, 205, 196, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* Promotional Section */
.promo-section {
    margin-bottom: 4rem;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.promo-box {
    max-width: 600px;
    width: 100%;
    background: linear-gradient(135deg, var(--card-bg) 0%, rgba(0, 212, 255, 0.05) 100%);
    border: 2px solid var(--accent-primary);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.promo-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

.promo-badge {
    display: inline-block;
    background: linear-gradient(45deg, var(--accent-primary), var(--accent-secondary));
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.promo-header {
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.promo-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.promo-currency {
    font-size: 2rem;
    color: var(--accent-primary);
    font-weight: 600;
}

.promo-amount {
    font-size: 4rem;
    color: var(--accent-primary);
    font-weight: 900;
    line-height: 1;
}

.promo-period {
    font-size: 1.25rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.promo-savings {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.original-price {
    font-size: 1.125rem;
    color: var(--text-secondary);
    text-decoration: line-through;
    opacity: 0.7;
}

.savings-badge {
    background: var(--accent-secondary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.875rem;
    font-weight: 600;
}

.promo-content {
    position: relative;
    z-index: 1;
}

.promo-content h3 {
    font-size: 1.75rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.promo-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.promo-features {
    list-style: none;
    text-align: left;
    margin-bottom: 2.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0.75rem;
}

.promo-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.promo-features svg {
    color: var(--accent-primary);
    flex-shrink: 0;
}

.promo-cta {
    display: inline-block;
    background: linear-gradient(45deg, var(--accent-primary), var(--accent-secondary));
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.125rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.promo-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 212, 255, 0.3);
}

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

.promo-cta:hover::before {
    left: 100%;
}

/* Hosting Section */
.hosting-section {
    position: relative;
    z-index: 2;
}

.hosting-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 1rem;
}

.hosting-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--accent-primary);
}

.pricing-card.featured {
    border: 2px solid var(--accent-primary);
    background: linear-gradient(135deg, var(--card-bg) 0%, rgba(0, 212, 255, 0.1) 100%);
    transform: scale(1.05);
    box-shadow: 0 25px 50px rgba(0, 212, 255, 0.2);
    overflow: visible;
}

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

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, var(--accent-primary), var(--accent-secondary));
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(0, 212, 255, 0.3);
}

.pricing-header {
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.pricing-header h4 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.currency {
    font-size: 1.5rem;
    color: var(--accent-primary);
    font-weight: 600;
}

.price {
    font-size: 3rem;
    color: var(--accent-primary);
    font-weight: 900;
    line-height: 1;
}

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

.plan-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.pricing-features {
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.pricing-features ul {
    list-style: none;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.pricing-features svg {
    color: var(--accent-primary);
    flex-shrink: 0;
}

.pricing-cta {
    display: inline-block;
    background: rgba(0, 212, 255, 0.1);
    color: var(--accent-primary);
    border: 2px solid var(--accent-primary);
    padding: 0.875rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.pricing-cta:hover {
    background: var(--accent-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 212, 255, 0.3);
}

.pricing-cta.primary {
    background: linear-gradient(45deg, var(--accent-primary), var(--accent-secondary));
    color: white;
    border: none;
}

.pricing-cta.primary:hover {
    background: linear-gradient(45deg, var(--accent-secondary), var(--accent-primary));
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 212, 255, 0.4);
}

/* Pricing Clarification */
.pricing-clarification {
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 12px;
    position: relative;
    z-index: 2;
}

.pricing-clarification p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.pricing-clarification strong {
    color: var(--text-primary);
}

.pricing-link {
    color: var(--accent-primary);
    text-decoration: none;
    font-weight: 600;
}

.pricing-link:hover {
    text-decoration: underline;
}

/* Additional Services */
.additional-services {
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.services-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 2rem;
}

.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.service-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.service-item:hover {
    transform: translateY(-4px);
    border-color: var(--accent-primary);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.service-item h4 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.service-price {
    color: var(--accent-primary);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.service-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

/* Contact Section */
.contact {
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(78, 205, 196, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-form {
    position: relative;
}

.form-success {
    text-align: center;
    padding: 2rem;
    background: rgba(78, 205, 196, 0.1);
    border: 1px solid rgba(78, 205, 196, 0.3);
    border-radius: 12px;
}

.form-success svg {
    color: var(--accent-tertiary);
    margin-bottom: 1rem;
}

.form-success h3 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.form-success p {
    color: var(--text-secondary);
    margin: 0;
}

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

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

.required {
    color: var(--accent-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    max-width: 100%;
    padding: 0.875rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 0.95rem;
    transition: var(--transition);
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
    background: rgba(255, 255, 255, 0.08);
}

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

.form-group textarea {
    resize: vertical;
    min-height: 100px;
    line-height: 1.5;
}

.error-message {
    display: block;
    color: var(--accent-secondary);
    font-size: 0.875rem;
    margin-top: 0.25rem;
    min-height: 1.2em;
}

.form-submit {
    width: 100%;
    background: linear-gradient(45deg, var(--accent-primary), var(--accent-secondary));
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    margin-top: 1rem;
}

.form-submit:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 212, 255, 0.3);
}

.form-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.button-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Contact Information */
.contact-info {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-details h3 {
    color: var(--text-primary);
    font-size: 1.75rem;
    margin-bottom: 1rem;
    text-align: center;
}

.contact-intro,
.contact-availability,
.contact-professional {
    color: var(--text-secondary);
    font-size: 1.125rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    text-align: center;
}

.contact-methods {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--border-color);
    width: 100%;
    max-width: 300px;
    justify-content: flex-start;
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-icon {
    background: rgba(0, 212, 255, 0.1);
    border-radius: 50%;
    padding: 0.75rem;
    color: var(--accent-primary);
    flex-shrink: 0;
}

.contact-content-item {
    flex: 1;
    min-width: 0;
}
.contact-content-item h4 {
    color: var(--text-primary);
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.contact-link {
    color: var(--accent-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
}

.contact-link:hover {
    color: var(--accent-secondary);
    text-decoration: underline;
}

.contact-text {
    color: var(--text-primary);
    font-weight: 500;
    font-size: 1rem;
    display: block;
    margin-bottom: 0.25rem;
}

.contact-note {
    color: var(--text-secondary);
    font-size: 0.875rem;
    display: block;
}

.trust-signal {
    background: rgba(78, 205, 196, 0.1);
    border: 1px solid rgba(78, 205, 196, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.trust-icon {
    background: var(--accent-tertiary);
    border-radius: 50%;
    padding: 0.75rem;
    color: white;
    flex-shrink: 0;
}

.trust-content h4 {
    color: var(--text-primary);
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.trust-content p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

/* Contact Responsive Styles */
@media (min-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .contact-form-wrapper,
    .contact-info {
        padding: 1.25rem;
        min-width: 0;
        max-width: 100%;
    }
    
    .contact-item {
        padding: 1rem 0;
    }
    
    .contact-icon {
        padding: 0.5rem;
    }
    
    .trust-signal {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
    }
}

/* Footer */
.footer {
    background: var(--secondary-bg);
    border-top: 1px solid var(--border-color);
    padding: 3rem 0 1rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 212, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(78, 205, 196, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.footer-section h3,
.footer-section h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.125rem;
    font-weight: 600;
}

.footer-section h3 {
    font-size: 1.5rem;
    color: var(--accent-primary);
}

.footer-tagline {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

/* Footer Contact */
.footer-contact .contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
}

.footer-contact .contact-item svg {
    color: var(--accent-primary);
    flex-shrink: 0;
}

.footer-contact .contact-item a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

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

/* Service Areas */
.service-areas {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 0.5rem;
}

.service-areas li {
    color: var(--text-secondary);
    font-size: 0.9rem;
    padding: 0.25rem 0;
    position: relative;
}

.service-areas li:before {
    content: '•';
    color: var(--accent-primary);
    margin-right: 0.5rem;
}

/* Footer Links */
.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}

.footer-links a:hover {
    color: var(--accent-primary);
    padding-left: 0.5rem;
}

.placeholder-link {
    opacity: 0.7;
    cursor: not-allowed;
}

.placeholder-link:hover {
    color: var(--text-secondary) !important;
    padding-left: 0 !important;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 212, 255, 0.3);
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    position: relative;
    z-index: 1;
}

.footer-copyright p,
.footer-love p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-love p {
    font-style: italic;
    color: var(--text-secondary);
    opacity: 0.8;
}

/* Footer Responsive */
@media (max-width: 768px) {
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .service-areas {
        grid-template-columns: repeat(2, 1fr);
        text-align: left;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .service-areas {
        grid-template-columns: 1fr;
    }
    
    .social-links {
        gap: 0.75rem;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
    }
}

/* Mobile Menu Styles */
@media (max-width: 767px) {
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--secondary-bg);
        border-top: 1px solid var(--border-color);
        padding: 2rem 0;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        box-shadow: var(--shadow);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        flex-direction: column;
        gap: 0;
        text-align: center;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        display: flex;
    }
    
    .nav-menu li {
        padding: 0.75rem 0;
        border-bottom: 1px solid var(--border-color);
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-menu a {
        display: block;
        padding: 1rem 2rem;
        font-size: 1.1rem;
        text-transform: none;
        letter-spacing: normal;
    }
    
    .nav-menu a::after {
        display: none;
    }
    
    .nav-menu a:hover {
        background-color: rgba(0, 212, 255, 0.1);
        border-radius: var(--border-radius);
    }
    
    .header.scrolled .nav-menu {
        top: calc(100% - 2.5rem);
    }
    
    .contact-info {
        font-size: 0.8rem;
    }
    
    /* Mobile Hero Adjustments */
    .hero {
        min-height: calc(100vh - 120px);
        padding: 3rem 1rem 2rem;
    }
    
    .trust-indicators {
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .trust-indicators span {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
    
    .hero-headline {
        font-size: clamp(2rem, 8vw, 3.5rem);
        margin-bottom: 1rem;
    }
    
    .hero-subheadline {
        font-size: clamp(1rem, 4vw, 1.25rem);
        margin-bottom: 2rem;
    }
    
    .hero-cta {
        gap: 1.25rem;
        margin-bottom: 2rem;
    }
    
    .cta-primary {
        padding: 1rem 2rem;
        font-size: 1rem;
        min-width: 260px;
        min-height: 44px;
    }
    
    .cta-secondary {
        padding: 0.875rem 1.75rem;
        min-width: 180px;
        min-height: 44px;
    }
    
    .location-indicator {
        font-size: 0.875rem;
    }
    
    /* Hide background animations on mobile — not worth the GPU cost */
    .hero-background {
        display: none;
    }

    .trust-indicators span {
        backdrop-filter: none;
    }

    /* Remove header blur on mobile — blur on a sticky element causes scroll jank */
    .header.scrolled {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background-color: rgba(15, 15, 23, 0.98);
    }

    /* 100svh prevents layout shifts when phone address bar hides/shows on scroll */
    .hero {
        min-height: 100svh;
    }
    
    /* Mobile Services Adjustments */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        margin: 0 0.5rem;
    }
    
    .service-header h3 {
        font-size: 1.25rem;
    }
    
    .current-price {
        font-size: 1.75rem;
    }
    
    .service-features li {
        padding: 0.8rem 0;
        font-size: 0.95rem;
    }
    
    .service-button {
        padding: 1.2rem 1.5rem;
        font-size: 0.9rem;
    }
    
    /* Mobile Trust Section */
    .trust-points {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 3rem;
    }
    
    .trust-point {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .trust-icon {
        width: 50px;
        height: 50px;
        margin: 0 auto;
    }
    
    .tech-badges {
        gap: 1rem;
        margin-bottom: 3rem;
    }
    
    .badge {
        font-size: 0.8rem;
        padding: 0.6rem 1rem;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonials-placeholder h3 {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    /* Mobile Terminal Adjustments */
    .terminal-wrapper {
        margin: 0 -1rem 2rem;
        border-radius: 8px;
    }
    
    .terminal-header {
        padding: 0.75rem 1rem;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .terminal-buttons {
        order: 2;
    }
    
    .terminal-title {
        order: 1;
        flex-basis: 100%;
        text-align: left;
        font-size: 0.8rem;
    }
    
    .terminal-content {
        padding: 1rem;
        font-size: 0.8rem;
        height: auto;
        min-height: 320px;
    }

    .progress-bar-visual {
        width: 14ch;
    }
    
    .step-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .step-status {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .tree-item {
        font-size: 0.85rem;
    }
    
    .summary-stats {
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    /* Mobile Technology Section */
    .tech-badges {
        gap: 1.5rem;
        margin-bottom: 3rem;
    }
    
    .tech-badge {
        min-width: 100px;
        padding: 1.5rem 1rem;
    }
    
    .badge-icon img {
        width: 36px;
        height: 36px;
    }
    
    .badge-label {
        font-size: 0.85rem;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }
    
    .feature-icon {
        width: 56px;
        height: 56px;
        margin: 0 auto;
    }
    
    .tech-cta {
        padding: 2rem 1.5rem;
    }
    
    .tech-cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

/* Tablet & Desktop Responsive Design */
@media (min-width: 768px) {
    .nav-menu {
        display: flex;
    }
    
    .nav-toggle {
        display: none;
    }
    
    .contact-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .hero {
        padding: 4rem 1rem;
    }
    
    :root {
        --section-padding: 6rem 1rem;
    }
    
    .contact-info span {
        font-size: 0.95rem;
    }
    
    /* Tablet Hero Adjustments */
    .hero-cta {
        flex-direction: row;
        justify-content: center;
        gap: 2rem;
    }

    .hero-cta .cta-primary,
    .hero-cta .cta-secondary {
        flex: 1;
        min-width: 0;
        max-width: 280px;
        text-align: center;
    }
    
    .trust-indicators {
        gap: 2rem;
    }
    
    .hero-headline {
        font-size: clamp(3rem, 5vw, 4rem);
        margin-bottom: 2rem;
    }
    
    .hero-subheadline {
        margin-bottom: 3rem;
    }
    
    .location-indicator {
        font-size: 1rem;
    }
    
    /* Tablet Services Layout */
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 2rem;
    }
    
    /* Tablet Trust Section */
    .trust-points {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2.5rem;
    }
    
    .trust-point {
        flex-direction: row;
        text-align: left;
        gap: 1.5rem;
    }
    
    .trust-icon {
        margin: 0;
    }
    
    .tech-badges {
        gap: 1.5rem;
    }
    
    .testimonial-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    /* Tablet Technology Section */
    .feature-item {
        flex-direction: row;
        text-align: left;
    }
    
    .feature-icon {
        margin: 0;
    }
    
    .tech-badges {
        gap: 1.5rem;
    }
}

/* Mobile Pricing Styles */
@media (max-width: 768px) {
    .promo-box {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .promo-amount {
        font-size: 3rem;
    }
    
    .promo-currency {
        font-size: 1.5rem;
    }
    
    .promo-features {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .pricing-card.featured {
        transform: none;
        order: -1;
        padding-top: 2.5rem;
    }

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

    .popular-badge {
        top: -14px;
        left: 50%;
        transform: translateX(-50%);
        white-space: nowrap;
        font-size: 0.75rem;
        padding: 0.25rem 0.75rem;
    }
    
    .pricing-clarification {
        margin: 1.5rem 1rem 0;
        padding: 1rem;
    }
    
    .services-list {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .additional-services {
        margin-top: 2rem;
    }
}

@media (min-width: 1024px) {
    .pricing-card.featured {
        transform: scale(1.08);
    }
    
    .pricing-card.featured:hover {
        transform: scale(1.08) translateY(-8px);
    }
}
    
    .hero {
        padding: 6rem 1rem;
    }
}

/* ========== COMPREHENSIVE RESPONSIVE OPTIMIZATION ========== */

/* Extra Small Devices: 320px - 767px */
@media (max-width: 767px) {
    /* Touch Target Optimization */
    .nav-menu a,
    .service-button,
    .pricing-cta,
    .form-submit,
    .promo-cta {
        min-height: 44px;
        min-width: 44px;
        padding: 12px 16px;
    }

    .contact-link {
        min-height: 44px;
        display: inline-block;
        word-break: break-all;
    }
    
    /* Typography Scaling */
    .hero-title {
        font-size: clamp(2rem, 8vw, 2.5rem);
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: clamp(1rem, 4vw, 1.125rem);
    }
    
    .section-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }
    
    /* Service Cards Mobile */
    .service-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .service-pricing {
        flex-direction: column;
        gap: 0.25rem;
        text-align: center;
    }
    
    /* Pricing Mobile */
    .promo-box {
        margin: 0 0.5rem;
        padding: 1.5rem;
    }
    
    .promo-amount {
        font-size: 2.5rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 0.5rem;
    }
    
    .pricing-card.featured {
        transform: none;
        order: -1;
        border-width: 2px;
        padding-top: 2.5rem;
    }

    /* Contact Mobile */
    .contact-form-wrapper,
    .contact-info {
        padding: 1.25rem;
        min-width: 0;
        max-width: 100%;
    }
    
    /* Process Section Mobile */
    .process-step {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .process-command {
        font-size: 0.875rem;
        word-break: break-all;
    }
}

/* Small Tablets: 768px - 1023px */
@media (min-width: 768px) and (max-width: 1023px) {
    /* Hide hero animations on tablets/landscape phones — not worth the GPU cost */
    .hero-background {
        display: none;
    }

    .container {
        max-width: 720px;
        padding: 0 2rem;
    }
    
    /* Two Column Layouts */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        max-width: none;
    }
    
    /* Hero Section */
    .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: center;
    }
    
    .hero-cta-group {
        justify-content: flex-start;
    }
    
    /* Featured Service Card */
    .service-card.featured-service {
        grid-column: span 2;
        max-width: 600px;
        margin: 0 auto;
    }
}

/* Desktop: 1024px - 1199px */
@media (min-width: 1024px) and (max-width: 1199px) {
    .container {
        max-width: 960px;
    }
    
    /* Three Column Layouts */
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .trust-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    /* Enhanced Hover Effects */
    .service-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    }
    
    .pricing-card:hover {
        transform: translateY(-6px);
    }
    
    .pricing-card.featured {
        transform: scale(1.05);
    }
    
    .pricing-card.featured:hover {
        transform: scale(1.05) translateY(-6px);
    }
}

/* Large Desktop: 1200px and up */
@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
    
    /* Enhanced Spacing */
    .hero {
        padding: 12rem 0 10rem;
    }
    
    .hero-content {
        gap: 5rem;
    }
    
    /* Maximum Enhancement */
    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    }
    
    .pricing-card.featured {
        transform: scale(1.08);
    }
    
    .pricing-card.featured:hover {
        transform: scale(1.08) translateY(-10px);
    }
    
    /* Additional Animations */
    .tech-badge:hover {
        transform: translateY(-8px) scale(1.1);
    }
}

/* ========== ACCESSIBILITY & FOCUS STATES ========== */

/* Remove default focus outline and replace with custom */
*:focus {
    outline: none;
}

/* Custom focus styles for interactive elements */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus,
.nav-toggle:focus,
.service-button:focus,
.pricing-cta:focus,
.form-submit:focus,
.social-link:focus {
    outline: 2px solid var(--accent-primary);
    outline-offset: 2px;
    box-shadow: 0 0 0 4px rgba(0, 212, 255, 0.2);
    border-radius: 4px;
}

/* Focus states for navigation */
.nav-menu a:focus {
    background: rgba(0, 212, 255, 0.1);
    transform: translateX(4px);
}

/* Focus states for cards */
.service-card:focus-within,
.pricing-card:focus-within,
.trust-point:focus-within {
    outline: 2px solid var(--accent-primary);
    outline-offset: 2px;
    transform: translateY(-4px);
}

/* Focus states for form elements */
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
    transform: scale(1.02);
}

/* High contrast focus for better visibility */
@media (prefers-contrast: high) {
    *:focus {
        outline: 3px solid #000;
        outline-offset: 2px;
    }
}

/* ========== MOBILE PERFORMANCE ========== */
@media (max-width: 1023px) {
    /* backdrop-filter: every blurred element requires an independent GPU
       compositing pass on every scroll frame. Zero visual difference on
       a dark background. */
    *,
    *::before,
    *::after {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }

    /* filter: drop-shadow and grayscale on images create compositor layers
       and repaint costs. Remove on mobile. */
    img,
    svg {
        filter: none !important;
    }

    /* The hero and tech-cta sections have 200vmax rotating gradient orbs
       as ::before/::after pseudo-elements. On a phone 200vmax ≈ 1700px —
       painting and rotating a circle that large every frame is the main
       cause of hero and section lag. Static background looks identical. */
    .hero::before,
    .hero::after,
    .tech-cta::before {
        animation: none !important;
        transform: translate(-50%, -50%) !important;
    }
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ========== LOADING STATES & MICRO-ANIMATIONS ========== */

/* Page load animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Apply animations to sections */
.hero-content > * {
    animation: fadeInUp 0.8s ease-out forwards;
}

.hero-content .hero-text {
    animation: slideInLeft 0.8s ease-out forwards;
}

.hero-content .hero-visual {
    animation: slideInRight 0.8s ease-out 0.2s forwards;
    opacity: 0;
}

.service-card {
    animation: fadeInUp 0.6s ease-out forwards;
}

.service-card:nth-child(2) { animation-delay: 0.1s; }
.service-card:nth-child(3) { animation-delay: 0.2s; }
.service-card:nth-child(4) { animation-delay: 0.3s; }

.trust-point {
    animation: fadeInUp 0.6s ease-out forwards;
}

.trust-point:nth-child(2) { animation-delay: 0.1s; }
.trust-point:nth-child(3) { animation-delay: 0.2s; }
.trust-point:nth-child(4) { animation-delay: 0.3s; }

.tech-badge {
    animation: fadeInUp 0.5s ease-out forwards;
}

.tech-badge:nth-child(2) { animation-delay: 0.05s; }
.tech-badge:nth-child(3) { animation-delay: 0.1s; }
.tech-badge:nth-child(4) { animation-delay: 0.15s; }
.tech-badge:nth-child(5) { animation-delay: 0.2s; }
.tech-badge:nth-child(6) { animation-delay: 0.25s; }

/* Micro-interactions */
.service-button,
.pricing-cta,
.promo-cta,
.form-submit {
    position: relative;
    overflow: hidden;
}

.service-button:hover,
.pricing-cta:hover,
.promo-cta:hover {
    animation: pulse 0.6s ease-in-out;
}

/* Loading skeleton for images */
.image-placeholder {
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 0.1) 25%, 
        rgba(255, 255, 255, 0.2) 50%, 
        rgba(255, 255, 255, 0.1) 75%
    );
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Interactive hover micro-animations */
.tech-badge {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.tech-badge:hover {
    animation: bounce 0.6s ease-in-out;
}

/* Stagger animations for grids */
.services-grid .service-card,
.trust-grid .trust-point,
.pricing-grid .pricing-card {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

/* CTA button ripple effect */
.service-button::after,
.pricing-cta::after,
.promo-cta::after,
.form-submit::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.service-button:active::after,
.pricing-cta:active::after,
.promo-cta:active::after,
.form-submit:active::after {
    width: 300px;
    height: 300px;
}

/* ========== SCROLL ANIMATIONS & INTERSECTION OBSERVER ========== */

/* Base state for elements to be animated */
.service-card,
.trust-point,
.tech-badge,
.pricing-card,
.process-step,
.feature-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Animate-in class applied by Intersection Observer */
.animate-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Scroll-triggered animations with stagger effect */
.services-grid .service-card {
    transition-delay: 0.1s;
}

.services-grid .service-card:nth-child(2) {
    transition-delay: 0.2s;
}

.services-grid .service-card:nth-child(3) {
    transition-delay: 0.3s;
}

.trust-grid .trust-point:nth-child(1) { transition-delay: 0.1s; }
.trust-grid .trust-point:nth-child(2) { transition-delay: 0.2s; }
.trust-grid .trust-point:nth-child(3) { transition-delay: 0.3s; }
.trust-grid .trust-point:nth-child(4) { transition-delay: 0.4s; }

.tech-badges .tech-badge:nth-child(1) { transition-delay: 0.1s; }
.tech-badges .tech-badge:nth-child(2) { transition-delay: 0.15s; }
.tech-badges .tech-badge:nth-child(3) { transition-delay: 0.2s; }
.tech-badges .tech-badge:nth-child(4) { transition-delay: 0.25s; }
.tech-badges .tech-badge:nth-child(5) { transition-delay: 0.3s; }
.tech-badges .tech-badge:nth-child(6) { transition-delay: 0.35s; }

/* ========== SCROLL TO TOP BUTTON ========== */

.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 44px;
    height: 44px;
    background: linear-gradient(45deg, var(--accent-primary), var(--accent-secondary));
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px) scale(0.8);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-to-top.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.scroll-to-top:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 30px rgba(0, 212, 255, 0.5);
    background: linear-gradient(45deg, var(--accent-secondary), var(--accent-primary));
}

.scroll-to-top:active {
    transform: translateY(0) scale(0.95);
}

/* ========== ENHANCED HOVER EFFECTS ========== */

/* Enhanced button hover effects */
.service-button,
.pricing-cta,
.promo-cta,
.form-submit {
    background: linear-gradient(45deg, var(--accent-primary), var(--accent-secondary));
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.2);
}

.service-button:hover,
.pricing-cta:hover,
.promo-cta:hover,
.form-submit:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
    background: linear-gradient(45deg, var(--accent-secondary), var(--accent-primary));
}

.service-button:active,
.pricing-cta:active,
.promo-cta:active,
.form-submit:active {
    transform: translateY(-1px) scale(0.98);
}

/* Enhanced card hover effects */
.service-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(0, 212, 255, 0.3);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    color: var(--accent-primary);
}

.pricing-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    border-color: var(--accent-primary);
}

.trust-point {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.trust-point:hover {
    transform: translateY(-5px);
    background: rgba(0, 212, 255, 0.05);
}

.trust-point:hover .trust-icon {
    transform: scale(1.15);
    background: var(--accent-primary);
}

/* Old fractalRotate animations removed — replaced by .orb elements
   using transform-only animation inside .hero-background */

/* Floating code elements */
.hero-visual::before {
    content: '< / >';
    position: absolute;
    top: 20%;
    right: 10%;
    font-family: 'Monaco', monospace;
    font-size: 2rem;
    color: var(--accent-primary);
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.hero-visual::after {
    content: '{ }';
    position: absolute;
    bottom: 20%;
    left: 10%;
    font-family: 'Monaco', monospace;
    font-size: 1.5rem;
    color: var(--accent-secondary);
    opacity: 0.3;
    animation: float 6s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

/* Typewriter effect for hero subtitle */
.hero-subtitle {
    overflow: hidden;
    border-right: 2px solid var(--accent-primary);
    white-space: nowrap;
    margin: 0 auto;
    animation: typing 3.5s steps(40, end), blink 0.75s step-end infinite;
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink {
    from, to { border-color: transparent; }
    50% { border-color: var(--accent-primary); }
}

/* Code syntax highlighting effect */
.process-command {
    position: relative;
    font-family: 'Monaco', 'Consolas', monospace;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 8px;
    padding: 1rem;
    border-left: 4px solid var(--accent-primary);
    overflow: hidden;
}

.process-command::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.process-step:hover .process-command::before {
    left: 100%;
}

/* Loading bar animation for progress */
.progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(0, 212, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
    margin-top: 1rem;
}

.progress-bar::after {
    content: '';
    display: block;
    width: 0;
    height: 100%;
    background: linear-gradient(45deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 2px;
    animation: progressFill 3s ease-in-out infinite;
}

@keyframes progressFill {
    0% { width: 0%; }
    50% { width: 100%; }
    100% { width: 0%; }
}
    
    :root {
        --section-padding: 8rem 1rem;
    }
    
    /* Large Desktop Hero Enhancements */
    .hero-headline {
        font-size: clamp(3.5rem, 5vw, 4.5rem);
    }
    
    .hero-subheadline {
        font-size: 1.375rem;
    }
    
    .trust-indicators {
        gap: 2.5rem;
    }
    
    .trust-indicators span {
        font-size: 0.95rem;
        padding: 0.6rem 1.25rem;
    }
    
    .cta-primary {
        padding: 1.5rem 3rem;
        font-size: 1.125rem;
        min-width: 320px;
    }
    
    .cta-secondary {
        padding: 1.25rem 2.5rem;
        min-width: 240px;
    }
    
    .location-indicator {
        font-size: 1.1rem;
    }
    
    /* Enhanced Background Animations for Large Screens */
    .code-animation {
        font-size: 1rem;
    }
    
    .terminal-animation {
        font-size: 0.9rem;
    }
    
    .hero-background {
        opacity: 0.4;
    }
}