:root {
    --primary: #1e3a5f;
    --primary-light: #2d5a87;
    --primary-dark: #0f2744;
    --accent: #0891b2;
    --accent-light: #22d3ee;
    --accent-dark: #0e7490;
    --bg-white: #fefefe;
    --bg-light: #f7f8f9;
    --bg-cream: #f0f4f5;
    --bg-dark: #0a1628;
    --text-main: #2d3748;
    --text-light: #64748b;
    --text-dark: #1a202c;
    --container: 1200px;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --border-subtle: rgba(30, 58, 95, 0.1);
    --shadow-soft: 0 4px 20px rgba(10, 22, 40, 0.06);
    --shadow-medium: 0 8px 40px rgba(10, 22, 40, 0.1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
ul, ol, li { list-style: none; padding: 0; margin: 0; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
img { display: block; width: 100%; height: auto; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--bg-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: var(--text-dark);
}
h1 { font-size: clamp(2.75rem, 6vw, 4.5rem); font-weight: 400; }
h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1.25rem; font-weight: 500; }
h3 { font-size: 1.35rem; font-weight: 600; font-family: var(--font-body); }

.text-center { text-align: center; }
.section-intro { max-width: 700px; margin: 0 auto 2rem auto; }

.container { width: 90%; max-width: var(--container); margin: 0 auto; }
.padding-y { padding: 2.5rem 0; }
.padding-y-lg { padding: 4rem 0; }

.bg-white { background-color: var(--bg-white); }
.bg-cream { background-color: var(--bg-cream); }
.bg-contrast { background-color: var(--bg-light); }
.bg-dark { background-color: var(--bg-dark); color: var(--text-white); }

.bg-dark h2, .bg-dark h3, .bg-dark p { color: var(--text-white); }
.bg-dark .text-muted { color: var(--text-light); }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-weight: 500;
    font-size: 0.875rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--primary);
    color: white;
    border: 1px solid var(--primary);
}
.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(30, 58, 95, 0.25);
}

.btn-white {
    background: white;
    color: var(--primary);
    border: 1px solid white;
}
.btn-white:hover {
    background: var(--bg-cream);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.btn-outline-white {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.5);
    color: white;
}
.btn-outline-white:hover {
    background: rgba(255,255,255,0.1);
    border-color: white;
    transform: translateY(-2px);
}

.btn-accent {
    background: var(--accent);
    color: white;
    border: 1px solid var(--accent);
}
.btn-accent:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(8, 145, 178, 0.3);
}

#navbar {
    position: sticky;
    top: 0;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    z-index: 1000;
}

.nav-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.nav-logo {
    flex-shrink: 0;
}

.logo-img {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link {
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-light);
    border-radius: 0;
    transition: all 0.2s ease;
    letter-spacing: 0.01em;
}

.nav-link:hover {
    color: var(--text-dark);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-nav-secondary {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #4b5563;
    transition: color 0.15s ease;
}

.btn-nav-secondary i {
    font-size: 0.8rem;
    color: var(--primary);
}

.btn-nav-secondary:hover {
    color: #111827;
}

.btn-nav-primary {
    padding: 0.7rem 1.5rem;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: white;
    background: var(--primary);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-nav-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(30, 58, 95, 0.3);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: #374151;
    border-radius: 2px;
    transition: all 0.25s ease;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-bottom: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-medium);
    padding: 0.75rem 0;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.25s ease;
    z-index: 999;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-link {
    padding: 0.875rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-main);
    transition: background 0.15s ease;
}

.mobile-link:hover {
    background: var(--bg-cream);
}

.mobile-link.accent {
    color: var(--accent);
    font-weight: 600;
}

.mobile-cta {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    margin-top: 0.5rem;
    border-top: 1px solid var(--border-subtle);
}

.mobile-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-main);
    background: var(--bg-cream);
    border-radius: 0;
}

.mobile-phone i {
    color: var(--accent);
    font-size: 0.8rem;
}

.mobile-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: white;
    background: var(--primary);
    border-radius: 2px;
}

.hero {
    min-height: 80vh;
    position: relative;
    display: flex;
    align-items: center;
    color: white;
}

.hero h1,
.hero h2,
.hero p {
    color: white;
}

.hero .hero-subtitle {
    color: var(--accent);
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 640px;
}

.hero-subtitle {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
    font-weight: 500;
}

