@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@500;700&display=swap');

:root {
    color-scheme: dark;
    --bg-dark: #070a08;
    --bg-surface: #0e1410;
    --bg-card: rgba(18, 25, 20, 0.65);
    --bg-card-hover: rgba(26, 37, 30, 0.85);
    --border-subtle: rgba(255, 255, 255, 0.08);
    --border-glow: rgba(74, 222, 128, 0.35);
    --emerald-primary: #10b981;
    --emerald-glow: #34d399;
    --emerald-neon: #4ade80;
    --accent-lime: #c3f078;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --text-subtle: #64748b;
    --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'Space Grotesk', monospace;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
    background-color: var(--bg-dark);
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    position: relative;
}

/* Background Aurora & Grid */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100vh;
    background: 
        radial-gradient(circle at 50% -10%, rgba(16, 185, 129, 0.16) 0%, transparent 60%),
        radial-gradient(circle at 15% 35%, rgba(195, 240, 120, 0.07) 0%, transparent 45%),
        radial-gradient(circle at 85% 65%, rgba(16, 185, 129, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: -2;
}

body::after {
    content: '';
    position: fixed;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 32px 32px;
    mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, #000 30%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, #000 30%, transparent 100%);
    pointer-events: none;
    z-index: -1;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.wrap {
    width: min(1220px, calc(100% - 48px));
    margin: 0 auto;
}

/* Typography Helpers */
h1, h2, h3, h4, .brand {
    font-family: var(--font-heading);
    color: #ffffff;
    font-weight: 700;
    letter-spacing: -0.025em;
}

h2 {
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.15;
}

h3 {
    font-size: 20px;
    line-height: 1.35;
}

p {
    color: var(--text-muted);
}

.gradient-text {
    background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 50%, var(--emerald-glow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--emerald-neon);
    margin-bottom: 16px;
    background: rgba(74, 222, 128, 0.1);
    border: 1px solid rgba(74, 222, 128, 0.2);
    padding: 6px 14px;
    border-radius: 999px;
    width: fit-content;
}

.status-dot {
    width: 7px;
    height: 7px;
    background: var(--emerald-neon);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--emerald-neon);
    animation: pulseGlow 2s infinite ease-in-out;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.85); }
}

/* Header & Navigation */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(8, 11, 9, 0.78);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    transition: background 0.3s;
}

.navigation {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 800;
    color: #ffffff;
}

.brand-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.25) 0%, rgba(195, 240, 120, 0.15) 100%);
    border: 1px solid rgba(74, 222, 128, 0.3);
    color: var(--emerald-neon);
    font-size: 20px;
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.2);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    font-size: 14px;
    font-weight: 500;
    color: #94a3b8;
}

.nav-links a:hover {
    color: #ffffff;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.login {
    font-size: 14px;
    font-weight: 600;
    color: #cbd5e1;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 8px;
    border: 1px solid transparent;
}

.login:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

/* Premium Buttons */
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    font-weight: 700;
    font-size: 14px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.button:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.4);
    color: #042f2e;
}

.button.small {
    min-height: 40px;
    padding: 8px 18px;
    font-size: 13px;
    border-radius: 8px;
}

.button.secondary {
    background: rgba(255, 255, 255, 0.05);
    color: #f1f5f9;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: none;
}

.button.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.25);
    color: #ffffff;
    transform: translateY(-2px);
}

/* Hero Section (Original Restaurado com Toque Premium) */
.hero {
    position: relative;
    isolation: isolate;
    min-height: 640px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #080c0a;
}

.hero-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 38%;
    z-index: -3;
    display: block;
}

