/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #632CA6;
    --primary-light: #7C3AED;
    --accent-color: #FFD447;
    --accent-light: #FFE066;
    --text-color: #1C1C1E;
    --text-light: #6B7280;
    --text-lighter: #9CA3AF;
    --background-light: #F9FAFB;
    --background-dark: #111827;
    --white: #FFFFFF;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --border-radius: 16px;
    --border-radius-lg: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

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

/* Floating Background Elements */
.floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    opacity: 0.1;
    animation: float 20s infinite linear;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-delay: -5s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 20%;
    animation-delay: -10s;
}

.shape-4 {
    width: 120px;
    height: 120px;
    top: 30%;
    right: 30%;
    animation-delay: -15s;
}

.shape-5 {
    width: 80px;
    height: 80px;
    top: 80%;
    left: 60%;
    animation-delay: -7s;
}

.shape-6 {
    width: 60px;
    height: 60px;
    top: 15%;
    left: 70%;
    animation-delay: -12s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(90deg); }
    50% { transform: translateY(-40px) rotate(180deg); }
    75% { transform: translateY(-20px) rotate(270deg); }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
}

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

p {
    margin-bottom: 1rem;
    color: var(--text-light);
    font-size: 1.125rem;
}

/* Glass Morphism Effect */
.glass-effect {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
    min-height: 56px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    backdrop-filter: blur(20px);
}

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

.btn-large {
    padding: 16px 24px;
    font-size: 1rem;
    min-height: 56px;
    width: 100%;
    max-width: 300px;
}

.glow-effect {
    position: relative;
}

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: var(--transition);
}

.glow-effect:hover .btn-glow {
    left: 100%;
}

.pulse-effect {
    animation: pulse 2s infinite;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    max-width: 90vw;
    width: 100%;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

/* Left Navigation */
.nav-left {
    display: flex;
    align-items: center;
    gap: 2rem;
}

/* Right Navigation */
.nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

/* Navigation Links */
.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    transition: var(--transition);
    position: relative;
    opacity: 0.8;
}

.nav-link:hover {
    opacity: 1;
    color: var(--accent-color);
}

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

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

/* Center Logo */
.nav-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo-image {
    height: 32px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: var(--transition);
}

.logo-image:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -2;
}

.gradient-mesh {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.3) 0%, transparent 50%);
}

.particle-field {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: particle-move 20s linear infinite;
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 44, 166, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: hero-glow-pulse 4s ease-in-out infinite;
}

@keyframes hero-glow-pulse {
    0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.1); }
}

@keyframes particle-move {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    padding: 12px 24px;
    margin-bottom: 2rem;
    animation: badge-float 3s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.badge-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 212, 71, 0.3), transparent);
    animation: badge-shimmer 3s ease-in-out infinite;
}

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

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

.badge-text {
    font-weight: 600;
    color: var(--white);
    font-size: 0.875rem;
    position: relative;
    z-index: 2;
}

.hero-title {
    margin-bottom: 2rem;
}

.title-line {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--white);
    opacity: 1;
    transform: translateY(0);
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    color: var(--white);
    opacity: 0.9;
}

.highlight {
    color: var(--accent-color);
    font-weight: 700;
}

.hero-stats {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat-item {
    text-align: center;
    opacity: 1;
    transform: translateY(0);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent-color);
    display: block;
    position: relative;
}

/* Removed yellow horizontal bars */

.stat-label {
    font-size: 0.875rem;
    color: var(--white);
    opacity: 0.8;
    font-weight: 500;
}

.hero-cta-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    opacity: 1;
    transform: translateY(0);
}

.btn-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.btn-particles::before,
.btn-particles::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 50%;
    animation: particle-float 3s infinite;
}

.btn-particles::before {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.btn-particles::after {
    top: 60%;
    right: 20%;
    animation-delay: 1.5s;
}

@keyframes particle-float {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0; }
    50% { transform: translateY(-20px) scale(1.5); opacity: 1; }
}

.cta-secondary {
    text-align: center;
}

.cta-text {
    color: var(--white);
    opacity: 0.7;
    font-size: 0.875rem;
    font-weight: 500;
}

.hero-visual {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.website-preview {
    width: 300px;
    height: 400px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    overflow: hidden;
    animation: preview-float 6s ease-in-out infinite;
    position: relative;
}

.preview-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 212, 71, 0.1) 0%, transparent 70%);
    animation: preview-glow-pulse 4s ease-in-out infinite;
}

@keyframes preview-glow-pulse {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 0.5; }
}

@keyframes preview-float {
    0%, 100% { transform: translateY(-50%) rotateY(0deg); }
    50% { transform: translateY(-50%) rotateY(5deg); }
}

.preview-header {
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    padding: 0 16px;
}

