/* ========================================
   Zentrix Media LLC - Main Stylesheet
   Light Indigo / Lavender Gradient Theme
   ======================================== */

/* CSS Variables */
:root {
    --indigo-deep: #3730a3;
    --indigo: #4f46e5;
    --indigo-light: #818cf8;
    --lavender: #a5b4fc;
    --lavender-light: #c7d2fe;
    --lavender-pale: #e0e7ff;
    --white: #ffffff;
    --off-white: #f8fafc;
    --cream: #f1f5f9;
    --dark: #1e1b4b;
    --dark-soft: #312e81;
    --gray-100: #f1f5f9;
    --gray-300: #cbd5e1;
    --gray-500: #64748b;
    --gray-700: #334155;
    --gray-900: #0f172a;
    --font-primary: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-display: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    --shadow-glow: 0 0 30px rgba(79, 70, 229, 0.2);
    --radius: 16px;
    --radius-sm: 10px;
    --radius-lg: 24px;
    --radius-full: 9999px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--dark);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

ul, ol {
    list-style: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.25rem; }

p {
    color: var(--gray-700);
    margin-bottom: 1rem;
}

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

.text-indigo { color: var(--indigo); }
.text-lavender { color: var(--lavender); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--dark);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(30, 27, 75, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 27, 75, 0.4);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--dark);
    border: 2px solid rgba(30, 27, 75, 0.15);
}

.btn-outline:hover {
    border-color: var(--indigo);
    color: var(--indigo);
    background: rgba(79, 70, 229, 0.05);
}

.btn-white {
    background: var(--white);
    color: var(--dark);
}

.btn-white:hover {
    background: var(--off-white);
    color: var(--dark);
}

.btn-dark {
    background: var(--dark);
    color: var(--white);
}

.btn-dark:hover {
    background: var(--dark-soft);
    color: var(--white);
}

.btn-sm {
    padding: 0.625rem 1.5rem;
    font-size: 0.875rem;
}

/* Container */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Section spacing */
section {
    padding: 5rem 0;
}

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

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--gray-500);
}

/* ===== HEADER & NAVIGATION ===== */
.header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.25rem 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 0.25rem;
    line-height: 1;
}

.logo span {
    font-weight: 400;
    opacity: 0.9;
}

.site-logo-img {
    width: auto;
    height: 42px;
    max-width: 190px;
    object-fit: contain;
}

.footer-logo-img {
    height: 46px;
    max-width: 210px;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    background: var(--white);
    padding: 0.5rem;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.nav a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-700);
    padding: 0.625rem 1.25rem;
    border-radius: var(--radius-full);
    transition: var(--transition);
}

.nav a:hover,
.nav a.active {
    color: var(--indigo);
    background: var(--lavender-pale);
}

.nav .btn {
    margin-left: 0.5rem;
    padding: 0.625rem 1.5rem;
    font-size: 0.875rem;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.header-actions a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--white);
}

.header-actions .btn-white {
    padding: 0.625rem 1.5rem;
    font-size: 0.875rem;
    color: var(--dark);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(180deg, #4f46e5 0%, #6366f1 25%, #818cf8 50%, #a5b4fc 75%, #c7d2fe 100%);
    overflow: hidden;
    padding-top: 100px;
    padding-bottom: 0;
}

/* Grain texture overlay */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.08'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding-bottom: 4rem;
}

.hero-headline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 0.5rem;
}

.hero-headline h1 {
    font-size: clamp(4rem, 12vw, 10rem);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.03em;
    line-height: 1;
    text-transform: uppercase;
}

.hero-arrow-btn {
    width: 64px;
    height: 64px;
    min-width: 64px;
    background: var(--dark);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.hero-arrow-btn:hover {
    transform: scale(1.1) rotate(45deg);
    background: var(--gray-900);
}

.hero-subline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-subline h2 {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 10vw, 8rem);
    font-weight: 300;
    font-style: italic;
    color: rgba(255,255,255,0.85);
    letter-spacing: 0.05em;
    line-height: 1;
    text-transform: uppercase;
}

/* Rotating Seal */
.hero-seal {
    width: 140px;
    height: 140px;
    min-width: 140px;
    position: relative;
    animation: rotateSeal 20s linear infinite;
}

@keyframes rotateSeal {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.seal-svg {
    width: 100%;
    height: 100%;
}

.seal-svg text {
    fill: var(--white);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.seal-star {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 32px;
    height: 32px;
    fill: var(--white);
}

/* Hero Email Form */
.hero-form {
    display: flex;
    justify-content: center;
    margin-bottom: 4rem;
}

.hero-form-inner {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.25);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: var(--radius-full);
    padding: 0.375rem;
    max-width: 500px;
    width: 100%;
}

.hero-form-inner input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 0.875rem 1.25rem;
    color: var(--white);
    font-size: 1rem;
    font-family: inherit;
    outline: none;
    min-width: 0;
}

