/* ===========================
   RESET & BASE
=========================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary:    #0A0A0A;
    --bg-secondary:  #111111;
    --bg-card:       #161616;
    --accent:        #9B45E0;
    --accent-dark:   #7B2FBE;
    --text-primary:  #FFFFFF;
    --text-secondary:#888888;
    --text-muted:    #444444;
    --border:        #1C1C1C;
    --border-light:  #2A2A2A;
    --font:          'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display:  'Clash Display', 'Inter', sans-serif;
    --ease:          cubic-bezier(0.16, 1, 0.3, 1);
    --radius:        12px;
    --radius-lg:     20px;
    --radius-xl:     28px;
}

html { scroll-behavior: smooth; }

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

h1, h2 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.01em;
}

h3 {
    font-family: var(--font);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

p { color: var(--text-secondary); line-height: 1.75; }

a { color: inherit; }

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

.accent { color: var(--accent); }
.accent-text { color: var(--accent); }

/* ===========================
   LAYOUT
=========================== */
.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 28px;
}

section { padding: 110px 0; }

.section-dark    { background: var(--bg-primary); }
.section-light   { background: var(--bg-secondary); }

.section-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 18px;
}

.section-title {
    font-size: clamp(30px, 4.5vw, 52px);
    color: var(--text-primary);
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 17px;
    color: var(--text-secondary);
    margin-bottom: 64px;
    max-width: 500px;
}

/* ===========================
   BUTTONS
=========================== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--accent);
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-family: var(--font);
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
}

.btn-primary:hover {
    background: #B570F5;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(155, 69, 224, 0.4);
}

.btn-primary:active { transform: translateY(0); }

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 15px;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    border: 1px solid var(--border-light);
    transition: border-color 0.2s ease, color 0.2s ease;
}

.btn-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.btn-large {
    padding: 18px 44px;
    font-size: 16px;
    border-radius: 10px;
}

.btn-full {
    width: 100%;
}

.btn-service {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    padding: 12px 0;
    border-bottom: 1px solid rgba(155, 69, 224, 0.3);
    transition: gap 0.2s ease, border-color 0.2s ease;
}

.btn-service:hover {
    gap: 14px;
    border-color: var(--accent);
}

/* ===========================
   NAVIGATION
=========================== */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: rgba(10, 10, 10, 0.75);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border);
    transition: background 0.3s ease;
}

#navbar.scrolled {
    background: rgba(10, 10, 10, 0.97);
}

.nav-container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 28px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo { text-decoration: none; display: flex; align-items: center; overflow: hidden; }

.logo-img {
    height: 100px;
    width: auto;
    display: block;
    margin: -16px 0;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.03em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 6px;
    transition: color 0.2s ease, background 0.2s ease;
}

.nav-links a:hover {
    color: var(--text-primary);
    background: var(--bg-card);
}

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

.nav-cta {
    background: var(--accent) !important;
    color: #fff !important;
    font-weight: 700 !important;
    margin-left: 8px;
}

.nav-cta:hover {
    background: #B570F5 !important;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.25s ease;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
    display: none;
    padding: 12px 28px 20px;
    border-top: 1px solid var(--border);
    background: rgba(10, 10, 10, 0.98);
}

.mobile-menu.open { display: block; }

.mobile-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
}

.mobile-menu a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    transition: color 0.2s ease;
}

.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--text-primary); }

.mobile-cta {
    color: var(--accent) !important;
    font-weight: 700 !important;
    border-bottom: none !important;
    margin-top: 8px;
}

/* ===========================
   HERO
=========================== */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 130px 28px 100px;
    max-width: 1160px;
    margin: 0 auto;
    gap: 72px;
}

.hero-container {
    flex: 1;
    max-width: 580px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(155, 69, 224, 0.08);
    border: 1px solid rgba(155, 69, 224, 0.2);
    border-radius: 100px;
    padding: 7px 16px;
    font-size: 13px;
    font-weight: 500;
    color: var(--accent);
    margin-bottom: 28px;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
    flex-shrink: 0;
}

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

.hero-title {
    font-size: clamp(42px, 6vw, 70px);
    margin-bottom: 24px;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 36px;
    line-height: 1.65;
}

.hero-ctas {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 52px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 28px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.stat-divider {
    width: 1px;
    height: 32px;
    background: var(--border);
    flex-shrink: 0;
}

/* Hero visual */
.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    max-width: 380px;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
}

/* Op desktop: fc-row is onzichtbaar (cards zijn absoluut gepositioneerd) */
.fc-row {
    display: contents;
}

.hero-image-placeholder {
    width: 100%;
    aspect-ratio: 3/4;
    max-height: 560px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-photo {
    width: 100%;
    aspect-ratio: 1/2;
    max-height: 700px;
    object-fit: cover;
    object-position: center 5%;
    border-radius: var(--radius-xl);
    display: block;
}

.placeholder-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 13px;
}

