/* =========================================================
                            BASE
   ========================================================= */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-margin-top: 90px;
}

body {
    margin: 0;
    padding: 0;
    line-height: 1.5;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--text-main);
    background-color: var(--text-light);
}

/* =========================================================
                    DESIGN TOKENS 
   ========================================================= */
:root {
    --primary: #0A1B40;

    --accent-red:   #9E5B5B;
    --accent-green: #6CA34D;
    --accent-gold:  #C2A24A;
    --accent-slate: #6F7FAE;
    --accent-teal:  #4C8C9B;
    --accent-mint:  #8EDBA8;

    --neutral-dark:  #1E2F4A;
    --neutral-light: #F8CF93;

    --background-light: #ffffff;

    --text-main:  #1E2F4A;
    --text-light: #ffffff;
}

/* =========================================================
                    ACCESSIBILITY UTILITIES
   ========================================================= */
.skip-link {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.skip-link:focus,
.skip-link:focus-visible {
    left: 1rem;
    top: 1rem;
    width: auto;
    height: auto;
    padding: 8px 12px;
    background: var(--accent-green);
    color: var(--text-light);
    z-index: 1000;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip-path: inset(50%);
    clip: rect(0 0 0 0);
    border: 0;
}

/* =========================================================
                    HEADER & NAVIGATION
   ========================================================= */
.site-header {
    width: 100%;
    background-color: var(--primary);
    color: var(--text-light);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    border-bottom: 1px solid var(--neutral-dark);
    position: sticky;
    top: 0;
    z-index: 900;
}

/* Logo row */
.header-logo {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 1rem 0;
}

.logo-img {
    width: min(480px, 285%);
    height: 175px;
    object-fit: cover;
    transform: translate(-95px);
}

.brand-name {
    font-weight: bold;
    letter-spacing: 0.04em;
}

.tagline {
    font-size: 0.85rem;
    color: #555555;
}

.badge {
    margin-top: 0.15rem;
    font-size: 0.75rem;
    color: #1f6f5f;
}

/* Navigation */
.menu-toggle {
    display: none;
    background: none;
    border: 1px solid #cccccc;
    padding: 0.25rem 0.5rem;
    font-size: 1.25rem;
    cursor: pointer;
}

.main-nav {
    width: 100%;
    background-color: var(--neutral-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.main-nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.main-nav a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    transition: color 0.2s ease, text-decoration 0.2s ease;
}

.main-nav a:hover {
    color: var(--accent-gold);
    text-decoration: underline;
}

/* Left nav links */
.nav-left a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-left a:hover {
    color: var(--accent-mint);
}

/* Header right cluster */
.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-left: auto;
}

/* Search */
.nav-search {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.search-input {
    padding: 0.4rem 0.6rem;
    border-radius: 4px;
    border: 1px solid var(--accent-teal);
    background-color: rgba(255,255,255,0.1);
    color: var(--text-light);
}

.search-btn {
    background: var(--accent-teal);
    border: none;
    padding: 0.4rem 0.6rem;
    border-radius: 4px;
    cursor: pointer;
    color: var(--text-light);
}

/* Auth links */
.auth-links {
    font-size: 0.95rem;
}

.auth-links a {
    text-decoration: none;
    color: var(--accent-gold);
}

.auth-links a:hover {
    text-decoration: underline;
}

.divider {
    margin: 0 0.25rem;
    color: #aaaaaa;
}

/* Avatar */
.avatar-icon,
.icon {
    width: 18px;
    height: 12px;
    border-radius: 50%;
}

.icon {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

/* Language switcher */
.language-switch {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.85rem;
}

.flag {
    width: 18px;
    height: 12px;
    object-fit: cover;
    margin-right: 6px;
    vertical-align: middle;
}

.lang {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-lang .lang {
    border: none;
    background: none;
    cursor: pointer;
    padding: 0;
    color: #cccccc;
}

.nav-lang .lang.active {
    font-weight: 700;
    color: var(--accent-mint);
}

/* =========================================================
                            BUTTONS
   ========================================================= */
.btn-primary,
.btn-secondary,
.link-button,
.btn-industries {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    text-decoration: none;
    font-size: 0.9rem;
    cursor: pointer;
}

.btn-primary {
    border: none;
    background-color: var(--accent-green);
    color: var(--text-light);
}

.btn-secondary {
    border: 2px solid var(--accent-gold);
    color: var(--accent-gold);
    background-color: var(--text-light);
}

.link-button {
    border: none;
    background: none;
    color: #1f6f5f;
    padding: 0;
}

/* Base button style */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
    border: 2px solid transparent;
    font-size: 1rem;
}


/* =========================================================
                HERO SYSTEM & DECORATIVE ELEMENTS
   ========================================================= */
.hero {
    position: relative;
    padding: 6rem 2rem 4rem;
    background: linear-gradient(135deg, var(--primary), var(--neutral-dark));
    color: var(--text-light);
    overflow: hidden;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: auto;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(76, 140, 155, 0.4);
}

.hero p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    opacity: 0.9;
    margin-bottom: 2rem;
}

/* Hero background pattern */
.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(142, 219, 168, 0.15) 0%, transparent 60%),
        linear-gradient(135deg, rgba(111, 127, 174, 0.08) 0%, transparent 70%);
    opacity: 0.6;
    pointer-events: none;
}