.hero-desc {
    color: rgba(255,255,255,0.85);
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 32px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #e2e8f0 10%, #e2e8f0 90%, transparent 100%);
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 1.5rem;
    position: relative;
}

.step-icon {
    width: 48px;
    height: 48px;
    background: var(--primary);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.process-step:hover .step-icon {
    background: var(--accent);
}

.step-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: transparent;
    border: 1px solid var(--border-subtle);
    color: var(--accent);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 0;
    margin-bottom: 0.5rem;
}

.step-content h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-family: var(--font-body);
}

.step-content p {
    font-size: 0.95rem;
    color: var(--text-main);
    line-height: 1.6;
    max-width: 240px;
    margin: 0 auto;
}

.process-step.reveal:nth-child(1) { transition-delay: 0s; }
.process-step.reveal:nth-child(2) { transition-delay: 0.1s; }
.process-step.reveal:nth-child(3) { transition-delay: 0.2s; }
.process-step.reveal:nth-child(4) { transition-delay: 0.3s; }

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 200px);
    gap: 1.25rem;
}

.bento-item {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    cursor: pointer;
    background: var(--bg-dark);
}

.bento-large {
    grid-column: span 2;
    grid-row: span 2;
}

.bento-tall {
    grid-row: span 2;
}

.bento-wide {
    grid-column: span 2;
}

.bento-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.bento-item:hover img {
    transform: scale(1.1);
    filter: brightness(0.7);
}

.bento-overlay {
    position: absolute;
    inset: 0;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(to top, rgba(2, 6, 23, 0.9) 0%, rgba(2, 6, 23, 0.3) 40%, transparent 100%);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.bento-item:hover .bento-overlay {
    opacity: 1;
    transform: translateY(0);
}

.bento-tag {
    display: inline-block;
    width: fit-content;
    padding: 0.25rem 0.6rem;
    background: var(--accent);
    color: white;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 0;
    margin-bottom: 0.5rem;
}

.bento-overlay h4 {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    font-family: var(--font-body);
}

.bento-large .bento-overlay h4 {
    font-size: 1.5rem;
}

.bento-item::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid var(--accent);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
    pointer-events: none;
}

.bento-item:hover::before {
    opacity: 1;
}

footer {
    background: var(--bg-dark);
    color: #94a3b8;
}

.footer-cta {
    position: relative;
    padding: 3rem 0;
    overflow: hidden;
}

.footer-cta-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.92) 0%, rgba(30, 58, 95, 0.88) 100%);
}

.footer-cta-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.footer-cta-text h3 {
    color: white;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.footer-cta-text p {
    color: rgba(255,255,255,0.9);
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
    max-width: 500px;
}

.footer-cta-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.footer-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    background: white;
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 0;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.footer-cta-btn:hover {
    background: var(--bg-cream);
    transform: translateY(-2px);
}

.footer-cta-btn i {
    font-size: 0.85rem;
}

.footer-cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    padding: 0.875rem 1.5rem;
    background: transparent;
    color: white;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 0;
    border: 1px solid rgba(255,255,255,0.3);
    transition: all 0.3s ease;
    white-space: nowrap;
}

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

.contact-section {
    padding: 2.5rem 0;
    background: var(--bg-cream);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    font-size: 2rem;
    color: #111827;
    margin-bottom: 1rem;
}

