/* ===================================
   Allen Wellness — Stylesheet
   =================================== */

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

:root {
    --emerald-50: #ecfdf5;
    --emerald-100: #d1fae5;
    --emerald-200: #a7f3d0;
    --emerald-300: #6ee7b7;
    --emerald-400: #34d399;
    --emerald-500: #10b981;
    --emerald-600: #059669;
    --emerald-700: #047857;
    --emerald-800: #065f46;
    --emerald-900: #064e3b;

    --cream-50: #fefdf8;
    --cream-100: #fefce8;
    --cream-200: #fef9c3;
    --cream-300: #fef08a;
    --cream-400: #fde68a;
    --cream-500: #f5f0e8;
    --cream-600: #e8e0d0;
    --cream-700: #d4c8b4;

    --neutral-50: #fafafa;
    --neutral-100: #f5f5f5;
    --neutral-200: #e5e5e5;
    --neutral-300: #d4d4d4;
    --neutral-400: #a3a3a3;
    --neutral-500: #737373;
    --neutral-600: #525252;
    --neutral-700: #404040;
    --neutral-800: #262626;
    --neutral-900: #171717;
    --neutral-950: #0a0a0a;

    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;

    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.08), 0 8px 10px -6px rgba(0,0,0,0.04);

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-sans);
    color: var(--neutral-800);
    background-color: var(--cream-50);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul {
    list-style: none;
}

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

/* ===================================
   Navigation
   =================================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(254, 253, 248, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(4, 120, 87, 0.08);
    transition: var(--transition);
}

.nav.scrolled {
    box-shadow: var(--shadow-md);
}

.nav__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--emerald-800);
    letter-spacing: -0.02em;
}

.nav__logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--emerald-700);
    color: white;
    border-radius: var(--radius-sm);
    font-size: 1.2rem;
    font-weight: 300;
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav__link {
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--neutral-600);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav__link:hover {
    color: var(--emerald-700);
    background: var(--emerald-50);
}

.nav__link--cta {
    background: var(--emerald-700);
    color: white;
    margin-left: 8px;
}

.nav__link--cta:hover {
    background: var(--emerald-800);
    color: white;
}

.nav__menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    padding: 4px 0;
}

.nav__menu-line {
    display: block;
    height: 2px;
    background: var(--neutral-700);
    border-radius: 2px;
    transition: var(--transition);
}

.nav__menu-btn.active .nav__menu-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav__menu-btn.active .nav__menu-line:nth-child(2) {
    opacity: 0;
}

.nav__menu-btn.active .nav__menu-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(254, 253, 248, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 999;
    padding: 32px 24px;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.mobile-menu.active {
    display: flex;
    flex-direction: column;
    opacity: 1;
    transform: translateY(0);
}

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

.mobile-menu__link {
    padding: 14px 16px;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--neutral-700);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.mobile-menu__link:hover {
    background: var(--emerald-50);
    color: var(--emerald-700);
}

.mobile-menu__link--cta {
    margin-top: 16px;
    background: var(--emerald-700);
    color: white;
    text-align: center;
}

/* ===================================
   Buttons
   =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: var(--transition);
    white-space: nowrap;
}

.btn--primary {
    background: var(--emerald-700);
    color: white;
    box-shadow: 0 4px 14px rgba(4, 120, 87, 0.3);
}

.btn--primary:hover {
    background: var(--emerald-800);
    box-shadow: 0 6px 20px rgba(4, 120, 87, 0.4);
    transform: translateY(-1px);
}

.btn--outline {
    background: transparent;
    color: var(--emerald-700);
    border: 1.5px solid var(--emerald-200);
}

.btn--outline:hover {
    background: var(--emerald-50);
    border-color: var(--emerald-400);
}

.btn--outline-light {
    background: rgba(255,255,255,0.15);
    color: white;
    border: 1.5px solid rgba(255,255,255,0.4);
    backdrop-filter: blur(4px);
}

.btn--outline-light:hover {
    background: rgba(255,255,255,0.25);
}

.btn--full {
    width: 100%;
    justify-content: center;
}

/* ===================================
   Section Header
   =================================== */
.section-header {
    margin-bottom: 56px;
}

.section-header--center {
    text-align: center;
}

.section-header__eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--emerald-600);
    margin-bottom: 12px;
    background: var(--emerald-50);
    padding: 6px 14px;
    border-radius: 100px;
    border: 1px solid var(--emerald-100);
}

.section-header__title {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 600;
    color: var(--neutral-900);
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-header__subtitle {
    font-size: 1.05rem;
    color: var(--neutral-500);
    max-width: 560px;
    line-height: 1.7;
}

.section-header--center .section-header__subtitle {
    margin: 0 auto;
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--cream-50) 0%, var(--emerald-50) 50%, var(--cream-50) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(4,120,87,0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--emerald-700);
    background: white;
    padding: 8px 16px;
    border-radius: 100px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 24px;
    border: 1px solid var(--emerald-100);
}

