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

:root {
    --plum: #7c3aed;
    --plum-dark: #5b21b6;
    --plum-light: #a78bfa;
    --plum-50: #f5f3ff;
    --plum-100: #ede9fe;
    --plum-200: #ddd6fe;
    --amber: #d97706;
    --amber-light: #fbbf24;
    --amber-50: #fffbeb;
    --amber-100: #fef3c7;
    --cream: #faf9f7;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.07), 0 2px 4px rgba(0,0,0,0.04);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.1), 0 4px 12px rgba(0,0,0,0.05);
    --shadow-xl: 0 24px 60px rgba(0,0,0,0.12), 0 8px 20px rgba(0,0,0,0.06);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Nunito', sans-serif;
    color: var(--gray-800);
    background: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    line-height: 1.25;
    color: var(--gray-900);
}

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

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

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

/* ===== BLOBS ===== */
.blob {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.35;
    pointer-events: none;
    z-index: 0;
}
.blob-1 {
    width: 500px;
    height: 500px;
    background: var(--plum-light);
    top: -150px;
    right: -100px;
}
.blob-2 {
    width: 400px;
    height: 400px;
    background: var(--amber-light);
    bottom: 10%;
    left: -100px;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 249, 247, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(124, 58, 237, 0.08);
    transition: var(--transition);
}
.header.scrolled {
    background: rgba(250, 249, 247, 0.95);
    box-shadow: var(--shadow-md);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
    gap: 20px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1rem;
    color: var(--gray-900);
    flex-shrink: 0;
}
.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
}
.logo-light .logo-text { color: var(--white); }
.nav {
    display: flex;
    align-items: center;
    gap: 8px;
}
.nav-link {
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--gray-600);
    transition: var(--transition);
}
.nav-link:hover {
    color: var(--plum);
    background: var(--plum-50);
}
.nav-cta {
    display: none;
}
.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.mobile-menu-btn:hover { background: var(--plum-50); }
.mobile-menu-btn span {
    width: 22px;
    height: 2px;
    background: var(--gray-700);
    border-radius: 2px;
    transition: var(--transition);
}
.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(4px);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}
.mobile-overlay.active {
    opacity: 1;
    pointer-events: all;
}

@media (min-width: 1024px) {
    .nav-cta { display: inline-flex; }
}
@media (max-width: 1023px) {
    .nav {
        position: fixed;
        top: 76px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 24px;
        gap: 8px;
        box-shadow: var(--shadow-lg);
        transform: translateY(-120%);
        transition: var(--transition);
        z-index: 999;
        border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    }
    .nav.active { transform: translateY(0); }
    .nav-link { width: 100%; text-align: center; padding: 12px 16px; }
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-full);
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}
.btn-primary {
    background: var(--plum);
    color: var(--white);
    border-color: var(--plum);
}
.btn-primary:hover {
    background: var(--plum-dark);
    border-color: var(--plum-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.3);
}
.btn-outline {
    background: transparent;
    color: var(--plum);
    border-color: var(--plum);
}
.btn-outline:hover {
    background: var(--plum);
    color: var(--white);
    transform: translateY(-2px);
}
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-light {
    background: var(--white);
    color: var(--plum);
    border-color: var(--white);
}
.btn-light:hover {
    background: var(--plum-50);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}
.btn-outline-light {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.5);
}
.btn-outline-light:hover {
    background: var(--white);
    color: var(--plum);
    border-color: var(--white);
    transform: translateY(-2px);
}
.btn-full { width: 100%; justify-content: center; }

/* ===== SECTION HELPERS ===== */
.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: var(--plum-100);
    color: var(--plum);
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.section-title {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    margin-bottom: 16px;
}
.section-desc {
    font-size: 1.1rem;
    color: var(--gray-500);
    max-width: 600px;
}
.section-header {
    text-align: center;
    margin-bottom: 56px;
}
.section-header .section-desc { margin: 0 auto; }

/* ===== HERO ===== */
.hero {
    padding: 120px 0 80px;
    position: relative;
    z-index: 1;
}
.hero-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr;
}
.hero-content {
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: var(--amber-50);
    color: var(--amber);
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.85rem;
    width: fit-content;
    border: 1px solid var(--amber-100);
}
.hero-title {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--gray-900);
    line-height: 1.15;
}
.hero-title span { color: var(--plum); }
.hero-desc {
    font-size: 1.1rem;
    color: var(--gray-500);
    line-height: 1.8;
    max-width: 520px;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.hero-image-wrap {
    position: relative;
    min-height: 300px;
}
.hero-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(124,58,237,0.15), transparent);
    border-radius: 0 var(--radius-xl) var(--radius-xl) 0;
}

