/* ==========================================================================
   Elektrotechnik Weißenberger – Elegant Beige & Navy Design
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
    --navy: #1b2a4a;
    --navy-light: #2a3f6e;
    --navy-dark: #0f1a32;
    --beige: #f5f0e8;
    --beige-light: #faf7f2;
    --beige-dark: #e8dfd2;
    --gold: #c8a45e;
    --gold-light: #d4b676;
    --gold-dark: #b08d42;
    --white: #ffffff;
    --text-dark: #1a1a2e;
    --text-body: #4a4a5a;
    --text-light: #7a7a8a;
    --shadow-sm: 0 2px 8px rgba(27, 42, 74, 0.06);
    --shadow-md: 0 8px 30px rgba(27, 42, 74, 0.1);
    --shadow-lg: 0 20px 60px rgba(27, 42, 74, 0.15);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-body);
    background: var(--white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden
}

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

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

h1,
h2,
h3,
h4 {
    color: var(--navy);
    font-weight: 700;
    line-height: 1.2
}

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

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: all var(--transition)
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm)
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: .75rem;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--white);
    transition: color var(--transition)
}

.navbar.scrolled .nav-brand {
    color: var(--navy)
}

.nav-logo {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    object-fit: contain
}

.nav-brand span {
    line-height: 1.15;
    font-size: 1rem
}

.footer-logo {
    width: 36px;
    height: 36px;
    object-fit: contain
}

.nav-links {
    display: flex;
    align-items: center;
    gap: .5rem;
    list-style: none
}

.nav-links a {
    padding: .5rem 1rem;
    border-radius: 8px;
    font-size: .9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, .85);
    transition: all .25s ease
}

.navbar.scrolled .nav-links a {
    color: var(--text-body)
}

.nav-links a:hover {
    color: var(--white);
    background: rgba(255, 255, 255, .12)
}

.navbar.scrolled .nav-links a:hover {
    color: var(--navy);
    background: var(--beige)
}

.nav-cta {
    background: var(--gold) !important;
    color: var(--white) !important;
    padding: .55rem 1.5rem !important;
    font-weight: 600 !important;
    border-radius: 50px !important
}

.nav-cta:hover {
    background: var(--gold-dark) !important;
    transform: translateY(-1px)
}

.navbar.scrolled .nav-cta {
    background: var(--navy) !important;
    color: var(--white) !important
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: .5rem;
    z-index: 1001
}

.nav-toggle span {
    width: 26px;
    height: 2.5px;
    background: var(--white);
    border-radius: 2px;
    transition: all .3s ease
}

.navbar.scrolled .nav-toggle span {
    background: var(--navy)
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px)
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px)
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: var(--white)
}

.hero-video-wrap {
    position: absolute;
    inset: 0;
    z-index: 0
}

.hero-video-wrap video {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 26, 50, .87) 0%, rgba(27, 42, 74, .75) 50%, rgba(15, 26, 50, .9) 100%);
    z-index: 1
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10rem 1.5rem 6rem;
    position: relative;
    z-index: 2;
    width: 100%;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 4rem;
    align-items: center
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(200, 164, 94, .2);
    border: 1px solid rgba(200, 164, 94, .4);
    color: var(--gold-light);
    padding: .45rem 1.25rem;
    border-radius: 50px;
    font-size: .85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: .5px
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--white)
}

.hero-content h1 span {
    color: var(--gold-light)
}

.hero-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    opacity: .85;
    margin-bottom: 2.5rem;
    max-width: 520px
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .9rem 2rem;
    border-radius: 50px;
    font-size: .95rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all var(--transition);
    letter-spacing: .3px
}

.btn-primary {
    background: var(--gold);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(200, 164, 94, .4)
}

.btn-primary:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(200, 164, 94, .5)
}

.btn-outline {
    background: rgba(255, 255, 255, .08);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, .25);
    backdrop-filter: blur(4px)
}

.btn-outline:hover {
    background: rgba(255, 255, 255, .15);
    border-color: rgba(255, 255, 255, .4);
    transform: translateY(-2px)
}

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

.stat-card {
    background: rgba(255, 255, 255, .06);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--radius-lg);
    padding: 1.75rem 1.25rem;
    text-align: center;
    transition: all var(--transition)
}

.stat-card:hover {
    background: rgba(255, 255, 255, .1);
    transform: translateY(-4px);
    border-color: rgba(200, 164, 94, .3)
}

.stat-icon {
    font-size: 1.8rem;
    margin-bottom: .75rem
}

.stat-number {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--white);
    display: block
}

.stat-label {
    font-size: .8rem;
    opacity: .7;
    letter-spacing: .5px;
    text-transform: uppercase;
    font-weight: 500
}

/* ===== SECTIONS ===== */
.section {
    padding: 7rem 0
}

