/* ==============================================
   AZUMBA DRONE — Clean Minimalist Design
   ============================================== */

:root {
    --font: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --black: #1d1d1f;
    --gray-900: #333336;
    --gray-600: #6e6e73;
    --gray-400: #a1a1a6;
    --gray-200: #d2d2d7;
    --gray-100: #f5f5f7;
    --white: #ffffff;
    --accent: #0071e3;
    --container: 1200px;
    --pad: clamp(20px, 5vw, 80px);
    --section: clamp(100px, 12vw, 180px);
    --radius: 16px;
    --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 60px; }

body {
    font-family: var(--font);
    font-size: 1.0625rem;
    line-height: 1.6;
    color: var(--gray-600);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: var(--font);
    color: var(--black);
    line-height: 1.08;
    letter-spacing: -0.03em;
}

a { text-decoration: none; color: inherit; }
img, video { display: block; max-width: 100%; }

.container {
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: var(--pad);
}

.section-heading {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 48px;
}

/* ==============================================
   NAV
   ============================================== */
.nav {
    position: fixed;
    top: 0; left: 0; width: 100%;
    z-index: 100;
    height: 52px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid transparent;
    transition: background 0.3s, border-color 0.3s;
}

.nav.scrolled {
    background: rgba(255,255,255,0.85);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom-color: rgba(0,0,0,0.06);
}

.nav.scrolled .nav-logo {
    color: var(--black);
}

.nav.scrolled .nav-links a {
    color: var(--gray-600);
}

.nav.scrolled .nav-links a:hover {
    color: var(--black);
}

.nav.scrolled .nav-cta {
    background: var(--black) !important;
    color: var(--white) !important;
}

.nav.scrolled .nav-cta:hover {
    background: var(--gray-900) !important;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.nav-logo {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: -0.01em;
    transition: color 0.3s;
}

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

.nav-links a {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.7);
    transition: color 0.3s;
}

.nav-links a:hover { color: var(--white); }

.nav-cta {
    background: var(--white);
    color: var(--black) !important;
    padding: 6px 16px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.8125rem;
    transition: background 0.3s, color 0.3s !important;
}

.nav-cta:hover {
    background: rgba(255,255,255,0.85) !important;
    color: var(--black) !important;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 22px; height: 16px;
    position: relative;
    z-index: 101;
}

.nav-toggle span {
    display: block;
    width: 100%; height: 1.5px;
    background: var(--white);
    position: absolute; left: 0;
    transition: 0.3s;
}

.nav.scrolled .nav-toggle span {
    background: var(--black);
}

.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 7px; }
.nav-toggle span:nth-child(3) { bottom: 0; }

.nav-toggle.active span:nth-child(1) { top: 7px; transform: rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { bottom: 7px; transform: rotate(-45deg); }

.nav-overlay {
    position: fixed; inset: 0;
    background: var(--white);
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.nav-overlay.open { opacity: 1; pointer-events: all; }
.nav-overlay ul { list-style: none; text-align: center; }
.nav-overlay li { margin-bottom: 28px; }
.nav-overlay a { font-size: 2rem; font-weight: 600; color: var(--black); }

/* ==============================================
   HERO — Fullscreen Video Background
   ============================================== */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-video-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: none;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.45) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.55) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 52px;
}

.hero h1 {
    font-size: clamp(2.4rem, 6vw, 4.5rem);
    font-weight: 700;
    max-width: 900px;
    margin-inline: auto;
    line-height: 1.1;
    color: var(--white);
}

.hero-sub {
    font-size: clamp(0.95rem, 1.5vw, 1.15rem);
    color: rgba(255, 255, 255, 0.75);
    margin-top: 24px;
    line-height: 1.7;
    max-width: 640px;
    margin-inline: auto;
}

.hero-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 36px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    background: var(--white);
    color: var(--black);
    padding: 14px 30px;
    border-radius: 50px;
    font-family: var(--font);
    font-size: 0.9375rem;
    font-weight: 500;
    transition: background 0.3s, transform 0.3s;
}