/* Blueprint background utility */
.blueprint-bg {
    background-image:
        linear-gradient(rgba(111, 127, 174, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(111, 127, 174, 0.08) 1px, transparent 1px);
    background-size: 40px 40px;
}

/* Geometric frames (L corners) */
.hero-frame {
    position: absolute;
    top: 15%;
    right: 10%;
    width: 180px;
    height: 220px;
    border: 2px solid var(--accent-gold);
    border-left: none;
    border-bottom: none;
    opacity: 0.25;
    pointer-events: none;
}

.hero-frame-bottom {
    position: absolute;
    bottom: 15%;
    left: 10%;
    width: 180px;
    height: 220px;
    border: 2px solid var(--accent-gold);
    border-right: none;
    border-top: none;
    opacity: 0.25;
    pointer-events: none;
}

/* Parallax background (for hero sections) */
.parallax-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 30%, rgba(142,219,168,0.15), transparent 60%),
        radial-gradient(circle at 70% 70%, rgba(31,111,95,0.15), transparent 60%);
    z-index: -1;
    pointer-events: none;
    transform: translateY(0);
    transition: transform 0.2s ease-out;
}

/* Add‑Ons hero variant (double corner) */
.addons-hero {
    position: relative;
    overflow: hidden;
    padding: 6rem 1rem 3rem;
    text-align: center;
}

/* Double-corner frame for Add‑Ons hero */
.addons-frame {
    position: absolute;
    top: 12%;
    right: 8%;
    width: 180px;
    height: 220px;
    border: 2px solid var(--accent-gold);
    border-left: none;
    border-bottom: none;
    opacity: 0.25;
    pointer-events: none;
}

.addons-frame::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 180px;
    height: 220px;
    border: 2px solid var(--accent-gold);
    border-right: none;
    border-top: none;
    opacity: 0.25;
}

/* =========================================================
                    About 
   ========================================================= */
#about {
    scroll-margin-top: 90px;
}
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}
.about-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    backdrop-filter: blur(10px);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.3);
}


/* =========================================================
                Home Industries Grid
   ========================================================= */
.home-industries .cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    align-items: stretch;
    height: 100%;
    padding: 2.5rem;
    margin-top: 1rem;
}

.home-industries .card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--accent-slate);
    border-radius: 16px;
    overflow: hidden;
    padding: 1.2rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.home-industries .card p {
    margin: 2.5rem;
    text-align: center;
    line-height: 1.7;
    color: var(--neutral-dark);
    font-weight: 400;
    font-size: 1rem;
}

.home-industries .card h3 {
    margin: 0.5rem 0;
    text-align: center;
}

.home-industries .cta {
    margin-top: auto;
    padding-top: 1.5rem;
    display: flex;
    justify-content: center;
}

.card-video {
    margin-bottom: 0.5rem;
}

.home-industries .card {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.home-industries .card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 35px rgba(0,0,0,0.25);
}

/* =========================================================
                MP4 Background Video
   ========================================================= */