.hero__badge-dot {
    width: 8px;
    height: 8px;
    background: var(--emerald-500);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

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

.hero__title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 600;
    line-height: 1.15;
    color: var(--neutral-900);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.hero__title-accent {
    color: var(--emerald-700);
}

.hero__subtitle {
    font-size: 1.05rem;
    color: var(--neutral-600);
    line-height: 1.75;
    margin-bottom: 32px;
    max-width: 480px;
}

.hero__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero__trust {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.hero__trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--neutral-600);
}

.hero__trust-item svg {
    color: var(--emerald-600);
    flex-shrink: 0;
}

/* Hero Image */
.hero__image-wrapper {
    position: relative;
}

.hero__image-container {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.hero__image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero__image-accent {
    position: absolute;
    bottom: -16px;
    right: -16px;
    width: 120px;
    height: 120px;
    background: var(--emerald-200);
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0.6;
}

.hero__floating-card {
    position: absolute;
    bottom: 32px;
    left: -32px;
    background: white;
    padding: 16px 20px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 2;
}

.hero__floating-card-icon {
    width: 44px;
    height: 44px;
    background: var(--emerald-100);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--emerald-700);
    flex-shrink: 0;
}

.hero__floating-card-number {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--neutral-900);
}

.hero__floating-card-label {
    display: block;
    font-size: 0.75rem;
    color: var(--neutral-500);
    margin-top: 2px;
}

/* ===================================
   Services Section
   =================================== */
.services {
    padding: 96px 0;
    background: white;
}

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

.service-card {
    padding: 32px;
    background: var(--cream-50);
    border-radius: var(--radius-lg);
    border: 1px solid transparent;
    transition: var(--transition);
}

.service-card:hover {
    background: white;
    border-color: var(--emerald-200);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.service-card__icon {
    width: 52px;
    height: 52px;
    background: var(--emerald-100);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--emerald-700);
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-card:hover .service-card__icon {
    background: var(--emerald-700);
    color: white;
}

.service-card__title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--neutral-900);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.service-card__description {
    font-size: 0.9rem;
    color: var(--neutral-500);
    line-height: 1.7;
}

/* ===================================
   About Section
   =================================== */
.about {
    padding: 96px 0;
    background: var(--cream-50);
}

.about__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about__image-grid {
    position: relative;
    height: 580px;
}

.about__image-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 70%;
    height: 75%;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about__image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about__image-secondary {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    height: 50%;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 4px solid var(--cream-50);
}

.about__image-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about__image-accent-block {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--emerald-600);
    border-radius: var(--radius-lg);
    opacity: 0.15;
    z-index: -1;
}

.about__text {
    font-size: 1rem;
    color: var(--neutral-600);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about__values {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
}

.about__value {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.about__value-icon {
    width: 40px;
    height: 40px;
    background: var(--emerald-100);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--emerald-700);
    flex-shrink: 0;
}

.about__value strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--neutral-900);
    margin-bottom: 4px;
}

.about__value span {
    font-size: 0.88rem;
    color: var(--neutral-500);
    line-height: 1.6;
}

/* ===================================
   Conditions Section
   =================================== */
.conditions {
    padding: 96px 0;
    background: white;
}

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

.condition-card {
    padding: 28px;
    background: var(--cream-50);
    border-radius: var(--radius-lg);
    border: 1px solid transparent;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.condition-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--emerald-500);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.condition-card:hover::before {
    transform: scaleX(1);
}

.condition-card:hover {
    background: white;
    border-color: var(--emerald-200);
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.condition-card__number {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--emerald-400);
    letter-spacing: 0.05em;
    margin-bottom: 10px;
}

.condition-card__title {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--neutral-900);
    margin-bottom: 8px;
}

.condition-card__desc {
    font-size: 0.88rem;
    color: var(--neutral-500);
    line-height: 1.65;
}

/* ===================================
   Testimonials Section
   =================================== */
.testimonials {
    padding: 96px 0;
    background: linear-gradient(135deg, var(--emerald-800) 0%, var(--emerald-900) 100%);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.testimonials .section-header__eyebrow {
    background: rgba(255,255,255,0.1);
    color: var(--emerald-300);
    border-color: rgba(255,255,255,0.15);
}

.testimonials .section-header__title {
    color: white;
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-lg);
    padding: 32px;
    backdrop-filter: blur(8px);
    transition: var(--transition);
}

.testimonial-card:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-4px);
}

.testimonial-card__quote-mark {
    font-family: var(--font-serif);
    font-size: 4rem;
    line-height: 1;
    color: var(--emerald-400);
    opacity: 0.5;
    margin-bottom: -8px;
}

.testimonial-card__text {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.75;
    margin-bottom: 24px;
    font-style: italic;
}

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

.testimonial-card__author-avatar {
    width: 40px;
    height: 40px;
    background: var(--emerald-600);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
    flex-shrink: 0;
}

.testimonial-card__author-name {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
}

.testimonial-card__author-location {
    display: block;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    margin-top: 2px;
}

/* ===================================
   Contact Section
   =================================== */
.contact {
    padding: 96px 0;
    background: var(--cream-50);
}

.contact__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.contact__text {
    font-size: 1rem;
    color: var(--neutral-500);
    line-height: 1.75;
    margin-bottom: 32px;
}

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