.hero-shade {
    position: absolute;
    inset: 0;
    z-index: -2;
    background: 
        linear-gradient(90deg, rgba(8, 12, 10, 0.96) 0%, rgba(8, 12, 10, 0.88) 32%, rgba(8, 12, 10, 0.35) 66%, rgba(8, 12, 10, 0.08) 100%),
        linear-gradient(0deg, rgba(8, 12, 10, 0.75) 0%, transparent 35%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 620px;
    padding: 60px 0;
    display: flex;
    flex-direction: column;
}

.photo-caption {
    position: absolute;
    bottom: 35px;
    right: max(40px, calc((100vw - 1220px) / 2));
    border-left: 2px solid var(--emerald-neon);
    padding: 8px 16px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
    background: rgba(8, 12, 10, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 0 8px 8px 0;
    z-index: 2;
}

.photo-caption span {
    display: block;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--emerald-neon);
    margin-bottom: 2px;
}

.photo-caption strong {
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
}

.hero h1 {
    font-size: clamp(38px, 4.8vw, 60px);
    line-height: 1.08;
    margin-bottom: 22px;
}

.hero p {
    font-size: 17px;
    line-height: 1.7;
    color: #94a3b8;
    max-width: 540px;
    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #cbd5e1;
    padding: 10px 16px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-subtle);
}

.text-link:hover {
    color: var(--emerald-neon);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(74, 222, 128, 0.3);
}

.hero-badges {
    display: flex;
    align-items: center;
    gap: 22px;
    font-size: 13px;
    color: #94a3b8;
    flex-wrap: wrap;
}

.hero-badges span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.hero-badges i {
    color: var(--emerald-neon);
    font-size: 15px;
}

/* Hero Interactive Mockup */
.preview-section {
    padding: 70px 0 90px;
    position: relative;
}

.preview-center-mockup {
    max-width: 680px;
    margin: 0 auto;
    position: relative;
    perspective: 1000px;
}

.hero-mockup-wrapper {
    position: relative;
    perspective: 1000px;
}

.mockup-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle at 50% 50%, rgba(16, 185, 129, 0.25) 0%, transparent 70%);
    filter: blur(40px);
    z-index: 0;
    pointer-events: none;
}

.dashboard-card {
    position: relative;
    z-index: 1;
    background: rgba(15, 23, 18, 0.85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    padding: 20px;
    box-shadow: 
        0 30px 60px -15px rgba(0, 0, 0, 0.8),
        0 0 0 1px rgba(74, 222, 128, 0.15);
    transition: transform 0.4s ease;
}

.dashboard-card:hover {
    transform: translateY(-4px);
}

.mockup-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 18px;
}

.mockup-dots {
    display: flex;
    gap: 7px;
}

