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

:root {
    --navy-950: #0a0f1e;
    --navy-900: #0f172a;
    --navy-800: #1e293b;
    --navy-700: #334155;
    --gold-500: #D4AF37;
    --gold-400: #E2C05A;
    --gold-300: #F0D078;
    --gold-200: #F7E0A0;
    --warm-50: #FDF8F0;
    --warm-100: #FAF0E0;
    --warm-200: #F5E6CC;
    --coral: #E8735A;
    --teal: #2A9D8F;
    --lavender: #9B7ED8;
    --sky: #5BA4C9;
    --text-dark: #1a1a2e;
    --text-muted: #64748b;
    --text-light: #f8fafc;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Outfit', system-ui, sans-serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--warm-50);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

ul {
    list-style: none;
}

.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    background: var(--gold-500);
    color: var(--navy-900);
    padding: 0.5rem 1rem;
    border-radius: 0 0 8px 8px;
    z-index: 9999;
    font-weight: 600;
}
.skip-link:focus {
    top: 0;
}

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

/* ─── NAVBAR ─── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(15, 23, 42, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    transition: var(--transition);
}
.navbar.scrolled {
    background: rgba(10, 15, 30, 0.97);
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.3;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.logo-mark {
    width: 28px;
    height: 28px;
    background: var(--gold-500);
    border-radius: 50%;
    margin-bottom: 4px;
    position: relative;
}
.logo-mark::after {
    content: '';
    position: absolute;
    inset: 6px;
    background: var(--navy-900);
    border-radius: 50%;
}
.logo-accent {
    color: var(--gold-400);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.nav-links a {
    color: rgba(248, 250, 252, 0.8);
    font-size: 0.9rem;
    font-weight: 400;
    transition: var(--transition);
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-500);
    transition: var(--transition);
}
.nav-links a:hover {
    color: var(--gold-400);
}
.nav-links a:hover::after {
    width: 100%;
}

/* ─── BUTTONS ─── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    border-radius: 60px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    white-space: nowrap;
}
.btn-primary {
    background: var(--gold-500);
    color: var(--navy-900);
    border-color: var(--gold-500);
}
.btn-primary:hover {
    background: var(--gold-400);
    border-color: var(--gold-400);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.35);
}
.btn-outline-light {
    background: transparent;
    color: var(--text-light);
    border-color: rgba(248, 250, 252, 0.4);
}
.btn-outline-light:hover {
    border-color: var(--gold-400);
    color: var(--gold-400);
    transform: translateY(-2px);
}
.btn-lg {
    padding: 1rem 2.25rem;
    font-size: 1rem;
}
.btn-full {
    width: 100%;
    justify-content: center;
}

/* ─── MOBILE MENU ─── */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}
.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--text-light);
    border-radius: 2px;
    transition: var(--transition);
}
.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}
.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ─── HERO ─── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0a0f1e 0%, #0f172a 30%, #1a2744 60%, #0f172a 100%);
    overflow: hidden;
    padding: 6rem 0 0;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.gradient-sphere {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
}
.sphere-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212,175,55,0.4) 0%, transparent 70%);
    top: -10%;
    right: -5%;
}
.sphere-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(42,157,143,0.3) 0%, transparent 70%);
    bottom: 5%;
    left: -5%;
}
.sphere-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(155,126,216,0.25) 0%, transparent 70%);
    top: 40%;
    right: 30%;
}

