/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #0f0f0f;
    color: #f5f2ec;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    overflow-x: clip;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: 0.02em;
}

button,
input,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
    border: none;
    outline: none;
    background: none;
    color: inherit;
}

/* ===== UTILITY ===== */
.container {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
}

.section-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #e8400c;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: #f5f2ec;
    margin-bottom: 1.5rem;
}

/* Scroll-reveal base */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== NAVBAR ===== */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: padding 0.4s ease, background 0.4s ease, backdrop-filter 0.4s ease;
}

#navbar.scrolled {
    padding: 0.75rem 0;
    background: rgba(15, 15, 15, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 2rem;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo img {
    height: 5.5rem;
    width: auto;
    transition: height 0.4s ease;
}

#navbar.scrolled .nav-logo img {
    height: 4rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    position: relative;
    padding: 0.25rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #e8400c;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-cta {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: #e8400c;
    color: #f5f2ec;
    padding: 0.65rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.nav-cta:hover {
    background: #cc3509;
    transform: translateY(-1px);
}

/* ===== LANGUAGE PICKER ===== */
.lang-picker {
    position: relative;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(245, 242, 236, 0.7);
    cursor: pointer;
    padding: 0.45rem 0.7rem;
    border-radius: 4px;
    border: 1px solid rgba(245, 242, 236, 0.12);
    transition: color 0.3s ease, border-color 0.3s ease, background 0.3s ease;
    background: none;
}

.lang-btn:hover,
.lang-picker.open .lang-btn {
    color: #f5f2ec;
    border-color: rgba(245, 242, 236, 0.3);
    background: rgba(245, 242, 236, 0.04);
}

.lang-btn svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    transition: transform 0.3s ease;
}

.lang-picker.open .lang-btn svg {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: #1e1e1e;
    border: 1px solid rgba(245, 242, 236, 0.1);
    border-radius: 8px;
    padding: 0.4rem;
    min-width: 130px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
    z-index: 1100;
}

.lang-picker.open .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.55rem 0.75rem;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(245, 242, 236, 0.65);
    transition: background 0.2s ease, color 0.2s ease;
    white-space: nowrap;
}

.lang-option:hover {
    background: rgba(245, 242, 236, 0.06);
    color: #f5f2ec;
}

.lang-option.active {
    color: #e8400c;
    background: rgba(232, 64, 12, 0.08);
}

.lang-option .lang-flag {
    font-size: 1.05rem;
    line-height: 1;
}

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: #f5f2ec;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO ===== */
#hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    z-index: 1;
}

/* ===== SITE WRAPPER — gives heroCmyk full page height ===== */
.site-wrapper {
    position: relative;
    min-height: 100vh;
}

