/* Torbacım — siyah-gri / endüstriyel plastik estetiği */

:root {
    --bg-deep: #0a0a0c;
    --bg-elevated: #12121a;
    --bg-card: #18181f;
    --surface: #1e1e26;
    --border: rgba(255, 255, 255, 0.08);
    --text: #e8e8ec;
    --text-muted: #9898a8;
    --accent: #6b8cae;
    --accent-soft: rgba(107, 140, 174, 0.25);
    --highlight: #c4cdd8;
    --plastic-shine: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, transparent 50%);
    --radius: 12px;
    --radius-lg: 20px;
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
    --font: "DM Sans", system-ui, sans-serif;
    --font-display: "Outfit", var(--font);
    --header-h: 72px;
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font);
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--text);
    background: var(--bg-deep);
    min-height: 100vh;
    overflow-x: hidden;
}

.grain {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.2s var(--ease-out);
}

a:hover {
    color: var(--highlight);
}

.container {
    width: min(1120px, 92vw);
    margin-inline: auto;
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-h);
    background: rgba(10, 10, 12, 0.72);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid transparent;
    transition: background 0.35s var(--ease-out), border-color 0.35s, box-shadow 0.35s;
}

.site-header.is-scrolled {
    background: rgba(10, 10, 12, 0.92);
    border-bottom-color: var(--border);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.35);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-h);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    color: var(--text);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: -0.02em;
}

.logo:hover {
    color: var(--text);
}

.logo-mark {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--plastic-shine), linear-gradient(145deg, #2a2a32 0%, #0e0e12 100%);
    border: 1px solid var(--border);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.nav {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.nav a {
    color: var(--text-muted);
    font-size: 0.92rem;
    font-weight: 500;
    padding: 0.5rem 0.85rem;
    border-radius: 8px;
    transition: color 0.2s, background 0.2s;
}

.nav a:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.05);
}

.nav a.is-active {
    color: var(--text);
    background: rgba(255, 255, 255, 0.07);
}

.nav-cta {
    background: var(--accent-soft) !important;
    color: var(--highlight) !important;
    border: 1px solid rgba(107, 140, 174, 0.35);
    margin-left: 0.35rem;
}

.nav-cta:hover {
    background: rgba(107, 140, 174, 0.35) !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform 0.3s var(--ease-out), opacity 0.2s;
}

@media (max-width: 900px) {
    .nav-toggle {
        display: flex;
    }

    .nav {
        position: fixed;
        top: var(--header-h);
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        padding: 1rem 1.25rem 1.5rem;
        background: rgba(12, 12, 18, 0.98);
        border-bottom: 1px solid var(--border);
        gap: 0.15rem;
        transform: translateY(-120%);
        opacity: 0;
        visibility: hidden;
        transition: transform 0.4s var(--ease-out), opacity 0.3s, visibility 0.3s;
    }

    .nav.is-open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-toggle.is-open span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.is-open span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.is-open span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

.main {
    padding-top: var(--header-h);
}

/* İlk ekran — troll slogan */
.slogan-gate {
    position: relative;
    min-height: calc(100vh - var(--header-h));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 0 4rem;
    overflow: hidden;
}

.slogan-gate-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.slogan-gate-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(0.55) brightness(0.42) contrast(1.05);
}

.slogan-gate-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        165deg,
        rgba(8, 8, 12, 0.75) 0%,
        rgba(10, 10, 14, 0.55) 40%,
        rgba(10, 12, 18, 0.88) 100%
    );
}

.slogan-gate-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 52rem;
}

.slogan-gate-kicker {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent);
    margin: 0 0 1rem;
    font-weight: 600;
}

.slogan-gate-title {
    font-family: var(--font-display);
    font-size: clamp(1.85rem, 5vw, 3.1rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin: 0 0 1.25rem;
    color: #f4f4f8;
    text-shadow: 0 4px 40px rgba(0, 0, 0, 0.65);
}

.slogan-gate-sub {
    font-size: clamp(1.05rem, 2.4vw, 1.35rem);
    line-height: 1.55;
    color: rgba(232, 232, 240, 0.88);
    margin: 0 0 2rem;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.5);
}

