/* ============================================
   AURA MODEL MANAGEMENT
   Soft Organic Pastel — No Harsh Lines
   Blob clip-path, floating parallax circles,
   cascade overlapping cards, pill-shaped pricing,
   gradient mesh bg, breathing animations
   ============================================ */

/* --- CSS Variables --- */
:root {
    --bg: #FDF8F3;
    --surface: #FFFFFF;
    --accent: #E8927C;
    --accent-hover: #D97B64;
    --accent-light: rgba(232, 146, 124, 0.12);
    --accent-glow: rgba(232, 146, 124, 0.25);
    --secondary: #B8C5AA;
    --secondary-light: rgba(184, 197, 170, 0.15);
    --text: #3D3832;
    --text-light: #7A7168;
    --soft: #F0E6DB;
    --soft-mid: #E8DDD2;
    --border: rgba(61, 56, 50, 0.08);
    --white: #FFFFFF;
    --shadow-sm: 0 2px 12px rgba(61, 56, 50, 0.06);
    --shadow-md: 0 8px 30px rgba(61, 56, 50, 0.08);
    --shadow-lg: 0 16px 50px rgba(61, 56, 50, 0.1);
    --shadow-float: 0 20px 60px rgba(232, 146, 124, 0.12);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 32px;
    --radius-pill: 50px;
    --radius-blob: 40% 60% 55% 45% / 60% 40% 45% 55%;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-bounce: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    --font-heading: 'Fraunces', Georgia, serif;
    --font-body: 'Quicksand', -apple-system, sans-serif;
}

/* --- Gradient Mesh Background --- */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background:
        radial-gradient(ellipse 80% 60% at 10% 20%, rgba(232, 146, 124, 0.07) 0%, transparent 60%),
        radial-gradient(ellipse 60% 80% at 90% 80%, rgba(184, 197, 170, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 50% 50% at 50% 50%, rgba(240, 230, 219, 0.15) 0%, transparent 70%),
        radial-gradient(ellipse 70% 40% at 80% 10%, rgba(232, 146, 124, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse 40% 70% at 20% 90%, rgba(184, 197, 170, 0.06) 0%, transparent 50%);
    background-color: var(--bg);
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background:
        radial-gradient(ellipse 30% 25% at 75% 30%, rgba(232, 146, 124, 0.05) 0%, transparent 70%),
        radial-gradient(ellipse 25% 35% at 25% 70%, rgba(184, 197, 170, 0.05) 0%, transparent 70%);
    animation: meshShift 30s ease-in-out infinite alternate;
}

@keyframes meshShift {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, -15px) scale(1.03); }
    100% { transform: translate(-10px, 10px) scale(0.98); }
}

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

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

body {
    font-family: var(--font-body);
    font-weight: 500;
    line-height: 1.8;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.25;
    color: var(--text);
    font-variation-settings: 'WONK' 1, 'opsz' 36;
}

p + p {
    margin-top: 1rem;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-narrow {
    max-width: 800px;
}

.text-center { text-align: center; }
.text-accent { color: var(--accent); }
.mt-4 { margin-top: 2.5rem; }

/* --- Floating Parallax Circles --- */
.floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.floating-el {
    position: absolute;
    border-radius: 50%;
    opacity: 0.35;
    animation: floatDrift 20s ease-in-out infinite;
}

.floating-el:nth-child(1) {
    width: 140px;
    height: 140px;
    background: var(--accent-light);
    top: 12%;
    left: 4%;
    animation-delay: 0s;
    animation-duration: 24s;
}

.floating-el:nth-child(2) {
    width: 90px;
    height: 90px;
    background: var(--secondary-light);
    top: 35%;
    right: 6%;
    animation-delay: -5s;
    animation-duration: 19s;
}

.floating-el:nth-child(3) {
    width: 60px;
    height: 60px;
    background: rgba(240, 230, 219, 0.35);
    bottom: 25%;
    left: 10%;
    animation-delay: -10s;
    animation-duration: 26s;
}

.floating-el:nth-child(4) {
    width: 110px;
    height: 110px;
    background: var(--accent-light);
    bottom: 30%;
    right: 12%;
    animation-delay: -7s;
    animation-duration: 21s;
}

.floating-el:nth-child(5) {
    width: 50px;
    height: 50px;
    background: var(--secondary-light);
    top: 65%;
    left: 45%;
    animation-delay: -12s;
    animation-duration: 23s;
}

.floating-el:nth-child(6) {
    width: 100px;
    height: 100px;
    background: rgba(240, 230, 219, 0.28);
    top: 8%;
    right: 28%;
    animation-delay: -3s;
    animation-duration: 20s;
}

.floating-el:nth-child(7) {
    width: 70px;
    height: 70px;
    background: var(--accent-glow);
    top: 50%;
    left: 25%;
    animation-delay: -15s;
    animation-duration: 28s;
}

.floating-el:nth-child(8) {
    width: 45px;
    height: 45px;
    background: var(--secondary-light);
    bottom: 15%;
    right: 35%;
    animation-delay: -8s;
    animation-duration: 22s;
}

@keyframes floatDrift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -25px) scale(1.06); }
    50% { transform: translate(-20px, 18px) scale(0.94); }
    75% { transform: translate(22px, 12px) scale(1.03); }
}