.hero-form-inner input::placeholder {
    color: rgba(255,255,255,0.7);
}

.hero-form-inner button {
    background: rgba(30, 27, 75, 0.8);
    color: var(--white);
    border: none;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    white-space: nowrap;
    transition: var(--transition);
}

.hero-form-inner button:hover {
    background: var(--dark);
}

@media (max-width: 480px) {
    .hero-form-inner {
        flex-direction: column;
        border-radius: var(--radius);
        gap: 0.5rem;
        padding: 0.5rem;
    }
    .hero-form-inner input {
        width: 100%;
        text-align: center;
        padding: 0.75rem;
    }
    .hero-form-inner button {
        width: 100%;
        padding: 0.75rem;
    }
}

/* Wavy Divider */
.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    line-height: 0;
}

.wave-divider svg {
    display: block;
    width: 100%;
    height: auto;
}

/* Hero Bottom Section */
.hero-bottom {
    background: var(--white);
    padding: 4rem 0;
    position: relative;
    z-index: 2;
}

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

.hero-bottom-text {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--gray-700);
}

.hero-bottom-text strong {
    color: var(--dark);
    font-weight: 700;
}

.hero-bottom-icon {
    width: 48px;
    height: 48px;
    background: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--white);
    font-size: 1.25rem;
}

/* Cards */
.card {
    background: var(--white);
    border: 1px solid rgba(30, 27, 75, 0.08);
    border-radius: var(--radius);
    padding: 2rem;
    transition: var(--transition);
    height: 100%;
}

.card:hover {
    border-color: rgba(79, 70, 229, 0.2);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.card-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--lavender-pale), #dbe4ff);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    color: var(--indigo);
}

.card h3 {
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.card p {
    color: var(--gray-500);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Grid layouts */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

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

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

/* Services Section */
.services-section {
    background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
}

.service-card .card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    color: var(--indigo);
    font-size: 0.9rem;
    font-weight: 600;
}

.service-card .card-link:hover {
    color: var(--indigo-deep);
    gap: 0.75rem;
}

/* About Section */
.about-section .grid-2 {
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: var(--radius-lg);
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--indigo);
    border-radius: var(--radius-lg);
    opacity: 0.2;
    z-index: -1;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.875rem;
    color: var(--gray-700);
}

.check-list li::before {
    content: '';
    width: 20px;
    height: 20px;
    min-width: 20px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%234f46e5'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M5 13l4 4L19 7'%3E%3C/path%3E%3C/svg%3E") center/contain no-repeat;
    margin-top: 2px;
}

/* Process Section */
.process-section {
    background: var(--cream);
}

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

.process-item {
    text-align: center;
    position: relative;
}

.process-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 2rem;
    right: -1rem;
    width: 2rem;
    height: 2px;
    background: linear-gradient(90deg, var(--indigo), transparent);
}

.process-number {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--indigo), var(--indigo-deep));
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(79, 70, 229, 0.3);
    font-family: var(--font-display);
}

.process-item h3 {
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

/* Pricing */
.pricing-section {
    background: var(--white);
}

.pricing-card {
    background: var(--white);
    border: 1px solid rgba(30, 27, 75, 0.08);
    border-radius: var(--radius);
    padding: 2.5rem;
    position: relative;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    border-color: rgba(79, 70, 229, 0.2);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.popular {
    border-color: var(--indigo);
    box-shadow: var(--shadow-glow);
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 2rem;
    background: linear-gradient(135deg, var(--indigo), var(--indigo-deep));
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.375rem 1rem;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.pricing-card .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
    font-family: var(--font-display);
    letter-spacing: -0.02em;
}

.pricing-card .price .period {
    font-size: 1rem;
    font-weight: 500;
    color: var(--gray-500);
}

.pricing-card .description {
    color: var(--gray-500);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(30, 27, 75, 0.08);
}

.pricing-features {
    margin-bottom: 2rem;
    flex: 1;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--gray-700);
    font-size: 0.9rem;
}

.pricing-features li::before {
    content: '';
    width: 18px;
    height: 18px;
    min-width: 18px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%234f46e5'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M5 13l4 4L19 7'%3E%3C/path%3E%3C/svg%3E") center/contain no-repeat;
}

/* Portfolio */
.portfolio-section {
    background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
}

.portfolio-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/3;
}

.portfolio-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(30, 27, 75, 0.95) 0%, rgba(30, 27, 75, 0.5) 40%, rgba(30, 27, 75, 0.1) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    transition: var(--transition);
}