.section.bg-beige {
    background: var(--beige-light)
}

.section.bg-navy {
    background: var(--navy);
    color: var(--white)
}

.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 4rem
}

.section-badge {
    display: inline-block;
    background: rgba(200, 164, 94, .12);
    color: var(--gold-dark);
    padding: .4rem 1.25rem;
    border-radius: 50px;
    font-size: .85rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    letter-spacing: .5px
}

.section.bg-navy .section-badge {
    background: rgba(200, 164, 94, .2);
    color: var(--gold-light)
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem
}

.section.bg-navy .section-header h2 {
    color: var(--white)
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7
}

.section.bg-navy .section-header p {
    color: rgba(255, 255, 255, .65)
}

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

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all var(--transition);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    opacity: 0;
    transition: opacity var(--transition)
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--beige-dark)
}

.service-card:hover::before {
    opacity: 1
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--beige);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 1.25rem
}

.service-card h3 {
    font-size: 1.15rem;
    margin-bottom: .75rem;
    font-weight: 700
}

.service-card p {
    font-size: .9rem;
    color: var(--text-light);
    line-height: 1.65
}

/* ===== SHOWCASE ===== */
.showcase-section {
    padding: 7rem 0;
    background: var(--beige-light)
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem
}

.showcase-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer
}

.showcase-item.tall {
    grid-row: span 2;
    aspect-ratio: auto
}

.showcase-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease
}

.showcase-item:hover img {
    transform: scale(1.08)
}

.showcase-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 26, 50, .75) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity var(--transition)
}

.showcase-item:hover .showcase-item-overlay {
    opacity: 1
}

.showcase-item-overlay h4 {
    color: var(--white);
    font-size: 1rem;
    font-weight: 600
}

.showcase-item-overlay p {
    color: rgba(255, 255, 255, .75);
    font-size: .8rem;
    margin-top: 4px
}

/* ===== VIDEO PARALLAX ===== */
.video-parallax {
    position: relative;
    height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center
}

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

.video-parallax-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 26, 50, .82) 0%, rgba(27, 42, 74, .72) 100%)
}

.video-parallax-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 700px;
    padding: 0 1.5rem
}

.video-parallax-content h2 {
    font-size: 2.75rem;
    color: var(--white);
    margin-bottom: 1.25rem;
    font-weight: 800
}

.video-parallax-content p {
    font-size: 1.15rem;
    opacity: .85;
    margin-bottom: 2rem;
    line-height: 1.7
}

/* ===== ABOUT ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center
}

.about-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/5
}

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

.about-image-badge {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background: var(--gold);
    color: var(--white);
    padding: .75rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: .9rem;
    box-shadow: var(--shadow-md)
}

.about-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1.25rem
}

.about-content>p {
    font-size: 1.05rem;
    margin-bottom: 2rem;
    color: var(--text-light);
    line-height: 1.8
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.25rem
}

.about-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start
}

.about-feature-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--beige);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem
}

.about-feature-text h4 {
    font-size: 1rem;
    margin-bottom: 4px
}

.about-feature-text p {
    font-size: .88rem;
    color: var(--text-light)
}

/* ===== CLIENT TYPES ===== */
.client-types {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem
}

.client-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
    border: 1px solid var(--beige-dark)
}

.client-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg)
}

.client-card-image {
    height: 220px;
    overflow: hidden
}

.client-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease
}

.client-card:hover .client-card-image img {
    transform: scale(1.06)
}

.client-card-body {
    padding: 2rem
}

.client-card-body h3 {
    font-size: 1.35rem;
    margin-bottom: .75rem
}