#bg-video {
    position: fixed;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: -99;
    object-fit: cover;
    pointer-events: none;
}

/* Mobile fallback image */
.mobile-fallback {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: hero-bg-pattern center/cover no-repeat;
    z-index: -98;
}

/* Overlay for text readability */
.video-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 27, 64, 0.4);
    z-index: -97;
}

/* Disable video on mobile for performance */
@media (max-width: 768px) {
    #bg-video {
        display: none;
    }
    .mobile-fallback {
        display: block;
    }
}

/* =========================================================
                SECTION LAYOUT & DIVIDERS
   ========================================================= */
.section {
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 40px 40px;
}

.section-header {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 1.5rem;
    font-size: medium;
    text-align: center;
}

.section-header h2 {
    margin: 0 0 2.25rem 0;
    text-align: center;
}

.section-subtitle {
    margin: 0;
    font-size: 0.9rem;
    color: #1f6f5f;
}

.section-body {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-body article + article {
    margin-top: 1.5rem;
}

/* Dividers */
.creativa-divider-top {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-mint), transparent);
    opacity: 0.5;
    margin: 4rem 0 2rem;
}

.creativa-divider {
    width: 100%;
    height: 3px;
    background: linear-gradient(
        90deg,
        var(--primary) 0%,
        var(--accent-slate) 25%,
        var(--accent-teal) 60%,
        var(--accent-mint) 100%
    );
    opacity: 0.8;
    margin: 4rem 0 2rem;
    border-radius: 2px;
}

/* =========================================================
                CARDS, GRIDS, CTA & UPSELL
   ========================================================= */
/* Universal card grid */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* Service / Add‑On cards (shared) */
.service-card {
    background: var(--background-light);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.10);
}

/* CTA blocks */
.cta {
    text-align: center;
    padding: 4rem 1rem;
    margin: 4rem auto;
}

.cta .btn-primary {
    margin-top: 1rem;
}

/* Upsell CTA – circular glow background */
.cta-upsell {
    position: relative;
    padding: 4rem 1rem;
    border-radius: 16px;
    overflow: hidden;
    text-align: center;
    margin: 4rem auto;
    background: var(--background-light);
}

.cta-upsell::before,
.cta-upsell::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    z-index: 0;
}

.cta-upsell::before {
    width: 280px;
    height: 280px;
    background: var(--accent-teal);
    top: -60px;
    left: -60px;
}

.cta-upsell::after {
    width: 320px;
    height: 320px;
    background: var(--accent-mint);
    bottom: -80px;
    right: -80px;
}

.cta-upsell * {
    position: relative;
    z-index: 2;
}

/* Optional alternate upsell backgrounds */
.cta-upsell-diagonal {
    background: linear-gradient(
        135deg,
        rgba(31,111,95,0.15),
        rgba(142,219,168,0.15)
    );
    padding: 4rem 1rem;
    border-radius: 12px;
    text-align: center;
    margin: 4rem auto;
}

.cta-upsell-glow {
    background:
        radial-gradient(circle at 20% 20%, rgba(142,219,168,0.25), transparent 60%),
        radial-gradient(circle at 80% 80%, rgba(31,111,95,0.25), transparent 60%),
        linear-gradient(rgba(111,127,174,0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(111,127,174,0.08) 1px, transparent 1px);
    background-size: auto, auto, 40px 40px, 40px 40px;
    padding: 4rem 1rem;
    border-radius: 16px;
    text-align: center;
    margin: 4rem auto;
}

/* =========================================================
                    Card Video
   ========================================================= */
.card-video {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;      /* keeps a nice video shape */
    overflow: hidden;
    border-radius: 0.75rem;
    background: #020617;       /* fallback color while video loads */
}

.card-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;         /* fills the box without distortion */
    display: block;
}

.card-video {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}


/* =========================================================
                    INDUSTRIES GRID
   ========================================================= */
.industries {
    padding: 4rem 1.5rem;
}

