/* ================================================
   INGRESSO ACCESS CONTROL - STYLES
   Color Palette:
     Primary Teal: #0097A7
     Dark Teal: #00838F
     Midnight Charcoal: #1a1a2e
     Deep Charcoal: #16213e
     Slate/Silver: #a0aec0
     Off-White: #f7f8fc
   Typography:
     Headers: Playfair Display (serif)
     Body: Inter (sans-serif)
   ================================================ */

/* ---------- RESET & BASE ---------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --teal: #0097A7;
    --teal-dark: #00838F;
    --teal-deep: #006064;
    --teal-light: #00bcd4;
    --teal-glow: rgba(0, 151, 167, 0.3);
    --charcoal: #1a1a2e;
    --charcoal-deep: #0f0f1a;
    --charcoal-mid: #16213e;
    --slate: #a0aec0;
    --silver: #c4cdd5;
    --off-white: #f7f8fc;
    --white: #ffffff;
    --text-dark: #2d3436;
    --text-mid: #636e72;
    --text-light: #b2bec3;
    --border: rgba(0, 151, 167, 0.12);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.10);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
    --shadow-teal: 0 8px 30px rgba(0, 151, 167, 0.20);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --font-serif: 'Playfair Display', 'Georgia', serif;
    --font-sans: 'Inter', -apple-system, 'Segoe UI', sans-serif;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    background: var(--white);
    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;
    transition: color var(--transition);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- TYPOGRAPHY UTILITIES ---------- */
.section-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 12px;
}

.section-headline {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--charcoal);
    line-height: 1.15;
    margin-bottom: 24px;
}

.center {
    text-align: center;
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    letter-spacing: 0.3px;
}

.btn-primary {
    background: var(--teal);
    color: var(--white);
    border-color: var(--teal);
}

.btn-primary:hover {
    background: var(--teal-dark);
    border-color: var(--teal-dark);
    box-shadow: var(--shadow-teal);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

.btn-ghost {
    background: transparent;
    color: var(--teal);
    border-color: var(--border);
    padding: 12px 24px;
}

.btn-ghost:hover {
    border-color: var(--teal);
    background: rgba(0, 151, 167, 0.05);
}

/* ========================================
   NAVBAR
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 32px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: filter var(--transition);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 8px;
}

.nav-link {
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.nav-link:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}

.dropdown-arrow {
    font-size: 0.65em;
    margin-left: 4px;
    opacity: 0.6;
}

/* Dropdown */
.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: rgba(26, 26, 46, 0.97);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-sm);
    padding: 8px 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all var(--transition);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.75);
    transition: all var(--transition);
}

.dropdown-menu li a:hover {
    color: var(--white);
    background: rgba(0, 151, 167, 0.15);
    padding-left: 24px;
}

.nav-cta {
    padding: 10px 24px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--white);
    border: 2px solid var(--teal);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    white-space: nowrap;
}

.nav-cta:hover {
    background: var(--teal);
    box-shadow: var(--shadow-teal);
}

/* Hamburger */
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-hamburger span {
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition);
}

/* ========================================
   HERO
   ======================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('img/hero_background.png') center/cover no-repeat;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(15, 15, 26, 0.75) 0%,
            rgba(26, 26, 46, 0.55) 50%,
            rgba(0, 96, 100, 0.35) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 24px;
    animation: heroFadeIn 1.2s ease-out;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--teal-light);
    margin-bottom: 20px;
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 24px;
    text-shadow: 0 2px 40px rgba(0, 0, 0, 0.3);
}

.hero-subheadline {
    font-size: 1.1rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 40px;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0.3;
        transform: scaleY(0.6);
    }

    50% {
        opacity: 1;
        transform: scaleY(1);
    }
}

/* ========================================
   PHILOSOPHY
   ======================================== */
.philosophy-section {
    padding: 120px 0;
    background: var(--off-white);
}

.philosophy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.philosophy-body {
    font-size: 1.05rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 40px;
}

.philosophy-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.philosophy-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: var(--shadow-teal);
}

.philosophy-feature h4 {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 4px;
}

.philosophy-feature p {
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 1.5;
}

/* Philosophy visual */
.philosophy-visual {
    position: relative;
}

.philosophy-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.philosophy-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.philosophy-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--teal), transparent);
    border-radius: 50%;
    opacity: 0.15;
    z-index: -1;
}

/* ========================================
   THREE PILLARS
   ======================================== */
.pillars-section {
    padding: 120px 0;
    background: var(--white);
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
    width: 100%;
}

.pillar-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 48px 32px;
    text-align: center;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--teal), var(--teal-light));
    transform: scaleX(0);
    transition: transform var(--transition);
}

.pillar-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--teal);
}

.pillar-card:hover::before {
    transform: scaleX(1);
}

.pillar-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-teal);
    transition: all var(--transition);
}

.pillar-card:hover .pillar-icon-wrapper {
    transform: scale(1.08);
    box-shadow: 0 12px 40px rgba(0, 151, 167, 0.35);
}

.pillar-icon {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
}

.pillar-title {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 4px;
}

.pillar-subtitle {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--teal);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}

.pillar-desc {
    font-size: 0.92rem;
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: 24px;
}

.pillar-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--teal);
    transition: all var(--transition);
}

.pillar-link:hover {
    color: var(--teal-dark);
    letter-spacing: 1px;
}

/* ========================================
   HARDWARE GALLERY
   ======================================== */
.hardware-section {
    padding: 120px 0;
    background: var(--charcoal);
    color: var(--white);
    overflow: hidden;
}

.hardware-section .section-eyebrow {
    color: var(--teal-light);
}

.hardware-section .section-headline {
    color: var(--white);
}