.btn-primary:hover {
    background: rgba(255,255,255,0.9);
    transform: translateY(-1px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    color: var(--white);
    padding: 14px 30px;
    border-radius: 50px;
    font-family: var(--font);
    font-size: 0.9375rem;
    font-weight: 500;
    border: 1px solid rgba(255,255,255,0.3);
    transition: border-color 0.3s, background 0.3s;
}

.btn-secondary:hover {
    border-color: rgba(255,255,255,0.6);
    background: rgba(255,255,255,0.08);
}

/* Scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.hero-scroll span {
    display: block;
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255,255,255,0.35);
    border-radius: 12px;
    position: relative;
}

.hero-scroll span::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: rgba(255,255,255,0.6);
    border-radius: 2px;
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
    50% { opacity: 0.3; transform: translateX(-50%) translateY(10px); }
}

/* ==============================================
   TRUST BAR
   ============================================== */
.trust-bar {
    padding: clamp(32px, 5vw, 56px) 0;
    border-bottom: 1px solid var(--gray-200);
}

.trust-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.trust-item strong {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--black);
    letter-spacing: -0.01em;
}

.trust-item span {
    font-size: 0.75rem;
    color: var(--gray-400);
}

/* ==============================================
   CLIENTS
   ============================================== */
.clients {
    padding: clamp(36px, 5vw, 60px) 0;
    overflow: hidden;
}

.clients-track {
    display: flex;
    gap: 64px;
    animation: marquee 45s linear infinite;
}

.clients-track span {
    flex-shrink: 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gray-400);
    opacity: 0.45;
    white-space: nowrap;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ==============================================
   WORK — Asymmetric Grid
   ============================================== */
.work {
    padding: var(--section) 0;
}

.work-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding: 0 var(--pad);
    max-width: 1400px;
    margin-inline: auto;
}

.work-item {
    display: block;
    overflow: hidden;
    border-radius: var(--radius);
    position: relative;
}

.work-item.wide {
    grid-column: span 2;
}

.work-img {
    overflow: hidden;
    border-radius: var(--radius);
}

.work-img img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.work-item.wide .work-img img {
    height: 500px;
}

.work-item:hover .work-img img {
    transform: scale(1.03);
}

.work-info {
    padding: 16px 4px;
}

.work-info h3 {
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.work-info span {
    font-size: 0.78rem;
    color: var(--gray-400);
    line-height: 1.5;
}

/* ==============================================
   REEL
   ============================================== */
.reel {
    padding: 0 var(--pad);
    max-width: 1400px;
    margin: 0 auto var(--section);
}

.reel-wrap {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 16/9;
    background: var(--black);
    cursor: pointer;
}

.reel-wrap video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reel-play {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    transition: opacity 0.4s;
}

.play-circle {
    width: 72px; height: 72px;
    border-radius: 50%;
    background: rgba(255,255,255,0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
    box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}

.reel-wrap:hover .play-circle { transform: scale(1.08); }

.play-triangle {
    width: 0; height: 0;
    border-style: solid;
    border-width: 10px 0 10px 18px;
    border-color: transparent transparent transparent var(--black);
    margin-left: 3px;
}

.reel-label {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
}

.reel-wrap.playing .reel-play {
    opacity: 0;
    pointer-events: none;
}

/* ==============================================
   SERVICES — Clean List
   ============================================== */
.services {
    padding: var(--section) 0;
    background: var(--gray-100);
}

.services-intro {
    margin-top: -32px;
    margin-bottom: 48px;
    max-width: 600px;
    line-height: 1.6;
}

.service-list {
    max-width: 840px;
}

.service-row {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 0 20px;
    padding: 36px 0;
    border-bottom: 1px solid var(--gray-200);
    align-items: start;
}

.service-row:first-child {
    border-top: 1px solid var(--gray-200);
}

.service-num {
    font-size: 0.8125rem;
    color: var(--gray-400);
    padding-top: 4px;
}

.service-main h3 {
    font-size: 1.35rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.service-main p {
    line-height: 1.65;
    margin-bottom: 12px;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.service-tags span {
    font-size: 0.6875rem;
    font-weight: 500;
    color: var(--gray-600);
    background: var(--white);
    padding: 3px 10px;
    border-radius: 50px;
    letter-spacing: 0.01em;
}

/* ==============================================
   PROCESS — How it works
   ============================================== */
.process {
    padding: var(--section) 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.process-step {
    position: relative;
}

.process-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--black);
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.process-step h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.process-step p {
    line-height: 1.6;
    font-size: 0.9375rem;
}

/* ==============================================
   ABOUT — Editorial
   ============================================== */
.about {
    padding: var(--section) 0;
    background: var(--gray-100);
}

.about-image {
    padding: 0 var(--pad);
    max-width: 1400px;
    margin: 0 auto clamp(48px, 6vw, 80px);
}

.about-image img {
    width: 100%;
    height: clamp(320px, 45vw, 600px);
    object-fit: cover;
    border-radius: var(--radius);
}

.about-content {
    max-width: 720px;
}

.about-label {
    font-size: 0.8125rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.about-content h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.15;
}

.about-text {
    font-size: 1.0625rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.about-text:last-of-type {
    margin-bottom: 48px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.about-stats div {
    display: flex;
    flex-direction: column;
}

.about-stats strong {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--black);
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.about-stats span {
    font-size: 0.78rem;
    color: var(--gray-400);
    margin-top: 4px;
}

.about-list {
    list-style: none;
}

.about-list li {
    padding: 14px 0;
    border-bottom: 1px solid var(--gray-200);
    font-weight: 500;
    color: var(--black);
    font-size: 0.9375rem;
}

.about-list li:first-child {
    border-top: 1px solid var(--gray-200);
}

/* ==============================================
   TESTIMONIAL
   ============================================== */
.testimonial {
    padding: var(--section) 0;
    text-align: center;
}

.testimonial-inner {
    max-width: 800px;
    margin-inline: auto;
}

.testimonial-mark {
    font-family: Georgia, serif;
    font-size: clamp(80px, 12vw, 140px);
    line-height: 0.5;
    color: var(--gray-200);
    user-select: none;
    margin-bottom: 24px;
}

.testimonial-slides {
    position: relative;
    min-height: 200px;
}

.testimonial-slide {
    opacity: 0;
    position: absolute;
    top: 0; left: 0; right: 0;
    transition: opacity 0.5s;
    pointer-events: none;
}

.testimonial-slide.active {
    opacity: 1;
    position: relative;
    pointer-events: all;
}

.testimonial-slide blockquote {
    font-size: clamp(1.15rem, 2.5vw, 1.6rem);
    font-style: italic;
    color: var(--black);
    line-height: 1.5;
    font-weight: 400;
}

.t-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--black);
    margin-top: 28px;
}

.t-role {
    font-size: 0.8125rem;
    color: var(--gray-600);
    margin-top: 2px;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.testimonial-dots button {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--gray-200);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s;
}

.testimonial-dots button.active { background: var(--black); }

/* ==============================================
   PRICING — Clean Cards
   ============================================== */
.pricing {
    padding: var(--section) 0;
    background: var(--gray-100);
}

.pricing-sub {
    color: var(--gray-600);
    margin-top: -32px;
    margin-bottom: 48px;
}

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

.price-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px 32px;
    position: relative;
}

.price-card.featured {
    background: var(--black);
    color: var(--gray-400);
}

.price-card.featured .price-name,
.price-card.featured .price-amount {
    color: var(--white);
}

.price-card.featured .price-link {
    color: var(--white);
}

.price-badge {
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent);
    margin-bottom: 8px;
}

.price-card.featured .price-badge {
    color: var(--accent);
}

.price-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--black);
}

