/* ===== Variables ===== */
:root {
    --primary: #41629a;
    --primary-portal: #184486;
    --primary-dark: #050d2b;
    --accent: #b77d3e;
    --white: #ffffff;
    --gray-light: #f8f8f8;
    --gray: #ececec;
    --gray-portal: #CCCCCC;
    --text: #050d2b;
    --text-light: #666666;
    --shadow: rgba(17, 17, 26, 0.1) 0px 8px 56px 0px, rgba(17, 17, 26, 0.1) 0px 32px 140px 0px;
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);
    --radius: 8px;
    --radius-lg: 16px;
    --transition: all 0.3s ease;
    --font-main: "Instrument Sans", -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

h1,
h2,
h3,
h4 {
    line-height: 1.3;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.container-full {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

/* ===== Header ===== */
.header {
    position: relative;
    background: var(--white);
    z-index: 1000;
    margin-top: -1px;
}

.header .container {
    max-width: 100%;
    padding: 25px 40px;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 20px;
    max-width: 1150px;
    margin: 0 auto;
}

.header-link {
    font-size: 14px;
    color: var(--text);
    padding: 6px 24px;
    box-shadow: #41629a 0px 0px 0px 1px inset;
    border-radius: 4px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: none;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    text-decoration: none;
    font-family: var(--font-main);
}

.header-link:hover {
    background: #41629a;
    color: var(--white);
}

.logo img {
    height: auto;
    width: 250px;
    max-height: 65.5px;
    display: block;
}

.nav-list {
    display: flex;
    gap: 32px;
    margin: 0;
    padding: 0;
}

.nav-list a {
    font-size: 16.8px;
    font-weight: 400;
    color: var(--text);
    padding: 12px 0;
    letter-spacing: normal;
    transition: var(--transition);
    text-decoration: none;
    font-family: var(--font-main);
}

.nav-list a:hover {
    color: #41629a;
}

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-dark);
    border-radius: 2px;
    transition: var(--transition);
}

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

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 13, 43, 0.12);
    z-index: -1;
}

.hero-box {
    max-width: 769px;
    background: rgba(255, 255, 255, 0.9);
    padding: 80px;
    border-radius: 8px;
    text-align: center;
    margin: 0 auto;
    box-shadow: rgba(17, 17, 26, 0.1) 0px 8px 56px 0px, rgba(17, 17, 26, 0.1) 0px 32px 140px 0px;
}

.stars {
    font-size: 18px;
    color: var(--accent);
    margin-bottom: 15px;
    letter-spacing: 5px;
    line-height: 1;
}

.tagline {
    display: block;
    font-size: 16px;
    color: var(--text);
    margin-bottom: 20px;
    font-weight: 400;
    line-height: 1.5;
    font-family: var(--font-main);
}

.hero-box h1 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 25px;
    line-height: 1.3;
    letter-spacing: -0.4px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-family: var(--font-main);
    text-wrap: balance;
}

.hero-box p {
    font-size: 18px;
    color: rgb(0, 0, 0);
    margin-bottom: 35px;
    line-height: 1.5;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-family: var(--font-main);
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 56px;
    padding: 0 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 4px;
    transition: var(--transition);
    cursor: pointer;
    letter-spacing: 0.5px;
    font-family: var(--font-main);
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
    padding: 7px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: auto;
}

.btn-primary:hover {
    background: #a36b30;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(183, 125, 62, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    box-shadow: var(--accent) 0px 0px 0px 1px inset;
    border: none;
    padding: 6px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
}

.btn-outline:hover {
    background: rgba(183, 125, 62, 0.1);
}

.btn-white {
    background: var(--white);
    color: var(--primary-dark);
    border-color: var(--white);
}

.btn-white:hover {
    background: rgba(255, 255, 255, 0.9);
}

.btn-job {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    width: 100%;
    margin-top: 15px;
}

.btn-job:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

/* ===== About Section ===== */
.about {
    padding: 80px 0;
    background: #f2f2f2;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1150px;
    margin: 0 auto;
}

.about-text-side {
    flex: 1;
}