.contact-info > p {
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    background: var(--bg-white);
    padding: 1.5rem;
    border: 1px solid rgba(0,0,0,0.06);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-item:hover {
    border-color: var(--accent);
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.contact-item i {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-cream);
    border: none;
    color: var(--primary);
    border-radius: 0;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.35rem;
}

.contact-item a,
.contact-item span {
    color: var(--text-dark);
    font-size: 1.05rem;
    font-weight: 500;
}

.contact-item a:hover {
    color: var(--accent);
}

.contact-map {
    margin-top: 1.5rem;
}

.contact-map iframe {
    width: 100%;
    height: 180px;
    border: 0;
    border-radius: 0;
}

.contact-form {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 0;
    border: 1px solid var(--border-subtle);
}

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

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.4rem;
    letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    border: 1px solid var(--border-subtle);
    border-radius: 0;
    background: white;
    transition: border-color 0.2s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-full {
    width: 100%;
}

.footer-main {
    padding: 3rem 0;
    background: var(--bg-dark);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 3rem;
}

.footer-brand {
    max-width: 280px;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    margin-bottom: 1.25rem;
    filter: brightness(0) invert(1);
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #94a3b8;
}

.footer-col h4 {
    color: white;
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 1.5rem;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-col a {
    color: #94a3b8;
    font-size: 0.9rem;
    transition: color 0.15s ease;
}

.footer-col a:hover {
    color: white;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #94a3b8;
    font-size: 0.9rem;
    transition: color 0.15s ease;
}

.footer-contact-item i {
    width: 18px;
    color: white;
    font-size: 0.85rem;
}

.footer-contact-item:hover {
    color: white;
}

.footer-bottom {
    padding: 1.5rem 0;
    background: #050c18;
    border-top: 1px solid rgba(255,255,255,0.05);
}

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

.footer-bottom p {
    font-size: 0.8rem;
    color: #9ca3af;
}

.footer-bottom a {
    font-size: 0.8rem;
    color: #9ca3af;
    transition: color 0.15s ease;
}

.footer-bottom a:hover {
    color: white;
}

.top-bar {
    background: var(--primary);
    padding: 0.6rem 1rem;
    text-align: center;
    border-bottom: none;
}

.top-bar p {
    color: rgba(255,255,255,0.9);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    margin: 0;
}

.top-bar a {
    color: var(--accent-light);
    font-weight: 500;
    transition: color 0.15s ease;
}

.top-bar a:hover {
    color: white;
    text-decoration: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: var(--bg-white);
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    border: 1px solid var(--border-subtle);
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-medium);
}

.service-card-img {
    height: 240px;
    overflow: hidden;
}

.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover .service-card-img img {
    transform: scale(1.05);
}

.service-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    margin: 0 0 0.75rem;
    color: var(--text-dark);
}

.service-card p {
    color: #6b7280;
    margin-bottom: 1.25rem;
    line-height: 1.6;
    font-size: 0.9rem;
    flex: 1;
}

.service-links {
    display: flex;
    gap: 0.75rem;
    margin-top: auto;
}

.service-link-primary {
    padding: 0.7rem 1.5rem;
    background: var(--primary);
    color: white;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-link-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.service-link-secondary {
    padding: 0.7rem 1.5rem;
    background: transparent;
    color: var(--text-main);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: 1px solid var(--border-subtle);
    border-radius: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-link-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.service-card-wide {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: 380px 1fr;
    background: var(--bg-white);
    border-radius: 0;
    overflow: hidden;
    border: 1px solid var(--border-subtle);
}

.service-wide-img {
    position: relative;
    min-height: 320px;
}

.service-wide-img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-wide-content {
    padding: 2.5rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-wide-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.service-wide-content > p {
    color: #4b5563;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2rem;
    margin-bottom: 2rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: #374151;
    font-size: 0.95rem;
    font-weight: 500;
}

.service-features i {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ecfdf5;
    color: #10b981;
    font-size: 0.65rem;
    border-radius: 50%;
    flex-shrink: 0;
}

.cta-banner {
    position: relative;
    padding: 3rem 0;
    overflow: hidden;
}

.mt-1 { margin-top: 1rem; }
.mt-1-5 { margin-top: 1.5rem; }
.mt-2 { margin-top: 2rem; }

.cta-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.92) 0%, rgba(30, 58, 95, 0.88) 100%);
}

.cta-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
    max-width: 640px;
    margin: 0 auto;
}

.cta-text h2 {
    color: white;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.cta-text p {
    color: rgba(255,255,255,0.85);
    font-size: 1.1rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.cta-buttons .btn {
    padding: 1rem 2rem;
    font-size: 0.95rem;
}

.cta-buttons .btn-white {
    background: white;
    color: #111827;
}

.cta-buttons .btn-white:hover {
    background: #f3f4f6;
}

.cta-buttons .btn-outline-white {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
}

.cta-buttons .btn-outline-white:hover {
    border-color: rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.1);
}

.btn i {
    margin-right: 0.5rem;
}

.section-label {
    display: inline-block;
    color: var(--accent);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.7rem;
    margin-bottom: 0.75rem;
}

.stats-section {
    background: var(--bg-cream);
    padding: 0;
    position: relative;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.stat-item {
    text-align: center;
    padding: 2rem 1.5rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: var(--border-subtle);
}

.stat-item:last-child::after {
    display: none;
}

.stat-item:hover {
    background: rgba(30, 58, 95, 0.03);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 0.75rem;
    color: var(--primary);
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 500;
}

.highlight-box {
    background: var(--bg-cream);
    border-left: 3px solid var(--accent);
    padding: 1.5rem 2rem;
    border-radius: 0;
    margin: 1.5rem 0;
    position: relative;
}

.highlight-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(201, 162, 39, 0.03) 100%);
    pointer-events: none;
}