.hero-cmyk {
    position: absolute;
    top: 0;
    left: -10%;
    right: -10%;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.cmyk-swipe {
    position: absolute;
    width: 180%;
    left: -40%;
    transform: skewY(-18deg);
    border-radius: 4px;
    will-change: transform, opacity;
    pointer-events: none;
    opacity: 0;
    animation: swipeFly var(--dur) var(--delay) cubic-bezier(0.25, 0.1, 0.25, 1) both;
}

@keyframes swipeFly {
    0% {
        transform: skewY(-18deg) translateX(-55%);
        opacity: 0;
    }

    12% {
        opacity: var(--peak-opacity);
    }

    35% {
        transform: skewY(-18deg) translateX(-10%);
        opacity: var(--peak-opacity);
    }

    65% {
        transform: skewY(-18deg) translateX(10%);
        opacity: var(--peak-opacity);
    }

    88% {
        opacity: 0;
    }

    100% {
        transform: skewY(-18deg) translateX(55%);
        opacity: 0;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.hero-text {
    flex: 1;
    min-width: 0;
}

.hero-headline {
    font-size: clamp(3.5rem, 10vw, 9rem);
    line-height: 0.95;
    margin-bottom: 1.25rem;
}

.hero-headline .accent {
    color: #f5c842;
}

.hero-sub {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(245, 242, 236, 0.7);
    max-width: 540px;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

/* ===== HERO REEL VIDEO ===== */
.hero-reel {
    flex: 0 0 auto;
    width: clamp(280px, 30vw, 420px);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.hero-reel-video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    opacity: 0.35;
    transition: opacity 0.5s ease;
}

.hero-reel-video:not(.active) {
    display: none;
}

.hero-reel:hover .hero-reel-video.active {
    opacity: 0.55;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: #e8400c;
    color: #f5f2ec;
    padding: 0.9rem 2rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.btn-primary:hover {
    background: #cc3509;
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: transparent;
    color: #f5f2ec;
    padding: 0.9rem 2rem;
    border: 1px solid rgba(245, 242, 236, 0.25);
    border-radius: 4px;
    cursor: pointer;
    transition: border-color 0.3s ease, background 0.3s ease, transform 0.2s ease;
}

.btn-secondary:hover {
    border-color: #f5f2ec;
    background: rgba(245, 242, 236, 0.05);
    transform: translateY(-2px);
}

/* ===== TICKER ===== */
#ticker {
    background: #e8400c;
    padding: 0.9rem 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    z-index: 1;
}

.ticker-track {
    display: flex;
    animation: tickerScroll 30s linear infinite;
}

.ticker-item {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #f5f2ec;
    padding: 0 2rem;
    flex-shrink: 0;
}

.ticker-item::before {
    content: '◆';
    margin-right: 2rem;
    opacity: 0.5;
}

@keyframes tickerScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ===== SERVICES ===== */
#services {
    padding: 7rem 0;
    position: relative;
    z-index: 1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.service-card {
    background: #181818;
    border: 1px solid rgba(245, 242, 236, 0.06);
    border-radius: 8px;
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
    cursor: default;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(232, 64, 12, 0.3);
}

.service-tag {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    background: #e8400c;
    color: #f5f2ec;
    padding: 0.3rem 0.75rem;
    border-radius: 3px;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.service-card p {
    font-size: 0.9rem;
    color: rgba(245, 242, 236, 0.6);
    line-height: 1.65;
}

.service-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(232, 64, 12, 0.1);
}

.service-icon svg {
    width: 24px;
    height: 24px;
    stroke: #e8400c;
    stroke-width: 1.5;
    fill: none;
}

/* ===== VALUE PROPOSITION ===== */
.value-prop {
    margin-bottom: 3.5rem;
    background: linear-gradient(135deg, rgba(232, 64, 12, 0.06) 0%, rgba(245, 200, 66, 0.04) 100%);
    border: 1px solid rgba(232, 64, 12, 0.12);
    border-radius: 16px;
    padding: 3.5rem 3rem;
    position: relative;
    z-index: 2;
}

.value-prop::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #e8400c, #f5c842, #e8400c);
    border-radius: 16px 16px 0 0;
    overflow: hidden;
}

.value-prop-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.value-prop-headline {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
    margin-bottom: 1.25rem;
    color: #f5f2ec;
}

.value-prop-headline .accent {
    color: #f5c842;
}

.value-prop-sub {
    font-size: 1rem;
    color: rgba(245, 242, 236, 0.6);
    line-height: 1.7;
    max-width: 420px;
}

.value-prop-benefits {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: rgba(245, 242, 236, 0.03);
    border: 1px solid rgba(245, 242, 236, 0.06);
    border-radius: 10px;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.benefit-item:hover {
    background: rgba(232, 64, 12, 0.06);
    border-color: rgba(232, 64, 12, 0.2);
    transform: translateX(4px);
}

.benefit-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(232, 64, 12, 0.12);
}

.benefit-icon svg {
    width: 18px;
    height: 18px;
    stroke: #e8400c;
    stroke-width: 1.5;
    fill: none;
}

.benefit-item h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-bottom: 0.2rem;
    color: #f5f2ec;
}

.benefit-item p {
    font-size: 0.8rem;
    color: rgba(245, 242, 236, 0.5);
    line-height: 1.5;
}

/* ===== MATERIALS STRIP ===== */
.materials-strip {
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(245, 242, 236, 0.07);
}

.materials-strip-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #e8400c;
    margin-bottom: 1.25rem;
}

.materials-strip-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
}

.mat-item {
    padding: 0.5rem 1.5rem;
}

.mat-item span {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(245, 242, 236, 0.55);
    transition: color 0.25s ease;
}

.mat-item:hover span {
    color: #f5f2ec;
}

.mat-divider {
    width: 1px;
    height: 16px;
    background: rgba(245, 242, 236, 0.12);
    flex-shrink: 0;
}

/* ===== PORTFOLIO ===== */
#portfolio {
    padding: 7rem 0;
    position: relative;
    z-index: 1;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}

.portfolio-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1 / 1;
    background: #181818;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s ease;
}

.portfolio-item:hover img {
    transform: scale(1.08);
    filter: brightness(0.4);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.75rem;
    opacity: 0;
    transition: opacity 0.45s ease, transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    transform: translateY(8px);
    z-index: 2;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
    transform: translateY(0);
}

.portfolio-overlay h4 {
    font-size: 1.6rem;
    margin-bottom: 0.35rem;
    color: #f5f2ec;
}

.portfolio-overlay span {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #e8400c;
    background: rgba(232, 64, 12, 0.12);
    padding: 0.3rem 0.7rem;
    border-radius: 3px;
    margin-bottom: 0.6rem;
    width: fit-content;
}

.portfolio-overlay p {
    font-size: 0.85rem;
    color: rgba(245, 242, 236, 0.7);
    line-height: 1.55;
}

/* Video portfolio items */
.portfolio-video-item {
    position: relative;
}

.portfolio-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    inset: 0;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s ease;
}

.portfolio-video-item:hover .portfolio-video {
    transform: scale(1.08);
    filter: brightness(0.4);
}

/* Play indicator */
.video-play-indicator {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    width: 52px;
    height: 52px;
    background: rgba(232, 64, 12, 0.85);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
    backdrop-filter: blur(6px);
}