.preview-dots {
    display: flex;
    gap: 8px;
}

.preview-dots .dot {
    width: 12px;
    height: 12px;
    background: var(--white);
    border-radius: 50%;
    opacity: 0.6;
}

.preview-content {
    padding: 20px;
}

.preview-hero {
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 8px;
    margin-bottom: 16px;
}

.preview-sections {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.preview-section {
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
}

.floating-elements-hero {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
    opacity: 0.3;
    animation: hero-shape-float 8s ease-in-out infinite;
}

.shape-a {
    width: 20px;
    height: 20px;
    top: 20%;
    right: 10%;
    animation-delay: 0s;
}

.shape-b {
    width: 15px;
    height: 15px;
    top: 60%;
    right: 20%;
    animation-delay: 2s;
}

.shape-c {
    width: 25px;
    height: 25px;
    top: 40%;
    right: 5%;
    animation-delay: 4s;
}

@keyframes hero-shape-float {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.3; }
    50% { transform: translateY(-30px) rotate(180deg); opacity: 0.6; }
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.7;
    animation: scroll-indicator-pulse 2s ease-in-out infinite;
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--white), transparent);
    border-radius: 1px;
}

.scroll-text {
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes scroll-indicator-pulse {
    0%, 100% { opacity: 0.7; transform: translateX(-50%) translateY(0); }
    50% { opacity: 1; transform: translateX(-50%) translateY(-5px); }
}

/* Section Styles */
section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-title {
    margin-bottom: 1.5rem;
    color: var(--white);
}

.section-description {
    font-size: 1.25rem;
    color: var(--white);
    opacity: 0.8;
    margin-bottom: 0;
}

/* What is Snappi Section */
.what-is-snappi {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.what-is-snappi::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(99, 44, 166, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255, 212, 71, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* Value Proposition Cards */
.value-props-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    padding: 2.5rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-lg);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: var(--transition);
}

.value-card:hover::before {
    left: 100%;
}

.value-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.value-card.primary {
    border-color: rgba(99, 44, 166, 0.3);
}

.value-card.secondary {
    border-color: rgba(255, 212, 71, 0.3);
}

.value-card.accent {
    border-color: rgba(255, 255, 255, 0.3);
}

.value-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.value-icon {
    font-size: 3.5rem;
    position: relative;
    z-index: 2;
    color: var(--white);
}

.value-card.primary .value-icon {
    color: var(--primary-color);
}

.value-card.secondary .value-icon {
    color: var(--accent-color);
}

.value-card.accent .value-icon {
    color: var(--white);
}

/* Removed pulsing animations */

.value-card h3 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.75rem;
    font-weight: 700;
}

.value-card p {
    color: var(--white);
    opacity: 0.8;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-size: 1.1rem;
}

.value-metric {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.metric-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent-color);
    display: block;
}

.metric-label {
    font-size: 0.875rem;
    color: var(--white);
    opacity: 0.7;
    font-weight: 500;
}

/* Business Impact Section */
.business-impact {
    margin-top: 4rem;
}

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

.impact-header h3 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.impact-header p {
    color: var(--white);
    opacity: 0.8;
    font-size: 1.2rem;
    line-height: 1.6;
}

.results-showcase {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.result-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.result-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(99, 44, 166, 0.1), rgba(255, 212, 71, 0.1));
    opacity: 0;
    transition: var(--transition);
}

.result-card:hover::before {
    opacity: 1;
}

.result-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(99, 44, 166, 0.2);
}

.result-card.primary {
    border-color: rgba(99, 44, 166, 0.3);
}

.result-card.secondary {
    border-color: rgba(255, 212, 71, 0.3);
}

.result-card.accent {
    border-color: rgba(255, 255, 255, 0.3);
}

.result-icon {
    flex-shrink: 0;
}

.icon-bg {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
    position: relative;
    overflow: hidden;
}

.icon-bg i {
    color: var(--white);
    font-size: 2rem;
}

.result-card.primary .icon-bg {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
}

