/* ================================================================
   HOME HERO
   ================================================================ */

.home-hero {
    --hero-navy: #071a2f;
    --hero-navy-light: #0c2945;
    --hero-blue: #0871b9;
    --hero-blue-light: #52a9df;
    --hero-gold: #d8ad4a;
    --hero-gold-light: #f2d98b;
    --hero-white: #ffffff;
    --hero-text-soft: #d5dfeb;
    --hero-border: rgb(255 255 255 / 18%);

    position: relative;
    isolation: isolate;
    overflow: hidden;
    color: var(--hero-white);
    background:
        radial-gradient(
            circle at 82% 24%,
            rgb(8 113 185 / 26%),
            transparent 30rem
        ),
        radial-gradient(
            circle at 12% 92%,
            rgb(216 173 74 / 13%),
            transparent 34rem
        ),
        linear-gradient(
            122deg,
            #061525 0%,
            #0a2139 53%,
            #061525 100%
        );
}

/*
 * Yalnızca ince dekoratif çizgiler.
 * Büyük daire veya oval üretmez.
 */
.home-hero::before {
    position: absolute;
    right: -12%;
    bottom: 8%;
    z-index: -1;
    width: 62%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgb(216 173 74 / 65%),
        transparent
    );
    content: "";
    transform: rotate(-12deg);
}

.home-hero::after {
    position: absolute;
    top: 14%;
    right: -8%;
    z-index: -1;
    width: 50%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgb(82 169 223 / 40%),
        transparent
    );
    content: "";
    transform: rotate(9deg);
}

.home-hero__container {
    min-height: 660px;
    display: grid;
    grid-template-columns:
        minmax(0, 1.02fr)
        minmax(22rem, 0.98fr);
    align-items: center;
    gap: clamp(3.5rem, 7vw, 7rem);
    padding-block: clamp(4.5rem, 8vw, 7rem);
}

.home-hero__content {
    position: relative;
    z-index: 2;
    max-width: 49rem;
}

.home-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin: 0 0 1.5rem;
    padding: 0.55rem 0.95rem;
    border: 1px solid rgb(255 255 255 / 30%);
    border-radius: 999px;
    background: rgb(255 255 255 / 8%);
    color: var(--hero-white);
    font-size: 0.875rem;
    font-weight: 750;
    line-height: 1.4;
    letter-spacing: 0.025em;
}

.home-hero__eyebrow-icon {
    color: var(--hero-gold-light);
}

.home-hero__title {
    max-width: 11ch;
    margin: 0;
    color: var(--hero-white);
    font-size: clamp(3.25rem, 6.7vw, 6.25rem);
    font-weight: 850;
    line-height: 1.08;
    letter-spacing: -0.045em;
}

.home-hero__title span {
    display: block;
    margin-top: 0.12em;
    color: var(--hero-blue-light);
    line-height: 1.08;
}

.home-hero__theme {
    max-width: 43rem;
    margin: 1.65rem 0 0;
    color: var(--hero-gold-light);
    font-size: clamp(1.1rem, 1.8vw, 1.4rem);
    font-weight: 750;
    line-height: 1.55;
}

.home-hero__description {
    max-width: 43rem;
    margin: 1.4rem 0 0;
    color: var(--hero-text-soft);
    font-size: clamp(1.02rem, 1.6vw, 1.2rem);
    line-height: 1.8;
}

.home-hero__status {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    max-width: 42rem;
    margin-top: 2rem;
    padding: 1rem 1.15rem;
    border: 1px solid var(--hero-border);
    border-left: 0.3rem solid var(--hero-blue-light);
    border-radius: 0.8rem;
    background: rgb(255 255 255 / 8%);
    box-shadow: 0 1.2rem 3rem rgb(0 0 0 / 20%);
    backdrop-filter: blur(10px);
}

.home-hero__status-icon {
    flex: 0 0 auto;
    width: 0.75rem;
    height: 0.75rem;
    margin-top: 0.42rem;
    border: 0.14rem solid var(--hero-navy);
    border-radius: 50%;
    background: var(--hero-blue-light);
    box-shadow: 0 0 0 0.2rem rgb(82 169 223 / 25%);
}

.home-hero__status-content {
    display: grid;
    gap: 0.25rem;
}