.about-text-side h2 {
    font-size: 32px;
    font-weight: 500;
    color: var(--primary-dark);
    letter-spacing: -0.4px;
    line-height: 1.3;
    white-space: nowrap;
}

.about-text-side h2 .highlight {
    color: var(--accent);
    font-weight: 700;
}

.about-box {
    flex: 1;
    background: var(--primary);
    padding: 50px;
    border-radius: 4px;
    color: var(--white);
    border-left: none;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-box p {
    font-size: 18px;
    color: var(--white);
    line-height: 1.5;
    margin-bottom: 20px;
}

.about-box p:last-child {
    margin-bottom: 0;
}

/* ===== Video Section ===== */
.video-section {
    padding: 100px 0;
    background: var(--white);
}

.video-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 20px;
    padding-bottom: 12px;
   /* border-bottom: 1px solid #dcdcdc; */
    text-align: center;
    letter-spacing: -0.4px;
}

.video-section h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 2px;
    background: #dcdcdc;
    margin: 10px auto 0;
}

.video-content {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1150px;
    margin: 0 auto;
}

.video-wrapper {
    position: relative;
    flex: 1;
    border-radius: 4px;
    overflow: hidden;
    background: #000;
    aspect-ratio: 16 / 9;
}

.video-text {
    flex: 1;
}

.video-caption {
    font-size: 18px;
    color: #000;
    line-height: 1.5;
    margin-bottom: 30px;
}

.btn-large {
    height: auto;
    padding: 15px 35px;
    flex-direction: column;
    text-align: center;
    line-height: 1.2;
}

.btn-large .btn-label {
    font-size: 15px;
    font-weight: 600;
    display: block;
}

.btn-large .btn-subtitle {
    font-size: 14px;
    font-weight: 400;
    display: block;
    margin-top: 4px;
    opacity: 1;
}

.cta-inline {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.cta-inline .cta-note {
    display: none;
    /* Subtitle is now inside button */
}

.video-wrapper video {
    width: 100%;
    display: block;
}

.video-overlay-play {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.video-overlay-play.hidden {
    opacity: 0;
    pointer-events: none;
}

.play-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.play-btn:hover {
    transform: scale(1.1);
}

.play-btn svg {
    width: 35px;
    height: 35px;
    color: var(--primary);
    margin-left: 5px;
}

.video-caption {
    color: var(--text-light);
    margin: 30px auto;
    max-width: 600px;
}

.cta-inline {
    margin-top: 30px;
}

.cta-note {
    display: block;
    margin-top: 10px;
    font-size: 14px;
    color: var(--text-light);
}

/* ===== Benefits Section ===== */
.benefits {
    padding: 80px 0;
    background: var(--white);
}

.benefits h2 {
    font-size: 48px;
    font-weight: 500;
    color: var(--primary);
    text-align: center;
    margin-bottom: 10px;
    letter-spacing: -0.4px;
    line-height: 1.28;
}

.benefits h2 .highlight-number {
    color: var(--accent);
    font-weight: 500;
}

.benefits-subtitle {
    font-size: 14px;
    color: var(--text);
    text-align: center;
    font-weight: 400;
    letter-spacing: normal;
    margin-bottom: 60px;
}

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

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1150px;
    margin: 0 auto;
}

.benefit-card {
    background: var(--primary);
    padding: 30px 24px;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 250px;
}

.benefit-icon {
    width: 24.5px;
    height: 24.5px;
    margin-bottom: 20px;
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
    line-height: 1.3;
}

.benefit-card p {
    font-size: 16px;
    color: var(--white);
    line-height: 1.5;
}

/* ===== CTA Banner ===== */
.cta-banner {
    padding: 120px 0;
    color: var(--white);
    position: relative;
    overflow: hidden;
    background: linear-gradient(to right, rgb(51 51 51 / 50%), rgb(39 39 39 / 50%)), url(../img/cta-bg.jpg) center center / cover no-repeat;
    min-height: 120px;
    width: 100%;
}

.cta-overlay {
    display: none;
}

.cta-banner .container {
    max-width: 1150px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 2;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

.cta-banner h2 {
    font-size: 26px;
    font-weight: 300;
    margin-bottom: 0;
    line-height: 1.3;
    font-family: var(--font-main);
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex: 1;
}

.btn-cta-large {
    background: var(--accent);
    color: var(--white);
    border: none;
    padding: 14px 32px;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 280px;
}

.btn-cta-large:hover {
    background: #a36b30;
    transform: translateY(-2px);
}

.btn-cta-label {
    font-size: 17px;
    font-weight: 600;
    display: block;
}

.btn-cta-subtitle {
    font-size: 13px;
    font-weight: 400;
    display: block;
    margin-top: 4px;
    opacity: 0.9;
}

/* ===== Testimonials ===== */
.testimonials {
    padding: 80px 0;
    background: var(--white);
}

.testimonials .container {
    max-width: 1280px;
    padding: 0 20px;
}

.testimonials h2 {
    font-size: 28px;
    font-weight: 500;
    color: var(--text);
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: -0.4px;
    line-height: 1.3;
}

.testimonials h2 .highlight {
    color: var(--accent);
}

.testimonials-slider {
    position: relative;
    max-width: 820px;
    margin: 0 auto;
    padding: 0;
    overflow: hidden;
    width: 100%;
}

.testimonials-container {
    position: relative;
    max-width: 980px;
    margin: 0 auto;
    padding: 0 80px;
    width: 100%;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    flex: 0 0 100%;
    width: 100%;
    padding: 30px 40px;
    background: var(--primary);
    border-radius: 16px;
    position: relative;
    color: var(--white);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: auto;
}

.testimonial-stars {
    color: #f5a623;
    font-size: 16px;
    margin-bottom: 15px;
    letter-spacing: 5px;
    line-height: 1;
}

.quote-icon {
    font-size: 36px;
    color: var(--white);
    opacity: 0.5;
    line-height: 1;
    margin-bottom: 15px;
    font-family: Georgia, serif;
}

.testimonial-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--white);
    font-style: normal;
    font-family: var(--font-main);
    text-align: center;
}