@keyframes breathe {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.08); opacity: 1; }
}

@keyframes blobMorph {
    0%, 100% { border-radius: 40% 60% 55% 45% / 60% 40% 45% 55%; }
    25% { border-radius: 55% 45% 40% 60% / 45% 55% 60% 40%; }
    50% { border-radius: 45% 55% 60% 40% / 55% 45% 40% 60%; }
    75% { border-radius: 60% 40% 45% 55% / 40% 60% 55% 45%; }
}

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

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

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes petalDrift {
    0% { transform: translateY(-10%) rotate(0deg); opacity: 0; }
    10% { opacity: 0.5; }
    90% { opacity: 0.5; }
    100% { transform: translateY(110vh) rotate(360deg); opacity: 0; }
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(232, 146, 124, 0.2); }
    50% { box-shadow: 0 0 30px 10px rgba(232, 146, 124, 0.1); }
}

/* --- Buttons (pill-shaped) --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 36px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    border: 2px solid transparent;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: var(--transition-bounce);
    text-decoration: none;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::after {
    width: 300px;
    height: 300px;
}

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

.btn-accent:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-float);
}

.btn-outline-accent {
    background: transparent;
    color: var(--accent);
    border-color: var(--accent);
}

.btn-outline-accent:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-float);
}

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

.btn-white:hover {
    background: var(--bg);
    color: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border-color: var(--white);
    transform: translateY(-3px);
}

.btn-outline-dark {
    background: transparent;
    color: var(--text);
    border-color: var(--soft-mid);
}

.btn-outline-dark:hover {
    background: var(--soft);
    border-color: var(--soft);
    transform: translateY(-3px);
}

.btn-sm {
    padding: 8px 22px;
    font-size: 0.85rem;
}

.btn-block {
    width: 100%;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-slow);
    background: transparent;
}

.navbar.scrolled {
    padding: 10px 0;
    background: rgba(253, 248, 243, 0.85);
    backdrop-filter: blur(20px) saturate(1.2);
    -webkit-backdrop-filter: blur(20px) saturate(1.2);
    box-shadow: 0 4px 30px rgba(61, 56, 50, 0.06);
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text);
    z-index: 1001;
}

.brand-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.3rem;
    border-radius: var(--radius-blob);
    animation: blobMorph 8s ease-in-out infinite, breathe 5s ease-in-out infinite;
    transition: var(--transition);
}

.navbar-brand:hover .brand-icon {
    transform: scale(1.1);
    box-shadow: var(--shadow-float);
}

.brand-text {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--text);
    font-variation-settings: 'WONK' 1;
}

.navbar-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 6px;
}

.nav-link {
    padding: 8px 18px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
    border-radius: var(--radius-pill);
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent);
    background: var(--accent-light);
}

.navbar-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.toggle-bar {
    width: 26px;
    height: 2.5px;
    background: var(--text);
    border-radius: 3px;
    transition: var(--transition);
}

.navbar-toggle.active .toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggle.active .toggle-bar:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.navbar-toggle.active .toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-mesh-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse 50% 50% at 70% 50%, rgba(232, 146, 124, 0.08) 0%, transparent 70%),
        radial-gradient(ellipse 60% 40% at 20% 80%, rgba(184, 197, 170, 0.06) 0%, transparent 60%);
    z-index: 0;
}

.hero-petal {
    position: absolute;
    width: 12px;
    height: 18px;
    background: var(--accent);
    opacity: 0;
    border-radius: 50% 0 50% 50%;
    animation: petalDrift linear infinite;
    z-index: 1;
}

.hero-petal:nth-child(2) { left: 10%; animation-duration: 12s; animation-delay: 0s; }
.hero-petal:nth-child(3) { left: 25%; animation-duration: 15s; animation-delay: -3s; width: 10px; height: 14px; background: var(--secondary); }
.hero-petal:nth-child(4) { left: 45%; animation-duration: 11s; animation-delay: -6s; }
.hero-petal:nth-child(5) { left: 65%; animation-duration: 14s; animation-delay: -2s; width: 8px; height: 12px; background: var(--soft-mid); }
.hero-petal:nth-child(6) { left: 80%; animation-duration: 13s; animation-delay: -8s; background: var(--secondary); }
.hero-petal:nth-child(7) { left: 55%; animation-duration: 16s; animation-delay: -4s; width: 14px; height: 20px; }
.hero-petal:nth-child(8) { left: 35%; animation-duration: 10s; animation-delay: -9s; width: 9px; height: 13px; background: var(--secondary); }
.hero-petal:nth-child(9) { left: 90%; animation-duration: 17s; animation-delay: -1s; background: var(--soft-mid); }

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    animation: slideInLeft 1s ease-out;
}

.hero-label {
    display: inline-block;
    padding: 8px 24px;
    background: var(--accent-light);
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: var(--radius-pill);
    margin-bottom: 24px;
    animation: breathe 4s ease-in-out infinite;
}

.hero-title {
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    line-height: 1.1;
    margin-bottom: 20px;
    font-variation-settings: 'WONK' 1, 'opsz' 72;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 480px;
    margin-bottom: 36px;
    line-height: 1.9;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.hero-stat {
    display: flex;
    flex-direction: column;
}

.hero-stat-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--accent);
    font-variation-settings: 'WONK' 1;
}

.hero-stat-label {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Hero Blob Image */
.hero-image-wrapper {
    position: relative;
    animation: slideInRight 1s ease-out;
}

