/* ============================================================
   Card Dashboard — Vetrina Variant
   Modern SaaS dashboard feel: everything is a card/widget
   Purple-accented, pill shapes, glassmorphism, generous spacing
   Fonts: Nunito (body) + Quicksand (headings)
   ============================================================ */

/* === Variables === */
:root {
    --primary: #8b5cf6;
    --primary-dark: #7c3aed;
    --primary-deeper: #6d28d9;
    --primary-light: #a78bfa;
    --primary-pale: #c4b5fd;
    --primary-glow: rgba(139, 92, 246, 0.15);
    --primary-glow-strong: rgba(139, 92, 246, 0.25);
    --accent: #f59e0b;
    --text: #1e1b4b;
    --text-light: #6b7280;
    --text-muted: #9ca3af;
    --bg: #faf5ff;
    --bg-card: #ffffff;
    --bg-alt: #f5f3ff;
    --bg-dark: #1e1b4b;
    --border: #e9e5f5;
    --border-light: #f0ecf9;
    --radius: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-pill: 50px;
    --shadow-sm: 0 2px 6px rgba(139, 92, 246, 0.05);
    --shadow: 0 6px 24px rgba(139, 92, 246, 0.08);
    --shadow-lg: 0 8px 32px rgba(139, 92, 246, 0.10);
    --shadow-xl: 0 20px 56px rgba(139, 92, 246, 0.14);
    --shadow-card: 0 4px 16px rgba(139, 92, 246, 0.06), 0 1px 3px rgba(139, 92, 246, 0.04);
    --shadow-card-hover: 0 16px 48px rgba(139, 92, 246, 0.14), 0 4px 12px rgba(139, 92, 246, 0.06);
    --shadow-primary: 0 8px 28px rgba(139, 92, 246, 0.35);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    --max-width: 1200px;
    --gradient: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 50%, #6d28d9 100%);
    --gradient-soft: linear-gradient(135deg, #a78bfa 0%, #8b5cf6 100%);
    --gradient-card: linear-gradient(180deg, #ffffff 0%, #faf5ff 100%);
    --glass-bg: rgba(255, 255, 255, 0.65);
    --glass-border: rgba(139, 92, 246, 0.12);
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Nunito', -apple-system, system-ui, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
    font-weight: 500;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Quicksand', -apple-system, system-ui, sans-serif;
    font-weight: 700;
}
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-dark); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* === Layout === */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 2rem; }

/* === Scroll Animations === */
.reveal {
    opacity: 0;
    transform: translateY(28px) scale(0.98);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.40s; }
.reveal-delay-6 { transition-delay: 0.48s; }

/* === Animated gradient keyframes === */
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

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

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(139, 92, 246, 0.15); }
    50% { box-shadow: 0 0 40px rgba(139, 92, 246, 0.25); }
}

