/* Reset ve tasarım değişkenleri */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --font: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
    --ink: #0f172a;
    --ink-muted: #64748b;
    --primary: #1d4ed8;
    --primary-light: #3b82f6;
    --primary-dark: #1e3a8a;
    --accent: #fbbf24;
    --accent-hover: #f59e0b;
    --surface: #ffffff;
    --bg: #f1f5f9;
    --bg-subtle: #e2e8f0;
    --radius: 14px;
    --radius-lg: 20px;
    --shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
    --shadow-md: 0 12px 40px rgba(15, 23, 42, 0.08);
    --shadow-hover: 0 24px 48px rgba(29, 78, 216, 0.14);
    --header-h: 76px;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
    font-family: var(--font);
    line-height: 1.65;
    color: var(--ink);
    overflow-x: hidden;
    background: var(--surface);
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Bölüm başlıkları */
.section-head {
    text-align: center;
    max-width: 36rem;
    margin: 0 auto 3.25rem;
}

.section-head h2 {
    font-size: clamp(1.75rem, 4vw, 2.35rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--ink);
    line-height: 1.2;
}

.section-eyebrow {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 0.65rem;
}

.section-eyebrow--dark {
    text-align: left;
}

.section-desc {
    margin-top: 0.85rem;
    font-size: 1.05rem;
    color: var(--ink-muted);
    line-height: 1.55;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(148, 163, 184, 0.18);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: box-shadow 0.4s ease, background 0.4s ease, border-color 0.4s ease;
}

.header.header--scrolled {
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 10px 40px rgba(15, 23, 42, 0.08);
    border-bottom-color: rgba(148, 163, 184, 0.12);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    max-width: 1180px;
    margin: 0 auto;
    min-height: var(--header-h);
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    line-height: 0;
    text-decoration: none;
}

.logo img {
    display: block;
    height: 44px;
    width: auto;
    max-width: min(220px, 52vw);
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    position: relative;
    text-decoration: none;
    color: var(--ink);
    font-weight: 600;
    font-size: 0.92rem;
    transition: color 0.25s ease;
}

.nav-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
    color: var(--primary);
}

.nav-menu a:hover::after,
.nav-menu a:focus-visible::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.35rem;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--ink);
    margin: 4px 0;
    border-radius: 2px;
    transition: 0.3s;
}

/* Hero */
.hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(ellipse 90% 60% at 80% 20%, rgba(59, 130, 246, 0.22), transparent 55%),
        radial-gradient(ellipse 70% 45% at 10% 80%, rgba(251, 191, 36, 0.12), transparent 50%),
        linear-gradient(155deg, #0f172a 0%, #1e3a8a 42%, #1d4ed8 100%);
    color: #fff;
    padding: calc(var(--header-h) + 3.5rem) 0 5rem;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at 25% 15%,
        rgba(59, 130, 246, 0.28) 0%,
        transparent 42%
    );
    pointer-events: none;
    z-index: 0;
}

.hero-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.92);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    margin-bottom: 1.25rem;
}

.hero-eyebrow i {
    color: var(--accent);
}

.hero-content h1 {
    font-size: clamp(2rem, 4.5vw, 3.15rem);
    font-weight: 800;
    letter-spacing: -0.035em;
    margin-bottom: 1.25rem;
    line-height: 1.12;
    text-wrap: balance;
}

.hero-lead {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.6;
    max-width: 32rem;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 0.95rem 1.75rem;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(180deg, #fcd34d 0%, var(--accent) 100%);
    color: #1e3a8a;
    box-shadow: 0 8px 24px rgba(251, 191, 36, 0.35);
}

.btn-primary:hover {
    background: linear-gradient(180deg, #fde68a 0%, var(--accent-hover) 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(251, 191, 36, 0.45);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(8px);
}

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

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-visual {
    position: relative;
    width: min(100%, 320px);
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-visual i {
    position: relative;
    z-index: 2;
    font-size: clamp(4.5rem, 12vw, 7.5rem);
    color: rgba(255, 255, 255, 0.92);
    filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.25));
    transform-origin: center center;
}

.hero-ring {
    position: absolute;
    inset: 0;
    border: 2px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
    animation: pulse-ring 4s ease-out infinite;
}

.hero-ring--delay {
    animation-delay: 1.3s;
    inset: 12%;
    border-color: rgba(251, 191, 36, 0.25);
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.92);
        opacity: 0.9;
    }
    100% {
        transform: scale(1.12);
        opacity: 0;
    }
}