.client-card-body p {
    font-size: .92rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7
}

.client-card-features {
    list-style: none;
    margin-bottom: 1.75rem
}

.client-card-features li {
    padding: .4rem 0;
    font-size: .9rem;
    color: var(--text-body);
    display: flex;
    align-items: center;
    gap: .6rem
}

.client-card-features li::before {
    content: '✓';
    color: var(--gold);
    font-weight: 700;
    font-size: 1rem
}

.btn-card {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: var(--navy);
    color: var(--white);
    padding: .75rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: .9rem;
    transition: all var(--transition)
}

.btn-card:hover {
    background: var(--navy-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(27, 42, 74, .3)
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid var(--beige-dark);
    transition: all var(--transition)
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md)
}

.testimonial-stars {
    color: var(--gold);
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 1rem
}

.testimonial-text {
    font-size: .95rem;
    line-height: 1.75;
    color: var(--text-body);
    margin-bottom: 1.5rem;
    font-style: italic
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: .75rem
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--beige);
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .85rem
}

.testimonial-name {
    font-weight: 700;
    color: var(--navy);
    font-size: .9rem
}

.testimonial-role {
    font-size: .8rem;
    color: var(--text-light)
}

/* ===== CTA BANNER ===== */
.cta-banner {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    padding: 5rem 0
}

.cta-banner-inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
    text-align: center
}

.cta-banner-inner h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem
}

.cta-banner-inner p {
    color: rgba(255, 255, 255, .7);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    line-height: 1.7
}

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

.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: var(--gold);
    color: var(--white);
    padding: .9rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: .95rem;
    border: none;
    cursor: pointer;
    transition: all var(--transition)
}

.btn-gold:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(200, 164, 94, .4)
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: transparent;
    color: var(--white);
    padding: .9rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: .95rem;
    border: 2px solid rgba(255, 255, 255, .3);
    cursor: pointer;
    transition: all var(--transition)
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .5)
}

/* ===== BRANDS ===== */
.brands-section {
    padding: 3rem 0;
    background: var(--white);
    border-top: 1px solid var(--beige-dark);
    border-bottom: 1px solid var(--beige-dark)
}

.brands-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    text-align: center
}

.brands-label {
    font-size: .85rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 1.5rem
}

.brands-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem
}

.brand-item {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-light);
    opacity: .5;
    transition: opacity var(--transition);
    letter-spacing: 1px
}

.brand-item:hover {
    opacity: .8
}

/* ===== KONTAKT ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 3rem;
    align-items: start
}

.contact-form {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    border: 1px solid var(--beige-dark)
}

.contact-form h3 {
    font-size: 1.35rem;
    margin-bottom: .5rem
}

.contact-form>p {
    color: var(--text-light);
    font-size: .9rem;
    margin-bottom: 2rem
}

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

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

.form-group label {
    display: block;
    font-size: .85rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: .5rem
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: .75rem 1rem;
    border: 1.5px solid var(--beige-dark);
    border-radius: var(--radius);
    font-size: .92rem;
    font-family: inherit;
    color: var(--text-dark);
    background: var(--beige-light);
    transition: all .25s ease;
    outline: none
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(200, 164, 94, .1)
}

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

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%237a7a8a' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right .75rem center;
    padding-right: 2.5rem
}

.client-type-select {
    display: flex;
    gap: .75rem;
    margin-bottom: 1.25rem
}

.client-type-btn {
    flex: 1;
    padding: .85rem;
    border: 2px solid var(--beige-dark);
    border-radius: var(--radius);
    background: var(--beige-light);
    cursor: pointer;
    text-align: center;
    font-weight: 600;
    font-size: .88rem;
    color: var(--text-body);
    transition: all .25s ease;
    font-family: inherit
}

.client-type-btn:hover {
    border-color: var(--gold);
    color: var(--navy)
}

.client-type-btn.active {
    border-color: var(--gold);
    background: rgba(200, 164, 94, .08);
    color: var(--navy)
}

.client-type-btn span {
    display: block;
    font-size: 1.3rem;
    margin-bottom: 4px
}

.btn-submit {
    width: 100%;
    padding: .9rem;
    background: var(--navy);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    font-family: inherit
}

.btn-submit:hover {
    background: var(--navy-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(27, 42, 74, .3)
}

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

.contact-card {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: var(--white);
    padding: 1.25rem;
    border-radius: var(--radius);
    border: 1px solid var(--beige-dark);
    transition: all var(--transition)
}

.contact-card:hover {
    box-shadow: var(--shadow-sm)
}

.contact-card-icon {
    font-size: 1.5rem;
    min-width: 32px
}

.contact-card h4 {
    font-size: .9rem;
    margin-bottom: 4px
}

.contact-card a {
    color: var(--navy);
    font-weight: 500;
    font-size: .88rem
}

.contact-card .sub {
    font-size: .82rem;
    color: var(--text-light);
    margin-top: 2px
}

.contact-hours {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.5rem;
    border: 1px solid var(--beige-dark)
}

.contact-hours h4 {
    margin-bottom: 1rem;
    font-size: .95rem
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: .45rem 0;
    font-size: .85rem;
    border-bottom: 1px solid var(--beige)
}

.hours-row:last-child {
    border-bottom: none
}

.hours-row .day {
    color: var(--text-body)
}

.hours-row .time {
    font-weight: 600;
    color: var(--navy)
}

/* ===== FOOTER ===== */
.footer {
    background: var(--navy-dark);
    color: rgba(255, 255, 255, .7);
    padding: 4rem 0 0
}

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

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 2.5rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, .08)
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: 1rem
}

