/* Dored Frontend Styles - Following ui_analysis_quixtra.json Design System */

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

:root {
    /* Modern Tech Palette - Indigo/Purple with Cyan accents */
    --primary-start: #6366f1;
    --primary-end: #8b5cf6;
    --primary-accent: #6366f1;
    --primary-accent-dark: #4f46e5;
    --accent-cyan: #06b6d4;
    --glow-effect: rgba(99, 102, 241, 0.4);
    --glow-cyan: rgba(6, 182, 212, 0.3);

    /* Base colors */
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --bg-white: #ffffff;
    --bg-warm: #fafaf9;
    --bg-ink: #0f172a;
    --bg-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --peach-block: #f9e8d5;
    --grid-lines: #e2e8f0;
    --border-light: #e2e8f0;

    /* Typography */
    --font-heading: 'Sora', 'Manrope', 'Inter', system-ui, -apple-system, sans-serif;
    --font-body: 'Inter', 'Manrope', system-ui, -apple-system, sans-serif;

    /* Spacing */
    --container-max: 1200px;
    --section-padding: 96px;
    --section-padding-mobile: 60px;
}

/* Base Styles */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.8;
    font-weight: 400;
    color: var(--text-primary);
    background: var(--bg-warm);
    position: relative;
}

/* Light Small Boxes Background Pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(var(--grid-lines) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-lines) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
    z-index: -1;
    opacity: 0.5;
}

/* Accent Blocks */
.hero::after,
.founder-section::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.25) 0%, rgba(139, 92, 246, 0.15) 50%, transparent 70%);
    opacity: 0.9;
    pointer-events: none;
    z-index: -1;
    filter: blur(60px);
    animation: float 8s ease-in-out infinite;
}

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

.hero::after {
    top: 20%;
    right: 10%;
}

.founder-section::after {
    bottom: 15%;
    left: 5%;
}

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

a {
    text-decoration: none;
    color: inherit;
}

/* Buttons */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    min-height: 48px;
    text-align: center;
}

.btn-primary {
    background: var(--primary-accent);
    color: var(--bg-white);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-accent-dark), var(--primary-end));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--glow-effect), 0 0 20px rgba(99, 102, 241, 0.2);
}

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

.btn-secondary:hover {
    border-color: var(--primary-accent);
    color: var(--primary-accent);
    background: rgba(99, 102, 241, 0.08);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.15);
}

/* Navigation */
.nav-header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    height: 80px;
    display: flex;
    align-items: center;
    z-index: 1000;
    border-bottom: 1px solid var(--grid-lines);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.brand-logo {
    height: 64px;
    width: auto;
    aspect-ratio: auto;
    filter: drop-shadow(0 3px 10px rgba(99, 102, 241, 0.25));
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.brand-logo-link:hover .brand-logo {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 4px 16px rgba(99, 102, 241, 0.4));
}

.brand-text {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-start), var(--primary-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.brand-logo-link:hover .brand-text {
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    color: var(--text-secondary);
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

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

.nav-links a.active {
    color: var(--primary-accent);
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 2px;
    background: var(--primary-accent);
    transition: width 0.2s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}
.nav-cta {
    margin-left: 20px;
}

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

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    padding: var(--section-padding) 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-background-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.6;
    pointer-events: none;
}

.hero-container {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-headline {
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--text-primary);
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.hero-subheadline {
    font-size: 20px;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 70%;
    margin: 0 auto 50px;
    font-weight: 400;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
    animation: none;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(99, 102, 241, 0.08);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 999px;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    will-change: auto;
}

.badge-item:hover {
    background: rgba(99, 102, 241, 0.12);
    border-color: var(--primary-accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.2);
}

.badge-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    stroke-width: 2;
    color: var(--primary-accent);
    flex-shrink: 0;
}

.hero-reassurance {
    font-size: 14px;
    color: var(--text-secondary);
    margin-top: 12px;
}

/* Hero CTAs */
.hero-ctas {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Founder Section */
.founder-section {
    padding: var(--section-padding) 40px;
    background: linear-gradient(to bottom, transparent, rgba(249, 232, 213, 0.6) 50%, transparent);
    position: relative;
}

.founder-container {
    max-width: var(--container-max);
    margin: 0 auto;
}

.founder-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
}

.founder-visual {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.founder-availability {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: rgba(99, 102, 241, 0.08);
    border: 1px solid rgba(99, 102, 241, 0.18);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.12);
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary-accent);
    box-shadow: 0 0 0 8px rgba(99, 102, 241, 0.15);
}