.industries .cards {
    max-width: 800px; 
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.industries .card {
    display: flex;
    flex-direction: column;
    justify-content: center;   /* FIXED */
    align-items: center;
    text-align: center;

    background: linear-gradient(135deg, var(--accent-slate), var(--primary));
    border: 1px solid var(--neutral-dark);
    border-radius: 0.75rem;
    padding: 1.75rem;
    box-shadow: 0 4px 14px rgba(0,0,0,0.06);
    transition: all 0.25s ease;
}


.industries .card ul {
    list-style: none;
    width: 100%;
    padding-left: 1.25rem; /* keeps spacing from card edge */
    margin: 0 0 1.75rem 0;
}

.industries .card ul li {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0.6rem;
    margin-bottom: 0.6rem;
    text-align: left;
}

.industries .card ul li::before {
    content: "◆";
    color: var(--accent-gold);
    font-size: 0.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}


.industries .card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 22px rgba(0,0,0,0.12);
    border-color: var(--accent-teal);
}

.industries .card h3 {
    color: var(--primary);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.industries .card p {
    color: var(--accent-mint);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.industries .card .cta {
    margin-top: auto;
}

.industries .card .btn-primary {
    width: fit-content;
}

/* Ghost / outline button */
.btn-ghost {
    background-color: transparent;
    color: var(--primary);
    border-color: var(--primary);
    margin-top: 1.5rem;
}
.btn-ghost:hover {
    background-color: var(--primary);
    color: var(--text-light);
}

/* Accent variations */
.btn-accent-slate {
    background-color: var(--accent-slate);
    color: var(--text-light);
}
.btn-accent-slate:hover {
    background-color: #5c6c97;
}

/* =========================================================
                    QUOTE FORM
   ========================================================= */
.quote-hero {
    text-align: center;
    margin-top: 25px;
    margin-bottom: 40px;
}

.quote-hero h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.quote-hero p {
    color: #aaa;
}

.quote-form {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: var(--accent-slate);
    padding: 30px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.08);
}

.form-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.form-field {
    flex: 1 1 200px;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.form-field label {
    font-size: 0.9rem;
}

.form-field input,
.form-field textarea {
    padding: 0.5rem;
    border: 1px solid #cccccc;
    font: inherit;
}

/* =========================================================
                            PRICING
   ========================================================= */
   .pricing-section {
    padding: 60px 8%;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    align-items: stretch;
}

.pricing-card {
    background: var(--accent-slate);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.2s ease;
}

.pricing-card.featured {
    border: 2px solid var(--accent-gold);
    transform: scale(1.03);
}

.pricing-card .price {
    font-size: 2rem;
    color: var(--neutral-dark);
    margin: 10px 0 20px;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.pricing-card li {
    margin-bottom: 10px;
}

/* =========================================================
                PAGE: CONTACT & PAGE LAYOUT
   ========================================================= */
/* Overall section spacing */
.section.contact {
    padding: 80px 20px;
    background: none;
    text-align: center; /* centers header content */
    font-family: system-ui, -apple-system, sans-serif;
}

/* Header styling */
.section-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--text-light);
    position: relative;
    display: inline-block;
}

/* underline accent under title */
.section-header h2::after {
    content: "";
    display: block;
    width: 60%;
    height: 3px;
    margin: 10px auto 0;
    background: #6366f1; /* accent color */
    border-radius: 2px;
}

/* Contact info container (card style) */
.section-body {
    max-width: 420px;
    margin: 0 auto; /* centers the box */
    
    /* Glass effect */
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    /* Subtle border for definition */
    border: 1px solid rgba(255, 255, 255, 0.25);

    /* Soft shadow */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);

    color: #ffffff;
    text-align: left;
    position: relative;
}

/* Individual contact lines */
.section-body p {
    margin: 12px 0;
    font-size: 1rem;
    color: var(--text-light);
    text-align: center;
}

.section-body::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 14px;
    background: radial-gradient(circle at top left, rgba(99,102,241,0.4), transparent 60%);
    z-index: -1;
}

/* emphasis for labels */
.section-body p::first-line {
    font-weight: 600;
}

.contact .section-body {
    max-width: 640px;
}

.page {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
    line-height: 1.7;
}

.page-header {
    margin-bottom: 2.5rem;
}

.page-header h1 {
    margin: 0 0 0.5rem 0;
    font-size: 2rem;
    color: var(--primary);
}