@keyframes heroEnter {
    from {
        opacity: 0;
        transform: translateY(32px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroVisualIn {
    from {
        opacity: 0;
        transform: scale(0.88) rotate(-4deg);
    }
    to {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

@keyframes heroFloat {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}

@keyframes heroAmbient {
    0% {
        opacity: 0.35;
        transform: scale(1) translate(0, 0);
    }
    100% {
        opacity: 0.65;
        transform: scale(1.12) translate(4%, 3%);
    }
}

@keyframes aboutVisualFloat {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* Scroll ile ortaya çıkma */
.reveal {
    opacity: 0;
    transform: translateY(44px);
    transition:
        opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.reveal--from-right {
    transform: translateX(48px);
}

.reveal.is-visible {
    opacity: 1;
    transform: none;
}

.reveal-stagger .service-card {
    opacity: 0;
    transform: translateY(40px) scale(0.96);
    transition:
        opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.reveal-stagger.is-visible .service-card:nth-child(1) {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 0.05s;
}
.reveal-stagger.is-visible .service-card:nth-child(2) {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 0.11s;
}
.reveal-stagger.is-visible .service-card:nth-child(3) {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 0.17s;
}
.reveal-stagger.is-visible .service-card:nth-child(4) {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 0.23s;
}
.reveal-stagger.is-visible .service-card:nth-child(5) {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 0.29s;
}
.reveal-stagger.is-visible .service-card:nth-child(6) {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 0.35s;
}
.reveal-stagger.is-visible .service-card:nth-child(7) {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 0.41s;
}
.reveal-stagger.is-visible .service-card:nth-child(8) {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 0.47s;
}

.reveal-stagger .contact-item {
    opacity: 0;
    transform: translateY(32px);
    transition:
        opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.65s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.25s ease;
}

.reveal-stagger.is-visible .contact-item:nth-child(1) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.06s;
}
.reveal-stagger.is-visible .contact-item:nth-child(2) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.14s;
}
.reveal-stagger.is-visible .contact-item:nth-child(3) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.22s;
}

.about-text.reveal .features-list li {
    opacity: 0;
    transform: translateX(-18px);
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-text.reveal.is-visible .features-list li:nth-child(1) {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.12s;
}
.about-text.reveal.is-visible .features-list li:nth-child(2) {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.18s;
}
.about-text.reveal.is-visible .features-list li:nth-child(3) {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.24s;
}
.about-text.reveal.is-visible .features-list li:nth-child(4) {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.3s;
}
.about-text.reveal.is-visible .features-list li:nth-child(5) {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.36s;
}

@media (prefers-reduced-motion: no-preference) {
    .hero::after {
        animation: heroAmbient 16s ease-in-out infinite alternate;
    }

    .hero-content > .hero-eyebrow,
    .hero-content > h1,
    .hero-content > .hero-lead,
    .hero-content > .hero-buttons {
        opacity: 0;
        animation: heroEnter 0.95s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    }

    .hero-content > .hero-eyebrow {
        animation-delay: 0.05s;
    }
    .hero-content > h1 {
        animation-delay: 0.14s;
    }
    .hero-content > .hero-lead {
        animation-delay: 0.24s;
    }
    .hero-content > .hero-buttons {
        animation-delay: 0.36s;
    }

    .hero-visual {
        opacity: 0;
        animation: heroVisualIn 1.05s cubic-bezier(0.22, 1, 0.36, 1) 0.22s forwards;
    }

    .hero-visual i {
        animation: heroFloat 5.5s ease-in-out 0.45s infinite;
    }

    .about-visual {
        animation: aboutVisualFloat 7s ease-in-out 0.5s infinite;
    }
}

/* Services */
.services {
    padding: 5.5rem 0;
    background: var(--bg);
    position: relative;
}

.services::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(148, 163, 184, 0.35), transparent);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: 1.5rem;
}

.service-card {
    position: relative;
    background: var(--surface);
    padding: 2rem 1.75rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid rgba(148, 163, 184, 0.12);
    transition:
        transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.4s ease,
        border-color 0.35s ease,
        opacity 0.65s ease;
    text-align: center;
    overflow: hidden;
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light), #38bdf8);
    opacity: 0.95;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: var(--shadow-hover);
    border-color: rgba(29, 78, 216, 0.15);
}

.service-icon {
    width: 4.5rem;
    height: 4.5rem;
    margin: 0 auto 1.35rem;
    background: linear-gradient(145deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 28px rgba(29, 78, 216, 0.28);
    transition: transform 0.35s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.06) rotate(-2deg);
}

.service-icon i {
    font-size: 1.65rem;
    color: #fff;
}

.service-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.65rem;
    color: var(--ink);
    letter-spacing: -0.02em;
}

.service-card p {
    color: var(--ink-muted);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* About */
.about {
    padding: 5.5rem 0;
    background: linear-gradient(180deg, var(--surface) 0%, #fafbfc 50%, var(--surface) 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 4vw, 3.5rem);
    align-items: center;
}

.about-text .section-eyebrow {
    margin-bottom: 0.5rem;
}

.about-text h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.35rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 1.75rem;
    color: var(--ink);
    line-height: 1.2;
}

.features-list {
    list-style: none;
}

.features-list li {
    display: flex;
    align-items: center;
    margin-bottom: 0.65rem;
    font-size: 1.02rem;
    font-weight: 500;
    padding: 0.85rem 1rem;
    background: var(--bg);
    border-radius: 12px;
    border: 1px solid rgba(148, 163, 184, 0.12);
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.features-list li:hover {
    background: var(--surface);
    border-color: rgba(29, 78, 216, 0.18);
    transform: translateX(4px);
}

.features-list i {
    color: #059669;
    margin-right: 0.85rem;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-visual {
    width: min(100%, 280px);
    aspect-ratio: 1;
    border-radius: var(--radius-lg);
    background: linear-gradient(145deg, rgba(29, 78, 216, 0.08) 0%, rgba(59, 130, 246, 0.12) 100%);
    border: 1px solid rgba(29, 78, 216, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.about-visual i {
    font-size: clamp(4rem, 15vw, 6.5rem);
    color: var(--primary);
    opacity: 0.85;
}

/* Contact */
.contact {
    padding: clamp(3.5rem, 8vw, 5.5rem) 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(29, 78, 216, 0.06), transparent),
        var(--bg);
    position: relative;
}

.contact .section-head {
    margin-bottom: clamp(2rem, 5vw, 3rem);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1rem, 3vw, 1.5rem);
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    align-items: stretch;
}

.contact-item {
    --contact-accent: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 1.1rem;
    min-width: 0;
    max-width: 100%;
    margin: 0;
    background: var(--surface);
    padding: 1.5rem 1.4rem 1.5rem 1.35rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid rgba(148, 163, 184, 0.14);
    overflow: hidden;
    transition:
        transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.35s ease,
        border-color 0.35s ease,
        opacity 0.65s ease;
}

.contact-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--contact-accent);
    opacity: 0.9;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(29, 78, 216, 0.14);
}

.contact-item__icon-wrap {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient(145deg, rgba(29, 78, 216, 0.1) 0%, rgba(59, 130, 246, 0.08) 100%);
    color: var(--primary);
    font-size: 1.2rem;
}

.contact-item__body {
    min-width: 0;
    flex: 1 1 auto;
    padding-top: 0.1rem;
}

.contact-item__title {
    margin: 0 0 0.5rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--primary);
}

.contact-item__value {
    margin: 0 0 0.35rem;
    color: var(--ink);
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.35;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.contact-item__hint {
    margin: 0;
    color: var(--ink-muted);
    font-size: 0.88rem;
    line-height: 1.45;
    overflow-wrap: anywhere;
    word-break: break-word;
}

a.contact-item__link {
    color: var(--ink);
    text-decoration: none;
    transition: color 0.2s ease;
}

a.contact-item__link:hover,
a.contact-item__link:focus-visible {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 3px;
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contact-item:last-child {
        grid-column: 1 / -1;
        max-width: min(100%, 520px);
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 600px) {
    .contact-grid {
        grid-template-columns: 1fr;
        max-width: 28rem;
    }

    .contact-item:last-child {
        grid-column: auto;
        max-width: none;
        margin-left: 0;
        margin-right: 0;
    }

    .contact-item {
        padding: 1.35rem 1.2rem;
        gap: 1rem;
    }

    .contact-item__icon-wrap {
        width: 2.75rem;
        height: 2.75rem;
        font-size: 1.1rem;
    }

    .contact-item__value {
        font-size: 1rem;
    }
}

/* Footer */
.footer {
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    color: #e2e8f0;
    padding: 4rem 0 1.5rem;
    border-top: 1px solid rgba(148, 163, 184, 0.12);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.02em;
}

.footer-section p {
    color: #94a3b8;
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #cbd5e1;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.footer-section a:hover {
    color: var(--accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(148, 163, 184, 0.15);
    color: #64748b;
    font-size: 0.88rem;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-lead {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-eyebrow {
        margin-left: auto;
        margin-right: auto;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-text .section-eyebrow--dark {
        text-align: center;
    }

    .features-list li {
        text-align: left;
    }

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

    .hero-visual i,
    .about-visual i {
        font-size: 5rem;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 38px;
        max-width: min(200px, 58vw);
    }

    .hero-content h1 {
        font-size: 1.75rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
    }

    .nav-container {
        padding: 0.85rem 1rem;
    }

    .container {
        padding: 0 16px;
    }

    .contact-grid {
        gap: 0.85rem;
    }

    .contact-item {
        padding: 1.2rem 1.05rem;
    }

    .contact-item__value {
        font-size: 0.98rem;
    }

    .contact-item__hint {
        font-size: 0.82rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .hero::after {
        animation: none;
        opacity: 0.4;
    }

    .hero-content > .hero-eyebrow,
    .hero-content > h1,
    .hero-content > .hero-lead,
    .hero-content > .hero-buttons,
    .hero-visual {
        animation: none;
        opacity: 1;
        transform: none;
    }

    .hero-visual i {
        animation: none;
    }

    .about-visual {
        animation: none;
    }

    .hero-ring {
        animation: none;
        opacity: 0.35;
    }

    .reveal,
    .reveal.reveal--from-right {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .reveal-stagger .service-card,
    .reveal-stagger .contact-item {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .about-text.reveal .features-list li {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .btn:hover,
    .service-card:hover,
    .contact-item:hover,
    .features-list li:hover {
        transform: none;
    }
}