.hero-image-blob {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    border-radius: var(--radius-blob);
    overflow: hidden;
    animation: blobMorph 10s ease-in-out infinite;
    box-shadow: var(--shadow-lg);
}

.hero-image-blob img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image-wrapper .hero-deco-circle {
    position: absolute;
    border-radius: 50%;
    z-index: -1;
}

.hero-deco-circle:nth-child(2) {
    width: 180px;
    height: 180px;
    background: var(--secondary-light);
    top: -30px;
    right: -30px;
    animation: breathe 5s ease-in-out infinite, pulseGlow 6s ease-in-out infinite;
}

.hero-deco-circle:nth-child(3) {
    width: 120px;
    height: 120px;
    background: var(--accent-light);
    bottom: -20px;
    left: -20px;
    animation: breathe 6s ease-in-out infinite 1s;
}

.hero-deco-circle:nth-child(4) {
    width: 60px;
    height: 60px;
    background: var(--soft);
    top: 50%;
    left: -40px;
    animation: gentleBounce 4s ease-in-out infinite;
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
    padding: 100px 0;
    position: relative;
}

.section-soft {
    background: var(--soft);
    border-radius: 60px;
    margin: 0 20px;
}

.section-light {
    background: var(--soft);
    border-radius: 60px;
    margin: 0 20px;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-label {
    display: inline-block;
    padding: 6px 20px;
    background: var(--accent-light);
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: var(--radius-pill);
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    margin-bottom: 16px;
    font-variation-settings: 'WONK' 1, 'opsz' 48;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
    padding: 160px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 140%;
    height: 200%;
    background:
        radial-gradient(ellipse 40% 30% at 30% 40%, rgba(232, 146, 124, 0.06) 0%, transparent 70%),
        radial-gradient(ellipse 30% 40% at 70% 60%, rgba(184, 197, 170, 0.06) 0%, transparent 70%);
    z-index: 0;
}

.page-hero > .container {
    position: relative;
    z-index: 1;
}

.page-hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 16px;
    font-variation-settings: 'WONK' 1, 'opsz' 72;
}