@keyframes fab-appear {
    from { opacity: 0; transform: scale(0.4) translateY(24px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

/* === Navbar === */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid transparent;
}
.navbar.scrolled {
    background: var(--glass-bg);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 4px 30px rgba(139, 92, 246, 0.06);
}
.navbar-inner {
    display: flex; align-items: center; justify-content: space-between;
    height: 76px;
}
.navbar-brand {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.3rem; font-weight: 700; color: #fff;
    text-decoration: none; display: flex; align-items: center; gap: 0.6rem;
    letter-spacing: -0.02em;
    transition: color var(--transition);
}
.navbar.scrolled .navbar-brand { color: var(--text); }
.navbar-brand:hover { color: #fff; }
.navbar.scrolled .navbar-brand:hover { color: var(--primary-dark); }
.navbar-logo { height: 42px; width: auto; border-radius: 10px; }
.nav-links { display: flex; align-items: center; gap: 0.25rem; }
.nav-links a {
    padding: 0.5rem 1.1rem; border-radius: var(--radius-pill);
    font-size: 0.88rem; font-weight: 600; color: rgba(255, 255, 255, 0.88);
    transition: all var(--transition);
}
.nav-links a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.18);
}
.navbar.scrolled .nav-links a { color: var(--text-light); }
.navbar.scrolled .nav-links a:hover {
    color: var(--primary);
    background: var(--primary-glow);
}
.nav-cta {
    background: rgba(255, 255, 255, 0.2) !important;
    color: #fff !important;
    border: 1.5px solid rgba(255, 255, 255, 0.35) !important;
    backdrop-filter: blur(8px);
    font-weight: 700 !important;
    border-radius: var(--radius-pill) !important;
    padding: 0.5rem 1.4rem !important;
}
.nav-cta:hover {
    background: #fff !important; color: var(--primary) !important;
    border-color: #fff !important;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
}
.navbar.scrolled .nav-cta {
    background: var(--gradient) !important; color: #fff !important;
    border-color: transparent !important;
    box-shadow: 0 4px 16px rgba(139, 92, 246, 0.25);
}
.navbar.scrolled .nav-cta:hover {
    box-shadow: var(--shadow-primary) !important;
    transform: translateY(-2px);
}

/* Hamburger */
.hamburger {
    display: none; background: none; border: none; cursor: pointer;
    width: 32px; height: 24px; position: relative; padding: 0;
}
.hamburger span {
    display: block; width: 100%; height: 2.5px; background: #fff;
    position: absolute; left: 0; transition: all 0.3s;
    border-radius: 4px;
}
.navbar.scrolled .hamburger span { background: var(--text); }
.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.hamburger span:nth-child(3) { bottom: 0; }
.hamburger.active span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { bottom: 50%; transform: translateY(50%) rotate(-45deg); }

/* === Hero === */
.hero {
    position: relative;
    background: linear-gradient(135deg, #4c1d95 0%, #6d28d9 30%, #7c3aed 60%, #8b5cf6 100%);
    background-size: 200% 200%;
    animation: gradientShift 12s ease infinite;
    color: #fff;
    padding: 0;
    min-height: 100vh;
    display: flex; align-items: center;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 15% 45%, rgba(167, 139, 250, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 75% 25%, rgba(196, 181, 253, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 85%, rgba(109, 40, 217, 0.15) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}
.hero-bg {
    position: absolute; inset: 0; z-index: 0;
    background-size: cover; background-position: center;
    opacity: 0.15;
}
.hero .container { position: relative; z-index: 2; }
.hero-content,
.hero-inner { max-width: 680px; padding: 9rem 0 6rem; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 0.5rem 1.25rem; border-radius: var(--radius-pill);
    font-size: 0.82rem; font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.75rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}
.hero h1 {
    font-family: 'Quicksand', sans-serif;
    font-size: 3.6rem; font-weight: 700; line-height: 1.1;
    margin-bottom: 1.25rem;
    letter-spacing: -0.03em;
}
.hero-sub {
    font-size: 1.2rem; opacity: 0.85; margin-bottom: 2.5rem;
    line-height: 1.8; max-width: 540px;
    font-weight: 400;
}
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-scroll {
    position: absolute; bottom: 2.5rem; left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: float 2.5s ease-in-out infinite;
}
.hero-scroll svg {
    width: 32px; height: 32px; color: rgba(255, 255, 255, 0.5);
}

/* Decorative shapes */
.hero-shape {
    position: absolute; border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}
.hero-shape-1 {
    width: 450px; height: 450px; top: -120px; right: -80px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
}
.hero-shape-2 {
    width: 280px; height: 280px; bottom: -60px; left: 8%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
}
.hero-shape-3 {
    width: 160px; height: 160px; top: 28%; right: 18%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    animation: pulseGlow 4s ease-in-out infinite;
}

/* === Buttons === */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
    padding: 0.8rem 2rem;
    font-family: 'Nunito', sans-serif;
    font-size: 0.92rem; font-weight: 700; border-radius: var(--radius-pill);
    border: 2px solid transparent; cursor: pointer;
    transition: all var(--transition-bounce); text-align: center;
    letter-spacing: 0.01em;
    position: relative; overflow: hidden;
}
.btn-primary {
    background: var(--gradient); color: #fff; border-color: transparent;
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.3);
}
.btn-primary:hover {
    box-shadow: 0 10px 36px rgba(139, 92, 246, 0.4);
    transform: translateY(-3px) scale(1.02);
    color: #fff;
}
.btn-outline {
    background: transparent; color: var(--primary); border-color: var(--primary-light);
}
.btn-outline:hover {
    background: var(--primary); color: #fff;
    border-color: var(--primary);
    box-shadow: var(--shadow-primary);
    transform: translateY(-3px) scale(1.02);
}
.btn-lg { padding: 1.05rem 2.5rem; font-size: 1rem; }
.btn-full { width: 100%; }
.hero .btn-primary {
    background: #fff; color: var(--primary-dark); border-color: transparent;
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.15);
}
.hero .btn-primary:hover {
    background: #fff; color: var(--primary-deeper);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    transform: translateY(-3px) scale(1.02);
}
.hero .btn-outline {
    background: transparent; color: #fff;
    border-color: rgba(255, 255, 255, 0.4);
}
.hero .btn-outline:hover {
    background: rgba(255, 255, 255, 0.15); color: #fff;
    border-color: rgba(255, 255, 255, 0.6);
}

/* === Sections === */
.section { padding: 6.5rem 0; }
.section-alt { background: var(--bg-alt); }
.section-header {
    text-align: center; max-width: 620px; margin: 0 auto 4rem;
}
.section-label {
    display: inline-flex; align-items: center;
    font-family: 'Nunito', sans-serif;
    font-size: 0.76rem; font-weight: 800; letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary);
    background: var(--primary-glow);
    padding: 0.45rem 1.25rem; border-radius: var(--radius-pill);
    margin-bottom: 1.1rem;
}
.section-title {
    font-size: 2.3rem; font-weight: 700; margin-bottom: 0.75rem;
    letter-spacing: -0.02em; line-height: 1.2;
    color: var(--text);
}
.section-subtitle {
    color: var(--text-light); font-size: 1.08rem; line-height: 1.7;
    font-weight: 400;
}
.section-title-left {
    font-size: 2.1rem; font-weight: 700; margin-bottom: 2.5rem;
    letter-spacing: -0.02em; line-height: 1.2;
    position: relative; padding-bottom: 1rem;
}
.section-title-left::after {
    content: ''; display: block; width: 52px; height: 4px;
    background: var(--gradient-soft);
    margin-top: 0.75rem; border-radius: var(--radius-pill);
}
.section-cta { text-align: center; margin-top: 3.5rem; }