.highlight-box h3 {
    font-family: var(--font-display);
    color: var(--primary);
    margin-bottom: 0.75rem;
    font-size: 1.35rem;
    font-weight: 500;
}

.highlight-box p {
    color: var(--text-main);
    margin: 0;
    line-height: 1.7;
}

.usp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.usp-item {
    text-align: center;
    padding: 1.5rem 1rem;
}

.usp-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-cream);
    color: var(--primary);
    font-size: 1.1rem;
}

.usp-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-family: var(--font-body);
}

.usp-content p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
}

.image-card {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    height: 400px;
}

.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: white;
}

.image-card-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.image-card-overlay p {
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
    line-height: 1.5;
}

.checklist {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1.5rem 0;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.checklist-item i {
    width: 20px;
    height: 20px;
    background: transparent;
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    flex-shrink: 0;
}

.checklist-item span {
    color: var(--text-main);
    font-size: 0.9rem;
}

.process-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.process-card {
    background: var(--bg-white);
    border-radius: 0;
    padding: 2.5rem 2rem 2rem;
    box-shadow: none;
    border: 1px solid var(--border-subtle);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-soft);
}

.process-card-number {
    position: absolute;
    top: -1px;
    left: 2rem;
    width: auto;
    height: auto;
    background: var(--bg-white);
    color: var(--accent);
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    padding: 0.25rem 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-50%);
    border-radius: 0;
    box-shadow: none;
}

.process-card-number::before {
    content: 'STEG ';
}

.process-card h3 {
    margin-top: 0.5rem;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.process-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

.bg-gradient-light {
    background: var(--bg-cream);
}

.bg-gradient-blue {
    background: var(--bg-cream);
}

.bg-dark-blue {
    background: var(--bg-dark);
    color: white;
    position: relative;
}

.bg-dark-blue::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 30% 0%, rgba(30, 58, 95, 0.3) 0%, transparent 50%);
    pointer-events: none;
}

.bg-dark-blue h2,
.bg-dark-blue h3,
.bg-dark-blue > .container > p,
.bg-dark-blue .section-intro p,
.bg-dark-blue .feature-item p {
    color: white;
}

.bg-dark-blue .process-card h3 {
    color: var(--text-dark);
}

.bg-dark-blue .process-card p {
    color: var(--text-light);
}

.bg-dark-blue .section-label {
    color: var(--accent);
}

.bg-dark-blue .usp-icon {
    background: rgba(255, 255, 255, 0.08);
    color: var(--accent-light);
}

.bg-dark-blue .usp-content h4 {
    color: white;
}

.bg-dark-blue .usp-content p {
    color: rgba(255,255,255,0.65);
}

.quote-block {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 0;
}

.quote-block blockquote {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.5;
    font-style: italic;
    margin: 0 0 1rem 0;
}

.quote-block cite {
    color: var(--text-light);
    font-size: 1rem;
    font-style: normal;
}

.overlap-section {
    position: relative;
    padding: 6rem 0;
}

.overlap-image {
    position: absolute;
    right: 0;
    top: 0;
    width: 45%;
    height: 100%;
    overflow: hidden;
}

.overlap-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlap-content {
    max-width: 50%;
    position: relative;
    z-index: 1;
}

.icon-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.icon-list-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.icon-list-item i {
    width: 44px;
    height: 44px;
    background: transparent;
    border: 1px solid var(--border-subtle);
    color: var(--primary);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.icon-list-item:hover i {
    border-color: var(--accent);
    color: var(--accent);
}

.icon-list-item div h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.35rem;
}

.icon-list-item div p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.6;
}

.page-hero {
    min-height: 50vh;
    position: relative;
    display: flex;
    align-items: center;
    color: white;
}

.page-hero h1,
.page-hero h2,
.page-hero p {
    color: white;
}

.page-hero .hero-subtitle {
    color: var(--accent);
}

.page-hero-small {
    min-height: 40vh;
}

.page-hero .hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.page-hero .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.4) 100%);
    z-index: 0;
}

.page-hero .hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.two-col-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
}

.two-col-content.reverse {
    direction: rtl;
}

.two-col-content.reverse > * {
    direction: ltr;
}

.col-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.col-text h2 {
    margin-bottom: 0.5rem;
}