.page-hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ============================================
   MODELS GRID — Blob clip-path images
   ============================================ */
.models-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.model-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: visible;
    background: var(--surface);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.model-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-float);
}

.model-card-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    border-radius: var(--radius-blob);
    animation: blobMorph 12s ease-in-out infinite;
}

.model-card:nth-child(2) .model-card-img { animation-delay: -2s; }
.model-card:nth-child(3) .model-card-img { animation-delay: -4s; }
.model-card:nth-child(4) .model-card-img { animation-delay: -6s; }
.model-card:nth-child(5) .model-card-img { animation-delay: -8s; }
.model-card:nth-child(6) .model-card-img { animation-delay: -10s; }

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

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

.model-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 20px 20px;
    background: linear-gradient(to top, rgba(61, 56, 50, 0.6), transparent);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition);
    border-radius: 0 0 40% 45%;
}

.model-card:hover .model-card-overlay {
    opacity: 1;
    transform: translateY(0);
}

.model-card-category {
    padding: 4px 14px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-pill);
}

.model-card-info {
    padding: 20px;
    text-align: center;
}

.model-card-name {
    font-size: 1.15rem;
    margin-bottom: 4px;
    font-variation-settings: 'WONK' 1;
}

.model-card-type {
    font-size: 0.8rem;
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ============================================
   SERVICES CASCADE — Overlapping cards
   ============================================ */
.services-cascade {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-cascade-card {
    background: var(--surface);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-cascade-card:nth-child(even) {
    transform: translateY(20px);
}

.service-cascade-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--accent-light) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.service-cascade-card:hover::before {
    opacity: 1;
}

.service-cascade-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-float);
}

.service-cascade-card:nth-child(even):hover {
    transform: translateY(14px);
}

.service-cascade-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-light);
    color: var(--accent);
    font-size: 1.5rem;
    border-radius: var(--radius-blob);
    margin: 0 auto 20px;
    animation: blobMorph 10s ease-in-out infinite;
    transition: var(--transition);
    position: relative;
}

.service-cascade-card:hover .service-cascade-icon {
    background: var(--accent);
    color: var(--white);
    transform: scale(1.1);
}

.service-cascade-title {
    font-size: 1.15rem;
    margin-bottom: 10px;
    position: relative;
    font-variation-settings: 'WONK' 1;
}

.service-cascade-desc {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
    position: relative;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.testimonial-card {
    background: var(--surface);
    padding: 36px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 16px;
    right: 24px;
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--accent-light);
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 16px;
    color: var(--accent);
    font-size: 0.85rem;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

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

.testimonial-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--soft);
}

.testimonial-author strong {
    display: block;
    font-size: 0.95rem;
    font-family: var(--font-heading);
    font-variation-settings: 'WONK' 1;
}

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

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: 100px 0;
    background: var(--accent);
    position: relative;
    overflow: hidden;
    border-radius: 60px;
    margin: 0 20px;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -30%;
    width: 160%;
    height: 200%;
    background:
        radial-gradient(ellipse 40% 40% at 20% 30%, rgba(255, 255, 255, 0.08) 0%, transparent 70%),
        radial-gradient(ellipse 30% 50% at 80% 70%, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
}

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

.cta-title {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    color: var(--white);
    margin-bottom: 16px;
    font-variation-settings: 'WONK' 1, 'opsz' 48;
}

.cta-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    max-width: 520px;
    margin: 0 auto 32px;
    line-height: 1.8;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

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

.about-story-content p {
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.9;
}

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