.contact__detail {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact__detail-icon {
    width: 44px;
    height: 44px;
    background: var(--emerald-100);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--emerald-700);
    flex-shrink: 0;
}

.contact__detail strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--neutral-900);
    margin-bottom: 4px;
}

.contact__detail span,
.contact__detail a {
    display: block;
    font-size: 0.88rem;
    color: var(--neutral-500);
    line-height: 1.6;
}

.contact__detail a:hover {
    color: var(--emerald-700);
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 36px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--emerald-100);
}

.contact-form__title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--neutral-900);
    margin-bottom: 8px;
}

.contact-form__subtitle {
    font-size: 0.9rem;
    color: var(--neutral-500);
    margin-bottom: 28px;
    line-height: 1.6;
}

.contact-form__fields {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 24px;
}

.form-group__label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--neutral-700);
    margin-bottom: 6px;
}

.form-group__input {
    width: 100%;
    padding: 12px 14px;
    font-size: 0.92rem;
    font-family: var(--font-sans);
    color: var(--neutral-800);
    background: var(--neutral-50);
    border: 1.5px solid var(--neutral-200);
    border-radius: var(--radius-md);
    transition: var(--transition);
    outline: none;
}

.form-group__input:focus {
    border-color: var(--emerald-500);
    background: white;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.form-group__input::placeholder {
    color: var(--neutral-400);
}

.form-group__select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 8L2 4h8L6 8z' fill='%23737373'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
    cursor: pointer;
}

.form-group__textarea {
    resize: vertical;
    min-height: 100px;
}

/* Form Success */
.contact-form__success {
    text-align: center;
    padding: 40px 20px;
}

.contact-form__success-icon {
    margin: 0 auto 20px;
}

.contact-form__success-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--neutral-900);
    margin-bottom: 8px;
}

.contact-form__success-text {
    font-size: 0.92rem;
    color: var(--neutral-500);
    line-height: 1.7;
}

/* ===================================
   Location Section
   =================================== */
.location {
    padding: 80px 0;
    background: white;
}

.location__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.location__text {
    font-size: 1rem;
    color: var(--neutral-500);
    line-height: 1.75;
    margin-bottom: 28px;
}

.location__map {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.location__map-placeholder {
    background: linear-gradient(135deg, var(--emerald-50) 0%, var(--cream-100) 100%);
    padding: 48px 32px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 2px dashed var(--emerald-200);
    border-radius: var(--radius-xl);
}

.location__map-placeholder:hover {
    background: linear-gradient(135deg, var(--emerald-100) 0%, var(--cream-200) 100%);
    border-color: var(--emerald-400);
}

.location__map-icon {
    width: 64px;
    height: 64px;
    background: var(--emerald-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--emerald-700);
    margin: 0 auto 16px;
}

.location__map-address {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--neutral-800);
    margin-bottom: 6px;
}

.location__map-note {
    font-size: 0.85rem;
    color: var(--neutral-500);
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: var(--neutral-950);
    color: rgba(255,255,255,0.6);
    padding: 64px 0 0;
}

.footer__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.15rem;
    color: white;
    margin-bottom: 14px;
}

.footer__logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--emerald-600);
    color: white;
    border-radius: var(--radius-sm);
    font-size: 1.2rem;
    font-weight: 300;
}

.footer__tagline {
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 300px;
}

.footer__links {
    display: flex;
    gap: 48px;
}

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

.footer__link-group strong {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.4);
    margin-bottom: 4px;
}

.footer__link-group a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
}

.footer__link-group a:hover {
    color: var(--emerald-400);
}

.footer__link-group span {
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
    padding: 24px 0;
    font-size: 0.82rem;
}

.footer__disclaimer {
    max-width: 500px;
    text-align: right;
    line-height: 1.6;
}

/* ===================================
   Scroll Animations
   =================================== */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================
   Responsive
   =================================== */
@media (max-width: 1024px) {
    .hero__container {
        gap: 40px;
    }

    .hero__floating-card {
        left: -16px;
        bottom: 20px;
    }

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

@media (max-width: 768px) {
    .nav__links {
        display: none;
    }

    .nav__menu-btn {
        display: flex;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero__container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero__image-wrapper {
        order: -1;
        max-width: 400px;
        margin: 0 auto;
    }

    .hero__floating-card {
        left: 0;
        bottom: 16px;
    }

    .hero__trust {
        gap: 16px;
    }

    .services__grid,
    .conditions__grid,
    .testimonials__grid {
        grid-template-columns: 1fr;
    }

    .about__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about__image-grid {
        height: 360px;
        order: -1;
    }

    .contact__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .location__inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer__inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer__links {
        gap: 32px;
    }

    .footer__bottom {
        flex-direction: column;
        gap: 12px;
    }

    .footer__disclaimer {
        text-align: left;
    }

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

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero__actions {
        flex-direction: column;
    }

    .hero__actions .btn {
        justify-content: center;
    }

    .hero__trust {
        flex-direction: column;
        gap: 12px;
    }

    .footer__links {
        flex-direction: column;
        gap: 24px;
    }
}