.video-play-indicator svg {
    width: 20px;
    height: 20px;
    fill: #f5f2ec;
    stroke: none;
    margin-left: 2px;
}

.portfolio-video-item:hover .video-play-indicator {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.portfolio-video-item.playing .video-play-indicator {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
}

/* ===== PROCESS ===== */
#process {
    padding: 7rem 0;
    position: relative;
    z-index: 1;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 3rem;
    position: relative;
}

.process-step {
    text-align: center;
    padding: 2rem 1.5rem;
    position: relative;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 2.75rem;
    right: 0;
    width: 50%;
    height: 1px;
    background: linear-gradient(90deg, rgba(232, 64, 12, 0.4), rgba(232, 64, 12, 0));
}

.process-step::before {
    content: '';
    position: absolute;
    top: 2.75rem;
    left: 0;
    width: 50%;
    height: 1px;
    background: linear-gradient(90deg, rgba(232, 64, 12, 0), rgba(232, 64, 12, 0.4));
}

.process-step:first-child::before {
    display: none;
}

.process-step:last-child::after {
    display: none;
}

.step-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    color: rgba(232, 64, 12, 0.2);
    line-height: 1;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.step-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}

.step-desc {
    font-size: 0.85rem;
    color: rgba(245, 242, 236, 0.55);
    line-height: 1.6;
    max-width: 220px;
    margin: 0 auto;
}

/* ===== FAQ ===== */
#faq {
    padding: 7rem 0;
    position: relative;
    z-index: 1;
}

.faq-list {
    margin-top: 3.5rem;
    max-width: 860px;
}

.faq-item {
    border-bottom: 1px solid rgba(245, 242, 236, 0.07);
    overflow: hidden;
}

.faq-q {
    width: 100%;
    background: none;
    border: none;
    color: #f5f2ec;
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    padding: 1.4rem 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    transition: color 0.3s;
}

.faq-q:hover {
    color: #e8400c;
}

.faq-icon {
    font-size: 1.4rem;
    font-weight: 300;
    color: #e8400c;
    flex-shrink: 0;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    line-height: 1;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-a {
    font-size: 0.9rem;
    color: rgba(245, 242, 236, 0.55);
    line-height: 1.8;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s cubic-bezier(0.16, 1, 0.3, 1), padding 0.45s ease;
    padding-bottom: 0;
}

.faq-item.open .faq-a {
    max-height: 300px;
    padding-bottom: 1.5rem;
}

/* ===== CONTACT ===== */
#contact {
    padding: 7rem 0;
    position: relative;
    z-index: 1;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
}

.contact-info p {
    color: rgba(245, 242, 236, 0.6);
    margin-bottom: 2rem;
    max-width: 420px;
    line-height: 1.7;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.contact-detail svg {
    width: 18px;
    height: 18px;
    stroke: #e8400c;
    stroke-width: 1.5;
    fill: none;
    flex-shrink: 0;
}

.contact-form {
    background: #181818;
    border: 1px solid rgba(245, 242, 236, 0.06);
    border-radius: 10px;
    padding: 2.5rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(245, 242, 236, 0.5);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    background: rgba(245, 242, 236, 0.04);
    border: 1px solid rgba(245, 242, 236, 0.1);
    border-radius: 6px;
    color: #f5f2ec;
    font-size: 0.9rem;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #e8400c;
    background: rgba(245, 242, 236, 0.06);
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23f5f2ec' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    cursor: pointer;
}

.form-group select option {
    background: #181818;
    color: #f5f2ec;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    width: 100%;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: #e8400c;
    color: #f5f2ec;
    padding: 1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.form-submit:hover {
    background: #cc3509;
    transform: translateY(-2px);
}

/* ===== FOOTER ===== */
#footer {
    border-top: 1px solid rgba(245, 242, 236, 0.07);
    padding: 1.25rem 0;
    position: relative;
    z-index: 1;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-logo img {
    height: 5.5rem;
    width: auto;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(245, 242, 236, 0.5);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #f5f2ec;
}

.footer-copy {
    font-size: 0.75rem;
    color: rgba(245, 242, 236, 0.3);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .process-step::after,
    .process-step::before {
        display: none;
    }

    .value-prop-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(15, 15, 15, 0.97);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.4s ease;
        z-index: 999;
    }

    .nav-links.open {
        opacity: 1;
        pointer-events: all;
    }

    .nav-links a {
        font-size: 1.2rem;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-cta-desktop {
        display: none;
    }

    .hero-headline {
        font-size: clamp(2.8rem, 12vw, 5rem);
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-reel {
        width: clamp(220px, 60vw, 320px);
    }

    .hero-sub {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-btns {
        justify-content: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .process-steps {
        grid-template-columns: 1fr 1fr;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .value-prop {
        padding: 2rem 1.5rem;
    }

    .value-prop-headline {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }
}

@media (max-width: 480px) {
    .hero-btns {
        flex-direction: column;
    }

    .hero-btns .btn-primary,
    .hero-btns .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }
}