.col-text p {
    color: var(--text-main);
    line-height: 1.7;
}

.col-text .btn {
    width: fit-content;
    margin-top: 1rem;
}

.col-image {
    border-radius: 0;
    overflow: hidden;
}

.col-image img {
    width: 100%;
    height: auto;
    display: block;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-item {
    text-align: center;
    padding: 1.5rem 1rem;
}

.feature-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    color: var(--accent-light);
    font-size: 1.1rem;
}

.feature-item h3 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
}

.feature-item p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.5;
    margin: 0;
}

.content-block {
    max-width: 800px;
    margin: 0 auto;
}

.content-block p {
    color: var(--text-main);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.content-block p:last-child {
    margin-bottom: 0;
}

.content-page {
    max-width: 800px;
    margin: 0 auto;
}

.content-page h2 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #111827;
}

.content-page h2:first-child {
    margin-top: 0;
}

.content-page p {
    color: var(--text-main);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.content-page ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.content-page ul li {
    list-style: disc;
    color: var(--text-main);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.content-page a {
    color: var(--primary);
}

.content-page a:hover {
    text-decoration: underline;
}

.nav-link.active {
    color: var(--primary);
    background: rgba(30, 58, 95, 0.06);
}

.mobile-link.active {
    color: var(--primary);
    background: rgba(30, 58, 95, 0.06);
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-light);
    border-radius: 0;
    transition: all 0.2s ease;
    letter-spacing: 0.01em;
    cursor: pointer;
}

.nav-dropdown-toggle:hover {
    color: var(--text-dark);
}

.nav-dropdown-toggle.active {
    color: var(--primary);
}

.nav-dropdown-toggle i {
    font-size: 0.6rem;
    transition: transform 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown-toggle i {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: white;
    border-radius: 0;
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--border-subtle);
    padding: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.2s ease;
    z-index: 100;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-item {
    display: block;
    padding: 0.6rem 0.875rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-light);
    border-radius: 0;
    transition: all 0.15s ease;
}

.nav-dropdown-item:hover {
    color: var(--accent);
}

.mobile-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.875rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-main);
    cursor: pointer;
    transition: background 0.15s ease;
}

.mobile-dropdown-toggle:hover {
    background: var(--bg-cream);
}

.mobile-dropdown-toggle.active {
    color: var(--accent);
}

.mobile-dropdown-toggle i {
    font-size: 0.7rem;
    transition: transform 0.2s ease;
}

.mobile-dropdown-toggle.open i {
    transform: rotate(180deg);
}

.mobile-dropdown-menu {
    display: none;
    background: var(--bg-cream);
    border-top: 1px solid var(--border-subtle);
}

.mobile-dropdown-menu.open {
    display: block;
}

.mobile-dropdown-item {
    display: block;
    padding: 0.75rem 1.5rem 0.75rem 2.25rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-light);
    transition: all 0.15s ease;
}