.geo-shape {
    position: absolute;
    opacity: 0.12;
}
.shape-circle {
    width: 120px;
    height: 120px;
    border: 3px solid var(--gold-500);
    border-radius: 50%;
    top: 15%;
    left: 5%;
}
.shape-diamond {
    width: 80px;
    height: 80px;
    background: var(--coral);
    transform: rotate(45deg);
    bottom: 25%;
    right: 8%;
}
.shape-triangle {
    width: 0;
    height: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-bottom: 86px solid var(--teal);
    top: 60%;
    left: 10%;
    opacity: 0.15;
}
.shape-ring {
    width: 160px;
    height: 160px;
    border: 4px solid var(--lavender);
    border-radius: 50%;
    top: 10%;
    right: 25%;
    opacity: 0.1;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 560px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--gold-300);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--text-light);
    line-height: 1.15;
    margin-bottom: 1.5rem;
    font-weight: 600;
}
.text-gold {
    color: var(--gold-400);
    font-style: italic;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(248, 250, 252, 0.7);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-trust {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(248, 250, 252, 0.6);
    font-size: 0.85rem;
}
.trust-item svg {
    color: var(--gold-500);
    flex-shrink: 0;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-image-frame {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.4);
}
.hero-image-frame img {
    width: 100%;
    height: 640px;
    object-fit: cover;
}
.hero-image-accent {
    position: absolute;
    inset: 0;
    border: 2px solid rgba(212,175,55,0.2);
    border-radius: 24px;
    pointer-events: none;
}

.floating-card {
    position: absolute;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(212,175,55,0.2);
    border-radius: 16px;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 3;
}
.fc-icon {
    width: 40px;
    height: 40px;
    background: rgba(212,175,55,0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-400);
    flex-shrink: 0;
}
.fc-text {
    display: flex;
    flex-direction: column;
}
.fc-text strong {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.2;
}
.fc-text span {
    color: rgba(248,250,252,0.5);
    font-size: 0.75rem;
}

.card-1 {
    bottom: 15%;
    left: -10%;
}
.card-2 {
    top: 15%;
    right: -8%;
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    color: var(--warm-50);
}
.hero-wave svg {
    width: 100%;
    height: 80px;
    display: block;
}

/* ─── SECTION COMMON ─── */
.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gold-500);
    margin-bottom: 0.75rem;
}
.section-tag-light {
    color: var(--gold-300);
}
.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.75rem);
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 1rem;
}
.section-title em {
    font-style: italic;
    color: var(--gold-500);
}
.section-title-light {
    color: var(--text-light);
}
.section-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 600px;
}

/* ─── SERVICES ─── */
.services {
    padding: 6rem 0;
    background: var(--warm-50);
}
.services .section-header {
    text-align: center;
    margin-bottom: 3.5rem;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}
.services .section-desc {
    margin: 0 auto;
}

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

.service-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.06);
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(15,23,42,0.12);
    border-color: rgba(212,175,55,0.2);
}

.card-geo {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    opacity: 0.08;
}
.geo-1 { background: var(--gold-500); }
.geo-2 { background: var(--teal); }
.geo-3 { background: var(--coral); }
.geo-4 { background: var(--lavender); }
.geo-5 { background: var(--sky); }
.geo-6 { background: var(--gold-500); }

.card-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--navy-900), var(--navy-800));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-400);
    margin-bottom: 1.25rem;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--navy-900);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.service-card > p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 1.25rem;
}

.card-features {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.card-features li {
    font-size: 0.85rem;
    color: var(--navy-700);
    padding-left: 1.25rem;
    position: relative;
}
.card-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.45em;
    width: 6px;
    height: 6px;
    background: var(--gold-500);
    border-radius: 50%;
}