.footer-brand span {
    font-weight: 700;
    font-size: 1rem;
    color: var(--white)
}

.footer-about p {
    font-size: .88rem;
    line-height: 1.7
}

.footer h4 {
    color: var(--white);
    font-size: .95rem;
    margin-bottom: 1rem;
    font-weight: 600
}

.footer-links {
    list-style: none
}

.footer-links li {
    padding: .3rem 0
}

.footer-links a {
    font-size: .88rem;
    transition: color .2s ease
}

.footer-links a:hover {
    color: var(--gold-light)
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    font-size: .82rem
}

.footer-legal {
    display: flex;
    gap: 1.5rem
}

.footer-legal a:hover {
    color: var(--gold-light)
}

/* ===== UTILITIES ===== */
.nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(15, 26, 50, .6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s ease
}

.nav-backdrop.visible {
    opacity: 1;
    pointer-events: auto
}

.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--white);
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
    transition: all var(--transition);
    z-index: 999;
    box-shadow: var(--shadow-md)
}

.back-to-top.visible {
    opacity: 1;
    transform: translateY(0)
}

.back-to-top:hover {
    background: var(--gold);
    transform: translateY(-3px)
}

.cookie-banner {
    position: fixed;
    bottom: -200px;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid var(--beige-dark);
    padding: 1.25rem;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, .08);
    transition: bottom .5s ease
}

.cookie-banner.show {
    bottom: 0
}

.cookie-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem
}

.cookie-text {
    font-size: .85rem;
    color: var(--text-body);
    line-height: 1.5
}

.cookie-text a {
    color: var(--navy);
    font-weight: 600;
    text-decoration: underline
}

.cookie-buttons {
    display: flex;
    gap: .75rem;
    flex-shrink: 0
}

.cookie-btn {
    padding: .6rem 1.5rem;
    border-radius: 50px;
    font-size: .85rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all .25s ease;
    font-family: inherit
}

.cookie-accept {
    background: var(--navy);
    color: var(--white)
}

.cookie-accept:hover {
    background: var(--navy-light)
}

.cookie-decline {
    background: var(--beige);
    color: var(--text-body)
}

.cookie-decline:hover {
    background: var(--beige-dark)
}

.toast {
    position: fixed;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    padding: .75rem 2rem;
    border-radius: 50px;
    font-size: .9rem;
    font-weight: 600;
    z-index: 10000;
    transition: bottom .4s ease;
    box-shadow: var(--shadow-lg)
}

.toast.show {
    bottom: 2rem
}

.toast-success {
    background: #16a34a;
    color: #fff
}

.toast-error {
    background: #dc2626;
    color: #fff
}