.slider-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

.slider-btn {
    pointer-events: auto;
    background: var(--white);
    color: var(--text);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #ddd;
    font-size: 24px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.slider-btn:hover {
    background: var(--gray-light);
    border-color: var(--primary);
}

.slider-dots {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 30px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    padding: 0;
}

.slider-dot.active {
    background: var(--text);
}

/* ===== Team Section ===== */
.team {
    padding: 80px 0;
    background: var(--white);
    overflow: hidden;
}

.team .container {
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.team h2 {
    font-size: 28px;
    font-weight: 500;
    color: var(--text);
    text-align: center;
    margin-bottom: 50px;
    letter-spacing: -0.4px;
    line-height: 1.3;
}

.team h2 .highlight {
    color: var(--accent);
}

.team-carousel {
    overflow: hidden;
    width: 100%;
    max-width: 100vw;
}

.team-track {
    display: flex;
    gap: 20px;
    padding: 0 0 20px 0;
    animation: teamScroll 40s linear infinite;
}

.team-track:hover {
    animation-play-state: paused;
}

@keyframes teamScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.team-member {
    flex: 0 0 auto;
    width: 220px;
    text-align: center;
}

.team-member img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1.2;
    border-radius: 0;
    object-fit: cover;
    margin-bottom: 15px;
    border: none;
    transition: var(--transition);
}

.team-member h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 4px;
    font-family: var(--font-main);
}

.team-member p {
    font-size: 14px;
    color: var(--accent);
    font-family: var(--font-main);
    font-style: italic;
}

/* ===== Steps Section ===== */
.steps-section {
    padding: 100px 0;
    background: var(--white);
}

.steps-section h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-dark);
    text-align: center;
    margin-bottom: 50px;
    letter-spacing: -0.4px;
    line-height: 1.3;
    font-family: var(--font-main);
}

.steps-section h2 .accent {
    color: var(--accent);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 1150px;
    margin: 0 auto;
}