/* ─── ABOUT ─── */
.about {
    padding: 6rem 0;
    background: var(--warm-100);
    position: relative;
    overflow: hidden;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-visual {
    position: relative;
}
.about-img-main {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(15,23,42,0.15);
}
.about-img-main img {
    width: 100%;
    height: 560px;
    object-fit: cover;
}
.about-img-secondary {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(15,23,42,0.2);
    border: 4px solid var(--warm-100);
}
.about-img-secondary img {
    width: 320px;
    height: 280px;
    object-fit: cover;
}

.about-badge {
    position: absolute;
    top: -1rem;
    right: 2rem;
    background: var(--gold-500);
    color: var(--navy-900);
    padding: 1.25rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(212,175,55,0.3);
    z-index: 2;
}
.about-badge svg {
    margin: 0 auto 0.4rem;
}
.about-badge span {
    display: block;
    font-size: 0.8rem;
    line-height: 1.3;
}
.about-badge strong {
    font-family: var(--font-heading);
    font-size: 1.1rem;
}

.geo-accent {
    position: absolute;
}
.geo-circle {
    width: 200px;
    height: 200px;
    border: 3px solid rgba(212,175,55,0.2);
    border-radius: 50%;
    top: -3rem;
    left: -3rem;
}
.geo-dots {
    width: 60px;
    height: 60px;
    background-image: radial-gradient(circle, var(--gold-500) 1.5px, transparent 1.5px);
    background-size: 10px 10px;
    opacity: 0.4;
    bottom: 2rem;
    left: -1rem;
}

.about-content .section-title {
    margin-top: 0.5rem;
}
.about-text {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.about-stats {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}
.stat {
    display: flex;
    flex-direction: column;
}
.stat-number {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: var(--navy-900);
    line-height: 1.2;
}
.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ─── BENEFITS ─── */
.benefits {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(135deg, #0a0f1e 0%, #1a2744 50%, #0f172a 100%);
    overflow: hidden;
}

.benefits-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.benefits-geo {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
}
.bg-geo-1 {
    width: 400px;
    height: 400px;
    background: var(--gold-500);
    top: -10%;
    right: -5%;
}
.bg-geo-2 {
    width: 300px;
    height: 300px;
    background: var(--teal);
    bottom: -5%;
    left: -5%;
}
.bg-geo-3 {
    width: 200px;
    height: 200px;
    background: var(--lavender);
    top: 40%;
    left: 30%;
}

.benefits .container {
    position: relative;
    z-index: 2;
}

.benefits-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.benefits-content {
    max-width: 520px;
}
.benefits-desc {
    color: rgba(248,250,252,0.7);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(248,250,252,0.85);
    font-size: 1rem;
}
.benefit-check {
    width: 28px;
    height: 28px;
    background: rgba(212,175,55,0.15);
    border: 1px solid rgba(212,175,55,0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-400);
    flex-shrink: 0;
}

.benefits-image {
    position: relative;
}
.benefits-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.3);
}
.benefits-quote {
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    right: -1.5rem;
    background: var(--gold-500);
    color: var(--navy-900);
    padding: 1.5rem 1.75rem;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(212,175,55,0.3);
}
.benefits-quote svg {
    margin-bottom: 0.5rem;
    opacity: 0.5;
}
.benefits-quote p {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}
.benefits-quote span {
    font-size: 0.8rem;
    font-family: var(--font-body);
    font-style: normal;
    opacity: 0.7;
}

/* ─── CONTACT ─── */
.contact {
    padding: 6rem 0;
    background: var(--warm-50);
}

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

.contact-aside {
    max-width: 420px;
}
.contact-aside .section-title {
    margin-top: 0.5rem;
}
.contact-desc {
    color: rgba(248,250,252,0.7);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.08);
    transition: var(--transition);
}
.contact-item:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(212,175,55,0.3);
}
.ci-icon {
    width: 44px;
    height: 44px;
    background: rgba(212,175,55,0.12);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-400);
    flex-shrink: 0;
}
.contact-item strong {
    display: block;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
}
.contact-item span,
.contact-item a {
    color: rgba(248,250,252,0.6);
    font-size: 0.9rem;
    line-height: 1.5;
}
.contact-item a:hover {
    color: var(--gold-400);
}

/* Form */
.contact-form-wrapper {
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 15px 50px rgba(15,23,42,0.08);
    border: 1px solid rgba(0,0,0,0.06);
}
.form-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--navy-900);
    margin-bottom: 1.75rem;
}

