:root {
    --primary-color: #8B1538;
    --secondary-color: #1E3A8A;
    --accent-color: #3B82F6;
    --dark-bg: #0F1419;
    --light-bg: #1A1F2E;
    --card-bg: #1E2432;
    --text-primary: #FFFFFF;
    --text-secondary: #94A3B8;
    --border-color: #2A3441;
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --gradient-accent: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Performance optimizations */
* {
    will-change: auto;
}

.hero-visual,
.floating-elements,
.code-particles {
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Hardware acceleration for animations */
.code-animation,
.hero-visual,
.floating-elements > *,
.service-card:hover,
.pricing-card:hover {
    transform: translateZ(0);
    will-change: transform, opacity;
}


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 20, 25, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

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

.logo {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.logo-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.btn-contact {
    padding: 0.5rem 1.5rem;
    background: var(--gradient-primary);
    border-radius: 0.5rem;
    color: white !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: radial-gradient(ellipse at center, rgba(139, 21, 56, 0.1) 0%, transparent 70%);
    overflow: hidden;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    text-align: left;
    z-index: 2;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

/* Code Editor Demo */
.code-editor-demo {
    position: relative;
    display: inline-block;
    animation: float-code-editor 8s ease-in-out infinite;
    filter: drop-shadow(0 20px 40px rgba(139, 21, 56, 0.3));
}

@keyframes float-code-editor {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-10px) scale(1.02); }
}

.code-window {
    width: min(800px, 90vw);
    height: min(500px, 60vh);
    max-width: 100%;
    background: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(139, 21, 56, 0.3),
        inset 0 1px 2px rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
}

.window-header {
    background: rgba(26, 31, 46, 0.98);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(139, 21, 56, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
}

.window-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139, 21, 56, 0.5), transparent);
}

.window-controls {
    display: flex;
    gap: 8px;
}

.file-tab {
    color: var(--text-secondary);
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    background: rgba(139, 21, 56, 0.1);
    padding: 4px 12px;
    border-radius: 6px;
    border: 1px solid rgba(139, 21, 56, 0.3);
}

/* Code Area */
.code-area {
    display: flex;
    height: calc(100% - 50px);
    min-height: 300px;
    background: rgba(15, 20, 25, 0.98);
    position: relative;
    flex: 1;
}