/* ===== ANIMATIONS ===== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .7s ease, transform .7s ease
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0)
}

/* ===== RESPONSIVE ===== */
@media(max-width:1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 8rem
    }

    .hero-content p {
        margin: 0 auto 2rem
    }

    .hero-buttons {
        justify-content: center
    }

    .hero-stats {
        max-width: 350px;
        margin: 0 auto
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr)
    }

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

    .about-image {
        max-width: 500px;
        margin: 0 auto;
        aspect-ratio: 16/10
    }

    .client-types {
        grid-template-columns: 1fr;
        max-width: 550px;
        margin: 0 auto
    }

    .testimonials-grid {
        grid-template-columns: 1fr 1fr
    }

    .contact-grid {
        grid-template-columns: 1fr
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr
    }

    .showcase-grid {
        grid-template-columns: 1fr 1fr
    }

    .showcase-item.tall {
        grid-row: span 1;
        aspect-ratio: 4/3
    }

    .section-header h2 {
        font-size: 2rem
    }

    .video-parallax {
        height: 400px
    }

    .video-parallax-content h2 {
        font-size: 2.25rem
    }
}

@media(max-width:768px) {
    .nav-toggle {
        display: flex
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        max-width: none;
        height: 100vh;
        height: 100dvh;
        background: var(--navy-dark);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 2rem;
        gap: .25rem;
        z-index: 1000;
        opacity: 0;
        pointer-events: none;
        transition: opacity .35s ease;
        box-shadow: none;
        overflow-y: auto
    }

    .nav-links::before {
        display: none
    }

    .nav-links.open {
        right: 0;
        opacity: 1;
        pointer-events: auto
    }

    .nav-links li {
        width: 100%;
        max-width: 280px;
        text-align: center
    }

    .nav-links a {
        color: rgba(255, 255, 255, .7) !important;
        font-size: 1.35rem;
        font-weight: 500;
        padding: .9rem 1rem;
        width: 100%;
        border-radius: 12px;
        border-bottom: none;
        transition: all .25s ease;
        display: block;
        letter-spacing: .3px
    }

    .nav-links a:hover,
    .nav-links a:active {
        background: rgba(255, 255, 255, .06) !important;
        color: var(--white) !important
    }

    .nav-cta {
        background: var(--gold) !important;
        color: var(--white) !important;
        text-align: center;
        margin-top: 1rem;
        padding: .85rem 2.5rem !important;
        font-size: 1.05rem !important;
        font-weight: 700 !important;
        border-radius: 50px !important;
        box-shadow: 0 4px 25px rgba(200, 164, 94, .3);
        letter-spacing: .5px
    }

    .nav-cta:hover {
        background: var(--gold-dark) !important
    }

    .nav-toggle {
        z-index: 1001
    }

    .nav-toggle.active span {
        background: var(--white) !important
    }

    .hero-content h1 {
        font-size: 2.5rem
    }

    .hero-inner {
        padding-top: 7rem;
        gap: 2.5rem
    }

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

    .testimonials-grid {
        grid-template-columns: 1fr
    }

    .showcase-grid {
        grid-template-columns: 1fr
    }

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

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

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

    .cta-banner-inner h2 {
        font-size: 2rem
    }

    .cookie-inner {
        flex-direction: column;
        text-align: center
    }

    .client-type-select {
        flex-direction: column
    }

    .video-parallax {
        height: 350px
    }

    .video-parallax-content h2 {
        font-size: 1.75rem
    }
}

@media(max-width:480px) {
    .hero-content h1 {
        font-size: 2rem
    }

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

    .stat-card {
        padding: 1.25rem .75rem
    }

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

    .section {
        padding: 4.5rem 0
    }

    .section-header {
        margin-bottom: 2.5rem
    }

    .section-header h2 {
        font-size: 1.6rem
    }

    .hero-buttons {
        flex-direction: column;
        gap: .75rem
    }

    .btn {
        width: 100%;
        justify-content: center
    }

    .cta-buttons {
        flex-direction: column
    }

    .btn-gold,
    .btn-ghost {
        width: 100%;
        justify-content: center
    }

    .contact-form {
        padding: 1.5rem
    }

    .video-parallax {
        height: 300px
    }

    .video-parallax-content h2 {
        font-size: 1.5rem
    }
}