.mockup-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.mockup-dots span:nth-child(1) { background: #ef4444; }
.mockup-dots span:nth-child(2) { background: #eab308; }
.mockup-dots span:nth-child(3) { background: #10b981; }

.mockup-title {
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 6px;
}

.mockup-title i {
    color: var(--emerald-neon);
}

.mockup-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 18px;
}

.mini-stat {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 12px 14px;
}

.mini-stat-label {
    font-size: 11px;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.mini-stat-value {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.mini-stat-trend {
    font-size: 11px;
    color: var(--emerald-neon);
    font-weight: 600;
}

.mockup-agenda-preview {
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 14px;
}

.preview-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    font-weight: 700;
    color: #cbd5e1;
    margin-bottom: 12px;
}

.preview-live-badge {
    background: rgba(16, 185, 129, 0.15);
    color: var(--emerald-neon);
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 6px;
    border: 1px solid rgba(74, 222, 128, 0.2);
}

.pet-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    font-size: 13px;
}

.pet-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.pet-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pet-avatar {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(16, 185, 129, 0.15);
    color: var(--emerald-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.pet-name {
    font-weight: 600;
    color: #ffffff;
}

.pet-service {
    font-size: 11px;
    color: #64748b;
}

.pet-badge {
    font-size: 11px;
    padding: 3px 8px;
    border-radius: 6px;
    font-weight: 600;
}

.badge-progress {
    background: rgba(234, 179, 8, 0.15);
    color: #facc15;
    border: 1px solid rgba(234, 179, 8, 0.25);
}

.badge-done {
    background: rgba(16, 185, 129, 0.15);
    color: var(--emerald-neon);
    border: 1px solid rgba(74, 222, 128, 0.25);
}

/* Floating Tag on Mockup */
.floating-tag {
    position: absolute;
    bottom: -15px;
    right: -15px;
    background: rgba(18, 25, 20, 0.95);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(74, 222, 128, 0.4);
    border-radius: 12px;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    z-index: 2;
    font-size: 12px;
}

.floating-tag i {
    color: #facc15;
    font-size: 16px;
}

/* Workflow Ticker Bar */
.workflow {
    background: rgba(14, 20, 16, 0.7);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    backdrop-filter: blur(12px);
}

.workflow-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 74px;
    padding: 12px 0;
}

.workflow-pills {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.workflow-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    color: #e2e8f0;
    transition: all 0.2s;
}

.workflow-item:hover {
    border-color: rgba(74, 222, 128, 0.3);
    background: rgba(16, 185, 129, 0.08);
    color: #ffffff;
    transform: translateY(-2px);
}

.workflow-item i {
    color: var(--emerald-neon);
    font-size: 16px;
}

/* Resources / Features Section */
.section {
    padding: 100px 0;
    position: relative;
}

.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 56px;
}

.section-heading > p {
    max-width: 440px;
    font-size: 16px;
    line-height: 1.7;
}

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

.resource {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-subtle);
    border-radius: 18px;
    padding: 34px 30px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.resource::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(74, 222, 128, 0.4), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.resource:hover {
    background: var(--bg-card-hover);
    border-color: rgba(74, 222, 128, 0.3);
    transform: translateY(-6px);
    box-shadow: 
        0 20px 40px -15px rgba(0, 0, 0, 0.7),
        0 0 35px rgba(16, 185, 129, 0.12);
}

.resource:hover::before {
    opacity: 1;
}

.resource-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.icon-box {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(195, 240, 120, 0.05) 100%);
    border: 1px solid rgba(74, 222, 128, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--emerald-neon);
    font-size: 24px;
    transition: all 0.3s;
}

.resource:hover .icon-box {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.3) 0%, rgba(195, 240, 120, 0.15) 100%);
    transform: scale(1.08);
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
}

.resource-number {
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.03);
    padding: 4px 10px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.resource h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #ffffff;
}

.resource p {
    font-size: 14px;
    line-height: 1.7;
    color: #94a3b8;
}

/* Metrics Section (Stats) */
.metrics-section {
    padding: 40px 0 80px;
}

.metrics-box {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.08) 0%, rgba(14, 20, 16, 0.6) 100%);
    border: 1px solid rgba(74, 222, 128, 0.2);
    border-radius: 24px;
    padding: 40px 50px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
    position: relative;
    backdrop-filter: blur(16px);
}

.metric-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.metric-value {
    font-size: clamp(32px, 3.5vw, 46px);
    font-weight: 800;
    color: #ffffff;
    font-family: var(--font-heading);
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #ffffff 0%, var(--emerald-glow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.metric-label {
    font-size: 13px;
    font-weight: 600;
    color: #94a3b8;
}

/* Pricing Section */
.pricing {
    background: transparent;
    color: var(--text-main);
    padding: 100px 0;
    position: relative;
}

.center-heading {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 60px;
}

.center-heading p {
    font-size: 16px;
    margin-top: 16px;
}

.plan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
    gap: 30px;
    align-items: stretch;
}