.code-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 40%, rgba(139, 21, 56, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.line-numbers {
    background: rgba(26, 31, 46, 0.95);
    padding: 20px 12px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: rgba(148, 163, 184, 0.9);
    border-right: 1px solid rgba(139, 21, 56, 0.3);
    min-width: 50px;
    text-align: right;
    backdrop-filter: blur(5px);
    height: 100%;
    align-content: flex-start;
    position: relative;
    z-index: 10;
    opacity: 1 !important;
    visibility: visible !important;
}

.code-content {
    flex: 1;
    padding: 20px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    line-height: 1.6;
    color: #ffffff;
    overflow: hidden;
    margin: 0;
    background: rgba(15, 20, 25, 0.98);
    /* animation removed to prevent layout shifts */
    white-space: pre;
    text-shadow: 0 0 5px rgba(139, 21, 56, 0.3);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding-left: 150px;
}

/* Code typing animation removed to prevent layout shifts */

.code-editor-demo:hover {
    filter: 
        drop-shadow(0 25px 50px rgba(139, 21, 56, 0.5))
        drop-shadow(0 0 30px rgba(59, 130, 246, 0.3));
}

.code-editor-demo:hover .code-content {
    text-shadow: 0 0 8px rgba(139, 21, 56, 0.5);
    animation: code-glow 2s infinite;
}

@keyframes code-glow {
    0%, 100% { text-shadow: 0 0 8px rgba(139, 21, 56, 0.5); }
    50% { text-shadow: 0 0 12px rgba(139, 21, 56, 0.8); }
}

.tag { color: #FF79C6; }
.property { color: #50FA7B; }

/* Coming Soon Section */
.coming-soon {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
    padding: 3rem 0;
}

.coming-soon-content {
    text-align: center;
    max-width: 600px;
}

.loader {
    width: 60px;
    height: 60px;
    border: 4px solid var(--border-color);
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1.5s linear infinite;
    margin: 0 auto 2rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.coming-soon-content h3 {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.coming-soon-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.code-animation {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    display: inline-block;
    background: var(--card-bg);
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid var(--border-color);
    min-width: 320px;
}

.code-animation pre {
    margin: 0;
    line-height: 1.6;
    white-space: pre;
    text-align: left;
}

.keyword {
    color: #FF79C6;
}

.variable {
    color: #50FA7B;
}

.string {
    color: #F1FA8C;
}

.function {
    color: #8BE9FD;
}

/* Removed typing animation to prevent layout shifts */

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.3;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 600px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.btn {
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 20px rgba(139, 21, 56, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(139, 21, 56, 0.4);
}

.btn-primary:hover .btn-arrow {
    transform: translateX(4px);
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 3rem;
    justify-content: center;
    margin: 2rem 0 3rem;
}

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

.stat-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-stat .stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
}

/* Dynamic Text Animation */
.dynamic-word {
    display: inline-block;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    animation: bounce 2s infinite;
}

.scroll-text {
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-right: 2px solid var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    transform: rotate(45deg);
    animation: scrollArrow 1.5s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

@keyframes scrollArrow {
    0% { opacity: 0; transform: rotate(45deg) translate(-5px, -5px); }
    50% { opacity: 1; }
    100% { opacity: 0; transform: rotate(45deg) translate(5px, 5px); }
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.btn-outline:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transform: translate3d(0, 0, 0);
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

.float-elem {
    position: absolute;
    font-family: 'JetBrains Mono', monospace;
    font-size: 2rem;
    color: rgba(139, 21, 56, 0.2);
    animation: float 20s infinite linear;
}

.elem-1 { top: 20%; left: 10%; animation-delay: 0s; }
.elem-2 { top: 60%; left: 80%; animation-delay: 5s; }
.elem-3 { top: 40%; left: 60%; animation-delay: 10s; }
.elem-4 { top: 80%; left: 20%; animation-delay: 15s; }
.elem-5 { top: 30%; left: 85%; animation-delay: 20s; font-size: 1.2rem; }
.elem-6 { top: 70%; left: 15%; animation-delay: 25s; font-size: 1.5rem; }
.elem-7 { top: 10%; left: 70%; animation-delay: 30s; }
.elem-8 { top: 90%; left: 60%; animation-delay: 35s; }

/* Code Particles Effect */
.code-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    font-family: 'JetBrains Mono', monospace;
    color: rgba(139, 21, 56, 0.3);
    font-size: 0.8rem;
    animation: particle-float 15s infinite linear;
    pointer-events: none;
}

@keyframes particle-float {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) translateX(100px);
        opacity: 0;
    }
}

@keyframes float {
    0% { transform: translateY(0) rotate(0deg); opacity: 1; }
    50% { transform: translateY(-50px) rotate(180deg); opacity: 0.5; }
    100% { transform: translateY(0) rotate(360deg); opacity: 1; }
}

/* Services Section */
.services {
    padding: 80px 0;
    background: var(--light-bg);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(139, 21, 56, 0.2);
}

.service-icon {
    margin-bottom: 1.5rem;
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.icon-code {
    font-family: 'JetBrains Mono', monospace;
    color: white;
    font-weight: 700;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    list-style: none;
}

.tech-stack li {
    background: rgba(139, 21, 56, 0.1);
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 0.25rem;
    font-size: 0.875rem;
    border: 1px solid rgba(139, 21, 56, 0.3);
}

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

.pricing::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(30, 58, 138, 0.05) 0%, transparent 70%);
    top: -50%;
    left: -50%;
    animation: pricing-glow 20s infinite linear;
}

@keyframes pricing-glow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

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

.pricing-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 2;
}

.plan-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    animation: icon-pulse 2s infinite;
}

.plan-icon.pro {
    background: var(--gradient-accent);
    animation: icon-glow 2s infinite;
}

.plan-icon.enterprise {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
}

.code-icon {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

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

@keyframes icon-glow {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 30px rgba(59, 130, 246, 0.8);
        transform: scale(1.05);
    }
}

.plan-description {
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

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

.badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.plan-name {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 700;
}


.features {
    list-style: none;
    margin-bottom: 2rem;
}

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

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

.features .check {
    color: #50FA7B;
    font-weight: 700;
}

.features .cross {
    color: #FF5555;
    font-weight: 700;
}

.features .disabled {
    opacity: 0.5;
}

.pricing-card .btn {
    width: 100%;
    text-align: center;
}

/* Pricing Toggle */
.pricing-toggle {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
    background: var(--card-bg);
    border-radius: 50px;
    padding: 6px;
    border: 1px solid var(--border-color);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.toggle-btn {
    padding: 10px 24px;
    background: transparent;
    border: none;
    border-radius: 50px;
    color: var(--text-secondary);
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.toggle-btn.active {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 2px 10px rgba(139, 21, 56, 0.3);
}

.toggle-btn:hover {
    color: var(--text-primary);
}

/* Price Display */
.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    margin: 1rem 0;
}

.amount {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.setup-fee {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-align: center;
    margin-top: 0.5rem;
    font-style: italic;
}

/* Hidden class for pricing grids */
.hidden {
    display: none !important;
}

/* Options Section */
.options-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border-color);
}

.options-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.options-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.option-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.option-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 21, 56, 0.2);
}