.portfolio-overlay span {
    color: var(--lavender);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.portfolio-overlay h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.portfolio-overlay p {
    font-size: 0.9rem;
    color: var(--gray-300);
    margin: 0;
}

.portfolio-overlay .btn {
    margin-top: 1rem;
    width: fit-content;
}

/* Testimonials */
.testimonials-section {
    background: var(--cream);
}

.testimonial-card {
    background: var(--white);
    border: 1px solid rgba(30, 27, 75, 0.08);
    border-radius: var(--radius);
    padding: 2rem;
    height: 100%;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    border-color: rgba(79, 70, 229, 0.15);
}

.stars {
    color: #fbbf24;
    margin-bottom: 1rem;
    font-size: 1rem;
    flex-shrink: 0;
}

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

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
    margin-top: auto;
}

.testimonial-author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--indigo);
}

.testimonial-author h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--dark);
}

.testimonial-author p {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin: 0;
}

/* Blog */
.blog-section {
    background: var(--white);
}

.blog-card {
    background: var(--white);
    border: 1px solid rgba(30, 27, 75, 0.08);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    border-color: rgba(79, 70, 229, 0.2);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.blog-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.blog-card-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.75rem;
    font-size: 0.8rem;
    color: var(--gray-500);
}

.blog-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.blog-card h3 a:hover {
    color: var(--indigo);
}

.blog-card p {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-bottom: 1rem;
    flex: 1;
}

.read-more {
    color: var(--indigo);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.read-more:hover {
    color: var(--indigo-deep);
    gap: 0.75rem;
}

/* FAQ */
.faq-section {
    background: var(--cream);
}

.faq-item {
    background: var(--white);
    border: 1px solid rgba(30, 27, 75, 0.08);
    border-radius: var(--radius);
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    color: var(--dark);
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    font-family: inherit;
}

.faq-question:hover {
    color: var(--indigo);
}

.faq-icon {
    font-size: 1.25rem;
    color: var(--indigo);
    transition: var(--transition);
    min-width: 24px;
    text-align: center;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-inner {
    padding: 0 1.5rem 1.5rem;
    color: var(--gray-500);
    font-size: 0.95rem;
    line-height: 1.7;
}

.faq-answer-inner p {
    margin-bottom: 0.75rem;
}

.faq-answer-inner p:last-child {
    margin-bottom: 0;
}

/* CTA Section */
.cta-section {
    position: relative;
    background: linear-gradient(135deg, var(--indigo-deep) 0%, var(--indigo) 100%);
    text-align: center;
    overflow: hidden;
    color: var(--white);
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    pointer-events: none;
}

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

.cta-content h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

/* Footer */
.footer {
    background: var(--dark);
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 4rem;
    color: var(--gray-300);
}

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

.footer-brand p {
    color: var(--gray-300);
    font-size: 0.95rem;
    margin: 1rem 0;
    max-width: 300px;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-sm);
    color: var(--gray-300);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--indigo);
    border-color: var(--indigo);
    color: var(--white);
    transform: translateY(-2px);
}

.footer-links h4 {
    font-size: 1rem;
    margin-bottom: 1.25rem;
    color: var(--white);
}

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

.footer-links a {
    color: var(--gray-300);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--lavender);
    padding-left: 4px;
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--gray-300);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: var(--gray-500);
    font-size: 0.875rem;
    margin: 0;
}

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

.footer-legal a {
    color: var(--gray-500);
    font-size: 0.875rem;
}

.footer-legal a:hover {
    color: var(--lavender);
}

/* Contact Page */
.contact-section {
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info-card {
    background: var(--cream);
    border: 1px solid rgba(30, 27, 75, 0.08);
    border-radius: var(--radius);
    padding: 2rem;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.contact-info-card:hover {
    border-color: rgba(79, 70, 229, 0.2);
}

.contact-info-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-info-card h3 i {
    color: var(--indigo);
}

.contact-info-card p {
    color: var(--gray-500);
    margin: 0;
    font-size: 0.95rem;
}

.contact-form {
    background: var(--cream);
    border: 1px solid rgba(30, 27, 75, 0.08);
    border-radius: var(--radius);
    padding: 2.5rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--dark);
}

.form-control {
    width: 100%;
    padding: 0.875rem 1rem;
    background: var(--white);
    border: 1px solid rgba(30, 27, 75, 0.12);
    border-radius: var(--radius-sm);
    color: var(--dark);
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--indigo);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.form-control::placeholder {
    color: var(--gray-300);
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2364748b'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1rem;
    padding-right: 2.5rem;
}

textarea.form-control {
    min-height: 140px;
    resize: vertical;
}

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

/* Alerts */
.alert {
    padding: 1rem 1.25rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.alert-success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    color: #15803d;
}

.alert-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #b91c1c;
}