.price-amount {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 700;
    color: var(--black);
    letter-spacing: -0.03em;
    margin: 8px 0 4px;
    line-height: 1.1;
}

.price-note {
    font-size: 0.8125rem;
    color: var(--gray-400);
    margin-bottom: 28px;
}

.price-card ul {
    list-style: none;
    margin-bottom: 28px;
}

.price-card li {
    font-size: 0.875rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

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

.price-link {
    font-size: 0.875rem;
    color: var(--accent);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap 0.3s;
}

.price-link:hover { gap: 8px; }

.pricing-note {
    margin-top: 32px;
    font-size: 0.8125rem;
    color: var(--gray-400);
    line-height: 1.6;
    max-width: 680px;
}

.pricing-note a {
    color: var(--accent);
}

/* ==============================================
   CONTACT
   ============================================== */
.contact {
    padding: var(--section) 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 5vw, 80px);
}

.contact-info h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 16px;
}

.contact-info > p { margin-bottom: 40px; }
.contact-details { margin-bottom: 32px; }
.contact-details p { margin-bottom: 6px; }
.contact-details a { color: var(--accent); }

.contact-coverage h4 {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 8px;
}

.contact-coverage p {
    font-size: 0.875rem;
    color: var(--gray-400);
    line-height: 1.5;
}

.contact-form .form-group { margin-bottom: 24px; }

.contact-form label {
    display: block;
    font-size: 0.75rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 8px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 0;
    border: none;
    border-bottom: 1px solid var(--gray-200);
    background: transparent;
    font-family: var(--font);
    font-size: 1rem;
    color: var(--black);
    transition: border-color 0.3s;
    border-radius: 0;
    -webkit-appearance: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { outline: none; border-bottom-color: var(--black); }

.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--gray-400); }

.contact-form textarea { resize: vertical; min-height: 80px; }
.contact-form select { cursor: pointer; color: var(--gray-400); }

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