.option-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.option-icon {
    font-size: 1.5rem;
    margin-right: 0.75rem;
}

.option-header h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    flex: 1;
}

.option-price {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 1rem;
}

.option-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Commitment Info */
.commitment-info {
    background: var(--light-bg);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid var(--border-color);
}

.commitment-info h4 {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    text-align: center;
}

.commitment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.commitment-item {
    background: var(--card-bg);
    padding: 1.25rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.commitment-item strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
}

.commitment-item small {
    color: var(--text-secondary);
    font-style: italic;
    display: block;
    margin-top: 0.25rem;
}

/* Portfolio Section */
.portfolio {
    padding: 80px 0;
    background: var(--light-bg);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.portfolio-item {
    position: relative;
    height: 400px;
    border-radius: 1rem;
    overflow: hidden;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    cursor: pointer;
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(139, 21, 56, 0.3);
    border-color: var(--primary-color);
}

.portfolio-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 21, 56, 0.2), rgba(30, 58, 138, 0.2));
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-image img {
    filter: grayscale(100%) brightness(0.8);
    transition: all 0.3s ease;
}

.portfolio-item:hover .portfolio-image img {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(15, 20, 25, 0.98) 0%, rgba(15, 20, 25, 0.7) 50%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.overlay-content {
    width: 100%;
}

.overlay-content h4 {
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    font-weight: 700;
}

.overlay-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.tech-used {
    font-size: 0.875rem;
    color: var(--primary-color);
    font-family: 'JetBrains Mono', monospace;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.portfolio-links {
    display: flex;
    gap: 1rem;
}

.portfolio-links .btn {
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
}

/* Coming Soon Cards */
.coming-soon-card {
    background: var(--card-bg);
    border: 2px dashed var(--border-color);
    cursor: default;
}

.coming-soon-card:hover {
    transform: none;
    box-shadow: none;
    border-color: var(--border-color);
}

.placeholder-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 2rem;
    text-align: center;
}

.placeholder-content .code-icon {
    font-size: 3rem;
    font-family: 'JetBrains Mono', monospace;
    color: var(--primary-color);
    opacity: 0.3;
    margin-bottom: 1rem;
}

.placeholder-content h4 {
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    opacity: 0.6;
}

.placeholder-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    opacity: 0.4;
}

.coming-soon-card .portfolio-image {
    background: radial-gradient(circle at center, rgba(139, 21, 56, 0.05), transparent);
}