.step {
    background: var(--primary);
    padding: 40px 20px;
    border-radius: 54px;
    text-align: center;
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 244px;
    transition: var(--transition);
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.step-number {
    width: auto;
    height: auto;
    border-radius: 0;
    background: transparent;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    font-size: 48px;
    margin-bottom: 20px;
}

.steps-grid .step:nth-child(4) .step-number {
    font-size: 48px;
}

.steps-grid .step:nth-child(4) .step-number svg {
    width: 48px;
    height: 48px;
    fill: var(--white);
}

.steps-grid .step:nth-child(4) .step-number svg path {
    fill: var(--white);
}

.step h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.3;
    font-family: var(--font-main);
    color: var(--white);
}

.step p {
    font-size: 15px;
    line-height: 1.5;
    opacity: 0.9;
    font-family: var(--font-main);
    color: var(--white);
}

/* ===== Jobs Section ===== */
.jobs {
    padding: 80px 0;
    background: #f5f5f5;
}

.jobs h2 {
    font-size: 48px;
    font-weight: 500;
    color: var(--primary-dark);
    text-align: center;
    margin-bottom: 0;
    letter-spacing: -0.4px;
}

.jobs h2 .highlight {
    color: var(--accent);
}

.jobs-subtitle {
    font-size: 14px;
    color: var(--text);
    text-align: center;
    font-weight: 400;
    margin-bottom: 50px;
}

.jobs-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.job-item {
    background: var(--white);
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.job-item:hover {
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    border-color: var(--primary);
}

.job-item-content {
    flex: 1;
}

.job-item-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 10px;
    line-height: 1.3;
}

.job-item-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.info-block-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-light);
}

.info-block-wrapper svg {
    width: 14px;
    height: 14px;
    color: var(--text);
    flex-shrink: 0;
}

.job-item-chevron {
    padding-left: 20px;
    color: var(--primary-portal);
    display: flex;
    align-self: center;
}

.job-item-chevron svg {
    width: 24px;
    height: 24px;
}

/* ===== Contact Section ===== */
.contact {
    padding: 0;
    background: url('../img/contact-bg.jpg') center right/cover no-repeat;
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

.contact::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(50, 60, 75, 0.8) 0%, rgba(50, 60, 75, 0.7) 40%, rgba(50, 60, 75, 0.45) 60%, rgba(50, 60, 75, 0.15) 80%, transparent 95%);
    z-index: 1;
}

.contact .container {
    position: relative;
    z-index: 2;
    padding: 80px 20px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-card {
    background: transparent;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
    position: relative;
}

.contact-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1.2;
    object-fit: cover;
    display: block;
    border-radius: 0;
}

.contact-card .contact-caption {
    position: static;
    padding: 16px 20px;
    color: var(--white);
    text-align: center;
    font-family: var(--font-main);
}

.contact-card .contact-caption strong {
    display: block;
    font-size: 16px;
    margin-bottom: 2px;
    font-weight: 600;
    color: var(--white);
}

.contact-card .contact-caption span {
    display: block;
    font-size: 12px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
}

.contact-info {
    color: var(--white);
}

.contact-info h3 {
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 1.2;
}

.contact-info h3 span {
    display: block;
    font-weight: 400;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.6;
    max-width: 550px;
}