.plan {
    background: rgba(14, 20, 16, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: 38px 32px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.plan:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 25px 50px -15px rgba(0, 0, 0, 0.7);
}

.plan.featured {
    background: linear-gradient(180deg, rgba(16, 185, 129, 0.12) 0%, rgba(14, 20, 16, 0.85) 100%);
    border-color: rgba(74, 222, 128, 0.4);
    box-shadow: 
        0 25px 60px -15px rgba(0, 0, 0, 0.8),
        0 0 40px rgba(16, 185, 129, 0.15);
}

.plan.featured:hover {
    border-color: var(--emerald-neon);
    box-shadow: 
        0 30px 70px -15px rgba(0, 0, 0, 0.9),
        0 0 50px rgba(16, 185, 129, 0.25);
}

.plan-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #64748b;
    margin-bottom: 18px;
}

.featured .plan-label {
    color: var(--emerald-neon);
}

.plan h3 {
    font-size: 26px;
    margin-bottom: 8px;
}

.plan-description {
    font-size: 14px;
    color: #94a3b8;
    min-height: 50px;
}

.price-box {
    margin: 24px 0 28px;
}

.price {
    font-size: 42px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    letter-spacing: -0.03em;
}

.period {
    display: block;
    font-size: 13px;
    color: #64748b;
    margin-top: 6px;
}

.featured .period {
    color: #94a3b8;
}

.included {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #94a3b8;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.plan ul {
    list-style: none;
    margin-top: 18px;
    display: grid;
    gap: 14px;
    font-size: 14px;
}

.plan li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #cbd5e1;
}

.plan li i {
    color: var(--emerald-neon);
    font-size: 16px;
    flex-shrink: 0;
}

/* FAQ Section */
.faq-layout {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 70px;
}

details {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-subtle);
    border-radius: 14px;
    margin-bottom: 14px;
    transition: all 0.2s;
}

details:hover {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.04);
}

details[open] {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(74, 222, 128, 0.3);
}

summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    cursor: pointer;
    padding: 22px 24px;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
}

summary::-webkit-details-marker {
    display: none;
}

summary i {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--emerald-neon);
    font-size: 14px;
    transition: transform 0.25s ease;
    flex-shrink: 0;
}

details[open] summary i {
    transform: rotate(45deg);
    background: rgba(74, 222, 128, 0.15);
}

details p {
    padding: 0 24px 22px;
    font-size: 15px;
    line-height: 1.7;
    color: #94a3b8;
}

details p a {
    color: var(--emerald-neon);
    text-decoration: underline;
}

/* Closing CTA Banner */
.closing {
    padding: 80px 0;
}

.closing-inner {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.18) 0%, rgba(14, 20, 16, 0.95) 100%);
    border: 1px solid rgba(74, 222, 128, 0.3);
    border-radius: 28px;
    padding: 60px 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    box-shadow: 
        0 30px 60px -20px rgba(0, 0, 0, 0.8),
        0 0 50px rgba(16, 185, 129, 0.12);
    position: relative;
    overflow: hidden;
}

.closing-inner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(74, 222, 128, 0.15) 0%, transparent 70%);
    filter: blur(40px);
    pointer-events: none;
}

.closing h2 {
    font-size: clamp(28px, 3.5vw, 40px);
    margin-bottom: 10px;
}

/* Footer */
footer {
    border-top: 1px solid var(--border-subtle);
    padding: 40px 0;
    background: rgba(6, 9, 7, 0.95);
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.footer-inner > span {
    font-size: 13px;
    color: #64748b;
}

.footer-inner > div {
    display: flex;
    gap: 24px;
    font-size: 14px;
    color: #94a3b8;
}

.footer-inner a:hover {
    color: var(--emerald-neon);
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
    .hero-grid-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero p {
        max-width: 100%;
    }
    .resource-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .metrics-box {
        grid-template-columns: repeat(2, 1fr);
        padding: 30px;
    }
    .faq-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .navigation {
        min-height: 70px;
    }
    .nav-links {
        display: none;
    }
    .section-heading {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .resource-grid {
        grid-template-columns: 1fr;
    }
    .metrics-box {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        padding: 24px;
    }
    .closing-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 40px 30px;
    }
    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .photo-caption {
        display: none;
    }
}