.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.85rem;
    font-weight: 600;
    color: var(--navy-800);
    margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1.5px solid var(--warm-200);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-dark);
    background: var(--warm-50);
    transition: var(--transition);
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold-500);
    background: white;
    box-shadow: 0 0 0 3px rgba(212,175,55,0.12);
}
.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-success {
    text-align: center;
    padding: 2rem;
    color: var(--navy-900);
}
.form-success svg {
    color: var(--teal);
    margin: 0 auto 1rem;
}
.form-success h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}
.form-success p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ─── FOOTER ─── */
.footer {
    background: var(--navy-950);
    color: var(--text-light);
    padding: 4rem 0 0;
}
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.3;
    display: inline-block;
    margin-bottom: 1rem;
}
.fl-mark {
    width: 24px;
    height: 24px;
    background: var(--gold-500);
    border-radius: 50%;
    display: inline-block;
    margin-bottom: 4px;
    position: relative;
}
.fl-mark::after {
    content: '';
    position: absolute;
    inset: 5px;
    background: var(--navy-900);
    border-radius: 50%;
}
.fl-accent {
    color: var(--gold-400);
}

.footer-tagline {
    font-size: 0.9rem;
    color: rgba(248,250,252,0.5);
    line-height: 1.7;
    max-width: 280px;
}

.footer-links strong,
.footer-contact strong {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold-400);
    margin-bottom: 1rem;
}
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.footer-links a {
    color: rgba(248,250,252,0.6);
    font-size: 0.9rem;
    transition: var(--transition);
}
.footer-links a:hover {
    color: var(--gold-400);
}
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.footer-contact a,
.footer-contact span {
    color: rgba(248,250,252,0.6);
    font-size: 0.9rem;
    transition: var(--transition);
}
.footer-contact a:hover {
    color: var(--gold-400);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1.5rem 0;
}
.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(248,250,252,0.4);
}
.footer-note {
    font-size: 0.75rem !important;
    color: rgba(248,250,252,0.3) !important;
    max-width: 400px;
    text-align: right;
}

/* ─── SCROLL REVEAL ─── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-content {
        max-width: 100%;
    }
    .hero-subtitle {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    .hero-actions {
        justify-content: center;
    }
    .hero-trust {
        justify-content: center;
    }
    .hero-visual {
        display: none;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-container {
        grid-template-columns: 1fr;
    }
    .about-visual {
        max-width: 480px;
        margin: 0 auto;
    }
    .benefits-layout {
        grid-template-columns: 1fr;
    }
    .benefits-image {
        max-width: 480px;
        margin: 0 auto;
    }
    .contact-container {
        grid-template-columns: 1fr;
    }
    .contact-aside {
        max-width: 100%;
    }
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--navy-950);
        flex-direction: column;
        justify-content: center;
        gap: 1.5rem;
        padding: 2rem;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 40px rgba(0,0,0,0.3);
    }
    .nav-links.open {
        right: 0;
    }
    .nav-links a {
        font-size: 1.1rem;
    }
    .mobile-menu-btn {
        display: flex;
    }

    .hero {
        padding: 8rem 0 4rem;
        min-height: auto;
    }
    .hero-title {
        font-size: 2.25rem;
    }

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

    .about-img-secondary {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 1rem;
    }
    .about-img-main img,
    .about-img-secondary img {
        height: 320px;
    }

    .benefits-quote {
        position: relative;
        bottom: auto;
        left: auto;
        right: auto;
        margin-top: 1rem;
    }
    .benefits-image img {
        height: 400px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
    .contact-form-wrapper {
        padding: 1.5rem;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .footer-note {
        text-align: center !important;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.85rem;
    }
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    .btn-lg {
        width: 100%;
        justify-content: center;
    }
    .hero-trust {
        flex-direction: column;
        align-items: center;
    }
    .about-stats {
        flex-direction: column;
        gap: 1rem;
    }
}