.home-hero__status strong {
    color: var(--hero-white);
    font-size: 1rem;
    line-height: 1.5;
}

.home-hero__status span:not(.home-hero__status-icon) {
    color: #c3cfdd;
    font-size: 0.94rem;
    line-height: 1.55;
}

.home-hero__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.85rem;
    margin-top: 2rem;
}

.home-hero__button {
    min-height: 3.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.3rem;
    border: 2px solid transparent;
    border-radius: 0.625rem;
    font-size: 1rem;
    font-weight: 750;
    line-height: 1.25;
    text-align: center;
    text-decoration: none;
    transition:
        background-color 160ms ease,
        border-color 160ms ease,
        color 160ms ease,
        transform 160ms ease;
}

.home-hero__button--primary {
    border-color: var(--hero-blue);
    background: var(--hero-blue);
    color: var(--hero-white);
    box-shadow: 0 0.8rem 2rem rgb(8 113 185 / 28%);
}

.home-hero__button--primary:hover {
    border-color: #075b96;
    background: #075b96;
    color: var(--hero-white);
}

.home-hero__button--secondary {
    border-color: rgb(255 255 255 / 65%);
    background: transparent;
    color: var(--hero-white);
}

.home-hero__button--secondary:hover {
    border-color: var(--hero-white);
    background: var(--hero-white);
    color: var(--hero-navy);
}

.home-hero__button:focus-visible {
    outline: 0.2rem solid var(--hero-gold-light);
    outline-offset: 0.25rem;
}

.home-hero__button:active {
    transform: translateY(1px);
}

.home-hero__visual {
    position: relative;
    z-index: 2;
    display: grid;
    min-height: 33rem;
    place-items: center;
}

.home-hero__visual-decoration {
    display: none;
}

.home-hero__logo-card {
    position: relative;
    display: grid;
    width: min(100%, 29rem);
    min-height: 31rem;
    align-content: center;
    justify-items: center;
    padding: clamp(2rem, 4vw, 3.5rem);
    border: 1px solid rgb(255 255 255 / 24%);
    border-radius: 1.5rem;
    background: rgb(255 255 255 / 96%);
    box-shadow: 0 2.5rem 6rem rgb(0 0 0 / 32%);
}

.home-hero__logo-card::before {
    position: absolute;
    top: 0;
    right: 2.25rem;
    left: 2.25rem;
    height: 0.25rem;
    border-radius: 0 0 999px 999px;
    background: var(--hero-gold);
    content: "";
}

.home-hero__logo-heading {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 1.6rem;
    color: var(--hero-navy);
    font-size: 0.82rem;
    font-weight: 800;
    line-height: 1.4;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.home-hero__logo-heading span {
    color: #9a6a0b;
}

.home-hero__logo {
    display: block;
    width: min(100%, 19rem);
    height: auto;
    object-fit: contain;
}

.home-hero__logo-caption {
    max-width: 19rem;
    margin: 1.6rem 0 0;
    color: #3e4b5e;
    font-size: 0.95rem;
    line-height: 1.55;
    text-align: center;
}

@media (max-width: 900px) {
    .home-hero__container {
        min-height: auto;
        grid-template-columns: 1fr;
        padding-block: 4rem;
    }

    .home-hero__content {
        max-width: none;
    }

    .home-hero__title {
        max-width: 10ch;
    }

    .home-hero__visual {
        min-height: auto;
    }

    .home-hero__logo-card {
        width: min(100%, 26rem);
        min-height: auto;
    }
}

@media (max-width: 600px) {
    .home-hero__container {
        padding-block: 3rem;
    }

    .home-hero__title {
        font-size: clamp(2.75rem, 15vw, 4.2rem);
        line-height: 1.1;
    }

    .home-hero__title span {
        margin-top: 0.16em;
        line-height: 1.1;
    }

    .home-hero__actions {
        display: grid;
    }

    .home-hero__button {
        width: 100%;
    }

    .home-hero__logo-card {
        padding: 2rem 1.5rem;
        border-radius: 1rem;
    }
}

@media (forced-colors: active) {
    .home-hero__eyebrow,
    .home-hero__status,
    .home-hero__button,
    .home-hero__logo-card {
        border: 2px solid CanvasText;
    }

    .home-hero__status-icon {
        background: CanvasText;
        box-shadow: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-hero__button {
        transition: none;
    }
}


/* ================================================================
   HOME ABOUT
   ================================================================ */

.home-about {
    --about-navy: #071a2f;
    --about-blue: #0871b9;
    --about-gold: #d8ad4a;
    --about-text: #172033;
    --about-muted: #526071;
    --about-border: #d8e1ea;
    --about-surface: #ffffff;
    --about-surface-soft: #f4f8fc;

    position: relative;
    overflow: hidden;
    padding-block: clamp(5rem, 8vw, 7rem);
    background: var(--about-surface);
}

.home-about::before {
    position: absolute;
    top: 0;
    right: 0;
    width: 31%;
    height: 100%;
    background: var(--about-surface-soft);
    content: "";
}

.home-about::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 0.2rem;
    background: linear-gradient(
        90deg,
        var(--about-blue),
        #52a9df,
        var(--about-gold)
    );
    content: "";
}

.home-about__container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns:
        minmax(20rem, 0.9fr)
        minmax(0, 1.1fr);
    align-items: center;
    gap: clamp(4rem, 8vw, 7rem);
}

