:root {
    --navy: #10233f;
    --navy-deep: #09182d;
    --navy-soft: #1a3558;
    --red: #d80f2f;
    --red-dark: #b80c27;
    --ink: #172438;
    --muted: #5f6d7e;
    --line: #e3e7ec;
    --surface: #f7f8fa;
    --white: #ffffff;
    --container: 1180px;
    --shadow: 0 16px 44px rgba(15, 31, 54, .08);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: "Barlow", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

body.nav-open,
body.dialog-open {
    overflow: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

.container {
    width: min(calc(100% - 48px), var(--container));
    margin-inline: auto;
}

.section {
    padding: 60px 0;
}

section[id] {
    scroll-margin-top: 86px;
}

.service-card[id] {
    scroll-margin-top: 90px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 1000;
    transform: translateY(-160%);
    padding: 10px 16px;
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.skip-link:focus {
    transform: none;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    color: inherit;
    line-height: 1.08;
}

h1 {
    max-width: 780px;
    margin-bottom: 26px;
    font-size: clamp(3.2rem, 5.8vw, 5.35rem);
    font-weight: 700;
    letter-spacing: -.045em;
}

h1 em {
    color: #ff3150;
    font-style: normal;
}

h2 {
    max-width: 790px;
    margin-bottom: 20px;
    font-size: clamp(2.25rem, 4vw, 3.55rem);
    font-weight: 700;
    letter-spacing: -.035em;
}

h3 {
    font-size: 1.32rem;
    font-weight: 700;
    letter-spacing: -.015em;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    color: rgba(255, 255, 255, .72);
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: .12em;
    line-height: 1.35;
    text-transform: uppercase;
}

.eyebrow > span {
    width: 28px;
    height: 2px;
    background: var(--red);
}

.eyebrow-dark {
    color: var(--red);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 13px 24px;
    border: 1px solid var(--red);
    border-radius: 8px;
    background: var(--red);
    color: var(--white);
    font-weight: 700;
    line-height: 1.2;
    transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.button:hover {
    border-color: var(--red-dark);
    background: var(--red-dark);
    transform: translateY(-1px);
}

.button-small {
    min-height: 42px;
    padding: 10px 17px;
    font-size: .9rem;
}

.button-light {
    border-color: var(--white);
    background: var(--white);
    color: var(--navy);
}

.button-light:hover {
    border-color: #edf0f4;
    background: #edf0f4;
}

.button-full {
    width: 100%;
    margin-top: 8px;
}

.button:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid rgba(216, 15, 47, .28);
    outline-offset: 3px;
}

.site-nav a,
.button,
.text-link,
.service-tag,
.process-list h3,
.difference-list h3,
.contact-details span,
.footer-main > div > span,
.footer-main a,
.footer-legal button,
.footer-bottom button,
.whatsapp-button span,
.form-row label {
    text-transform: capitalize;
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    height: 76px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(16, 35, 63, .10);
    background: rgba(255, 255, 255, .98);
    transition: height .2s ease, box-shadow .2s ease;
}

.site-header.scrolled {
    height: 68px;
    box-shadow: 0 8px 28px rgba(15, 31, 54, .08);
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand img {
    width: 160px;
    height: auto;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 27px;
    color: var(--navy);
    font-size: .92rem;
    font-weight: 600;
}

.site-nav > a:not(.button) {
    position: relative;
}

.site-nav > a:not(.button)::after {
    content: "";
    position: absolute;
    right: 100%;
    bottom: -8px;
    left: 0;
    height: 2px;
    background: var(--red);
    transition: right .2s ease;
}

.site-nav > a:not(.button):hover::after {
    right: 0;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 9px;
    border: 0;
    background: transparent;
}

.nav-toggle span:not(.sr-only) {
    display: block;
    height: 2px;
    margin: 6px 0;
    background: var(--navy);
    transition: transform .2s ease, opacity .2s ease;
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 148px 0 82px;
    background: var(--navy-deep);
    color: var(--white);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(to right, transparent, #000 70%);
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(360px, .82fr);
    gap: 82px;
    align-items: center;
}

.hero-lead {
    max-width: 720px;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, .73);
    font-size: 1.1rem;
    line-height: 1.72;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 38px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--white);
    font-weight: 700;
}

.text-link span {
    color: #ff3150;
    transition: transform .2s ease;
}

.text-link:hover span {
    transform: translateX(3px);
}

.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 24px;
    color: rgba(255, 255, 255, .62);
    font-size: .82rem;
}

.hero-proof span {
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

.hero-proof span::before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--red);
}

.advisory-card {
    border-top: 4px solid var(--red);
    overflow: hidden;
    border-radius: 12px;
    background: var(--white);
    color: var(--ink);
    box-shadow: 0 24px 60px rgba(0, 0, 0, .16);
}

.advisory-card-head {
    padding: 26px 28px 22px;
    border-bottom: 1px solid var(--line);
}

.advisory-card-head span {
    display: block;
    margin-bottom: 4px;
    color: var(--red);
    font-size: .73rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.advisory-card-head strong {
    color: var(--navy);
    font-size: 1.35rem;
}

.advisory-card > a {
    display: grid;
    grid-template-columns: 34px 1fr 20px;
    gap: 14px;
    align-items: center;
    padding: 20px 28px;
    border-bottom: 1px solid var(--line);
    transition: background .2s ease;
}

.advisory-card > a:hover {
    background: var(--surface);
}

.advisory-card > a > span {
    color: var(--red);
    font-size: .75rem;
    font-weight: 700;
}

.advisory-card > a strong,
.advisory-card > a small {
    display: block;
}

.advisory-card > a strong {
    margin-bottom: 2px;
    color: var(--navy);
    font-size: 1rem;
}

.advisory-card > a small {
    color: var(--muted);
    font-size: .78rem;
    line-height: 1.4;
}

.advisory-card > a i {
    color: var(--red);
    font-style: normal;
}

.advisory-card > p {
    margin: 0;
    padding: 18px 28px 22px;
    color: var(--muted);
    font-size: .8rem;
}

.trust-strip {
    background: var(--red);
    color: var(--white);
}

.trust-items {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.trust-items span {
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.trust-items i {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .55);
}

.about-section {
    background: var(--white);
}

.two-column {
    display: grid;
    grid-template-columns: .86fr 1.14fr;
    gap: 90px;
    align-items: start;
}

.section-heading {
    position: sticky;
    top: 112px;
}

.section-heading h2 {
    font-size: clamp(2.2rem, 3.7vw, 3.35rem);
}

.about-copy {
    padding-top: 4px;
}

.about-copy p {
    max-width: 740px;
    color: var(--muted);
}

.large-copy {
    color: var(--ink) !important;
    font-size: 1.25rem;
    line-height: 1.55;
}

.capability-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 34px;
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
    border-radius: 9px;
    overflow: hidden;
}

.capability-grid > span {
    position: relative;
    min-height: 58px;
    display: flex;
    align-items: center;
    padding: 12px 16px 12px 38px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    color: var(--navy);
    font-size: .9rem;
    font-weight: 600;
}

.capability-grid > span::before {
    content: "";
    position: absolute;
    left: 17px;
    width: 8px;
    height: 8px;
    border: 2px solid var(--red);
    border-radius: 50%;
}

.services-section {
    background: var(--surface);
}

.section-intro {
    margin-bottom: 36px;
}

.section-intro.centered {
    max-width: 780px;
}

.section-intro p {
    max-width: 680px;
    margin-bottom: 0;
    color: var(--muted);
    font-size: 1.02rem;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    min-height: 580px;
    padding: 28px;
    border: 1px solid var(--line);
    border-top: 3px solid var(--navy);
    border-radius: 10px;
    background: var(--white);
}

.service-card.featured {
    border-top-color: var(--red);
}

.card-number {
    position: absolute;
    top: 25px;
    right: 26px;
    color: #c8ced6;
    font-size: .78rem;
    font-weight: 700;
}

.service-tag {
    margin-bottom: 22px;
    color: var(--red);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.service-card h3 {
    max-width: 280px;
    min-height: 70px;
    margin-bottom: 14px;
    color: var(--navy);
    font-size: 1.65rem;
}

.service-card > p {
    min-height: 96px;
    margin-bottom: 20px;
    color: var(--muted);
    font-size: .94rem;
}

.check-list {
    padding: 0;
    margin: 0 0 20px;
    list-style: none;
}

.check-list li {
    position: relative;
    padding: 9px 0 9px 23px;
    border-bottom: 1px solid #edf0f3;
    color: var(--ink);
    font-size: .86rem;
}

.check-list li::before {
    content: "";
    position: absolute;
    top: 16px;
    left: 2px;
    width: 7px;
    height: 4px;
    border-bottom: 2px solid var(--red);
    border-left: 2px solid var(--red);
    transform: rotate(-45deg);
}

.service-note {
    min-height: 104px;
    display: flex;
    align-items: center;
    margin-top: auto;
    padding: 13px 14px;
    border-left: 2px solid var(--red);
    border-radius: 0 6px 6px 0;
    background: #f7f8fa;
    color: var(--muted);
    font-size: .76rem;
    line-height: 1.5;
}

.card-link {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 20px;
    color: var(--red);
    font-size: .86rem;
    font-weight: 700;
}

.card-link span {
    transition: transform .2s ease;
}

.card-link:hover span {
    transform: translateX(3px);
}

.services-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    margin-top: 20px;
    padding: 22px 24px;
    border-radius: 10px;
    background: var(--navy);
    color: var(--white);
}

.services-cta span,
.services-cta strong {
    display: block;
}

.services-cta span {
    margin-bottom: 3px;
    color: rgba(255, 255, 255, .60);
    font-size: .76rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.services-cta strong {
    font-size: 1.08rem;
}

.services-cta .button {
    min-width: 190px;
    flex: 0 0 auto;
}

.turkiye-section {
    position: relative;
    overflow: hidden;
    background: var(--navy);
    color: var(--white);
}

.turkiye-section::after {
    content: "TR";
    position: absolute;
    right: -20px;
    bottom: -100px;
    color: rgba(255, 255, 255, .025);
    font-size: 28rem;
    font-weight: 800;
    line-height: 1;
    pointer-events: none;
}

.turkiye-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 82px;
    align-items: center;
}

.turkiye-copy p {
    max-width: 530px;
    margin-bottom: 28px;
    color: rgba(255, 255, 255, .68);
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-top: 1px solid rgba(255, 255, 255, .15);
    border-left: 1px solid rgba(255, 255, 255, .15);
    border-radius: 10px;
    overflow: hidden;
}

.benefit-card {
    min-height: 190px;
    padding: 24px;
    border-right: 1px solid rgba(255, 255, 255, .15);
    border-bottom: 1px solid rgba(255, 255, 255, .15);
}

.benefit-card > span {
    color: #ff3150;
    font-size: .73rem;
    font-weight: 700;
}

.benefit-card h3 {
    margin: 30px 0 8px;
    font-size: 1.12rem;
}

.benefit-card p {
    margin: 0;
    color: rgba(255, 255, 255, .60);
    font-size: .83rem;
}

.process-section {
    background: var(--white);
}

.process-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 0;
    margin: 0;
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
    border-radius: 10px;
    overflow: hidden;
    list-style: none;
}

.process-list li {
    min-height: 182px;
    padding: 23px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.process-list li > span {
    display: block;
    margin-bottom: 27px;
    color: var(--red);
    font-size: .75rem;
    font-weight: 700;
}

.process-list h3 {
    margin-bottom: 8px;
    color: var(--navy);
    font-size: 1.06rem;
}

.process-list p {
    margin: 0;
    color: var(--muted);
    font-size: .83rem;
}

.difference-section {
    background: var(--surface);
}

.difference-list {
    border-top: 1px solid #cfd5dd;
}

.difference-list article {
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 18px;
    padding: 22px 0;
    border-bottom: 1px solid #cfd5dd;
}

.difference-list article > span {
    padding-top: 3px;
    color: var(--red);
    font-size: .73rem;
    font-weight: 700;
}

.difference-list h3 {
    margin-bottom: 6px;
    color: var(--navy);
    font-size: 1.08rem;
}

.difference-list p {
    margin: 0;
    color: var(--muted);
    font-size: .88rem;
}

.contact-section {
    padding: 64px 0;
    background: var(--navy-deep);
    color: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 82px;
    align-items: center;
}

.contact-copy h2 {
    font-size: clamp(2.35rem, 4.4vw, 3.8rem);
}

.contact-copy > p {
    max-width: 520px;
    color: rgba(255, 255, 255, .68);
}

.contact-details {
    display: grid;
    margin: 30px 0 22px;
    border-top: 1px solid rgba(255, 255, 255, .14);
}

.contact-details a {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.contact-details span {
    color: rgba(255, 255, 255, .52);
    font-size: .75rem;
    text-transform: uppercase;
}

.contact-details strong {
    font-size: .94rem;
}

.legal-note {
    font-size: .75rem;
}

.form-card {
    padding: 30px;
    border-top: 4px solid var(--red);
    border-radius: 12px;
    background: var(--white);
    color: var(--ink);
    box-shadow: 0 22px 54px rgba(0, 0, 0, .18);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.form-card label {
    display: block;
    margin-bottom: 14px;
    color: var(--navy);
    font-size: .78rem;
    font-weight: 700;
}

input,
select,
textarea {
    width: 100%;
    margin-top: 6px;
    border: 1px solid #cfd5dd;
    border-radius: 7px;
    background: var(--white);
    color: var(--ink);
    text-transform: none;
}

input,
select {
    height: 48px;
    padding: 0 13px;
}

textarea {
    min-height: 118px;
    padding: 12px 13px;
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--navy);
    outline: none;
    box-shadow: 0 0 0 3px rgba(16, 35, 63, .08);
}

.consent {
    display: flex !important;
    gap: 10px;
    align-items: flex-start;
    color: var(--muted) !important;
    font-weight: 500 !important;
}

.consent input {
    width: 17px;
    height: 17px;
    margin: 3px 0 0;
    flex: 0 0 auto;
}

.form-alert {
    margin-bottom: 18px;
    padding: 13px 15px;
    border: 1px solid;
    border-radius: 7px;
    font-size: .85rem;
}

.form-alert-success {
    border-color: #a6d8b5;
    background: #effaf2;
    color: #175c2b;
}

.form-alert-error {
    border-color: #efb6bf;
    background: #fff2f4;
    color: #8e1227;
}

.form-alert-preview {
    border-color: #b8cae0;
    background: #f1f6fb;
    color: var(--navy);
}

.form-alert ul {
    margin-bottom: 0;
}

.honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.site-footer {
    padding: 50px 0 22px;
    background: var(--white);
}

.footer-main {
    display: grid;
    grid-template-columns: 1.2fr 1fr .6fr .9fr;
    gap: 48px;
    padding-bottom: 38px;
}

.footer-logo {
    margin-bottom: 17px;
}

.footer-main p {
    margin: 0;
    color: var(--muted);
    font-size: .84rem;
}

.footer-main > div > span {
    display: block;
    margin-bottom: 11px;
    color: var(--navy);
    font-size: .71rem;
    font-weight: 700;
    letter-spacing: .10em;
    text-transform: uppercase;
}

.footer-main a {
    display: block;
    margin: 5px 0;
    color: var(--muted);
    font-size: .84rem;
}

.footer-main a:hover,
.footer-legal button:hover,
.footer-bottom button:hover {
    color: var(--red);
}

.footer-legal button,
.footer-bottom button {
    display: block;
    padding: 0;
    margin: 5px 0;
    border: 0;
    background: transparent;
    color: var(--muted);
    text-align: left;
    font-size: .84rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: .73rem;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom div {
    display: flex;
    gap: 22px;
}

.footer-bottom button {
    margin: 0;
    font-size: .73rem;
}

.whatsapp-button {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 90;
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0 18px;
    border-radius: 27px;
    background: #1fae59;
    color: var(--white);
    box-shadow: 0 12px 30px rgba(12, 84, 45, .25);
    font-size: .82rem;
    font-weight: 700;
    transition: transform .2s ease, background .2s ease;
}

.whatsapp-button:hover {
    background: #168c47;
    transform: translateY(-2px);
}

.whatsapp-button img {
    width: 23px;
    height: 23px;
}

.legal-dialog {
    width: min(760px, calc(100% - 32px));
    max-height: min(84vh, 820px);
    padding: 0;
    border: 0;
    border-radius: 10px;
    background: var(--white);
    color: var(--ink);
    box-shadow: 0 35px 100px rgba(9, 24, 45, .35);
}

.legal-dialog::backdrop {
    background: rgba(9, 24, 45, .72);
    backdrop-filter: blur(4px);
}

.legal-dialog-head {
    position: sticky;
    top: 0;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: flex-start;
    padding: 22px 24px;
    border-bottom: 1px solid var(--line);
    background: var(--white);
}

.legal-dialog-head span {
    color: var(--red);
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.legal-dialog-head h2 {
    margin: 4px 0 0;
    font-size: 1.55rem;
    letter-spacing: -.02em;
}

.legal-close {
    width: 38px;
    height: 38px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: var(--white);
    color: var(--navy);
    font-size: 1.4rem;
    line-height: 1;
}

.legal-dialog-body {
    padding: 24px;
}

.legal-dialog-body h3 {
    margin: 24px 0 7px;
    color: var(--navy);
    font-size: 1.05rem;
}

.legal-dialog-body p {
    color: var(--muted);
    font-size: .9rem;
}

.legal-dialog-body a {
    color: var(--red);
    font-weight: 600;
}

.legal-review-note {
    margin-top: 24px;
    padding: 13px 15px;
    border-left: 3px solid var(--red);
    background: #fff3f5;
    color: #7f1b2b !important;
    font-size: .8rem !important;
}

.reveal {
    opacity: 1;
    transform: none;
}

@media (max-width: 1080px) {
    .site-header,
    .site-header.scrolled {
        height: 68px;
        background: var(--white);
    }

    .nav-toggle {
        position: relative;
        z-index: 102;
        display: block;
    }

    .site-nav {
        position: fixed;
        z-index: 101;
        top: 68px;
        right: 0;
        bottom: auto;
        left: 0;
        width: 100%;
        height: calc(100vh - 68px);
        height: calc(100dvh - 68px);
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 18px 24px max(32px, env(safe-area-inset-bottom));
        overflow-x: hidden;
        overflow-y: auto;
        overscroll-behavior: contain;
        background: var(--navy-deep);
        color: var(--white);
        transform: translateX(100%);
        visibility: hidden;
        transition: transform .25s ease, visibility 0s linear .25s;
    }

    .site-nav.open {
        transform: translateX(0);
        visibility: visible;
        transition-delay: 0s;
    }

    .site-nav > a:not(.button) {
        min-height: 55px;
        display: flex;
        align-items: center;
        flex: 0 0 auto;
        padding: 12px 6px;
        border-bottom: 1px solid rgba(255, 255, 255, .13);
        color: var(--white);
    }

    .site-nav > a:not(.button)::after {
        display: none;
    }

    .site-nav .button {
        width: 100%;
        min-height: 52px;
        margin-top: 22px;
        flex: 0 0 auto;
    }

    .nav-toggle[aria-expanded="true"] span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle[aria-expanded="true"] span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle[aria-expanded="true"] span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-copy {
        max-width: 840px;
    }

    .advisory-card {
        max-width: 680px;
    }

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

    .service-card {
        min-height: 0;
    }

    .service-card > p {
        min-height: 0;
    }

    .service-card h3,
    .service-note {
        min-height: 0;
    }

    .service-note {
        display: block;
    }

    .two-column,
    .turkiye-grid,
    .contact-grid {
        gap: 56px;
    }

    .footer-main {
        grid-template-columns: 1.2fr 1fr 1fr;
    }

    .footer-legal {
        grid-column: span 2;
    }
}

@media (max-width: 760px) {
    .container {
        width: min(calc(100% - 36px), var(--container));
    }

    .section {
        padding: 50px 0;
    }

    section[id] {
        scroll-margin-top: 68px;
    }

    .brand img {
        width: 145px;
    }

    .hero {
        padding: 112px 0 56px;
    }

    .hero::before {
        background-size: 52px 52px;
    }

    .hero-grid {
        gap: 38px;
    }

    h1 {
        font-size: clamp(2.65rem, 12vw, 3.75rem);
        line-height: 1.02;
    }

    h2 {
        font-size: clamp(2.05rem, 9vw, 2.75rem);
    }

    .hero-lead {
        font-size: 1rem;
        line-height: 1.62;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
        gap: 16px;
    }

    .hero-actions .button {
        width: 100%;
    }

    .text-link {
        justify-content: center;
    }

    .hero-proof {
        display: grid;
        gap: 8px;
    }

    .advisory-card-head,
    .advisory-card > a,
    .advisory-card > p {
        padding-right: 20px;
        padding-left: 20px;
    }

    .trust-items {
        justify-content: flex-start;
        overflow-x: auto;
        gap: 18px;
        padding: 15px 0;
        white-space: nowrap;
        scrollbar-width: none;
    }

    .trust-items::-webkit-scrollbar {
        display: none;
    }

    .two-column,
    .turkiye-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .section-heading {
        position: static;
    }

    .capability-grid,
    .benefit-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 24px 21px;
    }

    .services-cta {
        align-items: stretch;
        flex-direction: column;
        gap: 18px;
        padding: 21px;
    }

    .services-cta .button {
        width: 100%;
        min-width: 0;
    }

    .process-list {
        grid-template-columns: 1fr;
    }

    .process-list li {
        min-height: 0;
    }

    .contact-section {
        padding: 54px 0 58px;
    }

    .form-card {
        padding: 24px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-legal {
        grid-column: auto;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .whatsapp-button {
        right: 15px;
        bottom: 15px;
        width: 54px;
        min-height: 54px;
        padding: 0;
        justify-content: center;
    }

    .whatsapp-button span {
        display: none;
    }
}

@media (max-width: 420px) {
    .container {
        width: min(calc(100% - 28px), var(--container));
    }

    .advisory-card > a {
        grid-template-columns: 28px 1fr 16px;
        gap: 10px;
    }

    .contact-details a {
        align-items: flex-start;
        flex-direction: column;
        gap: 3px;
    }

    .legal-dialog-head,
    .legal-dialog-body {
        padding-right: 18px;
        padding-left: 18px;
    }
}

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

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}