@media (min-width: 900px) {
    .hero-card { grid-template-columns: 1.1fr 1fr; }
    .hero-content { padding: 64px 52px; }
    .hero-image-wrap { min-height: auto; }
    .hero-image-overlay { border-radius: 0 var(--radius-xl) var(--radius-xl) 0; }
}

/* ===== FLOATING CARDS ===== */
.floating-cards {
    position: relative;
    margin-top: -48px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    z-index: 2;
}
.float-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 16px;
    transition: var(--transition);
}
.float-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}
.float-card-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: var(--plum-100);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--plum);
}
.float-card-2 .float-card-icon { background: var(--amber-100); color: var(--amber); }
.float-card-3 .float-card-icon { background: var(--plum-100); color: var(--plum); }
.float-card-num {
    display: block;
    font-weight: 800;
    font-size: 1rem;
    color: var(--gray-900);
}
.float-card-label {
    display: block;
    font-size: 0.82rem;
    color: var(--gray-500);
    font-weight: 600;
}

@media (max-width: 640px) {
    .floating-cards { grid-template-columns: 1fr; margin-top: -32px; }
    .float-card { flex-direction: column; text-align: center; }
}

/* ===== SERVICES ===== */
.services {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}
.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--plum), var(--amber));
    opacity: 0;
    transition: var(--transition);
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.service-card:hover::before { opacity: 1; }
.service-card-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.service-card h3 {
    font-family: 'Nunito', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--gray-900);
}
.service-card p {
    font-size: 0.95rem;
    color: var(--gray-500);
    line-height: 1.75;
}

@media (max-width: 640px) {
    .services { padding: 72px 0; }
    .services-grid { grid-template-columns: 1fr; }
}

/* ===== ABOUT ===== */
.about {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}
.about-image-stack {
    position: relative;
}
.about-img-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-img-secondary {
    position: absolute;
    bottom: -24px;
    right: -16px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--cream);
    max-width: 220px;
}
.about-img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-experience-badge {
    position: absolute;
    top: -16px;
    right: 24px;
    background: var(--plum);
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 16px 20px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}
.about-experience-badge .exp-num {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1;
}
.about-experience-badge .exp-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.85;
    margin-top: 4px;
}
.about-content { display: flex; flex-direction: column; gap: 20px; }
.about-text {
    font-size: 1.05rem;
    color: var(--gray-500);
    line-height: 1.85;
}
.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 4px;
}
.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--gray-700);
}
.highlight-icon {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-sm);
    background: var(--plum-50);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
@media (min-width: 900px) {
    .about-grid { grid-template-columns: 1fr 1.1fr; }
}
@media (max-width: 480px) {
    .about-highlights { grid-template-columns: 1fr; }
    .about-img-secondary { right: 8px; bottom: -16px; max-width: 160px; }
}