.home-about__heading {
    max-width: 35rem;
}

.home-about__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    margin: 0 0 1.4rem;
    color: var(--about-blue);
    font-size: 0.78rem;
    font-weight: 850;
    line-height: 1.4;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.home-about__eyebrow::before {
    width: 2.7rem;
    height: 0.16rem;
    flex: 0 0 2.7rem;
    border-radius: 999px;
    background: var(--about-gold);
    content: "";
}

.home-about__title {
    max-width: 12ch;
    margin: 0;
    color: var(--about-navy);
    font-size: clamp(2.8rem, 4.8vw, 4.25rem);
    font-weight: 850;
    line-height: 1.08;
    letter-spacing: -0.045em;
    text-wrap: balance;
}

.home-about__content {
    max-width: 44rem;
    padding: clamp(2rem, 3.5vw, 3rem);
    border: 1px solid var(--about-border);
    border-radius: 1.2rem;
    background: rgb(255 255 255 / 96%);
    box-shadow:
        0 1.5rem 4rem rgb(7 26 47 / 9%),
        inset 0 1px 0 rgb(255 255 255 / 90%);
}

.home-about__description {
    margin: 0;
    color: var(--about-text);
    font-size: clamp(1rem, 1.45vw, 1.14rem);
    line-height: 1.9;
}

.home-about__link {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin-top: 1.8rem;
    color: var(--about-blue);
    font-size: 0.95rem;
    font-weight: 800;
    line-height: 1.4;
    text-decoration: none;
    transition:
        color 160ms ease,
        gap 160ms ease;
}

.home-about__link span {
    font-size: 1.15rem;
}

.home-about__link:hover {
    gap: 0.8rem;
    color: var(--about-navy);
}

.home-about__link:focus-visible {
    border-radius: 0.25rem;
    outline: 0.2rem solid var(--about-gold);
    outline-offset: 0.25rem;
}

@media (max-width: 1000px) {
    .home-about::before {
        width: 38%;
    }

    .home-about__container {
        grid-template-columns:
            minmax(17rem, 0.85fr)
            minmax(0, 1.15fr);
        gap: 3.5rem;
    }

    .home-about__title {
        font-size: clamp(2.6rem, 5vw, 3.7rem);
    }
}

@media (max-width: 820px) {
    .home-about::before {
        top: auto;
        bottom: 0;
        width: 100%;
        height: 38%;
    }

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

    .home-about__heading {
        max-width: 42rem;
    }

    .home-about__title {
        max-width: 15ch;
    }

    .home-about__content {
        max-width: none;
    }
}

@media (max-width: 600px) {
    .home-about {
        padding-block: 4rem;
    }

    .home-about__title {
        max-width: 12ch;
        font-size: clamp(2.35rem, 11vw, 3.25rem);
        line-height: 1.1;
    }

    .home-about__content {
        padding: 1.5rem;
        border-radius: 1rem;
    }

    .home-about__description {
        font-size: 1rem;
        line-height: 1.8;
    }
}

@media (forced-colors: active) {
    .home-about__content {
        border: 2px solid CanvasText;
    }

    .home-about__eyebrow::before {
        background: CanvasText;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-about__link {
        transition: none;
    }
}