.btn-submit {
    background: var(--black);
    color: var(--white);
    padding: 14px 36px;
    border-radius: 50px;
    font-family: var(--font);
    font-size: 0.875rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover { background: var(--gray-900); }

/* ==============================================
   FOOTER
   ============================================== */
.footer {
    padding: 56px 0 36px;
    border-top: 1px solid var(--gray-200);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo { font-size: 1rem; font-weight: 600; color: var(--black); margin-bottom: 10px; }
.footer-about p { font-size: 0.8125rem; line-height: 1.6; margin-bottom: 12px; }
.footer-social { font-size: 0.8125rem; color: var(--gray-400); }
.footer-social a { color: var(--gray-400); transition: color 0.3s; }
.footer-social a:hover { color: var(--black); }

.footer-col h4 { font-size: 0.75rem; font-weight: 600; color: var(--black); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 14px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 7px; }
.footer-col a { font-size: 0.8125rem; color: var(--gray-600); transition: color 0.3s; }
.footer-col a:hover { color: var(--black); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid var(--gray-200);
    font-size: 0.75rem;
    color: var(--gray-400);
}

.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: var(--gray-400); }
.footer-legal a:hover { color: var(--gray-600); }

/* ==============================================
   INNER PAGES — Location, Service, Blog, FAQ
   ============================================== */
.location-hero,
.service-hero,
.blog-hero,
.faq-hero {
    padding: clamp(120px, 15vw, 200px) 0 clamp(60px, 8vw, 100px);
    background: var(--gray-100);
}

.location-hero h1,
.service-hero h1,
.blog-hero h1,
.faq-hero h1 {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 20px;
}

.location-intro,
.service-intro,
.blog-intro {
    font-size: 1.0625rem;
    line-height: 1.7;
    max-width: 720px;
    color: var(--gray-600);
}

.location-content,
.service-content,
.blog-content,
.faq-content {
    padding: clamp(60px, 8vw, 100px) 0 var(--section);
}

.location-content h2,
.service-content h2 {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 700;
    margin-bottom: 16px;
    margin-top: 48px;
}

.location-content h2:first-child,
.service-content h2:first-child {
    margin-top: 0;
}

.location-content p,
.service-content p {
    line-height: 1.7;
    max-width: 720px;
    margin-bottom: 16px;
}

.location-content .about-list,
.service-content .about-list {
    max-width: 720px;
    margin-bottom: 24px;
}

.location-cta,
.service-cta {
    margin-top: 48px;
    padding-top: 48px;
    border-top: 1px solid var(--gray-200);
}

/* Blog listing */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    transition: transform 0.3s var(--ease), box-shadow 0.3s;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.blog-card-body {
    padding: 28px 24px;
}

.blog-card-meta {
    font-size: 0.75rem;
    color: var(--gray-400);
    margin-bottom: 10px;
}

.blog-card-body h2 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.3;
}

.blog-card-body p {
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.blog-card-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--accent);
}

/* Blog article */
.blog-article {
    max-width: 720px;
}

.blog-article-meta {
    font-size: 0.8125rem;
    color: var(--gray-400);
    margin-bottom: 32px;
}

.blog-article h2 {
    font-size: clamp(1.3rem, 2.5vw, 1.75rem);
    font-weight: 700;
    margin: 40px 0 16px;
}

.blog-article p {
    line-height: 1.75;
    margin-bottom: 20px;
}

.blog-article ul {
    list-style: none;
    margin: 0 0 24px;
}

.blog-article ul li {
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-200);
    font-size: 0.9375rem;
    color: var(--black);
}

.blog-article ul li:first-child {
    border-top: 1px solid var(--gray-200);
}

.blog-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    color: var(--gray-400);
    margin-bottom: 24px;
    transition: color 0.3s;
}

.blog-back:hover { color: var(--black); }

/* FAQ */
.faq-list {
    max-width: 720px;
}

.faq-item {
    border-bottom: 1px solid var(--gray-200);
}

.faq-item:first-child {
    border-top: 1px solid var(--gray-200);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--black);
    text-align: left;
    gap: 16px;
}

.faq-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    position: relative;
    transition: transform 0.3s;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: var(--gray-400);
    transition: transform 0.3s;
}

.faq-icon::before {
    width: 100%;
    height: 1.5px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.faq-icon::after {
    width: 1.5px;
    height: 100%;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}

.faq-item.open .faq-icon::after {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease), padding 0.4s;
}

.faq-item.open .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding-bottom: 24px;
    line-height: 1.7;
    max-width: 640px;
}

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

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