.slogan-fake-term {
    font-weight: 700;
    color: var(--highlight);
    text-decoration: underline;
    text-decoration-style: dotted;
    text-underline-offset: 0.2em;
    cursor: help;
}

.slogan-gate-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.slogan-gate-ghost {
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(0, 0, 0, 0.25);
}

.gate-animate {
    opacity: 0;
    transform: translateY(20px);
    animation: gateIn 0.95s var(--ease-out) forwards;
}

.gate-animate-1 {
    animation-delay: 0.12s;
}

.gate-animate-2 {
    animation-delay: 0.28s;
}

.gate-animate-3 {
    animation-delay: 0.44s;
}

@keyframes gateIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slogan-chevron {
    display: flex;
    justify-content: center;
    margin-top: 0.5rem;
    color: rgba(255, 255, 255, 0.5);
    animation: chevronBounce 2.2s ease-in-out infinite;
}

.slogan-chevron span {
    display: block;
    width: 28px;
    height: 28px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    margin-top: -8px;
}

@keyframes chevronBounce {
    0%,
    100% {
        transform: translateY(0);
        opacity: 0.6;
    }
    50% {
        transform: translateY(8px);
        opacity: 1;
    }
}

/* Hero */
.hero {
    position: relative;
    min-height: min(92vh, 900px);
    display: flex;
    align-items: flex-end;
    padding: 5rem 0 4rem;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.75) brightness(0.45);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(10, 10, 12, 0.2) 0%,
        rgba(10, 10, 12, 0.75) 45%,
        var(--bg-deep) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    letter-spacing: 0.02em;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #5a9;
    box-shadow: 0 0 12px rgba(85, 170, 153, 0.8);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(0.85);
    }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 5.5vw, 3.75rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin: 0 0 1.25rem;
}

.text-gradient {
    background: linear-gradient(110deg, var(--highlight) 0%, var(--accent) 50%, #8aa6b8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-lead {
    max-width: 38rem;
    color: var(--text-muted);
    font-size: 1.1rem;
    margin: 0 0 2rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 1.6rem;
    font-family: var(--font);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 10px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.25s var(--ease-out), box-shadow 0.25s, background 0.25s, border-color 0.25s;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(165deg, #7a9eb8 0%, #4a6a82 100%);
    color: #fff;
    box-shadow: 0 12px 32px rgba(74, 106, 130, 0.35);
}

.btn-primary:hover {
    box-shadow: 0 16px 40px rgba(74, 106, 130, 0.45);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--border);
    color: var(--text);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text);
}

.btn-secondary {
    background: var(--surface);
    border-color: var(--border);
    color: var(--text);
}

.btn-sm {
    padding: 0.6rem 1.1rem;
    font-size: 0.88rem;
}

.btn-full {
    width: 100%;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

@media (max-width: 700px) {
    .hero-stats {
        grid-template-columns: 1fr;
    }
}

.stat-card {
    background: var(--plastic-shine), var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem 1.35rem;
    box-shadow: var(--shadow);
}

.stat-card dt {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--highlight);
    margin: 0 0 0.25rem;
}

.stat-card dd {
    margin: 0;
    font-size: 0.88rem;
    color: var(--text-muted);
}

.float-slow {
    animation: floatY 6s ease-in-out infinite;
}

.float-delay {
    animation-delay: 1s;
}

.float-delay-2 {
    animation-delay: 2s;
}

@keyframes floatY {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
}

.animate-in {
    opacity: 0;
    transform: translateY(22px);
    animation: fadeUp 1s var(--ease-out) forwards;
}

.animate-in-delay-1 {
    animation-delay: 0.12s;
}

.animate-in-delay-2 {
    animation-delay: 0.24s;
}

.animate-in-delay-3 {
    animation-delay: 0.36s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Marquee */
.trust-bar {
    padding: 2.5rem 0;
    border-block: 1px solid var(--border);
    background: var(--bg-elevated);
}

.trust-label {
    text-align: center;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-muted);
    margin: 0 0 1.25rem;
}