.hardware-intro {
    text-align: center;
    font-size: 1.05rem;
    color: var(--slate);
    max-width: 650px;
    margin: 0 auto 60px;
    line-height: 1.7;
}

.hardware-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.hardware-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hardware-slide {
    min-width: 100%;
    padding: 0 20px;
}

.hardware-img-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    margin-bottom: 24px;
    position: relative;
}

.hardware-img-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.08);
    pointer-events: none;
}

.hardware-img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.hardware-slide-info {
    text-align: center;
}

.hardware-slide-info h4 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.hardware-slide-info p {
    color: var(--slate);
    font-size: 0.95rem;
}

/* Slider controls */
.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 40px;
}

.slider-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
}

.slider-btn:hover {
    background: var(--teal);
    border-color: var(--teal);
    box-shadow: var(--shadow-teal);
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all var(--transition);
}

.dot.active {
    background: var(--teal);
    box-shadow: 0 0 10px var(--teal-glow);
    transform: scale(1.2);
}

/* ========================================
   ALPR SECTION
   ======================================== */
.alpr-section {
    padding: 120px 0;
    background: var(--white);
}

.alpr-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.alpr-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.alpr-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
}

.alpr-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 151, 167, 0.92);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 10px 18px;
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.alpr-body {
    font-size: 1.05rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 28px;
}

.alpr-features {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 36px;
}

.alpr-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 500;
}

.alpr-features li svg {
    color: var(--teal);
    flex-shrink: 0;
}

/* ========================================
   LOCAL PRESENCE
   ======================================== */
.local-section {
    padding: 120px 0;
    background: var(--off-white);
}

.local-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.local-body {
    font-size: 1.05rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 40px;
}

.local-benefits {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-top: 32px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.benefit-icon {
    width: 44px;
    height: 44px;
    background: var(--off-white);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    border: 1px solid var(--border);
}

.benefit-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.benefit-text strong {
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--charcoal);
    font-weight: 600;
}

.benefit-text span {
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 1.5;
}

/* Map */
.map-container {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 12px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-img-full {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: calc(var(--radius-lg) - 10px);
    display: block;
}

.pulse-ring {
    animation: pulseRing 3s ease-in-out infinite;
    transform-origin: center;
}

@keyframes pulseRing {

    0%,
    100% {
        opacity: 0.12;
    }

    50% {
        opacity: 0.25;
    }
}

.map-pin {
    animation: pinBounce 2s ease-in-out infinite;
}

@keyframes pinBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-3px);
    }
}

/* ========================================
   CONTACT
   ======================================== */
.contact-section {
    padding: 120px 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-body {
    font-size: 1.05rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 32px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-mid);
}

.contact-info-item svg {
    color: var(--teal);
    flex-shrink: 0;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--off-white);
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

.contact-form {
    position: relative;
}

.form-step {
    display: none;
    flex-direction: column;
    gap: 20px;
    animation: stepFadeIn 0.4s ease-out;
}

.form-step.active {
    display: flex;
}

@keyframes stepFadeIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--charcoal);
    letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--text-dark);
    background: var(--white);
    transition: all var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 3px var(--teal-glow);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-nav-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

/* Form progress */
.form-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-top: 32px;
}

.progress-step {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.06);
    color: var(--text-mid);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    font-weight: 600;
    transition: all var(--transition);
    flex-shrink: 0;
}

.progress-step.active {
    background: var(--teal);
    color: var(--white);
    box-shadow: var(--shadow-teal);
}

.progress-step.completed {
    background: var(--teal-dark);
    color: var(--white);
}

.progress-line {
    width: 60px;
    height: 2px;
    background: rgba(0, 0, 0, 0.06);
    position: relative;
    margin: 0 8px;
}

.progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: var(--teal);
    transition: width var(--transition);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--charcoal-deep);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
    height: 28px;
    filter: brightness(0) invert(1);
    margin-bottom: 12px;
}

.footer-tagline {
    font-size: 0.9rem;
    color: var(--slate);
    font-style: italic;
}

.footer-links-col h5 {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-links-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links-col a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    transition: all var(--transition);
}

.footer-links-col a:hover {
    color: var(--teal-light);
    padding-left: 4px;
}

.footer-bottom {
    padding-top: 32px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.35);
}

/* ========================================
   SCROLL ANIMATIONS
   ======================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 968px) {

    .philosophy-grid,
    .local-grid,
    .contact-grid,
    .alpr-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .pillars-grid {
        grid-template-columns: 1fr;
        max-width: 440px;
        margin-left: auto;
        margin-right: auto;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .philosophy-section,
    .pillars-section,
    .hardware-section,
    .alpr-section,
    .local-section,
    .contact-section {
        padding: 80px 0;
    }
}

@media (max-width: 768px) {

    .nav-links,
    .nav-cta {
        display: none;
    }

    .nav-hamburger {
        display: flex;
    }

    /* Mobile menu */
    .nav-links.mobile-open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(26, 26, 46, 0.98);
        backdrop-filter: blur(20px);
        padding: 24px;
        gap: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        animation: mobileMenuIn 0.3s ease-out;
    }

    @keyframes mobileMenuIn {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .nav-links.mobile-open .nav-link {
        padding: 14px 16px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-links.mobile-open .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: transparent;
        box-shadow: none;
        border: none;
        padding: 0 0 0 16px;
    }

    .hero-headline {
        font-size: clamp(2.2rem, 8vw, 3.5rem);
    }

    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }

    .local-stats {
        flex-direction: column;
        gap: 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hardware-img {
        height: 300px;
    }

    .contact-form-wrapper {
        padding: 32px 24px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-section {
        min-height: 90vh;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .section-headline {
        font-size: 1.8rem;
    }
}