/* About Section */
.about {
    padding: 80px 0;
    background: var(--dark-bg);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

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

.stat {
    flex: 1;
    min-width: 120px;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* About Code Section */
.about-code {
    position: relative;
}

.about-code .code-window {
    background: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.about-code .window-header {
    background: var(--light-bg);
    padding: 0.75rem 1rem;
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.about-code .code-content {
    padding: 1.5rem;
    background: var(--card-bg);
    margin: 0;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-primary);
    overflow-x: auto;
}

/* Syntax highlighting for about code - Using same colors as hero */
.about-code .comment {
    color: #6A9955;
    font-style: italic;
}

.about-code .keyword {
    color: #FF79C6;
}

.about-code .class-name {
    color: #8BE9FD;
}

.about-code .property {
    color: #50FA7B;
}

.about-code .string {
    color: #F1FA8C;
}

.about-code .function {
    color: #8BE9FD;
}

/* Typewriter animation for about code */
.about-code .code-content {
    position: relative;
    overflow: hidden;
}

.about-code.animate .code-content > * {
    opacity: 0;
    animation: typewriter 0.05s forwards;
    animation-delay: calc(var(--line-index) * 0.1s);
}

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

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.code-window {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    overflow: hidden;
}

.window-header {
    background: var(--light-bg);
    padding: 0.75rem 1rem;
    display: flex;
    gap: 0.5rem;
    border-bottom: 1px solid var(--border-color);
}

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

.dot.red { background: #FF5555; }
.dot.yellow { background: #F1FA8C; }
.dot.green { background: #50FA7B; }

.code-content {
    padding: 1.5rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.875rem;
    line-height: 1.6;
    overflow-x: auto;
}

.comment { color: #6272A4; }
.class-name { color: #8BE9FD; }
.property { color: #50FA7B; }

/* Contact Section */
.contact {
    padding: 80px 0;
    background: var(--light-bg);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.info-item p {
    color: var(--text-secondary);
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    grid-column: span 1;
}

.form-group:last-child {
    grid-column: span 2;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    color: var(--text-primary);
    font-family: inherit;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Footer */
.footer {
    background: var(--dark-bg);
    padding: 3rem 0 1.5rem;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand .logo-text {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand p {
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

.footer-links h4,
.footer-social h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    display: block;
    padding: 0.25rem 0;
    transition: color 0.3s ease;
}

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

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 600;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
}

/* Matrix Rain Effect */
.matrix-rain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.1;
}

.matrix-column {
    position: absolute;
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    color: var(--primary-color);
    writing-mode: vertical-rl;
    white-space: nowrap;
    animation: matrix-fall linear infinite;
}

@keyframes matrix-fall {
    0% {
        transform: translateY(-100vh);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh);
        opacity: 0;
    }
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 1s ease, visibility 1s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    width: 60px;
    height: 60px;
    border: 3px solid var(--border-color);
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loader-text {
    margin-top: 1rem;
    font-family: 'JetBrains Mono', monospace;
    color: var(--primary-color);
    font-size: 0.9rem;
    animation: blink 1.5s infinite;
}

/* Terminal Cursor */
.terminal-cursor::after {
    content: '_';
    color: var(--primary-color);
    animation: cursor-blink 1s infinite;
}

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

/* Glitch Effect */
.glitch {
    position: relative;
    display: inline-block;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
}

.glitch::before {
    animation: glitch-1 0.5s infinite;
    color: #ff0000;
    z-index: -1;
}

.glitch::after {
    animation: glitch-2 0.5s infinite;
    color: #00ffff;
    z-index: -2;
}

@keyframes glitch-1 {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
}

@keyframes glitch-2 {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(2px, 2px); }
    40% { transform: translate(2px, -2px); }
    60% { transform: translate(-2px, 2px); }
    80% { transform: translate(-2px, -2px); }
}

/* Enhanced Animations */
@keyframes slideInFromLeft {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInFromRight {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeInUp {
    0% {
        transform: translateY(30px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Code Syntax Highlighting Enhancement */
.syntax-js { color: #F1FA8C; }
.syntax-html { color: #FF79C6; }
.syntax-css { color: #8BE9FD; }
.syntax-comment { color: #6272A4; font-style: italic; }

/* Responsive Design */
@media (max-width: 1024px) {
    .code-window {
        width: min(600px, 85vw);
        height: min(400px, 50vh);
    }
    
    .hero .container {
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--dark-bg);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        z-index: 1001;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-content {
        text-align: center;
        order: 2;
    }
    
    .hero-visual {
        order: 1;
        margin-bottom: 0;
    }
    
    .code-window {
        width: min(350px, 90vw);
        height: min(280px, 40vh);
    }
    
    .code-content {
        font-size: 10px;
        padding: 15px;
        padding-left: 120px;
    }
    
    .line-numbers {
        font-size: 9px;
        padding: 15px 8px;
        min-width: 35px;
    }
    
    .floating-elements {
        display: none;
    }
    
    .iphone-body {
        width: 320px;
        height: 660px;
        border-radius: 44px;
    }
    
    .iphone-screen {
        width: 296px;
        height: 636px;
        top: 12px;
        left: 12px;
        border-radius: 38px;
    }
    
    .dynamic-island {
        width: 105px;
        height: 32px;
        top: 28px;
    }
    
    .screen-content {
        padding: 75px 16px 25px;
    }
    
    .code-content-mobile {
        font-size: 9px;
        padding: 12px;
        line-height: 1.3;
    }
    
    .line-numbers {
        font-size: 8px;
        padding: 12px 6px;
        min-width: 35px;
    }
    
    .app-header {
        padding: 6px 10px;
    }
    
    .file-tab {
        font-size: 8px;
        padding: 2px 6px;
    }
    
    .status-bar {
        font-size: 11px;
        margin-bottom: 15px;
    }
    
    .side-button {
        width: 5px;
    }
    
    .mute-switch {
        height: 28px;
        top: 150px;
        left: -2.5px;
    }
    
    .volume-up {
        height: 48px;
        top: 190px;
        left: -2.5px;
    }
    
    .volume-down {
        height: 48px;
        top: 250px;
        left: -2.5px;
    }
    
    .power-button {
        height: 70px;
        top: 210px;
        right: -2.5px;
    }
    
    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .stat-value {
        font-size: 1.5rem;
    }

    .dynamic-text {
        min-width: auto;
    }

    .scroll-indicator {
        display: none;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
    
    .services-grid,
    .pricing-grid,
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-group {
        grid-column: span 1 !important;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px; /* Prevent zoom on iOS */
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .code-animation {
        font-size: 0.8rem;
        padding: 0.8rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .code-window {
        width: min(320px, 95vw);
        height: min(220px, 35vh);
    }
    
    .code-content {
        font-size: 8px;
        padding: 10px;
        padding-left: 110px;
    }
    
    .line-numbers {
        font-size: 7px;
        padding: 10px 6px;
        min-width: 30px;
    }
    
    .window-header {
        padding: 8px 12px;
    }
    
    .file-tab {
        font-size: 10px;
        padding: 3px 8px;
    }
    
    .btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .stats {
        gap: 1rem;
    }
    
    .stat {
        min-width: 100px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

/* Online Presence Section */
.online-presence {
    padding: 8rem 0;
    background: linear-gradient(135deg,
        rgba(139, 21, 56, 0.05) 0%,
        rgba(30, 58, 138, 0.05) 50%,
        rgba(139, 21, 56, 0.05) 100%
    );
    position: relative;
    overflow: hidden;
}

.online-presence::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(139, 21, 56, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(30, 58, 138, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.presence-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.presence-text .section-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.presence-text .section-subtitle {
    font-size: 1.4rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-weight: 500;
}

.presence-description .lead {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 3rem;
    font-weight: 500;
}

.presence-benefits {
    margin-bottom: 3rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(139, 21, 56, 0.1);
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(139, 21, 56, 0.05);
    border-color: rgba(139, 21, 56, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(139, 21, 56, 0.1);
}

.benefit-icon {
    font-size: 2rem;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 0.8rem;
    flex-shrink: 0;
}

.benefit-content h4 {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.benefit-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1rem;
}

.presence-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(139, 21, 56, 0.1);
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(139, 21, 56, 0.05);
    border-color: rgba(139, 21, 56, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(139, 21, 56, 0.1);
}

.stat-item .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

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

.presence-visual {
    position: relative;
}

.devices-showcase {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 2rem;
    margin-bottom: 3rem;
}

.device {
    border-radius: 1rem;
    box-shadow: 0 20px 60px rgba(139, 21, 56, 0.2);
    transition: all 0.3s ease;
}

.device:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(139, 21, 56, 0.3);
}

.device.desktop {
    width: 300px;
    height: 200px;
    background: #1a1a1a;
    border: 2px solid #333;
}

.device.mobile {
    width: 100px;
    height: 180px;
    background: #1a1a1a;
    border: 3px solid #333;
    border-radius: 1.5rem;
    position: relative;
    right: -20px;
}

.screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
    border-radius: inherit;
    overflow: hidden;
    position: relative;
}

.browser-bar {
    height: 30px;
    background: #2a2a2a;
    display: flex;
    align-items: center;
    padding: 0 1rem;
    gap: 1rem;
}

.dots {
    display: flex;
    gap: 0.3rem;
}

.dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ff5f57;
}

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

.dots span:nth-child(3) {
    background: #28ca42;
}

.url {
    background: #1a1a1a;
    color: #888;
    padding: 0.3rem 0.8rem;
    border-radius: 0.3rem;
    font-size: 0.8rem;
    font-family: var(--font-mono);
}

.content, .mobile-content {
    padding: 1.5rem;
    height: calc(100% - 30px);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-content {
    padding: 1rem;
    height: 100%;
}

.hero-mock, .mobile-hero {
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 0.5rem;
    position: relative;
    overflow: hidden;
}

.mobile-hero {
    height: 30px;
}

.hero-mock::before, .mobile-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: shimmer 2s infinite;
}

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

.text-lines, .mobile-lines {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-lines {
    gap: 0.4rem;
}

.line {
    height: 8px;
    background: #333;
    border-radius: 0.2rem;
}

.mobile-lines .line {
    height: 6px;
}

.line.short {
    width: 60%;
}

.mobile-header {
    height: 20px;
    background: #2a2a2a;
    margin-bottom: 1rem;
    border-radius: 0.3rem;
}

.growth-chart {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(139, 21, 56, 0.1);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
}

.chart-title {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 2rem;
    font-weight: 600;
}

.chart-bars {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 3rem;
    height: 120px;
}

.bar {
    width: 60px;
    background: linear-gradient(to top, var(--primary-color), var(--secondary-color));
    border-radius: 0.5rem 0.5rem 0 0;
    position: relative;
    transition: all 0.6s ease;
    animation: growBar 1.5s ease-out;
}

.bar[data-height="30%"] {
    height: 30%;
}

.bar[data-height="85%"] {
    height: 85%;
}

@keyframes growBar {
    from { height: 0; }
}

.bar span {
    position: absolute;
    bottom: -2rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .online-presence {
        padding: 4rem 0;
    }

    .presence-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .presence-text .section-title {
        font-size: 2.5rem;
    }

    .presence-text .section-subtitle {
        font-size: 1.1rem;
    }

    .presence-description .lead {
        font-size: 1rem;
    }

    .benefit-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .presence-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .devices-showcase {
        flex-direction: column;
        align-items: center;
    }

    .device.desktop {
        width: 250px;
        height: 160px;
    }

    .device.mobile {
        width: 80px;
        height: 140px;
        right: 0;
    }

    .chart-bars {
        gap: 2rem;
    }

    .bar {
        width: 50px;
    }
}

/* Enhanced Online Presence Elements */

/* Urgency Banner */
.urgency-banner {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.1), rgba(255, 140, 0, 0.1));
    border: 2px solid rgba(255, 69, 0, 0.3);
    border-radius: 1rem;
    padding: 1.5rem;
    margin: 2rem 0;
    animation: urgencyPulse 2s infinite;
}

@keyframes urgencyPulse {
    0%, 100% { border-color: rgba(255, 69, 0, 0.3); box-shadow: none; }
    50% { border-color: rgba(255, 69, 0, 0.6); box-shadow: 0 0 20px rgba(255, 69, 0, 0.2); }
}

.urgency-icon {
    font-size: 2rem;
    animation: bounce 1s infinite;
}

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

.urgency-text strong {
    display: block;
    color: #ff4500;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.urgency-text span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Success Stories */
.success-stories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
    padding: 2rem;
    background: rgba(0, 255, 127, 0.03);
    border: 1px solid rgba(0, 255, 127, 0.1);
    border-radius: 1rem;
}

.story-item {
    text-align: center;
    position: relative;
    padding: 1.5rem;
    border-radius: 0.8rem;
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.3s ease;
}

.story-item:hover {
    background: rgba(0, 255, 127, 0.05);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 127, 0.1);
}

.story-metric {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #00ff7f, #32cd32);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    display: block;
    animation: countUp 2s ease-out;
}

@keyframes countUp {
    from { opacity: 0; transform: scale(0.5); }
    to { opacity: 1; transform: scale(1); }
}

.story-text strong {
    color: var(--text-primary);
    font-size: 1rem;
    display: block;
    margin-bottom: 0.5rem;
}

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

/* Enhanced Benefit Features */
.benefit-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1rem;
}

.benefit-features span {
    background: linear-gradient(135deg, rgba(139, 21, 56, 0.1), rgba(30, 58, 138, 0.1));
    border: 1px solid rgba(139, 21, 56, 0.2);
    padding: 0.4rem 0.8rem;
    border-radius: 1rem;
    font-size: 0.8rem;
    color: var(--text-primary);
    font-weight: 500;
    transition: all 0.3s ease;
}

.benefit-features span:hover {
    background: linear-gradient(135deg, rgba(139, 21, 56, 0.2), rgba(30, 58, 138, 0.2));
    border-color: rgba(139, 21, 56, 0.4);
    transform: scale(1.05);
}

.guarantee {
    background: linear-gradient(135deg, #ffd700, #ffed4a);
    color: #333;
    padding: 0.2rem 0.6rem;
    border-radius: 1rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-left: 0.5rem;
    animation: shine 2s infinite;
}

@keyframes shine {
    0%, 100% { box-shadow: 0 0 5px rgba(255, 215, 0, 0.3); }
    50% { box-shadow: 0 0 20px rgba(255, 215, 0, 0.6), 0 0 30px rgba(255, 215, 0, 0.3); }
}

/* Guarantees Section */
.guarantees-section {
    margin: 4rem 0;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(139, 21, 56, 0.05), rgba(30, 58, 138, 0.05));
    border: 2px solid rgba(139, 21, 56, 0.1);
    border-radius: 1.5rem;
    position: relative;
    overflow: hidden;
}

.guarantees-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--primary-color));
    background-size: 200% 100%;
    animation: slideGradient 3s ease infinite;
}

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

.guarantees-section h3 {
    text-align: center;
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 2rem;
    position: relative;
}

.guarantees-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(139, 21, 56, 0.1);
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.guarantee-item:hover {
    background: rgba(139, 21, 56, 0.05);
    border-color: rgba(139, 21, 56, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(139, 21, 56, 0.1);
}

.guarantee-icon {
    font-size: 2.5rem;
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 1rem;
    flex-shrink: 0;
}

.guarantee-item h4 {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.guarantee-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

/* Social Proof */
.social-proof {
    margin: 3rem 0;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(139, 21, 56, 0.1);
    border-radius: 1.5rem;
}

.reviews-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(139, 21, 56, 0.1);
}

.stars {
    font-size: 1.5rem;
    animation: starTwinkle 2s infinite;
}

@keyframes starTwinkle {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.review-text {
    font-size: 1.1rem;
    color: var(--text-primary);
}

.review-text strong {
    font-size: 1.3rem;
    color: #ffd700;
}

.client-testimonials {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.testimonial {
    padding: 1.5rem;
    background: rgba(139, 21, 56, 0.05);
    border-left: 4px solid var(--primary-color);
    border-radius: 0.8rem;
    position: relative;
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 10px;
    font-size: 3rem;
    color: var(--primary-color);
    font-family: serif;
    opacity: 0.3;
}

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

.testimonial cite {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 600;
    font-style: normal;
}

/* Enhanced CTA */
.presence-cta {
    margin: 4rem 0;
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg,
        rgba(139, 21, 56, 0.1) 0%,
        rgba(30, 58, 138, 0.1) 50%,
        rgba(139, 21, 56, 0.1) 100%
    );
    border: 2px solid rgba(139, 21, 56, 0.2);
    border-radius: 2rem;
    position: relative;
    overflow: hidden;
}

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

@keyframes ctaShine {
    0% { left: -100%; }
    100% { left: 100%; }
}

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

.cta-content h3 {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 800;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.pulse-btn {
    position: relative;
    overflow: hidden;
    animation: ctaPulse 2s infinite;
}

@keyframes ctaPulse {
    0% { box-shadow: 0 0 0 0 rgba(139, 21, 56, 0.4); }
    70% { box-shadow: 0 0 0 20px rgba(139, 21, 56, 0); }
    100% { box-shadow: 0 0 0 0 rgba(139, 21, 56, 0); }
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: btnShine 2s infinite;
}

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

.guarantee-badge {
    display: inline-block;
    background: rgba(0, 255, 127, 0.1);
    color: #00ff7f;
    padding: 0.8rem 1.5rem;
    border: 1px solid rgba(0, 255, 127, 0.3);
    border-radius: 2rem;
    font-size: 0.9rem;
    font-weight: 500;
    animation: badgeGlow 2s infinite alternate;
}

@keyframes badgeGlow {
    from { box-shadow: 0 0 10px rgba(0, 255, 127, 0.2); }
    to { box-shadow: 0 0 20px rgba(0, 255, 127, 0.4), 0 0 30px rgba(0, 255, 127, 0.1); }
}

/* Responsive Enhancements */
@media (max-width: 768px) {
    .success-stories {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .guarantees-grid {
        grid-template-columns: 1fr;
    }

    .client-testimonials {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-content h3 {
        font-size: 2rem;
    }

    .urgency-banner {
        flex-direction: column;
        text-align: center;
    }

    .benefit-features {
        justify-content: center;
    }

    .guarantees-section {
        padding: 2rem 1rem;
    }

    .social-proof {
        padding: 1.5rem;
    }

    .presence-cta {
        padding: 2rem 1rem;
    }
}

/* Calendly Section */
.calendly-section {
    padding: 8rem 0;
    background: linear-gradient(135deg,
        rgba(139, 21, 56, 0.02) 0%,
        rgba(30, 58, 138, 0.02) 50%,
        rgba(139, 21, 56, 0.02) 100%
    );
    position: relative;
    overflow: hidden;
}

.calendly-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(139, 21, 56, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(30, 58, 138, 0.05) 0%, transparent 50%);
    z-index: 0;
}

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

.calendly-header {
    text-align: center;
    margin-bottom: 4rem;
}

.calendly-header .section-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.calendly-header .section-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Intro Grid */
.intro-grid {
    display: block;
    margin-bottom: 4rem;
}

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

.intro-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

/* Call Benefits */
.call-benefits {
    margin-bottom: 3rem;
}

.call-benefits .benefit {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(139, 21, 56, 0.1);
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.call-benefits .benefit:hover {
    background: rgba(139, 21, 56, 0.05);
    border-color: rgba(139, 21, 56, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 21, 56, 0.1);
}

.call-benefits .benefit-icon {
    font-size: 2rem;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 0.8rem;
    flex-shrink: 0;
}

.call-benefits .benefit-text strong {
    display: block;
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.call-benefits .benefit-text span {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Urgency Note */
.urgency-note {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.1), rgba(255, 140, 0, 0.1));
    border: 2px solid rgba(255, 165, 0, 0.3);
    border-radius: 1rem;
    padding: 1.5rem;
    animation: urgencyGlow 3s infinite;
}

@keyframes urgencyGlow {
    0%, 100% { box-shadow: 0 0 10px rgba(255, 165, 0, 0.2); }
    50% { box-shadow: 0 0 25px rgba(255, 165, 0, 0.4), 0 0 35px rgba(255, 165, 0, 0.1); }
}

.urgency-note .urgency-icon {
    font-size: 2rem;
    animation: pulse 2s infinite;
}

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

.urgency-note .urgency-content strong {
    display: block;
    color: #ff8c00;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    font-weight: 700;
}

.urgency-note .urgency-content span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Testimonial Card */
.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(139, 21, 56, 0.1);
    border-radius: 1.5rem;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    height: fit-content;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.quote-icon {
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.3;
    font-family: serif;
    line-height: 0;
    margin-bottom: 1rem;
}

.testimonial-card p {
    color: var(--text-primary);
    font-size: 1rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author strong {
    display: block;
    color: var(--text-primary);
    font-size: 1rem;
    margin-bottom: 0.3rem;
    font-weight: 700;
}

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

.testimonial-card .stars {
    font-size: 1.2rem;
    margin-top: 1rem;
}

/* Widget Container */
.calendly-widget-container {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(139, 21, 56, 0.1);
    border-radius: 2rem;
    padding: 3rem;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.calendly-widget-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--primary-color));
    background-size: 200% 100%;
    animation: slideGradient 4s ease infinite;
}

.widget-header {
    text-align: center;
    margin-bottom: 3rem;
}

.widget-header h3 {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 700;
}

.widget-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

/* Contact Options */
.contact-options {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-decoration: none;
    padding: 1.5rem 2rem;
    border-radius: 1rem;
    transition: all 0.3s ease;
    font-weight: 600;
}

.contact-option:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(139, 21, 56, 0.3);
    filter: brightness(1.1);
}

.contact-option .option-icon {
    font-size: 1.5rem;
}

.contact-option .option-content strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.contact-option .option-content span {
    font-size: 0.9rem;
    opacity: 0.9;
}

.contact-divider {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Calendly Widget Integration */
.calendly-inline-widget {
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(139, 21, 56, 0.1);
    background: white;
    margin: 0 auto;
    max-width: 900px;
    border: 1px solid rgba(139, 21, 56, 0.1);
}

/* Calendly Placeholder (backup) */
.calendly-placeholder {
    background: rgba(0, 0, 0, 0.02);
    border: 2px dashed rgba(139, 21, 56, 0.2);
    border-radius: 1.5rem;
    padding: 3rem;
    text-align: center;
}

.calendly-demo {
    max-width: 600px;
    margin: 0 auto;
}

.calendar-header h4 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.calendar-header p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.calendar-day {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(139, 21, 56, 0.1);
    border-radius: 0.8rem;
    padding: 1rem;
}

.day-header {
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-align: center;
    font-size: 0.9rem;
}

.time-slot {
    background: rgba(139, 21, 56, 0.1);
    color: var(--text-secondary);
    padding: 0.8rem;
    margin-bottom: 0.5rem;
    border-radius: 0.5rem;
    text-align: center;
    font-size: 0.9rem;
    cursor: not-allowed;
}

.time-slot.available {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    cursor: pointer;
    animation: availableSlot 2s infinite;
}

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

.calendly-note {
    background: rgba(139, 21, 56, 0.05);
    border: 1px solid rgba(139, 21, 56, 0.2);
    border-radius: 0.8rem;
    padding: 1.5rem;
    text-align: left;
}

.calendly-note p {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.calendly-note ol {
    color: var(--text-secondary);
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.calendly-note li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.calendly-note code {
    background: rgba(0, 0, 0, 0.2);
    color: var(--primary-color);
    padding: 0.2rem 0.5rem;
    border-radius: 0.3rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
}

/* Calendly Footer */
.calendly-footer {
    text-align: center;
}

.guarantees-reminder {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.guarantee-mini {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(0, 255, 127, 0.05);
    border: 1px solid rgba(0, 255, 127, 0.2);
    padding: 1rem 1.5rem;
    border-radius: 2rem;
    color: #00ff7f;
    font-weight: 600;
    animation: miniGlow 3s infinite alternate;
}

@keyframes miniGlow {
    from { box-shadow: 0 0 10px rgba(0, 255, 127, 0.1); }
    to { box-shadow: 0 0 20px rgba(0, 255, 127, 0.3); }
}

.guarantee-mini .guarantee-icon {
    font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 968px) {
    .intro-grid {
        display: block;
    }
}

@media (max-width: 768px) {
    .calendly-section {
        padding: 4rem 0;
    }

    .calendly-header .section-title {
        font-size: 2.5rem;
    }

    .calendly-header .section-subtitle {
        font-size: 1.1rem;
    }

    .intro-text h3 {
        font-size: 1.5rem;
    }

    .calendly-widget-container {
        padding: 2rem 1rem;
    }

    .contact-options {
        flex-direction: column;
        gap: 1rem;
    }

    .contact-divider {
        order: -1;
    }

    .calendar-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .guarantees-reminder {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .guarantee-mini {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}