/* Page Header */
.page-header {
    padding: 8rem 0 4rem;
    text-align: center;
    background: linear-gradient(180deg, var(--indigo-deep) 0%, var(--indigo) 100%);
    position: relative;
    overflow: hidden;
    color: var(--white);
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.page-header h1 {
    color: var(--white);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.page-header p {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    color: rgba(255,255,255,0.8);
}

/* Legal Pages */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: var(--dark);
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p {
    margin-bottom: 1rem;
    color: var(--gray-500);
}

.legal-content ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    list-style: disc;
}

.legal-content ul li {
    color: var(--gray-500);
    margin-bottom: 0.5rem;
}

/* Service Detail */
.service-detail .features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.service-detail .features-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--dark);
    font-size: 0.95rem;
}

.service-detail .features-list li::before {
    content: '';
    width: 20px;
    height: 20px;
    min-width: 20px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%234f46e5'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M5 13l4 4L19 7'%3E%3C/path%3E%3C/svg%3E") center/contain no-repeat;
}

.process-steps {
    margin-top: 2rem;
}

.process-step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(30, 27, 75, 0.08);
}

.process-step:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.step-number {
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--indigo), var(--indigo-deep));
    color: var(--white);
    font-weight: 700;
    border-radius: 50%;
    font-family: var(--font-display);
}

.step-content h4 {
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--gray-500);
    margin: 0;
}

/* Portfolio Detail */
.case-study-meta {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--cream);
    border-radius: var(--radius);
    flex-wrap: wrap;
}

.case-study-meta div strong {
    display: block;
    color: var(--gray-500);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
}

.case-study-meta div span {
    color: var(--dark);
    font-weight: 600;
}

.case-study-results {
    background: linear-gradient(135deg, var(--lavender-pale), var(--cream));
    border: 1px solid rgba(79, 70, 229, 0.15);
    border-radius: var(--radius);
    padding: 2rem;
    margin: 2rem 0;
}

.case-study-results h3 {
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.case-study-results p {
    color: var(--gray-500);
}

/* Blog Detail */
.blog-detail-content {
    max-width: 800px;
    margin: 0 auto;
}

.blog-detail-content h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.75rem;
    color: var(--dark);
}

.blog-detail-content p {
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--gray-500);
}

.blog-detail-content ul {
    margin-bottom: 1.25rem;
    padding-left: 1.5rem;
    list-style: disc;
}

.blog-detail-content ul li {
    color: var(--gray-500);
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}

.blog-detail-content strong {
    color: var(--dark);
}

/* Booking Page */
.booking-section {
    background: var(--white);
}

/* Pricing Carousel */
.pricing-carousel-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-carousel {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 1rem 0.5rem 2rem;
    margin: 0 -0.5rem;
    scrollbar-width: none;
}

.pricing-carousel::-webkit-scrollbar {
    display: none;
}

.pricing-carousel .pricing-card {
    min-width: 340px;
    max-width: 340px;
    flex: 0 0 340px;
    scroll-snap-align: start;
}

.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.carousel-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(30, 27, 75, 0.15);
    background: var(--white);
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.25rem;
}

.carousel-btn:hover {
    background: var(--indigo);
    color: var(--white);
    border-color: var(--indigo);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(79, 70, 229, 0.2);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.carousel-dot.active {
    background: var(--indigo);
    width: 24px;
    border-radius: 4px;
}

/* Responsive */
@media (max-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-item:not(:last-child)::after {
        display: none;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .hero-headline h1 {
        font-size: clamp(3rem, 10vw, 6rem);
    }
    
    .hero-subline h2 {
        font-size: clamp(2rem, 8vw, 5rem);
    }
}

@media (max-width: 768px) {
    .header-inner {
        padding: 0 1rem;
    }
    
    .nav {
        display: none;
        position: fixed;
        top: 80px;
        left: 1rem;
        right: 1rem;
        background: var(--white);
        flex-direction: column;
        padding: 1rem;
        border-radius: var(--radius);
        box-shadow: var(--shadow-lg);
        gap: 0.25rem;
    }
    
    .nav.active {
        display: flex;
    }
    
    .nav .btn {
        margin-left: 0;
        width: 100%;
        margin-top: 0.5rem;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero-headline {
        gap: 0.75rem;
    }
    
    .hero-headline h1 {
        font-size: clamp(2.5rem, 12vw, 4rem);
    }
    
    .hero-subline {
        gap: 1rem;
    }
    
    .hero-subline h2 {
        font-size: clamp(2rem, 10vw, 3.5rem);
    }
    
    .hero-seal {
        width: 100px;
        height: 100px;
    }
    
    .hero-bottom-grid {
        grid-template-columns: 1fr;
    }
    
    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.75rem 1.5rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .service-detail .features-list {
        grid-template-columns: 1fr;
    }
    
    .case-study-meta {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: fadeInUp 0.6s ease forwards;
}

/* Utilities */
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