.contact-buttons {
    display: flex;
    flex-direction: row;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-btn {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 0;
    background: transparent;
    border: none;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.contact-btn:hover {
    opacity: 0.8;
}

.contact-btn svg {
    width: 20px;
    height: 20px;
    margin-bottom: 4px;
}

.contact-btn strong {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
}

.contact-btn small {
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

/* ===== Footer ===== */
.footer {
    padding: 80px 0;
    background: #1f5ca4;
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.footer-col h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-logo {
    width: 256px;
    height: 256px;
    margin-bottom: 30px;
}

.footer-link {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: rgb(255, 255, 255);
    font-size: 15px;
    font-weight: 400;
    transition: var(--transition);
    text-decoration: none;
    font-family: var(--font-main);
}

.footer-link:hover {
    color: var(--white);
}

.footer-link svg {
    width: 18px;
    height: 18px;
}

.footer-address {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.footer-address svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.footer-col a {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
    transition: var(--transition);
}

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

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }

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

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

@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
    }

    .about-text-side h2 {
        text-align: center;
        margin-bottom: 20px;
    }

    .video-content {
        flex-direction: column;
    }

    .video-text {
        text-align: center;
    }

    .header-content {
        flex-wrap: wrap;
    }

    .header-link {
        order: 3;
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-list {
        position: fixed;
        top: 100px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        gap: 0;
        box-shadow: var(--shadow-sm);
        transform: translateY(-150%);
        opacity: 0;
        transition: var(--transition);
    }

    .nav-list.active {
        transform: translateY(0);
        opacity: 1;
    }

    .nav-list li {
        border-bottom: 1px solid var(--gray);
    }

    .nav-list a {
        display: block;
        padding: 15px 0;
    }

    .hero-box {
        padding: 30px 25px;
    }

    .hero-box h1 {
        font-size: 28px;
    }

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

    .contact-grid {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .contact-person {
        margin: 0 0 40px 0;
    }

    .contact-buttons {
        justify-content: flex-start;
        align-items: flex-start;
    }

    .contact-info>p {
        margin-left: 0;
        margin-right: 0;
    }

    .contact-info {
        align-items: flex-start;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-link,
    .footer-address {
        justify-content: center;
    }

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

@media (max-width: 576px) {
    .container {
        max-width: 100% !important;
    }

    /* Testimonials: Arrows ausblenden, swipebar */
    .slider-btn {
        display: none !important;
    }

    .testimonials-container {
        padding: 0 15px;
        max-width: 100% !important;
    }

    .testimonials-slider {
        max-width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
    }

    .testimonials-track {
        scroll-snap-align: start;
    }

    .testimonial-card {
        padding: 25px 20px;
        scroll-snap-align: center;
    }

    /* Team: 1 großes Bild, animiert + swipebar */
    .team-track {
        animation: teamScroll 30s linear infinite;
        gap: 20px;
        padding: 0 20px 20px 20px;
    }

    .team-track:hover {
        animation-play-state: paused;
    }

    .team-carousel {
        overflow-x: auto !important;
        overflow-y: hidden !important;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
    }

    .team-member {
        width: calc(100vw - 60px);
        flex: 0 0 calc(100vw - 60px);
        scroll-snap-align: center;
    }

    .team-member img {
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1.2;
    }

    /* Jobs: Überschrift responsive */
    .jobs h2 {
        font-size: 28px;
        padding: 0 20px;
    }

    /* CTA Banner */
    .cta-banner {
        padding: 60px 0;
    }

    .cta-banner .container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 0 20px;
        max-width: 100% !important;
    }

    .cta-banner h2 {
        font-size: 20px;
    }

    .btn-cta-large {
        min-width: auto;
        width: 100%;
    }

    /* Kontakt: Icon links + Text, alles linksbündig */
    .contact-info {
        text-align: left;
        padding: 0 20px;
    }

    .contact-info h3 {
        font-size: 26px;
        text-align: left;
    }

    .contact-info p {
        text-align: left;
    }

    .contact-buttons {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .contact-btn {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 15px;
    }

    .contact-btn svg {
        width: 28px;
        height: 28px;
        flex-shrink: 0;
    }

    .contact-btn div {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-btn strong {
        font-size: 20px;
    }

    .contact-btn small {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .hero-box h1 {
        font-size: 24px;
    }

    .testimonial-card {
        padding: 25px;
    }

    .contact-btn {
        width: 100%;
        justify-content: flex-start;
    }

    .cta-banner .container {
        flex-direction: column;
        gap: 20px;
    }

    .cta-banner h2 {
        font-size: 18px;
    }

    .btn-cta-large {
        min-width: auto;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        max-width: 100%;
    }
}

/* ===== Scroll to Top Button ===== */
.scroll-to-top {
    position: fixed;
    bottom: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
    background: #1f5ca4;
    border: 1px solid #fff;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 9999;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: #174a87;
}

.scroll-to-top svg {
    width: 24px;
    height: 24px;
    color: #fff;
    stroke: #fff;
    stroke-width: 2;
    fill: none;
}

/* ===== Global Overflow Fix ===== */
html, body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
}

* {
    box-sizing: border-box;
}

/* ===== Keyframes ===== */
@keyframes teamScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes testimonialScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}