/* === Page Header === */
.page-header {
    background: linear-gradient(135deg, #4c1d95 0%, #6d28d9 40%, #7c3aed 100%);
    background-size: 200% 200%;
    animation: gradientShift 10s ease infinite;
    padding: 9rem 0 4rem;
    position: relative; overflow: hidden;
}
.page-header::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 25% 50%, rgba(167, 139, 250, 0.25) 0%, transparent 60%);
    pointer-events: none;
}
.page-header .container { position: relative; z-index: 2; }
.page-header h1 {
    font-family: 'Quicksand', sans-serif;
    font-size: 2.6rem; font-weight: 700; color: #fff;
    letter-spacing: -0.02em;
}
.page-header p {
    color: rgba(255, 255, 255, 0.7); font-size: 1.1rem; margin-top: 0.6rem;
    font-weight: 400;
}
.page-content { padding: 4rem 0; }

/* === Services (Dashboard Widgets) === */
.services-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem;
}
.service-card {
    background: var(--gradient-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl); padding: 2.25rem;
    transition: all var(--transition-bounce);
    position: relative; overflow: hidden;
    box-shadow: var(--shadow-card);
}
.service-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: var(--gradient-soft);
    opacity: 0; transition: opacity var(--transition);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}
.service-card:hover {
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-8px) scale(1.01);
    border-color: var(--glass-border);
}
.service-card:hover::before { opacity: 1; }
.service-icon {
    font-size: 2.5rem; display: flex; align-items: center; justify-content: center;
    width: 68px; height: 68px;
    background: var(--primary-glow);
    border: 1px solid rgba(139, 92, 246, 0.1);
    border-radius: var(--radius-lg);
    margin-bottom: 1.5rem;
    transition: all var(--transition-bounce);
}
.service-card:hover .service-icon {
    background: var(--primary-glow-strong);
    border-color: rgba(139, 92, 246, 0.2);
    transform: scale(1.1) rotate(-2deg);
}
.service-card h3 {
    font-size: 1.15rem; font-weight: 700; margin-bottom: 0.6rem;
    letter-spacing: -0.01em;
}
.service-card p { color: var(--text-light); font-size: 0.94rem; line-height: 1.7; }
.services-grid-full { grid-template-columns: repeat(2, 1fr); }
.service-card-full { display: flex; flex-direction: column; }
.service-image {
    border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 1.5rem;
}
.service-image img {
    width: 100%; height: 220px; object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.service-card:hover .service-image img { transform: scale(1.06); }

/* === About === */
.about-section { padding: 6.5rem 0; }
.about-preview,
.about-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.about-image {
    border-radius: var(--radius-xl); overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}
.about-image::after {
    content: '';
    position: absolute; inset: 0;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(139, 92, 246, 0.08);
    pointer-events: none;
}
.about-image img { width: 100%; height: 400px; object-fit: cover; }
.about-text,
.about-content { }
.about-content h2,
.about-text h2 { margin-bottom: 1.5rem; }
.about-content p,
.about-text p {
    color: var(--text-light); line-height: 1.85; margin-bottom: 1.75rem;
    font-size: 1.04rem;
}
.values-list { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2rem; }
.value-tag {
    background: var(--gradient-soft);
    color: #fff; padding: 0.45rem 1.1rem;
    border-radius: var(--radius-pill); font-size: 0.82rem; font-weight: 700;
    letter-spacing: 0.01em;
    box-shadow: 0 3px 10px rgba(139, 92, 246, 0.2);
    transition: all var(--transition-bounce);
}
.value-tag:hover {
    transform: translateY(-3px) scale(1.06);
    box-shadow: 0 6px 18px rgba(139, 92, 246, 0.3);
}
.about-full { margin-bottom: 3rem; }
.about-image-full {
    border-radius: var(--radius-xl); overflow: hidden; margin-bottom: 2.5rem;
    max-width: 700px; box-shadow: var(--shadow-lg);
}
.about-image-full img { width: 100%; height: 400px; object-fit: cover; }
.about-text-full {
    max-width: 700px; color: var(--text-light); line-height: 1.9; font-size: 1.08rem;
}
.values-section { margin-top: 3.5rem; }
.values-section h2 {
    font-size: 1.5rem; font-weight: 700; margin-bottom: 1.75rem;
    letter-spacing: -0.01em;
}
.values-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 1.25rem;
}
.value-card {
    display: flex; align-items: center; gap: 0.85rem;
    background: var(--gradient-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg); padding: 1.25rem 1.5rem; font-weight: 600;
    transition: all var(--transition-bounce);
    box-shadow: var(--shadow-sm);
}
.value-card:hover {
    box-shadow: var(--shadow-card-hover);
    border-color: var(--glass-border);
    transform: translateY(-4px) scale(1.01);
}
.value-icon,
.value-check {
    color: #fff; font-weight: 800; font-size: 0.82rem;
    background: var(--gradient-soft);
    width: 34px; height: 34px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(139, 92, 246, 0.2);
}