.result-card.secondary .icon-bg {
    background: linear-gradient(135deg, var(--accent-color), #FFE066);
    color: var(--text-color);
}

.result-card.accent .icon-bg {
    background: linear-gradient(135deg, var(--white), #f0f0f0);
    color: var(--primary-color);
}

.result-content {
    flex: 1;
}

.result-content h4 {
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.result-content p {
    color: var(--white);
    opacity: 0.8;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.result-highlight {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.highlight-number {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 900;
}

.highlight-label {
    color: var(--white);
    opacity: 0.7;
    font-size: 0.85rem;
    font-weight: 500;
}

/* CTA Section */
.what-is-cta {
    margin-top: 4rem;
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

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

.cta-content p {
    color: var(--white);
    opacity: 0.8;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* How It Works Section */
.how-it-works {
    background: linear-gradient(135deg, rgba(99, 44, 166, 0.05), rgba(255, 212, 71, 0.05));
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(99, 44, 166, 0.1), transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255, 212, 71, 0.1), transparent 50%);
    pointer-events: none;
}

.process-showcase {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.process-step {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 3rem 2rem;
    display: flex;
    align-items: center;
    gap: 3rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(99, 44, 166, 0.1), rgba(255, 212, 71, 0.1));
    opacity: 0;
    transition: var(--transition);
}

.process-step:hover::before {
    opacity: 1;
}

.process-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(99, 44, 166, 0.2);
}

.process-step.primary {
    border-color: rgba(99, 44, 166, 0.3);
}

.process-step.secondary {
    border-color: rgba(255, 212, 71, 0.3);
}

.process-step.accent {
    border-color: rgba(255, 255, 255, 0.3);
}

.step-visual {
    flex-shrink: 0;
    position: relative;
}

.step-icon {
    width: 120px;
    height: 120px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    position: relative;
    overflow: hidden;
    margin-bottom: 1rem;
}

.process-step.primary .step-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
}

.process-step.secondary .step-icon {
    background: linear-gradient(135deg, var(--accent-color), #FFE066);
    color: var(--text-color);
}

.process-step.accent .step-icon {
    background: linear-gradient(135deg, var(--white), #f0f0f0);
    color: var(--primary-color);
}

.step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    color: var(--text-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 900;
    box-shadow: 0 4px 12px rgba(255, 212, 71, 0.3);
}

.step-content {
    flex: 1;
}

.step-content h3 {
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.step-content p {
    color: var(--white);
    opacity: 0.8;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.step-highlight {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.highlight-text {
    color: var(--accent-color);
    font-size: 1.3rem;
    font-weight: 900;
}

.highlight-label {
    color: var(--white);
    opacity: 0.7;
    font-size: 0.9rem;
    font-weight: 500;
}

.process-cta {
    margin-top: 4rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.process-cta .cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.process-cta h3 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.process-cta p {
    color: var(--white);
    opacity: 0.8;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* References Section */
.references {
    background: linear-gradient(135deg, rgba(99, 44, 166, 0.05), rgba(255, 212, 71, 0.05));
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.references::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(99, 44, 166, 0.1), transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 212, 71, 0.1), transparent 50%);
    pointer-events: none;
}

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

.reference-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.reference-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(99, 44, 166, 0.1), rgba(255, 212, 71, 0.1));
    opacity: 0;
    transition: var(--transition);
}

.reference-card:hover::before {
    opacity: 1;
}

.reference-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(99, 44, 166, 0.2);
}

.reference-card.primary {
    border-color: rgba(99, 44, 166, 0.3);
}

.reference-card.secondary {
    border-color: rgba(255, 212, 71, 0.3);
}

.reference-card.accent {
    border-color: rgba(255, 255, 255, 0.3);
}

.reference-visual {
    flex-shrink: 0;
    position: relative;
    display: flex;
    justify-content: center;
}

.reference-preview {
    width: 100%;
    max-width: 280px;
    height: 160px;
    background: var(--glass-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.preview-header {
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    padding: 0 12px;
    gap: 8px;
}

.preview-dots {
    display: flex;
    gap: 6px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
}

.dot:nth-child(1) {
    background: #FF5F57;
}

.dot:nth-child(2) {
    background: #FFBD2E;
}

.dot:nth-child(3) {
    background: #28CA42;
}

.preview-content {
    padding: 1rem;
    height: calc(100% - 32px);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.preview-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.preview-image:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.preview-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    transition: var(--transition);
}

.preview-link:hover {
    transform: scale(1.02);
}

.reference-btn {
    margin-top: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    padding: 0.75rem 1.5rem;
    background: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
    transition: var(--transition);
}

.reference-btn:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(99, 44, 166, 0.3);
}

.reference-btn i {
    font-size: 0.75rem;
    transition: var(--transition);
}

.reference-btn:hover i {
    transform: translateX(2px);
}

.preview-hero {
    text-align: center;
    padding: 1rem 0;
}

.preview-hero h4 {
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.preview-hero p {
    color: var(--white);
    opacity: 0.7;
    font-size: 0.8rem;
}

.preview-sections {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
}

.preview-section {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.preview-section:nth-child(2) {
    height: 12px;
}

.preview-section:nth-child(3) {
    height: 16px;
}

.reference-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--accent-color);
    color: var(--text-color);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(255, 212, 71, 0.3);
}

.reference-content {
    flex: 1;
}

.reference-header {
    margin-bottom: 1rem;
}

.reference-header h3 {
    color: var(--white);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.reference-header p {
    color: var(--white);
    opacity: 0.7;
    font-size: 0.9rem;
}

.reference-description {
    margin-bottom: 1.5rem;
}

.reference-description p {
    color: var(--white);
    opacity: 0.8;
    font-size: 0.95rem;
    line-height: 1.5;
}

.reference-metrics {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: center;
}

.metric {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    align-items: center;
}

.metric-number {
    color: var(--accent-color);
    font-size: 1.3rem;
    font-weight: 900;
}

.metric-label {
    color: var(--white);
    opacity: 0.7;
    font-size: 0.8rem;
    font-weight: 500;
    text-align: center;
}

.reference-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.feature-tag {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 0.4rem 0.8rem;
    border-radius: 16px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.references-cta {
    margin-top: 3rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.references-cta .cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.references-cta h3 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.references-cta p {
    color: var(--white);
    opacity: 0.8;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

/* Pricing Section */
.pricing {
    background: linear-gradient(135deg, rgba(99, 44, 166, 0.05), rgba(255, 212, 71, 0.05));
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

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

.pricing-showcase {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.pricing-main {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(99, 44, 166, 0.1), rgba(255, 212, 71, 0.1));
    opacity: 0;
    transition: var(--transition);
}

.pricing-card:hover::before {
    opacity: 1;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(99, 44, 166, 0.2);
}

.card-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(99, 44, 166, 0.3), transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.pricing-card:hover .card-glow {
    opacity: 1;
    animation: card-glow-pulse 2s ease-in-out infinite;
}

@keyframes card-glow-pulse {
    0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.1); }
}

.pricing-badge {
    position: absolute;
    top: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
    white-space: nowrap;
}

.pricing-card.featured {
    border-color: rgba(255, 212, 71, 0.3);
    transform: scale(1.05);
}

.pricing-card.featured .card-glow {
    background: radial-gradient(circle, rgba(255, 212, 71, 0.3), transparent 70%);
}

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

.package-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.package-icon i {
    color: var(--white);
    font-size: 1.5rem;
}

.pricing-card.starter .package-icon {
    background: linear-gradient(135deg, rgba(99, 44, 166, 0.3), rgba(255, 212, 71, 0.3));
}

.pricing-card.featured .package-icon {
    background: linear-gradient(135deg, rgba(255, 212, 71, 0.3), rgba(99, 44, 166, 0.3));
}

.pricing-card.pro .package-icon {
    background: linear-gradient(135deg, rgba(99, 44, 166, 0.3), rgba(255, 255, 255, 0.3));
}

.pricing-header h3 {
    color: var(--white);
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

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

.currency {
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 600;
}

.amount {
    color: var(--accent-color);
    font-size: 2.5rem;
    font-weight: 900;
}

.period {
    color: var(--white);
    opacity: 0.7;
    font-size: 0.9rem;
    margin-left: 0.5rem;
}

.package-description {
    color: var(--white);
    opacity: 0.8;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 2rem;
}

.pricing-features {
    margin-bottom: 2rem;
    text-align: left;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--white);
    opacity: 0.9;
    font-size: 0.9rem;
}

.feature-item i {
    color: var(--accent-color);
    font-size: 0.8rem;
    flex-shrink: 0;
}

.pricing-cta {
    width: 100%;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.pricing-cta.featured {
    background: var(--accent-color);
    color: var(--primary-color);
}

.pricing-cta.featured:hover {
    background: var(--white);
    color: var(--primary-color);
}

.hosting-info {
    margin-bottom: 2rem;
    text-align: center;
}

.hosting-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--white);
    opacity: 0.7;
    font-size: 0.85rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hosting-note i {
    color: var(--accent-color);
    font-size: 0.9rem;
}

.add-ons-section {
    margin-top: 4rem;
}

.add-ons-title {
    color: var(--white);
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
}

.add-ons-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.add-on-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 1.5rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.add-on-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(99, 44, 166, 0.1), rgba(255, 212, 71, 0.1));
    opacity: 0;
    transition: var(--transition);
}

.add-on-card:hover::before {
    opacity: 1;
}

.add-on-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(99, 44, 166, 0.15);
}

.add-on-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.add-on-icon i {
    color: var(--white);
    font-size: 1.2rem;
}

.add-on-content {
    flex: 1;
}

.add-on-content h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.add-on-price {
    color: var(--accent-color);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.add-on-content p {
    color: var(--white);
    opacity: 0.7;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.feature-tag {
    background: var(--accent-color);
    color: var(--text-color);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Testimonials */
.testimonials {
    background: linear-gradient(135deg, rgba(99, 44, 166, 0.05), rgba(255, 212, 71, 0.05));
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(99, 44, 166, 0.1), transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 212, 71, 0.1), transparent 50%);
    pointer-events: none;
}

.testimonials-showcase {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
    opacity: 1;
    visibility: visible;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2.5rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    transform: none;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(99, 44, 166, 0.1), rgba(255, 212, 71, 0.1));
    opacity: 0;
    transition: var(--transition);
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(99, 44, 166, 0.2);
}

.card-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(99, 44, 166, 0.3), transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.testimonial-card:hover .card-glow {
    opacity: 1;
    animation: card-glow-pulse 2s ease-in-out infinite;
}

.testimonial-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 2;
}

.testimonial-badge i {
    font-size: 0.7rem;
}

.testimonial-card.primary {
    border-color: rgba(99, 44, 166, 0.3);
}

.testimonial-card.secondary {
    border-color: rgba(255, 212, 71, 0.3);
}

.testimonial-card.accent {
    border-color: rgba(255, 255, 255, 0.3);
}

.testimonial-card.cta-card {
    border-color: var(--primary-color);
    background: rgba(99, 44, 166, 0.1);
    position: relative;
}

.testimonial-card.cta-card::before {
    background: linear-gradient(135deg, rgba(99, 44, 166, 0.2), rgba(255, 212, 71, 0.1));
}

.testimonial-card.cta-card:hover::before {
    opacity: 1;
}

.testimonial-card.cta-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(99, 44, 166, 0.3);
}

.cta-title {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-align: center;
}

.cta-description {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    text-align: center;
    opacity: 0.9;
}

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

.cta-metrics .metric {
    text-align: center;
}

.cta-metrics .metric-number {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
    display: block;
}

.cta-metrics .metric-label {
    color: var(--white);
    font-size: 0.8rem;
    opacity: 0.8;
}

.cta-button {
    position: relative;
    margin-top: 1.5rem;
    width: 100%;
    max-width: 200px;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

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

.quote-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.quote-icon i {
    color: var(--accent-color);
    font-size: 1.5rem;
}

.testimonial-text {
    color: var(--white);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.testimonial-metrics {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.testimonial-metrics .metric {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial-metrics .metric-number {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 900;
}

.testimonial-metrics .metric-label {
    color: var(--white);
    opacity: 0.7;
    font-size: 0.85rem;
    font-weight: 500;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 2;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.2rem;
    position: relative;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.avatar-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 212, 71, 0.3), transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: var(--transition);
}

.testimonial-card:hover .avatar-glow {
    opacity: 1;
    animation: avatar-glow-pulse 2s ease-in-out infinite;
}

@keyframes avatar-glow-pulse {
    0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.1); }
}

.author-info {
    flex: 1;
}

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

.author-info p {
    color: var(--white);
    opacity: 0.7;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.author-verification {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-color);
    font-size: 0.8rem;
    font-weight: 500;
}

.author-verification i {
    font-size: 0.7rem;
}

.testimonials-cta {
    margin-top: 4rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.testimonials-cta .cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.testimonials-cta h3 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.testimonials-cta p {
    color: var(--white);
    opacity: 0.8;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.5;
}

/* FAQ Section */
.faq {
    background: linear-gradient(135deg, rgba(99, 44, 166, 0.05), rgba(255, 212, 71, 0.05));
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(99, 44, 166, 0.1), transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 212, 71, 0.1), transparent 50%);
    pointer-events: none;
}

.faq-showcase {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.faq-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 2.5rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.faq-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(99, 44, 166, 0.1), rgba(255, 212, 71, 0.1));
    opacity: 0;
    transition: var(--transition);
}

.faq-card:hover::before {
    opacity: 1;
}

.faq-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(99, 44, 166, 0.2);
}

.faq-card .card-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(99, 44, 166, 0.3), transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.faq-card:hover .card-glow {
    opacity: 1;
    animation: card-glow-pulse 2s ease-in-out infinite;
}

.faq-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 2;
}

.faq-badge i {
    font-size: 0.7rem;
}

.faq-card.primary {
    border-color: rgba(99, 44, 166, 0.3);
}

.faq-card.secondary {
    border-color: rgba(255, 212, 71, 0.3);
}

.faq-card.accent {
    border-color: rgba(255, 255, 255, 0.3);
}

.faq-content {
    position: relative;
    z-index: 2;
}

.faq-icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.faq-icon-wrapper i {
    color: var(--accent-color);
    font-size: 1.5rem;
}

.faq-question {
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.4;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.faq-answer {
    color: var(--white);
    opacity: 1;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.faq-answer p {
    margin-bottom: 1rem;
    color: var(--white);
    opacity: 1;
    font-weight: 500;
}

.faq-highlight {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.9rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.faq-highlight i {
    font-size: 0.8rem;
}

.faq-cta {
    margin-top: 4rem;
    text-align: center;
}

.faq-cta .cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.faq-cta h3 {
    color: var(--white);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.faq-cta p {
    color: var(--white);
    opacity: 1;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    font-weight: 500;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, rgba(99, 44, 166, 0.05), rgba(255, 212, 71, 0.05));
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(99, 44, 166, 0.1), transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 212, 71, 0.1), transparent 50%);
    pointer-events: none;
}

.contact-showcase {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.contact-card.accent {
    grid-column: 1 / -1;
}

.contact-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 2.5rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(99, 44, 166, 0.1), rgba(255, 212, 71, 0.1));
    opacity: 0;
    transition: var(--transition);
}

.contact-card:hover::before {
    opacity: 1;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(99, 44, 166, 0.2);
}

.contact-card .card-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(99, 44, 166, 0.3), transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.contact-card:hover .card-glow {
    opacity: 1;
    animation: card-glow-pulse 2s ease-in-out infinite;
}

.contact-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 2;
}