.founder-image-card {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 14px;
    border: 1px solid var(--border-light);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.founder-image-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(99, 102, 241, 0.08), transparent 45%);
    z-index: 0;
}

.founder-image-wrapper {
    position: relative;
    padding: 12px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.18), rgba(6, 182, 212, 0.12));
    box-shadow: 0 18px 44px rgba(99, 102, 241, 0.18);
    z-index: 1;
}

.founder-image {
    width: 100%;
    max-width: 400px;
    border-radius: 14px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.16);
    border: 4px solid #fff;
    position: relative;
    z-index: 1;
}

.founder-meta {
    position: relative;
    z-index: 1;
    margin-top: 14px;
    padding: 14px 12px 6px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(6px);
    border: 1px solid var(--border-light);
}

.founder-name {
    font-weight: 700;
    font-size: 20px;
    color: var(--text-primary);
}

.founder-role,
.founder-location {
    font-size: 14px;
    color: var(--text-secondary);
}

.section-eyebrow {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(99, 102, 241, 0.08);
    color: var(--primary-accent);
    font-weight: 700;
    letter-spacing: 0.02em;
    margin-bottom: 16px;
}

.founder-text h2 {
    font-size: 38px;
    margin-bottom: 18px;
}

.founder-intro {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.founder-text p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 14px;
}

.founder-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 18px 0 10px;
}

.founder-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: rgba(99, 102, 241, 0.12);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    box-shadow: 0 10px 24px rgba(99, 102, 241, 0.16);
}

.founder-chip::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-accent);
}

.founder-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-start), var(--primary-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 14px;
    color: var(--text-secondary);
    margin-top: 4px;
}

/* Portfolio Band */
.portfolio-band {
    padding: var(--section-padding) 40px;
}

.portfolio-container {
    max-width: var(--container-max);
    margin: 0 auto;
}

.section-heading {
    font-size: clamp(36px, 5vw, 56px);
    text-align: center;
    margin-bottom: 60px;
    background: linear-gradient(135deg, var(--primary-start), var(--primary-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.portfolio-tile {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    min-height: 320px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
    cursor: pointer;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.portfolio-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.portfolio-thumb.placeholder-1,
.portfolio-thumb.placeholder-2,
.portfolio-thumb.placeholder-3 {
    background-size: cover;
    background-position: center;
}

.portfolio-meta {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 18px 20px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(2, 6, 23, 0.78) 80%);
    color: #fff;
}

.portfolio-title {
    font-size: 18px;
    font-weight: 700;
}

.portfolio-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin: 6px 0 10px;
}

.portfolio-tag {
    background: rgba(255, 255, 255, 0.14);
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
}

.portfolio-outcome {
    font-size: 14px;
    opacity: 0.9;
}

.proof-strip {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin: 24px 0 8px;
    flex-wrap: wrap;
    color: var(--text-secondary);
    font-size: 14px;
}
.proof-dot {
    width: 6px;
    height: 6px;
    background: var(--primary-accent);
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
}

/* Services Section */
.services-section {
    padding: var(--section-padding) 40px;
    background: var(--bg-white);
    color: var(--text-primary);
}

.services-container {
    max-width: var(--container-max);
    margin: 0 auto;
}

.services-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.services-header h2 {
    font-size: clamp(36px, 5vw, 56px);
    background: linear-gradient(135deg, var(--primary-start), var(--primary-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.service-card {
    background: var(--bg-white);
    border-radius: 16px;
    overflow: visible;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
    isolation: isolate;
    border: 1px solid var(--border-light);
}

.service-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: transparent;
    border-radius: 18px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
}

.service-card:hover::before {
    opacity: 0;
}

.service-card.featured {
    border: 2px solid var(--primary-accent);
    box-shadow: 0 12px 36px rgba(15, 23, 42, 0.14);
    background: linear-gradient(180deg, #ffffff 0%, #f7f8fb 100%);
}

.service-card.featured::before {
    opacity: 0;
}

.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-accent);
    color: var(--bg-white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 10;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.16);
}

.service-image-placeholder {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(6, 182, 212, 0.05) 100%);
    padding: 40px 32px;
    text-align: center;
    color: var(--text-primary);
}

.service-image-placeholder h3 {
    font-size: 28px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.service-price {
    font-size: 32px;
    font-weight: 700;
}

.service-content {
    padding: 30px;
    position: relative;
}

.service-content h4 {
    font-size: 22px;
    margin-bottom: 20px;
}

.service-audience {
    font-size: 14px;
    color: var(--text-secondary);
    margin: -6px 0 14px;
}

.service-features {
    list-style: none;
}

.service-features li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    color: var(--text-secondary);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-accent);
    font-weight: 700;
}

.add-ons-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 18px 0 10px;
    position: relative;
    z-index: 2;
}