.placeholder-icon {
    font-size: 32px;
    opacity: 0.5;
}

/* Floating cards */
.floating-card {
    position: absolute;
    background: rgba(14, 14, 14, 0.96);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: var(--radius);
    padding: 16px 20px;
    min-width: 210px;
    animation: float 5s ease-in-out infinite;
    box-shadow: 0 20px 60px rgba(0,0,0,0.7);
}

/* VOOR — subtiele rode rand */
.fc-before {
    bottom: 155px;
    left: -16px;
    border: 1px solid rgba(255, 80, 80, 0.25);
}

/* NA — paarse merkkleur rand */
.fc-after {
    top: auto;
    bottom: 36px;
    right: -16px;
    border: 1px solid rgba(155, 69, 224, 0.4);
    animation-delay: 2.5s;
}

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

/* Card internals */
.fc-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #FF6B6B;
    margin-bottom: 10px;
}

.fc-label-after {
    color: var(--accent);
}

.fc-main {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 7px;
}

.fc-emoji {
    font-size: 20px;
    flex-shrink: 0;
}

.fc-stat {
    font-size: 15px;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    line-height: 1.2;
    font-family: var(--font-display);
}

.fc-detail {
    font-size: 11px;
    color: var(--text-muted);
    line-height: 1.5;
    padding-left: 30px;
}

.desktop-only { display: inline; }

/* ===========================
   PROBLEM SECTION
=========================== */
.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 16px;
}

.problem-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: border-color 0.25s ease, transform 0.25s ease;
}

.problem-card:hover {
    border-color: var(--border-light);
    transform: translateY(-4px);
}

.problem-icon {
    font-size: 32px;
    margin-bottom: 18px;
    display: block;
}

.problem-card h3 {
    font-size: 17px;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.problem-card p { font-size: 14px; }

/* ===========================
   ABOUT
=========================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 88px;
    align-items: center;
}

.about-image-wrapper { position: relative; }

.about-image-placeholder {
    width: 100%;
    aspect-ratio: 4/5;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-photo {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    object-position: center 15%;
    border-radius: var(--radius-xl);
    display: block;
}

.about-accent-box {
    position: absolute;
    bottom: -28px;
    right: -28px;
    background: var(--accent);
    color: #fff;
    padding: 24px 28px;
    border-radius: var(--radius-lg);
    font-size: 16px;
    font-weight: 800;
    line-height: 1.35;
    max-width: 176px;
    box-shadow: 0 12px 40px rgba(155, 69, 224, 0.3);
}

.about-content p {
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 16px;
}

.about-content strong { color: var(--text-primary); }

.about-values {
    margin: 28px 0 36px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--text-secondary);
}

.value-check {
    width: 22px;
    height: 22px;
    background: rgba(155, 69, 224, 0.1);
    border: 1px solid rgba(155, 69, 224, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: var(--accent);
    flex-shrink: 0;
    font-weight: 700;
}

/* ===========================
   SERVICES
=========================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 16px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 44px 40px;
    position: relative;
    transition: border-color 0.25s ease, transform 0.25s ease;
}

.service-card:hover {
    border-color: var(--border-light);
    transform: translateY(-4px);
}

.service-card-accent {
    border-color: rgba(155, 69, 224, 0.2);
    background: linear-gradient(160deg, var(--bg-card) 60%, rgba(155, 69, 224, 0.04) 100%);
}

.service-tag {
    position: absolute;
    top: 22px;
    right: 22px;
    background: var(--accent);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 100px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.service-icon {
    font-size: 40px;
    display: block;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.service-card > p {
    font-size: 15px;
    margin-bottom: 28px;
    line-height: 1.65;
}

.service-features {
    list-style: none;
    margin-bottom: 36px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-features li {
    font-size: 14px;
    color: var(--text-secondary);
    padding-left: 20px;
    position: relative;
    line-height: 1.5;
}

.service-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-size: 12px;
    top: 1px;
}


/* ===========================
   HOW IT WORKS
=========================== */
.steps-grid {
    display: flex;
    align-items: flex-start;
    gap: 0;
    margin-top: 64px;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 180px;
    padding: 0 24px;
}

.step:first-child { padding-left: 0; }

.step-number {
    font-size: 52px;
    font-weight: 900;
    color: var(--accent);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 18px;
    letter-spacing: -0.04em;
}

.step h3 {
    font-size: 17px;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.step p { font-size: 14px; line-height: 1.65; }

.step-connector {
    font-size: 22px;
    color: var(--accent);
    opacity: 0.3;
    align-self: center;
    padding-top: 8px;
    flex-shrink: 0;
}

/* ===========================
   TESTIMONIALS
=========================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 16px;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: border-color 0.25s ease, transform 0.25s ease;
}

.testimonial-card:hover {
    border-color: var(--border-light);
    transform: translateY(-4px);
}

.testimonial-stars {
    color: #FFB800;
    font-size: 15px;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.75;
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
}

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

.author-label {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 2px;
}

.testimonials-note {
    margin-top: 28px;
    font-size: 12px;
    color: var(--text-muted);
    font-style: italic;
    text-align: center;
}

/* ===========================
   CTA BANNER
=========================== */
.section-cta {
    background: linear-gradient(135deg, #140A20 0%, #0A0A0A 40%, #140A20 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    text-align: center;
}

.cta-content {
    max-width: 640px;
}

.cta-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
}

.cta-title {
    font-size: clamp(36px, 5.5vw, 60px);
    margin-bottom: 20px;
    color: var(--text-primary);
}

.cta-subtitle {
    font-size: 17px;
    margin-bottom: 36px;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* ===========================
   CONTACT
=========================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 88px;
    align-items: start;
}

.contact-title {
    font-size: clamp(28px, 4vw, 44px);
    margin-bottom: 16px;
    color: var(--text-primary);
}

.contact-info p {
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 32px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--text-secondary);
}

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

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

.contact-icon { font-size: 18px; flex-shrink: 0; }

.contact-promise {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: rgba(155, 69, 224, 0.06);
    border: 1px solid rgba(155, 69, 224, 0.15);
    border-radius: var(--radius);
    padding: 18px 20px;
}

.promise-icon { font-size: 20px; flex-shrink: 0; margin-top: 1px; }

.promise-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.promise-text { font-size: 13px; color: var(--text-secondary); }

/* Form */
.contact-form {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 44px 40px;
}

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

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

label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: var(--text-secondary);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

input, textarea, select {
    width: 100%;
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 12px 16px;
    color: var(--text-primary);
    font-size: 15px;
    font-family: var(--font);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

input:focus, textarea:focus, select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(155, 69, 224, 0.1);
}

input::placeholder, textarea::placeholder {
    color: var(--text-muted);
}

textarea { resize: vertical; }

select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23444' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
    cursor: pointer;
}