.about-story-image img {
    border-radius: var(--radius-blob);
    animation: blobMorph 12s ease-in-out infinite;
    box-shadow: var(--shadow-lg);
}

.about-story-image::before {
    content: '';
    position: absolute;
    width: 120%;
    height: 120%;
    top: -10%;
    left: -10%;
    background: var(--accent-light);
    border-radius: var(--radius-blob);
    animation: blobMorph 14s ease-in-out infinite reverse;
    z-index: -1;
}

/* Values */
.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.value-card {
    background: var(--surface);
    padding: 36px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.value-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-light);
    color: var(--accent);
    font-size: 1.3rem;
    border-radius: var(--radius-blob);
    margin-bottom: 20px;
    animation: blobMorph 10s ease-in-out infinite;
}

.value-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-variation-settings: 'WONK' 1;
}

.value-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.stat-card {
    background: var(--surface);
    padding: 40px 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-float);
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.8rem;
    color: var(--accent);
    margin-bottom: 4px;
    font-variation-settings: 'WONK' 1;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Team */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.team-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-float);
}

.team-card-img {
    overflow: hidden;
    aspect-ratio: 5 / 6;
}

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

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

.team-card-info {
    padding: 24px;
    text-align: center;
}

.team-card-info h3 {
    font-size: 1.15rem;
    margin-bottom: 4px;
    font-variation-settings: 'WONK' 1;
}

.team-role {
    display: block;
    font-size: 0.8rem;
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
}

.team-card-info p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ============================================
   SERVICES PAGE
   ============================================ */
.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 60px 0;
}

.service-detail-reversed {
    direction: rtl;
}

.service-detail-reversed > * {
    direction: ltr;
}

.service-detail-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-light);
    color: var(--accent);
    font-size: 1.5rem;
    border-radius: var(--radius-blob);
    margin-bottom: 20px;
    animation: blobMorph 10s ease-in-out infinite;
}

.service-detail-title {
    font-size: 1.6rem;
    margin-bottom: 16px;
    font-variation-settings: 'WONK' 1, 'opsz' 36;
}

.service-detail-desc {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.service-detail-features {
    list-style: none;
    margin-bottom: 28px;
}

.service-detail-features li {
    padding: 8px 0;
    font-size: 0.92rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-detail-features li i {
    color: var(--secondary);
    font-size: 0.8rem;
}

.service-detail-image {
    position: relative;
}

.service-detail-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.service-detail:hover .service-detail-image img {
    box-shadow: var(--shadow-float);
    transform: scale(1.02);
}

.service-divider {
    border: none;
    height: 1px;
    background: var(--border);
    margin: 0;
}

/* Process Steps */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.process-step {
    background: var(--surface);
    padding: 36px 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.process-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 16px;
    opacity: 0.4;
    font-variation-settings: 'WONK' 1;
}

.process-step h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-variation-settings: 'WONK' 1;
}

.process-step p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ============================================
   PRICING PAGE — Pill-shaped pricing
   ============================================ */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: start;
}

.pricing-card {
    background: var(--surface);
    border-radius: var(--radius-pill);
    padding: 48px 32px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-float);
}

.pricing-card-featured {
    background: var(--text);
    color: var(--white);
    transform: scale(1.04);
    box-shadow: var(--shadow-lg);
}

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

.pricing-card-featured .pricing-label,
.pricing-card-featured .pricing-desc,
.pricing-card-featured .pricing-features li {
    color: rgba(255, 255, 255, 0.75);
}

.pricing-card-featured .pricing-amount,
.pricing-card-featured .pricing-currency,
.pricing-card-featured .pricing-period {
    color: var(--white);
}

.pricing-card-featured .pricing-features li i.fa-check {
    color: var(--accent);
}

.pricing-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--accent);
    color: var(--white);
    padding: 6px 40px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transform: rotate(45deg);
}

.pricing-card-header {
    text-align: center;
    padding-bottom: 28px;
    margin-bottom: 28px;
    border-bottom: 1px solid var(--border);
}

.pricing-card-featured .pricing-card-header {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.pricing-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-light);
    margin-bottom: 12px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    margin-bottom: 12px;
}