.mobile-dropdown-item:hover {
    color: var(--accent);
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.services-grid .service-card.reveal:nth-child(1) { transition-delay: 0s; }
.services-grid .service-card.reveal:nth-child(2) { transition-delay: 0.15s; }
.services-grid .service-card.reveal:nth-child(3) { transition-delay: 0.3s; }

#lightbox { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.95); z-index: 2000; align-items: center; justify-content: center; }
#lightbox img { max-height: 90vh; max-width: 90vw; }
.close { position: absolute; top: 20px; right: 30px; color: white; font-size: 3rem; cursor: pointer; }

@media (max-width: 900px) {
    .hero {
        min-height: auto;
        padding: 6rem 0 4rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-content {
        max-width: 100%;
        padding: 0 1rem;
    }

    .hero-subtitle {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
        margin-bottom: 1rem;
    }

    .hero-desc {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .page-hero {
        min-height: auto;
        padding: 5rem 0 3rem;
    }

    .page-hero .hero-content {
        max-width: 100%;
        padding: 0 1rem;
    }

    .page-hero h1 {
        font-size: 1.75rem;
        line-height: 1.2;
    }

    .page-hero .hero-desc {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .page-hero-small {
        min-height: auto;
        padding: 4rem 0 2.5rem;
    }

    .two-col-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .two-col-content.reverse {
        direction: ltr;
    }

    .col-image {
        order: -1;
    }

    .feature-grid,
    .usp-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .feature-item,
    .usp-item {
        padding: 1rem 0.5rem;
    }

    .feature-icon,
    .usp-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .nav-links,
    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-wrapper {
        padding: 0 1rem;
    }

    .mobile-menu {
        top: 64px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        width: 100%;
    }

    .service-card-wide {
        grid-template-columns: 1fr;
    }

    .service-wide-img {
        min-height: 220px;
    }

    .service-wide-content {
        padding: 1.5rem;
    }

    .service-wide-content h3 {
        font-size: 1.35rem;
    }

    .service-wide-content > p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .service-features {
        flex-direction: column;
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }

    .service-features li {
        font-size: 0.9rem;
    }

    .cta-content {
        padding: 0 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cta-buttons .btn {
        width: 100%;
        text-align: center;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }

    .process-timeline {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .process-timeline::before {
        display: none;
    }

    .process-step {
        flex-direction: row;
        text-align: left;
        gap: 1.5rem;
    }

    .step-icon {
        width: 50px;
        height: 50px;
        flex-shrink: 0;
        margin-bottom: 0;
        font-size: 1.1rem;
        border-radius: 12px;
    }

    .step-content p {
        max-width: none;
    }

    .bento-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .bento-item,
    .bento-large,
    .bento-tall,
    .bento-wide {
        grid-column: span 1;
        grid-row: span 1;
        height: 220px;
    }

    .bento-large {
        height: 280px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .footer-cta-inner {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .footer-cta-text h3 {
        font-size: 1.5rem;
    }

    .footer-cta-text p {
        font-size: 1rem;
    }

    .footer-cta-actions {
        flex-direction: column;
        width: 100%;
    }

    .footer-cta-btn,
    .footer-cta-btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .footer-logo-img {
        margin: 0 auto 1.25rem;
        display: block;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .footer-brand {
        grid-column: span 2;
        max-width: none;
        text-align: center;
    }

    .footer-col {
        text-align: left;
    }

    .footer-bottom-inner {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        grid-column: span 1;
    }

    .feature-grid,
    .usp-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .feature-item,
    .usp-item {
        display: flex;
        align-items: center;
        text-align: left;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .usp-item {
        border-bottom: 1px solid var(--border-subtle);
    }

    .feature-item:last-child,
    .usp-item:last-child {
        border-bottom: none;
    }

    .feature-icon,
    .usp-icon {
        width: 40px;
        height: 40px;
        margin: 0 1rem 0 0;
        flex-shrink: 0;
    }

    .feature-item h3,
    .usp-content h4 {
        font-size: 0.95rem;
        margin-bottom: 0.25rem;
    }

    .feature-item p,
    .usp-content p {
        font-size: 0.85rem;
    }

    .hero {
        padding: 5rem 0 3rem;
    }

    .hero h1 {
        font-size: 1.6rem;
        line-height: 1.2;
    }

    .hero-desc {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .page-hero {
        padding: 4rem 0 2.5rem;
    }

    .page-hero h1 {
        font-size: 1.5rem;
    }

    .page-hero .hero-desc {
        font-size: 0.9rem;
    }

    .page-hero-small {
        padding: 3.5rem 0 2rem;
    }

    .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.85rem;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .stat-item {
        padding: 1rem 0.75rem;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .stat-label {
        font-size: 0.7rem;
    }

    .padding-y {
        padding: 3.5rem 0;
    }

    .cta-content {
        padding: 2rem 1rem;
    }

    .cta-text h2 {
        font-size: 1.5rem;
    }

    .cta-text p {
        font-size: 0.9rem;
    }
}

@media (max-width: 900px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    .stat-item {
        padding: 1.5rem 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .process-cards {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .overlap-section {
        padding: 4rem 0;
    }

    .overlap-image {
        position: relative;
        width: 100%;
        height: 300px;
        margin-bottom: 2rem;
    }

    .overlap-content {
        max-width: 100%;
    }

    .image-card {
        height: 300px;
    }
}

@media (max-width: 600px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .stat-item {
        padding: 1.25rem 0.75rem;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--bg-light);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.faq-item[open] {
    box-shadow: var(--shadow-soft);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
    list-style: none;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question i {
    font-size: 0.75rem;
    color: var(--accent);
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item[open] .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-light);
    line-height: 1.7;
}

.faq-answer p {
    margin: 0;
}

@media (max-width: 768px) {
    .faq-question {
        padding: 1rem 1.25rem;
        font-size: 0.95rem;
    }

    .faq-answer {
        padding: 0 1.25rem 1.25rem;
        font-size: 0.9rem;
    }
}