.contact-badge i {
    font-size: 0.7rem;
}

.contact-card.primary {
    border-color: rgba(99, 44, 166, 0.3);
}

.contact-card.secondary {
    border-color: rgba(255, 212, 71, 0.3);
}

.contact-card.accent {
    border-color: rgba(255, 255, 255, 0.3);
}

.contact-content {
    position: relative;
    z-index: 2;
}

.contact-icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.contact-icon-wrapper i {
    color: var(--accent-color);
    font-size: 1.5rem;
}

.contact-title {
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.4;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.contact-description {
    color: var(--white);
    opacity: 1;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.contact-highlight {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.contact-highlight i {
    font-size: 0.8rem;
}

.contact-btn {
    width: 100%;
    margin-top: 1rem;
}

.contact-locations {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.location-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--white);
    font-weight: 500;
}

.location-item i {
    color: var(--accent-color);
    font-size: 1rem;
}

.contact-calendly {
    margin-top: 4rem;
    text-align: center;
}

.calendly-container {
    max-width: 800px;
    margin: 0 auto;
}

.calendly-container h3 {
    color: var(--white);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.calendly-container p {
    color: var(--white);
    opacity: 1;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    font-weight: 500;
}

.calendly-widget {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.calendly-inline-widget {
    border-radius: var(--border-radius);
    overflow: hidden;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, rgba(99, 44, 166, 0.1), rgba(255, 212, 71, 0.05));
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

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

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 4rem 0 2rem;
    position: relative;
    z-index: 2;
}

.footer-brand {
    text-align: center;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo .logo-image {
    height: 40px;
    filter: brightness(0) invert(1);
}

.footer-tagline {
    color: var(--white);
    opacity: 0.9;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-link {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    transition: var(--transition);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
    background: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 212, 71, 0.3);
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.footer-section h4 {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
    text-align: center;
}

.footer-section ul li a {
    color: var(--white);
    opacity: 0.8;
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-section ul li a:hover {
    color: var(--accent-color);
    opacity: 1;
}

.footer-section ul li:not(a) {
    color: var(--white);
    opacity: 0.8;
    font-size: 0.95rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    text-align: center;
}

.footer-legal {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.footer-legal p {
    color: var(--white);
    opacity: 0.7;
    font-size: 0.9rem;
    margin: 0;
}

.footer-legal-links {
    display: flex;
    gap: 2rem;
}

.footer-legal-links a {
    color: var(--white);
    opacity: 0.7;
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-legal-links a:hover {
    color: var(--accent-color);
    opacity: 1;
}

.footer-cta {
    display: flex;
    justify-content: center;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--glass-border);
    padding: 1rem 0;
    z-index: 1000;
    transform: translateY(100%);
    transition: var(--transition);
}

.sticky-cta.show {
    transform: translateY(0);
}

.sticky-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.sticky-content p {
    margin-bottom: 0;
    font-weight: 600;
    color: var(--white);
}

/* Mobile-specific fixes for hero layout */
.hero-badge {
    margin-top: 0.5rem;
    margin-bottom: 0.75rem;
    padding: 6px 14px;
    font-size: 0.7rem;
}

.hero-cta-group {
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    margin-bottom: 1rem;
}

.hero-stats {
    margin-bottom: 1rem;
}

.scroll-indicator {
    bottom: 20px;
    opacity: 0.3;
}

.scroll-line {
    height: 20px;
}

.scroll-text {
    font-size: 0.6rem;
}

/* Additional mobile compression for iPhone 16 Pro */
.hero-stats {
    gap: 1.5rem !important;
    margin-bottom: 1.5rem !important;
}

.stat-number {
    font-size: 2.2rem !important;
}

/* Mobile-First Responsive Design */

/* Base mobile styles (default) */
/* Mobile Navigation */
.navbar {
    top: 10px;
    max-width: 92vw;
    width: 92vw;
    border-radius: 25px;
}

.nav-container {
    padding: 0.5rem 1rem;
    gap: 1rem;
}

.nav-left, .nav-right {
    gap: 1rem;
}

.nav-link {
    font-size: 0.75rem;
    display: none; /* Hide nav links on mobile */
}

.nav-right .nav-link {
    display: none; /* Hide all nav links on mobile */
}

.nav-right .btn {
    font-size: 0.7rem;
    padding: 0.4rem 0.8rem;
}

/* Navigation CTA Button - White to Purple */
.btn-nav-cta {
    background: var(--white);
    color: var(--primary-color);
    border: 1px solid var(--white);
    font-weight: 600;
    transition: var(--transition);
    padding: 0.4rem 0.8rem;
    font-size: 0.7rem;
}

.btn-nav-cta:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 44, 166, 0.3);
}

.logo-image {
    height: 24px;
}
.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 16px;
}

section {
    padding: 60px 0;
}

.hero {
    padding: 60px 0 40px;
    min-height: 100vh;
}

.hero-visual {
    display: none; /* Hidden on mobile by default */
}

.hero-stats {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat-item {
    text-align: center;
    opacity: 1;
    transform: translateY(0);
}

.stat-number {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    display: block;
    position: relative;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--white);
    opacity: 0.8;
    font-weight: 500;
    margin-top: 0.5rem;
}

.hero-title {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.btn-large {
    padding: 14px 20px;
    font-size: 0.9rem;
    min-height: 48px;
    width: 100%;
    max-width: 300px;
}

.hero-cta-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    opacity: 1;
    transform: translateY(0);
    width: 100%;
}

.cta-secondary {
    text-align: center;
    width: 100%;
}

.cta-text {
    color: var(--white);
    opacity: 0.7;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Features grid - mobile first */
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-card {
    padding: 2rem 1.5rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

/* Process timeline - mobile first */
.process-timeline {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
}

.process-step {
    flex-direction: column;
    text-align: center;
    padding: 2.5rem 2rem;
    gap: 2rem;
}

.step-icon {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
}

.step-content h3 {
    font-size: 1.5rem;
}

.step-content p {
    font-size: 1rem;
}

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

.process-cta p {
    font-size: 1.1rem;
}

/* Template gallery - mobile first */
.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

/* Pricing grid - mobile first */
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
    align-items: start;
}

.pricing-card {
    padding: 2rem 1.5rem;
    position: relative;
    transition: var(--transition);
}

.amount {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--accent-color);
}

/* Testimonials - mobile first */
/* Removed old testimonials-grid styles to prevent conflicts */

/* Sticky CTA - mobile first */
.sticky-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Tablet styles (768px and up) */
@media (min-width: 768px) {
    /* Navigation Tablet Styles */
    .navbar {
        top: 20px;
        max-width: 90vw;
        border-radius: 50px;
    }
    
    .nav-container {
        padding: 1rem 2rem;
        gap: 2rem;
    }
    
    .nav-left, .nav-right {
        gap: 2rem;
    }
    
    .nav-link {
        font-size: 0.875rem;
        display: inline-block; /* Show nav links on tablet */
    }
    
    .nav-right .nav-link {
        display: inline-block; /* Show nav links on tablet */
    }
    
    .nav-right .btn {
        font-size: 0.875rem;
        padding: 0.75rem 1.5rem;
    }
    
    .btn-nav-cta {
        padding: 0.75rem 1.5rem;
    }
    
    .logo-image {
        height: 32px;
    }
    
    .container {
        max-width: 1200px;
        padding: 0 20px;
    }
    
    section {
        padding: 80px 0;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-stats {
        flex-direction: row;
        gap: 3rem;
        margin-bottom: 3rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .btn-large {
        padding: 20px 40px;
        font-size: 1.125rem;
        min-height: 64px;
        width: auto;
    }
    
    .hero-cta-group {
        flex-direction: column;
        gap: 1rem;
    }
    
    .value-props-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 2rem;
        margin-top: 3rem;
    }
    
    .value-card {
        padding: 3rem 2rem;
    }
    
    .results-showcase {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .result-card {
        flex-direction: column;
        text-align: center;
        padding: 2.5rem 2rem;
    }
    
    .result-icon {
        margin-bottom: 1.5rem;
    }
    
    .icon-bg {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }
    
    .impact-header h3 {
        font-size: 3rem;
    }
    
    .cta-content h3 {
        font-size: 3rem;
    }
    
    .process-showcase {
        gap: 2.5rem;
    }
    
    .process-step {
        flex-direction: row;
        text-align: left;
        padding: 3rem 2.5rem;
        gap: 3rem;
    }
    
    .step-icon {
        width: 120px;
        height: 120px;
        font-size: 3rem;
    }
    
    .step-content h3 {
        font-size: 1.8rem;
    }
    
    .step-content p {
        font-size: 1.1rem;
    }
    
    .process-cta h3 {
        font-size: 2.5rem;
    }
    
    .process-cta p {
        font-size: 1.2rem;
    }
    
    .references-showcase {
        gap: 2.5rem;
    }
    
    .reference-card {
        flex-direction: row;
        text-align: left;
        padding: 2.5rem;
        gap: 2.5rem;
    }
    
    .reference-preview {
        width: 280px;
        height: 180px;
        margin: 0;
    }
    
    .reference-header h3 {
        font-size: 1.6rem;
    }
    
    .reference-description p {
        font-size: 1.05rem;
    }
    
    .reference-metrics {
        flex-direction: row;
        justify-content: flex-start;
        gap: 2rem;
    }
    
    .metric {
        align-items: flex-start;
    }
    
    .metric-label {
        text-align: left;
    }
    
    .reference-features {
        justify-content: flex-start;
    }
    
    .references-cta h3 {
        font-size: 2.2rem;
    }
    
    .references-cta p {
        font-size: 1.15rem;
    }
    
    .pricing-main {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .pricing-card {
        padding: 2.5rem;
    }
    
    .pricing-badge {
        top: -0.75rem;
        left: 50%;
        transform: translateX(-50%);
        font-size: 0.85rem;
        padding: 0.6rem 1.2rem;
    }
    
    .amount {
        font-size: 3rem;
    }
    
    .add-ons-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .add-on-card {
        padding: 2rem;
    }
    
    .hosting-note {
        font-size: 0.9rem;
        padding: 0.85rem;
    }
    
    .testimonials-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .testimonial-card {
        padding: 2rem;
    }
    
    .testimonial-metrics {
        gap: 1.5rem;
    }
    
    .testimonials-cta h3 {
        font-size: 1.8rem;
    }
    
    .testimonials-cta p {
        font-size: 1rem;
    }
    
    .faq-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .faq-card {
        padding: 2rem;
    }
    
    .faq-question {
        font-size: 1.2rem;
    }
    
    .faq-cta h3 {
        font-size: 1.8rem;
    }
    
    .faq-cta p {
        font-size: 1rem;
    }
    
    .contact-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .contact-card.accent {
        grid-column: 1 / -1;
    }
    
    .contact-card {
        padding: 2rem;
    }
    
    .contact-title {
        font-size: 1.2rem;
    }
    
    .contact-calendly h3 {
        font-size: 1.8rem;
    }
    
    .contact-calendly p {
        font-size: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: start;
    }
    
    .footer-brand {
        text-align: left;
    }
    
    .footer-social {
        justify-content: flex-start;
    }
    
    .footer-links {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .footer-section h4 {
        text-align: left;
    }
    
    .footer-section ul li {
        text-align: left;
    }
    
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: left;
    }
    
    .footer-legal {
        flex-direction: row;
        align-items: center;
        gap: 2rem;
    }
    
    .sticky-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0;
        text-align: left;
    }
}

/* Desktop styles (1024px and up) */
@media (min-width: 1024px) {
    /* Navigation Desktop Styles */
    .navbar {
        top: 20px;
        max-width: 1200px;
    }
    
    .nav-container {
        padding: 1.25rem 2.5rem;
        gap: 3rem;
    }
    
    .nav-left, .nav-right {
        gap: 3rem;
    }
    
    .nav-link {
        font-size: 1rem;
    }
    
    .nav-right .btn {
        font-size: 1rem;
        padding: 1rem 2rem;
    }
    
    .btn-nav-cta {
        padding: 1rem 2rem;
    }
    
    .logo-image {
        height: 36px;
    }
    
    .hero-visual {
        display: block;
        position: absolute;
        right: 5%;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 5vw, 4.5rem);
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-stats {
        gap: 4rem;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .pricing-badge {
        top: -0.75rem;
        left: 50%;
        transform: translateX(-50%);
        font-size: 0.9rem;
        padding: 0.75rem 1.5rem;
    }
    
    .hosting-note {
        font-size: 0.95rem;
        padding: 1rem;
    }
}

/* Large desktop styles (1200px and up) */
@media (min-width: 1200px) {
    .hero-title {
        font-size: 4.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.75rem;
    }
    
    .stat-number {
        font-size: 3.5rem;
    }
}

/* Animation Classes */
[data-aos] {
    opacity: 1;
    transition-property: opacity, transform;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(0);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

/* Fallback for when JavaScript is disabled */
.no-js [data-aos] {
    opacity: 1 !important;
    transform: none !important;
}

/* Fallback for testimonials visibility */
.testimonial-card[data-aos] {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

.testimonials-showcase[data-aos] {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
} 