.pricing-currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text);
}

.pricing-amount {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--text);
    line-height: 1;
    font-variation-settings: 'WONK' 1;
}

.pricing-period {
    font-size: 0.9rem;
    color: var(--text-light);
}

.pricing-desc {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.6;
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
}

.pricing-features li {
    padding: 10px 0;
    font-size: 0.9rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--border);
}

.pricing-card-featured .pricing-features li {
    border-bottom-color: rgba(255, 255, 255, 0.06);
}

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

.pricing-features li i.fa-check {
    color: var(--secondary);
}

.pricing-features li i.fa-times {
    color: rgba(61, 56, 50, 0.2);
}

.pricing-features li.disabled {
    opacity: 0.45;
}

.pricing-card-featured .pricing-features li.disabled {
    opacity: 0.35;
}

/* Pricing FAQ */
.pricing-faq {
    max-width: 700px;
    margin: 0 auto;
}

/* ============================================
   EVENTS PAGE
   ============================================ */
.events-month-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.month-btn {
    padding: 8px 20px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    background: var(--soft);
    color: var(--text-light);
    border: none;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: var(--transition);
}

.month-btn:hover,
.month-btn.active {
    background: var(--accent);
    color: var(--white);
}

.events-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 36px;
}

.filter-btn {
    padding: 8px 20px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--border);
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

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

.event-card {
    background: var(--surface);
    padding: 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.event-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--accent);
    border-radius: 4px;
    opacity: 0;
    transition: var(--transition);
}

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

.event-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.event-card-category {
    display: inline-block;
    padding: 4px 14px;
    background: var(--accent-light);
    color: var(--accent);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-pill);
    margin-bottom: 12px;
}

.event-card-title {
    font-size: 1.1rem;
    margin-bottom: 14px;
    font-variation-settings: 'WONK' 1;
}

.event-card-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 14px;
}

.event-card-meta span {
    font-size: 0.8rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 8px;
}

.event-card-meta i {
    color: var(--accent);
    width: 16px;
    font-size: 0.75rem;
}

.event-card-price {
    display: inline-block;
    padding: 4px 16px;
    background: var(--secondary-light);
    color: var(--secondary);
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: var(--radius-pill);
}

/* Event Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(61, 56, 50, 0.4);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: var(--surface);
    border-radius: var(--radius-lg);
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
    transform: translateY(30px) scale(0.95);
    transition: var(--transition);
    position: relative;
}

.modal-overlay.active .modal {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--soft);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    color: var(--text);
    font-size: 1rem;
    transition: var(--transition);
    z-index: 1;
}

.modal-close:hover {
    background: var(--accent);
    color: var(--white);
}

.modal-body {
    padding: 40px;
}

.modal-category {
    display: inline-block;
    padding: 4px 16px;
    background: var(--accent-light);
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-pill);
    margin-bottom: 16px;
}

.modal-title {
    font-size: 1.6rem;
    margin-bottom: 24px;
    font-variation-settings: 'WONK' 1, 'opsz' 36;
}

.modal-details {
    display: grid;
    gap: 12px;
    margin-bottom: 24px;
}

.modal-detail {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.modal-detail i {
    color: var(--accent);
    width: 20px;
}

.modal-description {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.modal-price {
    display: inline-block;
    padding: 8px 24px;
    background: var(--secondary-light);
    color: var(--secondary);
    font-weight: 700;
    border-radius: var(--radius-pill);
    margin-bottom: 24px;
    font-size: 0.9rem;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
}

.contact-form-wrapper h2 {
    font-size: 1.6rem;
    margin-bottom: 28px;
    font-variation-settings: 'WONK' 1;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 20px;
    font-family: var(--font-body);
    font-size: 0.92rem;
    color: var(--text);
    background: var(--soft);
    border: 2px solid transparent;
    border-radius: var(--radius-pill);
    transition: var(--transition);
    outline: none;
}

.form-group textarea {
    border-radius: var(--radius-md);
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    background: var(--surface);
    box-shadow: 0 0 0 4px var(--accent-light);
}

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

.form-check {
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.form-check input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--accent);
    border-radius: 6px;
}

.form-check label {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-light);
}

.form-success {
    text-align: center;
    padding: 60px 20px;
}

.form-success i {
    font-size: 3rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

.form-success h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    font-variation-settings: 'WONK' 1;
}

.form-success p {
    color: var(--text-light);
}

/* Contact Sidebar */
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-info-card {
    background: var(--surface);
    padding: 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.contact-info-card h3 {
    font-size: 1.15rem;
    margin-bottom: 18px;
    font-variation-settings: 'WONK' 1;
}

.contact-info-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.contact-info-list li i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-light);
    color: var(--accent);
    border-radius: 50%;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.contact-info-list li strong {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text);
    margin-bottom: 2px;
}