/* === Team === */
.team-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
}
.team-grid-full { grid-template-columns: repeat(3, 1fr); }
.team-card {
    text-align: center;
    padding: 2.25rem 1.75rem;
    background: var(--gradient-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card);
    transition: all var(--transition-bounce);
    position: relative;
    overflow: hidden;
}
.team-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: var(--gradient-soft);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}
.team-card:hover {
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-8px) scale(1.01);
    border-color: var(--glass-border);
}
.team-photo {
    width: 120px; height: 120px; border-radius: 50%; margin: 0 auto 1.25rem;
    overflow: hidden; background: var(--bg-alt);
    border: 4px solid #fff;
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.1);
    transition: all var(--transition-bounce);
}
.team-card:hover .team-photo {
    border-color: var(--primary-pale);
    box-shadow: 0 8px 28px rgba(139, 92, 246, 0.2);
    transform: scale(1.06);
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-placeholder {
    width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
    font-family: 'Quicksand', sans-serif;
    font-size: 2.5rem; font-weight: 700;
    color: #fff;
    background: var(--gradient-soft);
}
.team-card h3 {
    font-size: 1.08rem; font-weight: 700; margin-bottom: 0.25rem;
    letter-spacing: -0.01em;
}
.team-role {
    color: var(--primary); font-size: 0.85rem; font-weight: 600;
}
.team-bio {
    color: var(--text-light); font-size: 0.88rem; margin-top: 0.75rem; line-height: 1.65;
}
.team-contacts { margin-top: 0.75rem; display: flex; flex-direction: column; gap: 0.25rem; }
.team-contacts a { font-size: 0.82rem; }

/* === Locations === */
.locations-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
}
.location-card {
    background: var(--gradient-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl); padding: 2.25rem;
    transition: all var(--transition-bounce);
    box-shadow: var(--shadow-card);
}
.location-card:hover {
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-8px) scale(1.01);
    border-color: var(--glass-border);
}
.location-card h3 {
    font-size: 1.15rem; font-weight: 700; margin-bottom: 0.6rem;
    letter-spacing: -0.01em;
}
.location-address { color: var(--text-light); font-size: 0.94rem; margin-bottom: 0.75rem; }
.location-detail { font-size: 0.88rem; margin-bottom: 0.4rem; color: var(--text-light); }
.location-detail strong { color: var(--text); font-weight: 700; }
.locations-list { display: flex; flex-direction: column; gap: 2.5rem; }
.location-full {
    display: grid; grid-template-columns: 1fr 1fr; gap: 0;
    background: var(--bg-card); border: 1px solid var(--border-light);
    border-radius: var(--radius-xl); overflow: hidden;
    box-shadow: var(--shadow);
    transition: all var(--transition);
}
.location-full:hover { box-shadow: var(--shadow-lg); }
.location-info { padding: 2.75rem; }
.location-info h2 {
    font-size: 1.4rem; font-weight: 700; margin-bottom: 1.25rem;
    letter-spacing: -0.01em;
}
.location-details p { margin-bottom: 0.6rem; font-size: 0.95rem; color: var(--text-light); }
.location-details strong { color: var(--text); font-weight: 700; }
.location-hours { margin-top: 1rem; }
.location-hours p { color: var(--text-light); }
.location-map { min-height: 320px; border-radius: 0; }
.location-map iframe { width: 100%; height: 100%; border: 0; }