.marquee {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.marquee-track {
    display: flex;
    gap: 3rem;
    width: max-content;
    animation: marquee 28s linear infinite;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.35rem;
    color: rgba(232, 232, 236, 0.22);
    white-space: nowrap;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Sections */
.section {
    padding: clamp(4rem, 10vw, 6rem) 0;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3.5vw, 2.35rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 0 0 1rem;
}

.section-lead {
    color: var(--text-muted);
    margin: 0 0 1.5rem;
    max-width: 42rem;
}

.section-lead.narrow {
    max-width: 36rem;
}

.section-head {
    margin-bottom: 2.5rem;
    text-align: center;
}

.section-head .section-lead {
    margin-inline: auto;
}

.bg-darker {
    background: linear-gradient(180deg, var(--bg-elevated) 0%, var(--bg-deep) 100%);
}

.section-split .split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

@media (max-width: 900px) {
    .section-split .split {
        grid-template-columns: 1fr;
    }

    .split-reverse .split-visual {
        order: -1;
    }
}

.split-reverse {
    direction: rtl;
}

.split-reverse > * {
    direction: ltr;
}

.split-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.split-frame img {
    width: 100%;
    aspect-ratio: 3/2;
    object-fit: cover;
}

.split-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem 1.25rem;
    font-size: 0.85rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
    color: var(--text-muted);
}

.feature-list {
    margin: 0 0 1.5rem;
    padding-left: 1.2rem;
    color: var(--text-muted);
}

.feature-list li {
    margin-bottom: 0.5rem;
}

.link-arrow {
    font-weight: 600;
    color: var(--accent);
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

@media (max-width: 900px) {
    .card-grid {
        grid-template-columns: 1fr;
    }
}

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform 0.35s var(--ease-out), border-color 0.35s, box-shadow 0.35s;
}

.product-card:hover {
    border-color: rgba(107, 140, 174, 0.35);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.tilt-hover:hover {
    transform: translateY(-6px) perspective(800px) rotateX(2deg);
}

.product-card-media {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.product-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

.product-card:hover .product-card-media img {
    transform: scale(1.06);
}

.product-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin: 1.25rem 1.25rem 0.5rem;
}

.product-card p {
    margin: 0 1.25rem;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.product-meta {
    display: block;
    margin: 1rem 1.25rem 1.35rem;
    font-size: 0.8rem;
    color: var(--accent);
}

.section-cta {
    text-align: center;
    margin-top: 2.5rem;
}

.section-quote {
    background: var(--surface);
    border-block: 1px solid var(--border);
}

.quote-block {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    font-style: italic;
    color: var(--text-muted);
}

.quote-block p {
    margin: 0 0 1.25rem;
    color: var(--text);
}

.quote-block footer {
    font-size: 0.95rem;
    font-style: normal;
    color: var(--text-muted);
}

.badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.chip {
    display: inline-block;
    padding: 0.45rem 0.9rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Reveal on scroll */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    transform: translateX(-28px);
}

.reveal-left.is-visible {
    transform: translateX(0);
}

.reveal-right {
    transform: translateX(28px);
}

.reveal-right.is-visible {
    transform: translateX(0);
}

.reveal-delay-1 {
    transition-delay: 0.08s;
}

.reveal-delay-2 {
    transition-delay: 0.16s;
}

/* Page hero */
.page-hero {
    padding: 3rem 0 2rem;
    border-bottom: 1px solid var(--border);
    background: radial-gradient(ellipse 80% 60% at 50% -20%, rgba(107, 140, 174, 0.15), transparent);
}

.page-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    margin: 0 0 0.75rem;
    letter-spacing: -0.02em;
}

.page-lead {
    margin: 0;
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 40rem;
}

/* Prose */
.prose h2 {
    font-family: var(--font-display);
    margin-top: 0;
}

.prose-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
    margin-bottom: 3rem;
}

@media (max-width: 800px) {
    .prose-grid {
        grid-template-columns: 1fr;
    }
}

.prose-figure {
    margin: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
}

.prose-figure img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.values h2 {
    font-family: var(--font-display);
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

@media (max-width: 800px) {
    .value-grid {
        grid-template-columns: 1fr;
    }
}

.value-card {
    padding: 1.35rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.value-card strong {
    display: block;
    font-family: var(--font-display);
    margin-bottom: 0.5rem;
}

.value-card p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-bottom: 3rem;
}

@media (max-width: 800px) {
    .cert-grid {
        grid-template-columns: 1fr;
    }
}

.cert-card {
    padding: 1.5rem;
    background: var(--bg-card);
    border-radius: var(--radius);
}

.glow-border {
    border: 1px solid var(--border);
    position: relative;
}

.glow-border::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(107, 140, 174, 0.4), transparent 50%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.cert-card h3 {
    font-family: var(--font-display);
    margin: 0 0 0.5rem;
}

.cert-card p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Product rows */
.product-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
    margin-bottom: 4rem;
}

.product-row-reverse {
    direction: rtl;
}

.product-row-reverse > * {
    direction: ltr;
}

@media (max-width: 800px) {
    .product-row {
        grid-template-columns: 1fr;
    }

    .product-row-reverse {
        direction: ltr;
    }
}

.product-row-media {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
}

.product-row-media img {
    width: 100%;
    aspect-ratio: 3/2;
    object-fit: cover;
}

.product-row-body h2 {
    font-family: var(--font-display);
    font-size: 1.45rem;
    margin: 0 0 1rem;
}

.product-row-body p {
    color: var(--text-muted);
    margin: 0 0 1rem;
}

.product-row-body .chip {
    margin-bottom: 1.25rem;
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

@media (max-width: 800px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.contact-info h2 {
    font-family: var(--font-display);
}

.contact-info p {
    color: var(--text-muted);
}

.contact-map {
    margin-top: 1.5rem;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
}

.contact-map img {
    width: 100%;
    aspect-ratio: 2/1;
    object-fit: cover;
    filter: saturate(0.5);
}

.contact-form label {
    display: block;
    margin-bottom: 1.1rem;
}

.contact-form label span {
    display: block;
    font-size: 0.88rem;
    font-weight: 500;
    margin-bottom: 0.4rem;
    color: var(--text-muted);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    font-family: var(--font);
    font-size: 1rem;
    color: var(--text);
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: rgba(107, 140, 174, 0.5);
    box-shadow: 0 0 0 3px var(--accent-soft);
}

.contact-form button.is-loading .btn-text {
    opacity: 0;
}

.contact-form button.is-loading .btn-loader {
    opacity: 1;
}

.btn-loader {
    position: absolute;
    width: 22px;
    height: 22px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    opacity: 0;
    animation: spin 0.7s linear infinite;
}

.contact-form .btn-primary {
    position: relative;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.alert {
    padding: 1rem 1.25rem;
    border-radius: var(--radius);
    margin-bottom: 1rem;
}

.alert-success {
    background: rgba(85, 170, 130, 0.15);
    border: 1px solid rgba(85, 170, 130, 0.35);
    color: #a8d4ba;
}

.alert-error {
    background: rgba(200, 90, 90, 0.12);
    border: 1px solid rgba(200, 90, 90, 0.35);
    color: #e8a0a0;
}

/* Footer */
.site-footer {
    background: var(--bg-elevated);
    border-top: 1px solid var(--border);
    padding: 3rem 0 0;
    margin-top: 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 2rem;
    padding-bottom: 2.5rem;
}

@media (max-width: 800px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.1rem;
}

.footer-tag {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0.5rem 0 1rem;
}

.footer-small {
    font-size: 0.8rem;
    color: var(--text-muted);
    opacity: 0.8;
    margin: 0;
}

.footer-heading {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.footer-links a {
    color: var(--text-muted);
}

.footer-links a:hover {
    color: var(--text);
}

.footer-contact p {
    margin: 0 0 0.35rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}

@media (prefers-reduced-motion: reduce) {
    .gate-animate,
    .gate-animate-1,
    .gate-animate-2,
    .gate-animate-3 {
        animation: none;
        opacity: 1;
        transform: none;
    }

    .slogan-chevron {
        animation: none;
    }

    .marquee-track {
        animation: none;
    }
}