.contact-info-list li p {
    font-size: 0.88rem;
    color: var(--text-light);
}

.contact-info-list li a {
    color: var(--accent);
}

.contact-social {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-social a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-light);
    padding: 8px 16px;
    border-radius: var(--radius-pill);
    transition: var(--transition);
}

.contact-social a:hover {
    background: var(--accent-light);
    color: var(--accent);
}

.contact-social a i {
    width: 20px;
    color: var(--accent);
}

.contact-info-card p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 14px;
}

/* Map */
.map-section {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin: 0 20px;
    box-shadow: var(--shadow-md);
}

.map-section iframe {
    display: block;
}

/* ============================================
   FAQ PAGE
   ============================================ */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--surface);
    border-radius: var(--radius-pill);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-item.active {
    box-shadow: var(--shadow-md);
    border-radius: var(--radius-md);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 28px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text);
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: var(--transition);
}

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

.faq-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--soft);
    border-radius: 50%;
    color: var(--text-light);
    font-size: 0.8rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.faq-item.active .faq-toggle {
    background: var(--accent);
    color: var(--white);
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq-answer p {
    padding: 0 28px 22px;
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.8;
}

.faq-answer a {
    color: var(--accent);
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-content h2 {
    font-size: 1.4rem;
    margin-top: 40px;
    margin-bottom: 16px;
    font-variation-settings: 'WONK' 1;
}

.legal-content h3 {
    font-size: 1.1rem;
    margin-top: 28px;
    margin-bottom: 12px;
    font-variation-settings: 'WONK' 1;
}

.legal-content p {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 14px;
}

.legal-content ul {
    margin: 14px 0;
    padding-left: 24px;
}

.legal-content li {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 6px;
}

.legal-content a {
    color: var(--accent);
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: var(--surface);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.cookie-table th {
    background: var(--soft);
    padding: 14px 18px;
    text-align: left;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text);
}

.cookie-table td {
    padding: 12px 18px;
    font-size: 0.88rem;
    color: var(--text-light);
    border-bottom: 1px solid var(--border);
}

.cookie-table tr:last-child td {
    border-bottom: none;
}

/* ============================================
   404 PAGE
   ============================================ */
.error-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0;
}

.error-content {
    max-width: 500px;
}

.error-code {
    font-family: var(--font-heading);
    font-size: 8rem;
    color: var(--soft-mid);
    line-height: 1;
    margin-bottom: 16px;
    display: block;
    font-variation-settings: 'WONK' 1;
}

.error-title {
    font-size: 2rem;
    margin-bottom: 12px;
    font-variation-settings: 'WONK' 1;
}

.error-text {
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.8;
}

.error-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    margin-bottom: 36px;
}

.error-links p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.error-links a {
    color: var(--accent);
    margin: 0 10px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--text);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
    border-radius: 48px 48px 0 0;
    margin-top: 40px;
}

.footer-wave {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    color: var(--bg);
    line-height: 0;
    display: none;
}

.footer-wave svg {
    width: 100%;
    height: 60px;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse 50% 40% at 20% 20%, rgba(232, 146, 124, 0.08) 0%, transparent 70%),
        radial-gradient(ellipse 40% 30% at 80% 80%, rgba(184, 197, 170, 0.06) 0%, transparent 70%);
}

.footer .container {
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 0.8fr 1fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    margin-bottom: 20px;
}

.footer-brand .brand-icon {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
}