/* === Contact === */
.contact-section { padding: 6.5rem 0; }
.contact-layout,
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; }
.contact-info h2, .contact-form-wrap h2 {
    font-size: 1.45rem; font-weight: 700; margin-bottom: 2rem;
    letter-spacing: -0.01em;
}
.contact-item {
    display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.75rem;
}
.contact-icon {
    font-size: 1.15rem; line-height: 1;
    width: 52px; height: 52px;
    display: flex; align-items: center; justify-content: center;
    background: var(--primary-glow);
    border: 1px solid rgba(139, 92, 246, 0.1);
    border-radius: var(--radius-lg);
    flex-shrink: 0;
    transition: all var(--transition-bounce);
}
.contact-item:hover .contact-icon {
    background: var(--primary-glow-strong);
    border-color: rgba(139, 92, 246, 0.2);
    transform: scale(1.08) rotate(-2deg);
}
.contact-item div { padding-top: 0.2rem; }
.contact-item div strong {
    display: block; font-size: 0.76rem; font-weight: 700;
    color: var(--text-muted); margin-bottom: 0.2rem;
    text-transform: uppercase; letter-spacing: 0.07em;
}
.contact-item div a, .contact-item div p {
    font-size: 0.95rem; margin: 0; color: var(--text);
    font-weight: 600;
}
.contact-form-wrap {
    background: var(--gradient-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 2.75rem;
    box-shadow: var(--shadow-card);
}
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.45rem; }
.form-group label {
    font-family: 'Nunito', sans-serif;
    font-size: 0.82rem; font-weight: 700; color: var(--text);
    letter-spacing: 0.01em;
}
.form-group input, .form-group textarea {
    padding: 0.9rem 1.15rem;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.95rem; font-family: inherit;
    transition: all var(--transition);
    background: var(--bg);
}
.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-glow);
    background: var(--bg-card);
}
.form-group input::placeholder, .form-group textarea::placeholder {
    color: var(--text-muted);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-feedback {
    margin-top: 1rem; padding: 1rem 1.5rem;
    border-radius: var(--radius); font-size: 0.9rem;
    font-weight: 600;
}
.form-feedback.success {
    background: #ecfdf5; color: #065f46;
    border: 1px solid #a7f3d0;
    border-radius: var(--radius);
}
.form-feedback.error {
    background: #fef2f2; color: #991b1b;
    border: 1px solid #fecaca;
    border-radius: var(--radius);
}

/* === CTA Section === */
.cta-section {
    background: linear-gradient(135deg, #4c1d95 0%, #6d28d9 30%, #7c3aed 60%, #8b5cf6 100%);
    background-size: 200% 200%;
    animation: gradientShift 10s ease infinite;
    color: #fff;
    position: relative; overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(167, 139, 250, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(109, 40, 217, 0.2) 0%, transparent 50%);
    pointer-events: none;
}
.cta-content,
.cta-inner {
    text-align: center; max-width: 580px; margin: 0 auto;
    position: relative; z-index: 2;
}
.cta-content h2,
.cta-inner h2 {
    font-family: 'Quicksand', sans-serif;
    font-size: 2.1rem; font-weight: 700; margin-bottom: 0.8rem;
    letter-spacing: -0.02em;
}
.cta-content p,
.cta-inner p { opacity: 0.88; margin-bottom: 2.25rem; font-size: 1.08rem; font-weight: 400; }
.cta-section .btn-primary {
    background: #fff; color: var(--primary-dark); border-color: #fff;
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.12);
}
.cta-section .btn-primary:hover {
    background: #fff; color: var(--primary-deeper);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
    transform: translateY(-3px) scale(1.02);
}

/* === Prose (privacy, custom pages) === */
.prose {
    max-width: 720px; line-height: 1.9; color: var(--text-light);
    font-size: 1.06rem;
}
.prose h2, .prose h3 { color: var(--text); margin: 2.25rem 0 0.8rem; font-weight: 700; }
.prose p { margin-bottom: 1.25rem; }
.prose ul, .prose ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.prose li { margin-bottom: 0.5rem; }
.prose a { color: var(--primary); font-weight: 600; }
.prose a:hover { text-decoration: underline; }
.page-image {
    margin-bottom: 2.5rem; border-radius: var(--radius-xl); overflow: hidden;
    max-width: 720px; box-shadow: var(--shadow-lg);
}
.page-image img { width: 100%; }

/* === Empty state === */
.empty-state {
    color: var(--text-muted); font-style: italic; text-align: center; padding: 4rem 0;
    font-size: 1.06rem;
    background: var(--gradient-card);
    border: 2px dashed var(--border);
    border-radius: var(--radius-xl);
    margin: 1rem 0;
}

/* === WhatsApp FAB === */
.whatsapp-fab {
    position: fixed; bottom: 1.75rem; right: 1.75rem; z-index: 90;
    width: 62px; height: 62px; border-radius: var(--radius-lg);
    background: #25d366; color: #fff;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35);
    transition: all var(--transition-bounce);
    animation: fab-appear 0.5s ease 1s both;
}
.whatsapp-fab:hover {
    transform: scale(1.12) translateY(-3px);
    box-shadow: 0 10px 36px rgba(37, 211, 102, 0.45);
    color: #fff;
}
.whatsapp-fab svg { width: 28px; height: 28px; }

/* === Footer === */
.site-footer {
    background: var(--bg-dark); color: #c4b5fd;
    padding: 4.5rem 0 0;
    position: relative;
}
.site-footer::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: var(--gradient-soft);
}
.footer-grid {
    display: grid; grid-template-columns: 1.5fr 1fr 1.2fr; gap: 3rem;
    margin-bottom: 2.75rem;
}
.footer-brand h3 {
    font-family: 'Quicksand', sans-serif;
    color: #fff; font-size: 1.25rem; margin-bottom: 0.8rem;
    font-weight: 700; letter-spacing: -0.01em;
}
.footer-brand p { font-size: 0.88rem; line-height: 1.7; margin-bottom: 0.3rem; }
.footer-vat { font-size: 0.82rem; opacity: 0.4; }
.site-footer h4 {
    font-family: 'Quicksand', sans-serif;
    color: #fff; font-size: 0.82rem; margin-bottom: 1rem;
    font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em;
}
.footer-nav ul, .footer-contact ul { display: flex; flex-direction: column; gap: 0.5rem; }
.site-footer a { color: #a78bfa; font-size: 0.88rem; transition: all var(--transition); }
.site-footer a:hover { color: #fff; }
.site-footer li { font-size: 0.88rem; }
.footer-social { display: flex; gap: 0.75rem; margin-top: 1.25rem; }
.footer-social a {
    color: #a78bfa; width: 38px; height: 38px;
    display: flex; align-items: center; justify-content: center;
    border-radius: var(--radius); background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.15);
    transition: all var(--transition-bounce);
}
.footer-social a:hover {
    color: #fff; background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px) scale(1.1);
}
.footer-bottom {
    border-top: 1px solid rgba(139, 92, 246, 0.12); padding: 1.75rem 0;
    text-align: center; font-size: 0.82rem; color: #6d5dac;
}
.footer-bottom a { color: #a78bfa; }
.footer-bottom a:hover { color: #fff; }

/* === Responsive: Tablet === */
@media (max-width: 900px) {
    .hero h1 { font-size: 2.6rem; }
    .hero-content,
    .hero-inner { padding: 7rem 0 4rem; }
    .hero { min-height: 80vh; }
    .services-grid, .services-grid-full { grid-template-columns: 1fr 1fr; }
    .about-preview, .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .about-image img { height: 300px; }
    .team-grid, .team-grid-full { grid-template-columns: repeat(2, 1fr); }
    .locations-grid { grid-template-columns: 1fr; }
    .location-full { grid-template-columns: 1fr; }
    .contact-layout, .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .section { padding: 5rem 0; }
    .page-header { padding: 7.5rem 0 3rem; }
    .page-header h1 { font-size: 2.1rem; }
}

/* === Responsive: Mobile nav at 768px === */
@media (max-width: 768px) {
    .hamburger { display: block; }
    .nav-links {
        display: none; flex-direction: column; position: absolute;
        top: 76px; left: 0.75rem; right: 0.75rem;
        background: rgba(255, 255, 255, 0.96);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        border: 1px solid var(--glass-border);
        padding: 0.75rem; box-shadow: var(--shadow-xl);
        border-radius: var(--radius-lg);
    }
    .nav-links.open { display: flex; }
    .nav-links a {
        padding: 0.9rem 1.25rem; width: 100%;
        color: var(--text-light) !important;
        border-radius: var(--radius) !important;
    }
    .nav-links a:hover { color: var(--primary) !important; background: var(--primary-glow); }
    .nav-cta {
        text-align: center; margin-top: 0.25rem;
        background: var(--gradient) !important; color: #fff !important;
        border-color: transparent !important;
        border-radius: var(--radius) !important;
    }
}

/* === Responsive: Small mobile === */
@media (max-width: 640px) {
    .hamburger { display: block; }
    .hero { min-height: 90vh; }
    .hero h1 { font-size: 2rem; }
    .hero-sub { font-size: 1rem; }
    .hero-content,
    .hero-inner { padding: 6.5rem 0 4rem; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { width: 100%; }
    .section { padding: 3.5rem 0; }
    .section-title { font-size: 1.65rem; }
    .section-title-left { font-size: 1.5rem; }
    .section-header { margin-bottom: 3rem; }
    .services-grid, .services-grid-full { grid-template-columns: 1fr; }
    .team-grid, .team-grid-full { grid-template-columns: 1fr 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .page-header { padding: 6.5rem 0 2.5rem; }
    .page-header h1 { font-size: 1.65rem; }
    .container { padding: 0 1.25rem; }
    .hero-shape { display: none; }
    .team-photo { width: 100px; height: 100px; }
    .contact-form-wrap { padding: 1.75rem; }
    .location-card { padding: 1.75rem; }
    .service-card { padding: 1.75rem; border-radius: var(--radius-lg); }
    .team-card { padding: 1.75rem 1.25rem; border-radius: var(--radius-lg); }
    .cta-content h2,
    .cta-inner h2 { font-size: 1.6rem; }
    .values-grid { grid-template-columns: 1fr; }
}