.add-on-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.25);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    position: relative;
    overflow: hidden;
    z-index: 2;
    box-shadow: 0 8px 18px rgba(99, 102, 241, 0.14);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.add-on-chip::after {
    content: '';
    position: absolute;
    top: 0;
    left: -20%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.12), transparent);
    transform: skewX(-20deg);
}

.add-on-chip:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 26px rgba(99, 102, 241, 0.2);
}

/* Add-Ons */
.add-ons-section {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.add-ons-section h3 {
    font-size: 28px;
    margin-bottom: 30px;
}

.add-ons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.add-on {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: rgba(99, 102, 241, 0.06);
    border-radius: 8px;
    border: 1px solid rgba(99, 102, 241, 0.12);
    transition: all 0.3s ease;
}

.add-on:hover {
    background: rgba(99, 102, 241, 0.1);
    border-color: var(--primary-accent);
    transform: translateX(5px);
}

.add-on-name {
    font-weight: 500;
    color: var(--text-primary);
}

.add-on-price {
    font-weight: 700;
    color: var(--primary-accent);
}

/* Process Section */
.process-section {
    padding: var(--section-padding) 40px;
}

.process-container {
    max-width: var(--container-max);
    margin: 0 auto;
}

.process-container h2 {
    font-size: clamp(36px, 5vw, 56px);
    text-align: center;
    margin-bottom: 60px;
    background: linear-gradient(135deg, var(--primary-start), var(--primary-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.process-timeline-svg {
    width: 100%;
    height: 100px;
    margin-bottom: 40px;
    position: relative;
    z-index: 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.step {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-start), var(--primary-end));
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
    box-shadow: 0 4px 15px var(--glow-effect);
    transition: all 0.3s ease;
}

.step-number:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px var(--glow-effect);
}

.step h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.step p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Contact Section */
.contact-section {
    padding: var(--section-padding) 40px;
    background: rgba(249, 232, 213, 0.4);
}

.contact-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.contact-container h2 {
    font-size: clamp(36px, 5vw, 56px);
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary-start), var(--primary-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.contact-intro {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 50px;
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.contact-method {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px 32px;
    background: var(--bg-white);
    border-radius: 12px;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.contact-method:hover {
    transform: translateY(-4px);
}

.method-icon {
    font-size: 32px;
}

.method-text {
    font-weight: 600;
    color: var(--text-primary);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--bg-white);
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact-form {
    text-align: left;
}

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

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--grid-lines);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-accent);
    box-shadow: 0 0 0 3px var(--glow-effect);
}

.form-group textarea {
    resize: vertical;
}

.contact-form button {
    width: 100%;
    padding: 16px;
    font-size: 18px;
}

/* Footer */
.footer {
    background: var(--bg-ink);
    color: var(--bg-white);
    padding: 60px 40px 30px;
}

.footer-container {
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.footer-brand .brand-name {
    color: var(--bg-white);
    font-size: 24px;
    margin-bottom: 12px;
    display: block;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

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

.footer-legal {
    text-align: right;
}

.footer-legal p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.toast {
    position: fixed;
    bottom: 24px;
    right: 24px;
    padding: 14px 18px;
    background: linear-gradient(135deg, var(--primary-start), var(--primary-end));
    color: var(--bg-white);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15), 0 0 20px var(--glow-effect);
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 1500;
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .founder-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .founder-meta,
    .founder-highlights {
        justify-content: center;
        text-align: center;
    }

    .founder-availability {
        justify-content: center;
    }

    .founder-image {
        margin: 0 auto;
    }

    .founder-stats {
        justify-content: center;
    }

    .stat {
        align-items: center;
    }

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

    .process-steps {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        padding: 30px;
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s ease;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav-cta {
        margin-left: 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-subheadline {
        max-width: 100%;
    }

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

    .services-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

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

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .contact-form-wrapper {
        padding: 30px 20px;
    }
}