.footer-brand .brand-text {
    color: var(--white);
    font-size: 1.05rem;
}

.footer-about {
    font-size: 0.88rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-heading {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--white);
    margin-bottom: 20px;
    font-family: var(--font-body);
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.55);
    transition: var(--transition);
}

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

.footer-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.88rem;
}

.footer-contact li i {
    color: var(--accent);
    margin-top: 3px;
    width: 16px;
    font-size: 0.85rem;
}

.footer-contact li a {
    color: rgba(255, 255, 255, 0.55);
}

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

.footer-bottom {
    padding: 28px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.35);
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: var(--white);
    border-radius: 50%;
    box-shadow: var(--shadow-float);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 999;
    font-size: 0.9rem;
    animation: breathe 3s ease-in-out infinite;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--accent-hover);
    transform: translateY(-4px);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-content { order: 1; }
    .hero-image-wrapper { order: 0; max-width: 400px; margin: 0 auto; }
    .hero-subtitle { margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }
    .hero-stats { justify-content: center; }
    .models-grid { grid-template-columns: repeat(2, 1fr); }
    .services-cascade { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .about-story-grid { grid-template-columns: 1fr; gap: 40px; }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(3, 1fr); }
    .team-grid { grid-template-columns: repeat(2, 1fr); }

    .service-detail,
    .service-detail-reversed {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: 30px;
    }

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

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }

    .pricing-card { border-radius: var(--radius-lg); }
    .pricing-card-featured { transform: none; }
    .pricing-card-featured:hover { transform: translateY(-6px); }
    .events-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }

    .service-cascade-card:nth-child(even) { transform: translateY(0); }
    .service-cascade-card:nth-child(even):hover { transform: translateY(-6px); }

    .cta-section,
    .section-soft,
    .section-light,
    .map-section {
        margin: 0 10px;
        border-radius: 40px;
    }
}

@media (max-width: 768px) {
    .navbar-toggle { display: flex; }

    .navbar-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(253, 248, 243, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 8px;
        opacity: 0;
        visibility: hidden;
        transform: scale(0.95);
        transition: var(--transition);
    }

    .navbar-menu.active {
        opacity: 1;
        visibility: visible;
        transform: scale(1);
    }

    .nav-link { font-size: 1.2rem; padding: 12px 30px; }
    .hero { padding: 100px 0 60px; min-height: auto; }
    .hero-stats { gap: 24px; }
    .models-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .services-cascade { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .process-grid { grid-template-columns: 1fr; }
    .events-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
    .section { padding: 70px 0; }
    .page-hero { padding: 130px 0 60px; }
    .cta-section { padding: 70px 0; }

    .cta-section,
    .section-soft,
    .section-light,
    .map-section {
        border-radius: 28px;
        margin: 0;
    }

    .faq-item,
    .faq-item.active {
        border-radius: var(--radius-md);
    }

    .footer { border-radius: 32px 32px 0 0; }
    .floating-elements { display: none; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2.2rem; }
    .hero-actions { flex-direction: column; align-items: center; }
    .hero-stats { flex-direction: column; gap: 16px; align-items: center; }
    .models-grid { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; }
    .pricing-badge { top: 14px; right: -32px; }
    .error-code { font-size: 5rem; }
}

/* --- Cookie Banner --- */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3000;
    background: var(--surface);
    box-shadow: var(--shadow-md);
    padding: 20px;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.active {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    font-size: 0.9rem;
    color: var(--text-light);
}

.cookie-content p a {
    color: var(--text);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

/* Breadcrumbs */
.breadcrumbs { padding: 80px 0 12px 0; font-size: 0.85rem; opacity: 0.7; }
.breadcrumbs-list { display: flex; list-style: none; margin: 0; padding: 0; gap: 8px; }
.breadcrumbs-list li:not(:last-child)::after { content: "/"; margin-left: 8px; opacity: 0.5; }
.breadcrumbs-list a { text-decoration: none; color: inherit; }
.breadcrumbs-list a:hover { text-decoration: underline; }
.breadcrumbs-list li[aria-current] { opacity: 0.6; }