/* ===== INSURANCE ===== */
.insurance {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}
.insurance-card {
    background: linear-gradient(135deg, var(--plum) 0%, var(--plum-dark) 100%);
    border-radius: var(--radius-xl);
    padding: 56px 48px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.insurance-card::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
    top: -200px;
    right: -100px;
}
.insurance-card::after {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(217, 119, 6, 0.15);
    bottom: -100px;
    left: 10%;
}
.insurance-content { position: relative; z-index: 1; }
.insurance-content .section-tag {
    background: rgba(255,255,255,0.15);
    color: var(--amber-light);
}
.insurance-content .section-title { color: var(--white); }
.insurance-content .section-desc,
.insurance-content p {
    color: rgba(255,255,255,0.8);
    font-size: 1.05rem;
    line-height: 1.8;
}
.insurance-list {
    list-style: none;
    display: grid;
    gap: 12px;
    margin: 28px 0;
}
.insurance-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: var(--white);
    font-size: 1rem;
}
.insurance-list li svg { flex-shrink: 0; }
.insurance-note {
    font-size: 0.95rem !important;
    opacity: 0.75 !important;
}
.insurance-note a {
    color: var(--amber-light);
    text-decoration: underline;
}
.insurance-visual {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.insurance-visual-card {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    text-align: center;
    backdrop-filter: blur(8px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.4;
}
.insurance-visual-card svg { opacity: 0.9; }
.ivc-2 { background: rgba(217, 119, 6, 0.2); border-color: rgba(217, 119, 6, 0.3); }

@media (min-width: 768px) {
    .insurance-card { grid-template-columns: 1.3fr 1fr; }
}

/* ===== CTA ===== */
.cta {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}
.cta-card {
    background: linear-gradient(135deg, var(--amber) 0%, #b45309 100%);
    border-radius: var(--radius-xl);
    padding: 64px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-card::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    top: -250px;
    left: -100px;
}
.cta-card::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(124, 58, 237, 0.15);
    bottom: -150px;
    right: -50px;
}
.cta-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.08) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}
.cta-content { position: relative; z-index: 1; }
.cta-title {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    color: var(--white);
    margin-bottom: 16px;
}
.cta-desc {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    max-width: 560px;
    margin: 0 auto 32px;
    line-height: 1.8;
}
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* ===== FAQ ===== */
.faq {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    gap: 12px;
}
.faq-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-100);
    overflow: hidden;
    transition: var(--transition);
}
.faq-item:hover { border-color: var(--plum-200); }
.faq-item.active { border-color: var(--plum); box-shadow: 0 4px 20px rgba(124,58,237,0.1); }
.faq-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 28px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    gap: 16px;
}
.faq-q {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--gray-800);
}
.faq-item.active .faq-q { color: var(--plum); }
.faq-chevron {
    flex-shrink: 0;
    color: var(--gray-400);
    transition: var(--transition);
}
.faq-item.active .faq-chevron {
    transform: rotate(180deg);
    color: var(--plum);
}
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-a p {
    padding: 0 28px 20px;
    color: var(--gray-500);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* ===== CONTACT ===== */
.contact {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}
.contact-detail {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}
.contact-detail-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: var(--plum-50);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-detail strong {
    display: block;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gray-400);
    margin-bottom: 4px;
}
.contact-detail p {
    color: var(--gray-700);
    font-size: 0.95rem;
    line-height: 1.6;
}
.contact-detail a { color: var(--plum); font-weight: 600; }
.contact-detail a:hover { text-decoration: underline; }
.contact-desc {
    font-size: 1.05rem;
    color: var(--gray-500);
    margin-bottom: 32px;
    line-height: 1.8;
}
.contact-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-top: 8px;
}
.contact-form-wrap { display: flex; }
.contact-form-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px 36px;
    box-shadow: var(--shadow-lg);
    width: 100%;
    border: 1px solid var(--gray-100);
}
.contact-form-card h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}
.form-subtitle {
    color: var(--gray-500);
    font-size: 0.92rem;
    margin-bottom: 28px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-group {
    margin-bottom: 16px;
}
.form-group label {
    display: block;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--gray-700);
    margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-family: 'Nunito', sans-serif;
    font-size: 0.95rem;
    color: var(--gray-800);
    transition: var(--transition);
    background: var(--gray-50);
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--plum);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(124,58,237,0.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-success {
    display: none;
    text-align: center;
    padding: 40px 20px;
}
.form-success.show { display: block; }
.success-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--plum-50);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}
.form-success h4 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--gray-900);
}
.form-success p {
    color: var(--gray-500);
    font-size: 0.95rem;
}

@media (min-width: 900px) {
    .contact-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
    .form-row { grid-template-columns: 1fr; }
    .contact-form-card { padding: 28px 20px; }
}

/* ===== FOOTER ===== */
.footer {
    background: var(--gray-900);
    color: rgba(255,255,255,0.7);
    padding: 64px 0 0;
    position: relative;
    z-index: 1;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 48px;
}
.footer-brand p {
    font-size: 0.92rem;
    line-height: 1.7;
    margin-top: 12px;
    max-width: 280px;
}
.footer-links h4,
.footer-contact h4 {
    font-family: 'Nunito', sans-serif;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.4);
    margin-bottom: 16px;
    font-weight: 700;
}
.footer-links ul {
    list-style: none;
    display: grid;
    gap: 10px;
}
.footer-links a,
.footer-contact a {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.7);
}
.footer-links a:hover,
.footer-contact a:hover {
    color: var(--amber-light);
}
.footer-contact p {
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 8px;
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 24px 0;
    text-align: center;
}
.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
}
@media (min-width: 768px) {
    .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
}

/* ===== ANIMATIONS ===== */
[data-aos] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
[data-aos].aos-visible {
    opacity: 1;
    transform: translateY(0);
}
[data-aos].aos-visible:nth-child(2) { transition-delay: 0.1s; }
[data-aos].aos-visible:nth-child(3) { transition-delay: 0.2s; }
[data-aos].aos-visible:nth-child(4) { transition-delay: 0.3s; }
[data-aos].aos-visible:nth-child(5) { transition-delay: 0.4s; }
[data-aos].aos-visible:nth-child(6) { transition-delay: 0.5s; }