.page-section {
    margin-bottom: 2rem;
}

.page-section h2 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
    color: var(--accent-teal);
}

.page-section p,
.page-section li {
    color: var(--text-main);
}

.page-section ul {
    padding-left: 1.25rem;
}

/* =========================================================
                PAGE: ABOUT
   ========================================================= */
.about-page {
    max-width: 1100px;
    margin: auto;
    padding: 4rem 1.5rem;
}

.about-page .section-header h2 {
    color: var(--text-light);
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.about-page .section-subtitle {
    line-height: 1.8;
    font-size: 1.1rem;
    color: var(--accent-gold);
    max-width: 900px;
}

.about-page .section-body article {
    margin-top: 2.5rem;
}

.about-page h3,
.about-page h4,
.about-page h5 {
    color: var(--text-light);
    margin-bottom: 0.75rem;
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0 auto;
    text-align: center;
}

.about-page p {
    line-height: 1.7;
    color: #C2A24A;
    font-size: 1.05rem;
}

.about-page .values-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-page .values-list li {
    margin-bottom: 1rem;
    padding-left: 1.2rem;
    position: relative;
}

.about-page .values-list li::before {
    content: "•";
    color: var(--primary);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

/* =========================================================
                PAGE: SERVICES
   ========================================================= */
.services-page .hero {
    text-align: center;
    padding: 6rem 1.5rem 4rem;
    background: var(--primary);
    color: #fff;
}

.services-page .hero h1 {
    font-size: 2.4rem;
    margin: 0 0 1rem;
    font-weight: 700;
}

.services-page .hero p {
    max-width: 720px;
    margin: 0 auto;
    font-size: 1.2rem;
    opacity: 0.9;
}

.services-page .hero-content {
    text-align: center;
    max-width: 720px;
    margin: auto;
}

.services-page .section {
    padding: 4rem 1.5rem;
    max-width: 1200px;
    margin: auto;
}

/* =========================================================
                PAGE: ADD‑ONS
   ========================================================= */
.addons-page .hero {
    text-align: center;
    padding: 6rem 1.5rem 4rem;
    background: var(--primary);
    color: #fff;
}

.addons-page .hero h1 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.addons-page .hero p {
    max-width: 700px;
    margin: auto;
    font-size: 1.2rem;
    opacity: 0.9;
}

.addons-page .section {
    padding: 4rem 1.5rem;
    max-width: 1200px;
    margin: auto;
}

.addons-page .btn-primary {
    margin-top: 1rem;
}

/* =========================================================
               Confirmation Page
   ========================================================= */
.confirmation-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4rem 1.5rem;
}

.confirmation-container .card {
    width: 100%;
    max-width: 500px;
    padding: 3rem 2rem;
    border-radius: 1rem;
    text-align: center;
    background: linear-gradient(135deg, var(--accent-slate), var(--primary));
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.confirmation-container .btn {
    display: inline-block;
    padding: 0.9rem 1.8rem;
    background-color: var(--accent-teal);
    color: white;
    text-decoration: none;
    border-radius: 0.6rem;
    font-weight: 600;
    transition: all 0.25s ease;
    margin-top: 1rem;
}

.confirmation-container .btn:hover {
    background-color: var(--accent-gold);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

/* =========================================================
                SCROLL ANIMATIONS
   ========================================================= */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.stagger > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.stagger.visible > * {
    opacity: 1;
    transform: translateY(0);
}

.stagger.visible > *:nth-child(1) { transition-delay: 0.1s; }
.stagger.visible > *:nth-child(2) { transition-delay: 0.2s; }
.stagger.visible > *:nth-child(3) { transition-delay: 0.3s; }
.stagger.visible > *:nth-child(4) { transition-delay: 0.4s; }

/* =========================================================
                            FOOTER
   ========================================================= */
.site-footer {
    border-top: 1px solid var(--neutral-dark);
    padding: 2rem 1.5rem 1rem;
    background-color: var(--neutral-dark);
    color: var(--text-light);
    font-size: 0.9rem;
}

.site-footer a {
    color: var(--accent-mint);
}

.footer-top {
    max-width: 1080px;
    margin: 0 auto 1.5rem;
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 2fr) minmax(0, 1.5fr);
    gap: 2rem;
}

.footer-brand p {
    margin-top: 0.25rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.footer-links h3 {
    margin-top: 0;
    font-size: 0.95rem;
}

.footer-links ul {
    list-style: none;
    margin: 0.25rem 0 0;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.25rem;
}

.footer-links a {
    text-decoration: none;
    color: #222222;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-extras {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
}

.social {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.social a {
    text-decoration: none;
    color: #1f6f5f;
}

/* Simple footer variant used on some pages */
.footer {
    background: var(--primary);
    color: var(--text-light);
    padding: 50px 8%;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 40px;
}

.footer-col a {
    color: var(--accent-mint);
    text-decoration: none;
    display: block;
    margin-bottom: 6px;
}

.footer-bottom {
    max-width: 1080px;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    padding-top: 20px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    font-size: 0.9rem;
    gap: 1rem;
}

/*======= sitemap dropdown variant =======*/

/* sitemap container */
.sitemap-hover-container {
    position: relative;
    display: inline-block;
}

/* sitemap style trigger header click/hover zone */
.sitemap-trigger {
    cursor: pointer;
    margin-bottom: 0.5rem;
}

/* sitemap hide menue default and positioning */
.sitemap-dropdown-menu {
    position: absolute;
    display: none;
    position: absolute;
    top: 15%;  /* spacing below the trigger */
    left: 0;
    min-width: 160px;
    background-color: var(--neutral-dark);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 0.5rem 0;
    list-style: none;
    box-shadow: 0 -4 8px rgba(0,0,0,0.3);
    z-index: 10;
}

/* sitemap show menu on hover container */
.sitemap-hover-container:hover .sitemap-dropdown-menu {
    display: block;
}

/* sitemap hover effect for links */
.sitemap-dropdown-menu li a:hover {
    background-color: rgba(255,255,255,0.1);
    color: var(--accent-mint);
}

/* =========================================================
                            RESPONSIVE
   ========================================================= */
@media (max-width: 900px) {
    .header-actions {
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .site-header {
        align-items: flex-start;
        gap: 0.75rem;
        flex-direction: column;
    }

    .menu-toggle {
        display: block;
    }

    .main-nav {
        width: 100%;
        display: none;
        margin-top: 0.5rem;
    }

    .main-nav.open {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 0.5rem;
    }

    .header-actions {
        width: 100%;
        justify-content: flex-start;
    }

    .hero {
        text-align: center;
        padding: 3rem 1.25rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 600px) {
    .hero {
        padding: 2.5rem 1rem;
        text-align: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .services-page .hero h1,
    .addons-page .hero h1 {
        font-size: 1.9rem;
    }

    .services-page .hero p,
    .addons-page .hero p {
        font-size: 1rem;
    }

    .service-card {
        padding: 1.5rem;
    }
}

/* Orientation tweak */
@media screen and (orientation: landscape) {
    .hero {
        padding: 4rem 3rem;
    }

    .main-nav ul {
        gap: 2rem;
    }
}

/* =========================================================
                    DARK MODE
   ========================================================= */
@media (prefers-color-scheme: dark) {
    :root {
        --primary: #0A1B40;
        --text-main: #ffffff;
        --text-light: #ffffff;

        --neutral-dark: #0A1B40;
        --neutral-light: #1E2F4A;

        --accent-gold: #C2A24A;
        --accent-mint: #8EDBA8;
        --accent-teal: #4C8C9B;
        --accent-green: #6CA34D;
    }

    body {
        background-color: var(--neutral-dark);
        color: var(--text-light);
    }

    .site-header {
        background-color: var(--neutral-dark);
        border-bottom-color: var(--accent-teal);
    }

    .card,
    .service-card {
        background-color: var(--neutral-light);
        border-color: var(--accent-teal);
    }

    .site-footer {
        background-color: var(--primary);
    }

    .main-nav a {
        color: var(--accent-mint);
    }

    .btn-primary {
        background-color: var(--accent-green);
        color: var(--text-light);
    }

    .btn-secondary {
        border-color: var(--accent-gold);
        color: var(--accent-gold);
    }
}