select option { background: #1a1a1a; }

.form-note {
    text-align: center;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 14px;
}

/* ===========================
   FOOTER
=========================== */
footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding: 64px 0 40px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 48px;
    flex-wrap: wrap;
}

.footer-brand .logo-text { font-size: 16px; }

.footer-brand p {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 10px;
    line-height: 1.65;
}

.footer-nav {
    display: flex;
    gap: 48px;
}

.footer-nav-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-nav-group h4 {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.footer-nav-group a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

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

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--text-muted);
}

.footer-legal {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-kvk {
    font-size: 11px !important;
    color: #333 !important;
}

.footer-bottom a {
    color: var(--accent);
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.footer-bottom a:hover { opacity: 0.75; }

/* ===========================
   SCROLL ANIMATIONS
=========================== */
.fade-in {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===========================
   RESPONSIVE — TABLET
=========================== */
@media (max-width: 960px) {
    #hero {
        flex-direction: column;
        padding: 120px 28px 80px;
        gap: 56px;
        min-height: auto;
    }

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

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

    .hero-image-placeholder {
        aspect-ratio: 16/9;
        max-height: 280px;
    }

    .hero-photo {
        aspect-ratio: 3/4;
        max-height: 420px;
    }

    .fc-row {
        display: flex;
        gap: 12px;
    }

    .floating-card {
        position: static !important;
        display: flex !important;
        flex-direction: column;
        flex: 1;
        min-width: 0;
        animation: none !important;
    }

    .fc-before {
        bottom: auto; left: auto;
        border-color: rgba(255, 80, 80, 0.25) !important;
    }

    .fc-after {
        top: auto; right: auto;
        border-color: rgba(155, 69, 224, 0.4) !important;
    }

    .fc-main { margin-bottom: 5px; }

    .fc-stat { font-size: 13px; }

    .fc-detail { padding-left: 0; font-size: 11px; }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 52px;
    }

    .about-image-placeholder {
        aspect-ratio: 16/9;
        max-height: 280px;
    }

    .about-accent-box { display: none; }

.contact-grid {
        grid-template-columns: 1fr;
        gap: 52px;
    }

    .steps-grid {
        flex-direction: column;
        gap: 36px;
    }

    .step { padding: 0; min-width: auto; }
    .step-connector { display: none; }

    section { padding: 88px 0; }

    .desktop-only { display: none; }
}

/* ===========================
   RESPONSIVE — MOBILE
=========================== */
@media (max-width: 620px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }

    .hero-title { font-size: 36px; }

    .hero-ctas {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-secondary { text-align: center; justify-content: center; }

    .hero-stats { gap: 20px; }
    .stat-divider { display: none; }

    .services-grid { grid-template-columns: 1fr; }
    .about-photo { aspect-ratio: 3/4; }

    .service-card { padding: 32px 28px; }

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

    .contact-form { padding: 28px 24px; }

    section { padding: 72px 0; }

    .footer-nav { gap: 32px; }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
