:root {
    --ink: #06111b;
    --ink-soft: #0a1b29;
    --ink-light: #102b3f;
    --panel: #0d2334;
    --paper: #f4f7f9;
    --white: #ffffff;
    --text: #102536;
    --muted: #486173;
    --muted-dark: #adc1ce;
    --blue: #248cff;
    --blue-dark: #0764d7;
    --cyan: #4edcff;
    --cyan-soft: #a9f1ff;
    --green: #3bd995;
    --line: rgba(14, 43, 61, 0.16);
    --line-strong: rgba(14, 43, 61, 0.27);
    --line-light: rgba(255, 255, 255, 0.16);
    --line-light-strong: rgba(255, 255, 255, 0.28);
    --shadow:
        0 30px 90px rgba(4, 18, 29, 0.18);
    --shadow-dark:
        0 38px 110px rgba(0, 0, 0, 0.34);
    --radius-small: 8px;
    --radius-medium: 18px;
    --radius-large: 34px;
    --max-width: 1360px;
    --header-height: 84px;
}

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

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

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    background: var(--paper);
    color: var(--text);
    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Arial,
        sans-serif;
    font-size: 16px;
    line-height: 1.65;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.menu-open {
    overflow: hidden;
}

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

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

button,
a {
    -webkit-tap-highlight-color: transparent;
}

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

button {
    color: inherit;
}

::selection {
    background: var(--blue);
    color: var(--white);
}

.skip-link {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 1000;
    padding: 12px 17px;
    border-radius: var(--radius-small);
    background: var(--white);
    color: var(--ink);
    font-size: 14px;
    font-weight: 850;
    box-shadow: var(--shadow);
    transform: translateY(-170%);
}

.skip-link:focus {
    transform: translateY(0);
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    min-height: var(--header-height);
    border-bottom: 1px solid var(--line-light);
    background: rgba(6, 17, 27, 0.94);
    backdrop-filter: blur(20px);
}

.header-inner {
    width: min(calc(100% - 48px), var(--max-width));
    min-height: var(--header-height);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 30px;
}

.brand {
    min-width: 225px;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: var(--white);
}

.brand-emblem {
    width: 58px;
    height: 58px;
    flex: 0 0 auto;
    filter:
        drop-shadow(0 12px 24px rgba(36, 140, 255, 0.19));
}

.brand-wordmark {
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.brand-wordmark strong {
    font-size: 15px;
    font-weight: 900;
    letter-spacing: 0.17em;
    line-height: 1.2;
}

.brand-wordmark small {
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 9px;
    font-weight: 650;
    letter-spacing: 0.03em;
    line-height: 1.3;
}

.desktop-nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 25px;
}

.desktop-nav a {
    position: relative;
    padding: 31px 0 29px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 12px;
    font-weight: 760;
    white-space: nowrap;
}

.desktop-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: 23px;
    height: 2px;
    background: var(--cyan);
    transition: right 0.2s ease;
}

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

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
    right: 0;
}

.header-cta {
    min-height: 45px;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(78, 220, 255, 0.36);
    border-radius: 999px;
    background:
        linear-gradient(
            135deg,
            rgba(36, 140, 255, 0.19),
            rgba(78, 220, 255, 0.08)
        );
    color: var(--white);
    font-size: 12px;
    font-weight: 850;
    white-space: nowrap;
    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.header-cta:hover {
    border-color: var(--cyan);
    background: var(--blue);
    transform: translateY(-1px);
}

.menu-button {
    display: none;
    width: 48px;
    height: 48px;
    margin-left: auto;
    padding: 0 12px;
    border: 1px solid var(--line-light-strong);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.035);
    cursor: pointer;
}

.menu-button span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 7px 0;
    border-radius: 999px;
    background: var(--white);
    transition:
        transform 0.22s ease,
        opacity 0.22s ease;
}

.menu-button.active span:first-child {
    transform: translateY(4.5px) rotate(45deg);
}

.menu-button.active span:last-child {
    transform: translateY(-4.5px) rotate(-45deg);
}

.mobile-nav {
    display: none;
}

.hero {
    position: relative;
    min-height: 100svh;
    padding:
        calc(var(--header-height) + 72px)
        24px
        88px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 78% 16%,
            rgba(36, 140, 255, 0.24),
            transparent 31%
        ),
        radial-gradient(
            circle at 13% 88%,
            rgba(78, 220, 255, 0.08),
            transparent 29%
        ),
        linear-gradient(
            140deg,
            #06111b 0%,
            #071827 52%,
            #092238 100%
        );
    color: var(--white);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.35;
    pointer-events: none;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.034) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.034) 1px,
            transparent 1px
        );
    background-size: 82px 82px;
}

.hero::after {
    content: "";
    position: absolute;
    left: 4%;
    right: 4%;
    bottom: 0;
    height: 1px;
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(78, 220, 255, 0.48),
            transparent
        );
}

.hero-orbit {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.hero-orbit-one {
    width: 620px;
    height: 620px;
    top: 70px;
    right: -270px;
    border: 1px solid rgba(78, 220, 255, 0.13);
}

.hero-orbit-one::before,
.hero-orbit-one::after,
.hero-orbit-two::before {
    content: "";
    position: absolute;
    border-radius: 50%;
}

.hero-orbit-one::before {
    inset: 72px;
    border: 1px solid rgba(36, 140, 255, 0.18);
}

.hero-orbit-one::after {
    width: 14px;
    height: 14px;
    top: 108px;
    left: 42px;
    background: var(--cyan);
    box-shadow:
        0 0 28px rgba(78, 220, 255, 0.9);
}

.hero-orbit-two {
    width: 390px;
    height: 390px;
    left: -205px;
    bottom: -185px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-orbit-two::before {
    inset: 62px;
    border: 1px solid rgba(36, 140, 255, 0.13);
}

.hero-layout {
    position: relative;
    z-index: 2;
    width: min(100%, var(--max-width));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.78fr);
    gap: 88px;
    align-items: center;
}

.hero-copy {
    min-width: 0;
}

.eyebrow,
.section-label {
    margin: 0 0 18px;
    color: var(--muted);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.16em;
    line-height: 1.5;
    text-transform: uppercase;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: var(--cyan);
}

.eyebrow::before {
    content: "";
    width: 36px;
    height: 2px;
    background: var(--cyan);
}

.hero h1 {
    max-width: 890px;
    margin: 0;
    font-size: clamp(53px, 6.3vw, 91px);
    font-weight: 860;
    line-height: 0.99;
    letter-spacing: -0.062em;
    text-wrap: balance;
}

.hero-lead {
    max-width: 720px;
    margin: 28px 0 0;
    color: rgba(255, 255, 255, 0.83);
    font-size: 19px;
    line-height: 1.75;
}

.hero-actions {
    margin-top: 35px;
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
}

.button {
    min-height: 60px;
    padding: 0 23px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 870;
    transition:
        transform 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    background:
        linear-gradient(
            135deg,
            var(--blue),
            #2476ff
        );
    color: var(--white);
    box-shadow:
        0 16px 42px rgba(36, 140, 255, 0.28);
}

.button-primary:hover {
    background:
        linear-gradient(
            135deg,
            #39a6ff,
            var(--blue-dark)
        );
}

.button-secondary {
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.03);
    color: var(--white);
}

.button-secondary:hover {
    border-color: var(--cyan);
    background: rgba(78, 220, 255, 0.08);
}

.hero-summary {
    margin-top: 45px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid var(--line-light);
    border-left: 1px solid var(--line-light);
}

.hero-summary > div {
    min-height: 117px;
    padding: 18px;
    display: flex;
    flex-direction: column;
    border-right: 1px solid var(--line-light);
    border-bottom: 1px solid var(--line-light);
    background: rgba(255, 255, 255, 0.018);
}

.hero-summary span,
.hero-summary strong,
.hero-summary small {
    display: block;
}

.hero-summary span {
    color: var(--cyan);
    font-size: 9px;
    font-weight: 900;
}

.hero-summary strong {
    margin-top: auto;
    font-size: 15px;
}

.hero-summary small {
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 10px;
    line-height: 1.55;
}

.hero-console {
    position: relative;
    min-width: 0;
    padding: 26px 0 58px;
}

.console-frame {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line-light-strong);
    border-radius: 26px;
    background:
        linear-gradient(
            150deg,
            rgba(14, 42, 62, 0.95),
            rgba(6, 20, 31, 0.96)
        );
    box-shadow: var(--shadow-dark);
}

.console-frame::before {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    right: -120px;
    top: -150px;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(78, 220, 255, 0.21),
            transparent 67%
        );
}

.console-toolbar {
    position: relative;
    min-height: 61px;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 15px;
    align-items: center;
    border-bottom: 1px solid var(--line-light);
}

.console-toolbar > div {
    display: flex;
    gap: 7px;
}

.console-toolbar > div span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
}

.console-toolbar > div span:first-child {
    background: var(--cyan);
    box-shadow:
        0 0 15px rgba(78, 220, 255, 0.75);
}

.console-toolbar small {
    color: rgba(255, 255, 255, 0.52);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.console-toolbar b {
    justify-self: end;
    padding: 5px 8px;
    border: 1px solid rgba(59, 217, 149, 0.33);
    border-radius: 999px;
    color: var(--green);
    font-size: 7px;
    letter-spacing: 0.12em;
}

.console-content {
    position: relative;
    padding: 29px;
}

.console-title span,
.console-title strong {
    display: block;
}

.console-title span {
    color: var(--cyan);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.console-title strong {
    max-width: 420px;
    margin-top: 8px;
    font-size: 31px;
    line-height: 1.1;
    letter-spacing: -0.035em;
}

.console-grid {
    margin-top: 29px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid var(--line-light);
    border-left: 1px solid var(--line-light);
}

.console-grid article {
    min-height: 142px;
    padding: 18px;
    display: flex;
    flex-direction: column;
    border-right: 1px solid var(--line-light);
    border-bottom: 1px solid var(--line-light);
    background: rgba(255, 255, 255, 0.015);
}

.console-grid article.console-featured {
    background:
        linear-gradient(
            145deg,
            rgba(36, 140, 255, 0.18),
            rgba(78, 220, 255, 0.045)
        );
}

.console-grid span,
.console-grid strong,
.console-grid i {
    display: block;
}

.console-grid span {
    color: var(--cyan);
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.console-grid strong {
    margin-top: auto;
    font-size: 15px;
}

.console-grid i {
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.63);
    font-size: 10px;
    font-style: normal;
}

.console-progress {
    margin-top: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.52);
    font-size: 8px;
    font-weight: 800;
}

.console-progress i {
    flex: 1;
    height: 1px;
    background:
        linear-gradient(
            90deg,
            rgba(78, 220, 255, 0.15),
            rgba(78, 220, 255, 0.7)
        );
}

.console-badge {
    position: absolute;
    right: -28px;
    bottom: 0;
    width: 247px;
    padding: 20px;
    border-radius: 18px;
    background:
        linear-gradient(
            135deg,
            var(--blue),
            #1ca4ff
        );
    color: var(--white);
    box-shadow: var(--shadow);
}

.console-badge span,
.console-badge strong,
.console-badge small {
    display: block;
}

.console-badge span {
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 0.14em;
}

.console-badge strong {
    margin-top: 7px;
    font-size: 17px;
}

.console-badge small {
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.77);
    font-size: 9px;
    line-height: 1.5;
}

.services-section,
.approach-section,
.faq-section {
    width: min(calc(100% - 48px), var(--max-width));
    margin: 0 auto;
    padding: 112px 0;
}

.section-heading,
.pricing-heading {
    margin-bottom: 64px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.43fr);
    gap: 90px;
    align-items: end;
}

.section-heading h2,
.pricing-heading h2,
.process-heading h2,
.faq-heading h2,
.contact-heading h2 {
    margin: 0;
    font-size: clamp(39px, 4.7vw, 69px);
    font-weight: 830;
    line-height: 1.055;
    letter-spacing: -0.052em;
    text-wrap: balance;
}

.section-heading > p,
.pricing-heading > p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.82;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.service-card {
    min-width: 0;
    padding: 32px;
    display: flex;
    flex-direction: column;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--white);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.service-card:hover {
    position: relative;
    z-index: 2;
    border-color: rgba(36, 140, 255, 0.32);
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}

.service-card-accent {
    background:
        radial-gradient(
            circle at 92% 5%,
            rgba(78, 220, 255, 0.13),
            transparent 28%
        ),
        linear-gradient(
            145deg,
            rgba(36, 140, 255, 0.07),
            var(--white)
        );
}

.service-topline {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: var(--muted);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.13em;
}

.service-icon {
    width: 74px;
    height: 74px;
    margin-top: 36px;
    padding: 17px;
    display: grid;
    place-items: center;
    border-radius: 22px;
    background:
        linear-gradient(
            145deg,
            var(--ink-soft),
            var(--ink-light)
        );
    color: var(--cyan);
    box-shadow:
        0 18px 34px rgba(6, 17, 27, 0.15);
}

.service-icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-card h3 {
    margin: 29px 0 13px;
    font-size: 30px;
    line-height: 1.14;
    letter-spacing: -0.037em;
}

.service-card > p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.78;
}

.service-card ul {
    list-style: none;
    padding: 0;
    margin: 28px 0;
}

.service-card li {
    position: relative;
    padding: 10px 0 10px 20px;
    border-top: 1px solid var(--line);
    color: #304b5d;
    font-size: 13px;
    font-weight: 700;
}

.service-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 19px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--blue);
    box-shadow:
        0 0 0 4px rgba(36, 140, 255, 0.08);
}

.service-price {
    margin-top: auto;
    padding: 23px 0 14px;
    border-top: 1px solid var(--line);
}

.service-price small,
.service-price strong {
    display: block;
}

.service-price small {
    color: var(--muted);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.service-price strong {
    margin-top: 6px;
    color: var(--ink);
    font-size: 35px;
    line-height: 1;
    letter-spacing: -0.04em;
}

.service-card .service-note {
    min-height: 48px;
    margin-bottom: 18px;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.6;
}

.service-link {
    min-height: 57px;
    padding: 0 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    border-radius: 13px;
    background: var(--ink);
    color: var(--white);
    font-size: 12px;
    font-weight: 860;
    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.service-link:hover {
    background: var(--blue-dark);
    transform: translateY(-1px);
}

.pricing-section,
.process-section,
.contact-section {
    padding:
        112px
        max(24px, calc((100vw - var(--max-width)) / 2));
    background:
        linear-gradient(
            145deg,
            #06111b,
            #092238
        );
    color: var(--white);
}

.section-label-light {
    color: rgba(255, 255, 255, 0.65);
}

.pricing-heading > p {
    color: rgba(255, 255, 255, 0.71);
}

.pricing-list {
    border-top: 1px solid var(--line-light);
    border-left: 1px solid var(--line-light);
}

.pricing-list article {
    min-height: 113px;
    display: grid;
    grid-template-columns: 0.52fr 1.45fr 0.72fr 0.5fr;
    align-items: stretch;
    transition: background 0.2s ease;
}

.pricing-list article:hover {
    background: rgba(255, 255, 255, 0.026);
}

.pricing-list article.pricing-featured {
    background:
        linear-gradient(
            90deg,
            rgba(36, 140, 255, 0.16),
            rgba(78, 220, 255, 0.035)
        );
}

.pricing-list article > * {
    min-width: 0;
    padding: 22px;
    display: flex;
    align-items: center;
    border-right: 1px solid var(--line-light);
    border-bottom: 1px solid var(--line-light);
}

.pricing-list article > span {
    color: var(--cyan);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.pricing-list article > div {
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
}

.pricing-list strong,
.pricing-list small {
    display: block;
}

.pricing-list strong {
    font-size: 18px;
}

.pricing-list small {
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 10px;
    line-height: 1.45;
}

.pricing-list b {
    color: var(--cyan);
    font-size: 20px;
    white-space: nowrap;
}

.pricing-list a {
    justify-content: center;
    color: var(--white);
    font-size: 11px;
    font-weight: 850;
    text-align: center;
}

.pricing-list a:hover {
    background: var(--blue);
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.approach-grid article {
    min-height: 265px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--white);
}

.approach-grid span {
    color: var(--blue-dark);
    font-size: 9px;
    font-weight: 900;
}

.approach-grid strong {
    margin-top: auto;
    font-size: 21px;
    line-height: 1.25;
}

.approach-grid p {
    margin: 11px 0 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.73;
}

.process-section {
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
    gap: 92px;
}

.process-heading {
    position: sticky;
    top: calc(var(--header-height) + 35px);
    align-self: start;
}

.process-list {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid var(--line-light);
}

.process-list li {
    min-height: 175px;
    padding: 30px 0;
    display: grid;
    grid-template-columns: 66px minmax(0, 1fr);
    gap: 22px;
    border-bottom: 1px solid var(--line-light);
}

.process-list > li > span {
    color: var(--cyan);
    font-size: 9px;
    font-weight: 900;
}

.process-list strong {
    font-size: 23px;
}

.process-list p {
    max-width: 650px;
    margin: 10px 0 0;
    color: rgba(255, 255, 255, 0.69);
    font-size: 14px;
    line-height: 1.78;
}

.faq-heading {
    max-width: 940px;
    margin-bottom: 55px;
}

.faq-list {
    border-top: 1px solid var(--line);
}

.faq-list details {
    border-bottom: 1px solid var(--line);
}

.faq-list summary {
    position: relative;
    padding: 25px 57px 25px 0;
    cursor: pointer;
    list-style: none;
    font-size: 18px;
    font-weight: 840;
    line-height: 1.45;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary::after {
    content: "+";
    position: absolute;
    right: 8px;
    top: 16px;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--blue-dark);
    font-size: 24px;
    font-weight: 400;
}

.faq-list details[open] summary::after {
    content: "−";
    border-color: rgba(36, 140, 255, 0.3);
    background: rgba(36, 140, 255, 0.06);
}

.faq-list p {
    max-width: 930px;
    margin: 0;
    padding: 0 57px 28px 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.85;
}

.contact-section {
    background:
        radial-gradient(
            circle at 10% 0%,
            rgba(78, 220, 255, 0.16),
            transparent 29%
        ),
        linear-gradient(
            135deg,
            #126fef,
            #168cff 55%,
            #15aee0
        );
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.56fr);
    gap: 92px;
    align-items: end;
}

.contact-heading > p:last-child {
    max-width: 710px;
    margin: 25px 0 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 16px;
    line-height: 1.75;
}

.contact-panel {
    padding: 28px;
    border: 1px solid var(--line-light-strong);
    border-radius: 25px;
    background:
        linear-gradient(
            145deg,
            rgba(6, 17, 27, 0.96),
            rgba(9, 34, 54, 0.95)
        );
    box-shadow: var(--shadow-dark);
}

.contact-panel > span,
.contact-panel > strong {
    display: block;
}

.contact-panel > span {
    color: var(--cyan);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.13em;
}

.contact-panel > strong {
    margin-top: 8px;
    font-size: 29px;
    letter-spacing: -0.03em;
}

.contact-panel > p {
    margin: 20px 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 13px;
    line-height: 1.72;
}

.contact-panel > a {
    min-height: 60px;
    padding: 0 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border-radius: 13px;
    font-size: 12px;
    font-weight: 880;
    transition:
        transform 0.2s ease,
        background 0.2s ease;
}

.contact-panel > a:hover {
    transform: translateY(-1px);
}

.contact-primary {
    background: var(--white);
    color: var(--ink);
}

.contact-primary:hover {
    background: var(--cyan-soft);
}

.contact-secondary {
    margin-top: 11px;
    border: 1px solid var(--line-light-strong);
    background: rgba(255, 255, 255, 0.035);
    color: var(--white);
}

.contact-secondary:hover {
    background: rgba(255, 255, 255, 0.09);
}

.site-footer {
    min-height: 154px;
    padding:
        35px
        max(24px, calc((100vw - var(--max-width)) / 2));
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 38px;
    align-items: center;
    background: #040c14;
    color: var(--white);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 13px;
}

.footer-brand img {
    width: 48px;
    height: 48px;
}

.footer-brand > span {
    display: flex;
    flex-direction: column;
}

.footer-brand strong {
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.14em;
}

.footer-brand small {
    margin-top: 3px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 8px;
}

.site-footer nav {
    display: flex;
    gap: 21px;
}

.site-footer nav a {
    color: rgba(255, 255, 255, 0.68);
    font-size: 10px;
    font-weight: 730;
}

.site-footer nav a:hover {
    color: var(--white);
}

.site-footer > p {
    margin: 0;
    text-align: right;
    color: rgba(255, 255, 255, 0.55);
    font-size: 9px;
}

.floating-whatsapp {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 90;
    width: 59px;
    height: 59px;
    padding: 15px;
    display: grid;
    place-items: center;
    border-radius: 20px;
    background: var(--green);
    color: var(--ink);
    box-shadow:
        0 20px 50px rgba(5, 26, 38, 0.3);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.floating-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow:
        0 26px 58px rgba(5, 26, 38, 0.37);
}

.floating-whatsapp svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition:
        opacity 0.66s ease,
        transform 0.66s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

:focus-visible {
    outline: 3px solid var(--cyan);
    outline-offset: 4px;
}

@media (max-width: 1180px) {

    .hero-layout {
        grid-template-columns: minmax(0, 1fr) minmax(380px, 0.72fr);
        gap: 55px;
    }

    .desktop-nav {
        gap: 18px;
    }

    .approach-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 1040px) {

    .hero {
        min-height: auto;
    }

    .hero-layout,
    .process-section,
    .contact-layout {
        grid-template-columns: 1fr;
    }

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

    .hero-console {
        width: min(740px, 100%);
    }

    .console-badge {
        right: 18px;
    }

    .process-heading {
        position: static;
    }

    .site-footer {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand,
    .site-footer nav {
        justify-content: center;
    }

    .site-footer > p {
        text-align: center;
    }
}

@media (max-width: 900px) {

    :root {
        --header-height: 78px;
    }

    .desktop-nav,
    .header-cta {
        display: none;
    }

    .menu-button {
        display: block;
    }

    .mobile-nav {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        z-index: 99;
        height: calc(100svh - var(--header-height));
        padding: 28px 24px;
        display: flex;
        flex-direction: column;
        overflow-y: auto;
        background:
            radial-gradient(
                circle at 80% 0%,
                rgba(36, 140, 255, 0.17),
                transparent 31%
            ),
            var(--ink);
        transform: translateX(100%);
        visibility: hidden;
        transition:
            transform 0.26s ease,
            visibility 0.26s ease;
    }

    .mobile-nav.open {
        transform: translateX(0);
        visibility: visible;
    }

    .mobile-nav > a {
        padding: 18px 0;
        border-bottom: 1px solid var(--line-light);
        color: var(--white);
        font-size: 18px;
        font-weight: 800;
    }

    .mobile-nav .mobile-nav-cta {
        margin-top: 24px;
        padding: 17px;
        border: 0;
        border-radius: 14px;
        background: var(--blue);
        text-align: center;
    }

    .section-heading,
    .pricing-heading {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .pricing-list article {
        grid-template-columns: 0.4fr 1.1fr 0.65fr;
    }

    .pricing-list article > a {
        grid-column: 1 / -1;
        min-height: 54px;
    }
}

@media (max-width: 700px) {

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

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

    .pricing-list article > span {
        grid-column: 1;
    }

    .pricing-list article > div {
        grid-column: 1 / -1;
        grid-row: 2;
    }

    .pricing-list article > b {
        grid-column: 2;
        grid-row: 1;
        justify-content: flex-end;
        text-align: right;
    }

    .pricing-list article > a {
        grid-column: 1 / -1;
        grid-row: 3;
    }
}

@media (max-width: 580px) {

    :root {
        --header-height: 72px;
    }

    body {
        font-size: 16px;
    }

    .header-inner {
        width: calc(100% - 28px);
    }

    .brand {
        min-width: 0;
        gap: 11px;
    }

    .brand-emblem {
        width: 48px;
        height: 48px;
    }

    .brand-wordmark strong {
        font-size: 13px;
    }

    .brand-wordmark small {
        max-width: 190px;
        font-size: 7px;
    }

    .menu-button {
        width: 46px;
        height: 46px;
    }

    .hero {
        padding:
            calc(var(--header-height) + 44px)
            14px
            70px;
    }

    .hero h1 {
        font-size: clamp(42px, 12vw, 58px);
        line-height: 1.02;
        letter-spacing: -0.055em;
    }

    .hero-lead {
        margin-top: 23px;
        font-size: 17px;
        line-height: 1.76;
    }

    .hero-actions {
        margin-top: 29px;
    }

    .button {
        width: 100%;
        min-height: 59px;
    }

    .hero-summary {
        grid-template-columns: 1fr;
    }

    .hero-summary > div {
        min-height: 95px;
    }

    .console-content {
        padding: 19px;
    }

    .console-title strong {
        font-size: 25px;
    }

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

    .console-grid article {
        min-height: 115px;
    }

    .console-progress {
        display: grid;
        grid-template-columns: auto 1fr;
    }

    .console-progress i {
        min-width: 30px;
    }

    .console-badge {
        position: static;
        width: 100%;
        margin-top: 12px;
    }

    .services-section,
    .approach-section,
    .faq-section {
        width: calc(100% - 28px);
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .section-heading,
    .pricing-heading {
        margin-bottom: 45px;
    }

    .section-heading h2,
    .pricing-heading h2,
    .process-heading h2,
    .faq-heading h2,
    .contact-heading h2 {
        font-size: 35px;
        line-height: 1.08;
    }

    .service-card {
        padding: 22px;
    }

    .service-icon {
        width: 67px;
        height: 67px;
        margin-top: 29px;
    }

    .service-card h3 {
        font-size: 27px;
    }

    .service-card > p {
        font-size: 15px;
    }

    .service-card li {
        font-size: 13px;
    }

    .service-price strong {
        font-size: 31px;
    }

    .pricing-section,
    .process-section,
    .contact-section {
        padding:
            80px
            14px;
    }

    .pricing-list article {
        min-height: auto;
    }

    .pricing-list article > * {
        padding: 18px;
    }

    .pricing-list b {
        font-size: 17px;
    }

    .approach-grid article {
        min-height: 220px;
    }

    .process-list li {
        min-height: 155px;
        grid-template-columns: 43px minmax(0, 1fr);
        gap: 15px;
    }

    .process-list strong {
        font-size: 20px;
    }

    .faq-list summary {
        padding-right: 52px;
        font-size: 17px;
    }

    .faq-list p {
        padding-right: 8px;
        font-size: 15px;
    }

    .contact-layout {
        gap: 50px;
    }

    .contact-panel {
        padding: 21px;
    }

    .contact-panel > strong {
        font-size: 24px;
    }

    .site-footer {
        padding-left: 14px;
        padding-right: 14px;
    }

    .site-footer nav {
        flex-wrap: wrap;
    }

    .floating-whatsapp {
        right: 14px;
        bottom: 14px;
        width: 55px;
        height: 55px;
        border-radius: 18px;
    }
}

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

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





/* IBK SPACE STUDIO START */

.space-studio-section {
    position: relative;
    overflow: hidden;
    padding: 112px 0 90px;
    background:
        radial-gradient(
            circle at 15% 15%,
            rgba(57, 170, 255, 0.17),
            transparent 28%
        ),
        radial-gradient(
            circle at 86% 70%,
            rgba(62, 224, 255, 0.11),
            transparent 30%
        ),
        linear-gradient(
            155deg,
            #030b14 0%,
            #061827 47%,
            #08263a 100%
        );
    color: #ffffff;
}

.space-stars {
    position: absolute;
    inset: 0;
    opacity: 0.42;
    pointer-events: none;
    background-image:
        radial-gradient(
            circle,
            rgba(255, 255, 255, 0.9) 0 1px,
            transparent 1.5px
        );
    background-size: 47px 47px;
}

.space-orbit {
    position: absolute;
    border: 1px solid rgba(81, 204, 255, 0.13);
    border-radius: 50%;
    pointer-events: none;
}

.space-orbit-one {
    width: 720px;
    height: 720px;
    right: -310px;
    top: -150px;
}

.space-orbit-two {
    width: 530px;
    height: 530px;
    left: -270px;
    bottom: -210px;
}

.space-studio-shell {
    position: relative;
    z-index: 2;
    width: min(
        calc(100% - 44px),
        var(--max-width, 1240px)
    );
    margin: 0 auto;
}

.space-kicker {
    margin: 0 0 17px;
    color: #61d8ff;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.space-studio-head {
    margin-bottom: 55px;
    display: grid;
    grid-template-columns:
        minmax(0, 1.1fr)
        minmax(300px, 0.45fr);
    gap: 80px;
    align-items: end;
}

.space-studio-head h2 {
    max-width: 850px;
    margin: 0;
    font-size: clamp(43px, 6vw, 79px);
    line-height: 0.99;
    letter-spacing: -0.062em;
}

.space-head-copy {
    margin: 0;
    color: rgba(255, 255, 255, 0.66);
    font-size: 14px;
    line-height: 1.83;
}

.space-command-grid {
    display: grid;
    grid-template-columns:
        minmax(0, 1.1fr)
        minmax(340px, 0.9fr);
    gap: 20px;
}

.space-side-column {
    display: grid;
    gap: 20px;
}

.space-command-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(110, 211, 255, 0.18);
    border-radius: 26px;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.075),
            rgba(255, 255, 255, 0.022)
        );
    box-shadow:
        0 28px 70px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(12px);
}

.space-card-top {
    min-height: 58px;
    padding: 0 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(110, 211, 255, 0.14);
}

.space-card-number {
    color: #61d8ff;
    font-size: 10px;
    font-weight: 900;
}

.space-status {
    padding: 8px 11px;
    border: 1px solid rgba(62, 225, 153, 0.35);
    border-radius: 999px;
    color: #5ee8a5;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.space-about-card {
    min-height: 690px;
}

.space-shuttle-visual {
    position: relative;
    height: 285px;
    overflow: hidden;
    border-bottom: 1px solid rgba(110, 211, 255, 0.13);
    background:
        radial-gradient(
            circle at 50% 50%,
            rgba(47, 167, 255, 0.16),
            transparent 43%
        );
}

.space-shuttle-body {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 75px;
    height: 175px;
    border: 2px solid rgba(128, 225, 255, 0.76);
    border-radius: 48% 48% 21% 21%;
    background:
        linear-gradient(
            90deg,
            #d7ecf7,
            #ffffff 48%,
            #a8c8da
        );
    transform:
        translate(-50%, -50%)
        rotate(38deg);
    box-shadow:
        0 0 45px rgba(77, 200, 255, 0.25);
}

.space-shuttle-window {
    position: absolute;
    top: 29px;
    left: 50%;
    width: 29px;
    height: 20px;
    border: 3px solid #88b9d2;
    border-radius: 50%;
    background: #112b3e;
    transform: translateX(-50%);
}

.space-shuttle-wing-left,
.space-shuttle-wing-right {
    position: absolute;
    bottom: 28px;
    width: 54px;
    height: 69px;
    background: #9bc2d6;
}

.space-shuttle-wing-left {
    left: -36px;
    clip-path: polygon(
        100% 0,
        100% 100%,
        0 79%
    );
}

.space-shuttle-wing-right {
    right: -36px;
    clip-path: polygon(
        0 0,
        100% 79%,
        0 100%
    );
}

.space-shuttle-flame {
    position: absolute;
    left: 50%;
    bottom: -70px;
    width: 25px;
    height: 84px;
    border-radius: 50%;
    background:
        linear-gradient(
            to bottom,
            #ffffff,
            #44cfff 30%,
            #2973ff 63%,
            transparent
        );
    transform: translateX(-50%);
    filter: blur(1px);
}

.space-flight-line {
    position: absolute;
    top: 50%;
    left: -10%;
    width: 125%;
    height: 1px;
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(89, 215, 255, 0.08),
            rgba(89, 215, 255, 0.55),
            transparent
        );
    transform: rotate(-14deg);
}

.space-card-content {
    padding: 30px;
}

.space-card-label {
    margin: 0 0 13px;
    color: #61d8ff;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.space-card-content h3 {
    margin: 0;
    font-size: clamp(27px, 3.2vw, 43px);
    line-height: 1.08;
    letter-spacing: -0.046em;
}

.space-card-content p:not(.space-card-label) {
    margin: 19px 0 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 13px;
    line-height: 1.82;
}

.space-services-card {
    min-height: 445px;
}

.space-service-list a {
    min-height: 96px;
    padding: 18px 20px;
    display: grid;
    grid-template-columns: 46px 1fr auto;
    gap: 15px;
    align-items: center;
    border-bottom: 1px solid rgba(110, 211, 255, 0.12);
    color: #ffffff;
    text-decoration: none;
    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.space-service-list a:last-child {
    border-bottom: 0;
}

.space-service-list a:hover {
    background: rgba(70, 185, 255, 0.08);
}

.space-service-list > a > span {
    color: #61d8ff;
    font-size: 9px;
    font-weight: 900;
}

.space-service-list strong,
.space-service-list small {
    display: block;
}

.space-service-list strong {
    font-size: 14px;
    line-height: 1.4;
}

.space-service-list small {
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.48);
    font-size: 9px;
}

.space-service-list b {
    color: #61d8ff;
    font-size: 16px;
}

.space-social-card {
    min-height: 225px;
    padding: 24px;
    display: grid;
    grid-template-columns: 65px 1fr;
    gap: 18px;
    align-items: start;
}

.space-social-icon {
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background:
        linear-gradient(
            135deg,
            #694fff,
            #e94e91 58%,
            #ff9138
        );
    font-size: 28px;
    box-shadow:
        0 16px 35px rgba(0, 0, 0, 0.27);
}

.space-social-card h3 {
    margin: 0;
    font-size: 21px;
}

.space-social-card p:not(.space-card-label) {
    margin: 8px 0 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 11px;
    line-height: 1.7;
}

.space-social-card > a {
    grid-column: 1 / -1;
    min-height: 48px;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 12px;
    background:
        linear-gradient(
            135deg,
            #6d53ff,
            #dc4c96
        );
    color: #ffffff;
    text-decoration: none;
    font-size: 11px;
    font-weight: 850;
}

.space-contact-panel {
    margin-top: 20px;
    padding: 42px;
    display: grid;
    grid-template-columns:
        minmax(300px, 0.85fr)
        minmax(390px, 1.15fr);
    gap: 55px;
    border: 1px solid rgba(110, 211, 255, 0.19);
    border-radius: 28px;
    background:
        radial-gradient(
            circle at 94% 9%,
            rgba(61, 205, 255, 0.16),
            transparent 29%
        ),
        rgba(3, 15, 25, 0.74);
    box-shadow:
        0 35px 90px rgba(0, 0, 0, 0.28);
}

.space-contact-copy h2 {
    margin: 0;
    font-size: clamp(35px, 4.5vw, 61px);
    line-height: 1.04;
    letter-spacing: -0.052em;
}

.space-contact-copy > p:not(.space-kicker) {
    max-width: 560px;
    margin: 21px 0 0;
    color: rgba(255, 255, 255, 0.64);
    font-size: 13px;
    line-height: 1.82;
}

.space-contact-buttons {
    margin-top: 29px;
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
}

.space-contact-buttons a {
    min-height: 49px;
    padding: 0 17px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 12px;
    color: #ffffff;
    font-size: 10px;
    font-weight: 850;
    text-decoration: none;
}

.space-contact-buttons .space-contact-primary {
    border: 0;
    background:
        linear-gradient(
            135deg,
            #1fcf8c,
            #41dfae
        );
    color: #04231b;
}

.space-project-form {
    display: grid;
    gap: 15px;
}

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

.space-project-form label > span {
    display: block;
    margin-bottom: 7px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 9px;
    font-weight: 800;
}

.space-project-form input,
.space-project-form select,
.space-project-form textarea {
    width: 100%;
    border: 1px solid rgba(110, 211, 255, 0.16);
    border-radius: 12px;
    outline: none;
    background: rgba(255, 255, 255, 0.045);
    color: #ffffff;
    font: inherit;
    font-size: 12px;
}

.space-project-form input,
.space-project-form select {
    min-height: 50px;
    padding: 0 14px;
}

.space-project-form textarea {
    min-height: 125px;
    padding: 13px 14px;
    line-height: 1.6;
    resize: vertical;
}

.space-project-form input::placeholder,
.space-project-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.34);
}

.space-project-form select option {
    background: #061827;
    color: #ffffff;
}

.space-project-form input:focus,
.space-project-form select:focus,
.space-project-form textarea:focus {
    border-color: #61d8ff;
    box-shadow:
        0 0 0 4px rgba(97, 216, 255, 0.09);
}

.space-form-submit {
    min-height: 53px;
    padding: 0 17px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 0;
    border-radius: 12px;
    background:
        linear-gradient(
            135deg,
            #177df0,
            #42d5ff
        );
    color: #ffffff;
    font-size: 11px;
    font-weight: 900;
    cursor: pointer;
}

.space-form-status {
    min-height: 19px;
    margin: 0;
    color: #61d8ff;
    font-size: 9px;
}

.space-form-status.is-error {
    color: #ffb3b3;
}

@media (max-width: 980px) {
    .space-studio-head,
    .space-command-grid,
    .space-contact-panel {
        grid-template-columns: 1fr;
    }

    .space-about-card {
        min-height: auto;
    }
}

@media (max-width: 650px) {
    .space-studio-section {
        padding: 78px 0 62px;
    }

    .space-studio-shell {
        width: calc(100% - 24px);
    }

    .space-studio-head {
        margin-bottom: 35px;
        gap: 24px;
    }

    .space-studio-head h2 {
        font-size: 42px;
    }

    .space-command-card {
        border-radius: 20px;
    }

    .space-shuttle-visual {
        height: 230px;
    }

    .space-card-content {
        padding: 22px;
    }

    .space-card-content h3 {
        font-size: 30px;
    }

    .space-service-list a {
        grid-template-columns: 40px 1fr auto;
        padding: 16px;
    }

    .space-social-card {
        padding: 20px;
    }

    .space-contact-panel {
        padding: 25px 18px;
        border-radius: 21px;
        gap: 35px;
    }

    .space-contact-copy h2 {
        font-size: 37px;
    }

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

    .space-contact-buttons a {
        width: 100%;
        justify-content: space-between;
    }
}

/* IBK SPACE STUDIO END */

/* IBK HERO POLISH V2 START */
.hero,
.hero-section,
section[id="anasayfa"],
section.hero {
    position: relative;
    overflow: hidden;
}

.hero::before,
.hero-section::before,
section[id="anasayfa"]::before,
section.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 14%, rgba(38, 137, 255, 0.18), transparent 30%),
        radial-gradient(circle at 84% 18%, rgba(0, 224, 255, 0.12), transparent 26%),
        linear-gradient(180deg, rgba(4, 17, 38, 0.12), rgba(4, 17, 38, 0.02));
    pointer-events: none;
}

.hero::after,
.hero-section::after,
section[id="anasayfa"]::after,
section.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
    background-size: 56px 56px;
    opacity: .22;
    pointer-events: none;
    mask-image: linear-gradient(180deg, rgba(0,0,0,.98), rgba(0,0,0,.65) 72%, transparent);
    -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,.98), rgba(0,0,0,.65) 72%, transparent);
}

.hero-title {
    position: relative;
    display: block;
    max-width: 12ch;
    margin: 0 0 20px;
    padding-right: 28px;
    line-height: .92;
    text-wrap: balance;
    z-index: 2;
}

.hero-title-text {
    display: inline-block;
    position: relative;
    z-index: 2;
}



.hero p.hero-lead,
.hero-section p.hero-lead,
section[id="anasayfa"] p.hero-lead,
section.hero p.hero-lead {
    max-width: 34rem;
    color: rgba(235, 243, 255, .88);
    line-height: 1.72;
    text-wrap: pretty;
    position: relative;
    z-index: 2;
}

.hero .cta-group,
.hero-buttons,
.hero-actions {
    position: relative;
    z-index: 2;
}

.hero .panel,
.hero-card,
.glass-card,
.glass-panel {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .22);
}

@media (max-width: 767px) {
    .hero-title {
        max-width: 10ch;
        padding-right: 22px;
        margin-bottom: 18px;
    }

    

    .hero p.hero-lead,
    .hero-section p.hero-lead,
    section[id="anasayfa"] p.hero-lead,
    section.hero p.hero-lead {
        max-width: 100%;
        line-height: 1.66;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero::before,
    .hero::after,
    .hero-section::before,
    .hero-section::after,
    section[id="anasayfa"]::before,
    section[id="anasayfa"]::after,
    section.hero::before,
    section.hero::after {
        animation: none !important;
        transition: none !important;
    }
}
/* IBK HERO POLISH V2 END */








/* IBK FOOTER INFO START */

.ibk-footer-info,
.ibk-footer-info * {
    box-sizing: border-box;
}

.ibk-footer-info {
    width: min(
        calc(100% - 36px),
        1180px
    );
    margin: 0 auto 58px;
    padding: 36px;
    border: 1px solid rgba(92, 210, 255, 0.17);
    border-radius: 27px;
    background:
        radial-gradient(
            circle at 90% 5%,
            rgba(53, 198, 255, 0.12),
            transparent 31%
        ),
        linear-gradient(
            145deg,
            rgba(15, 42, 61, 0.88),
            rgba(4, 18, 29, 0.94)
        );
    box-shadow:
        0 28px 70px rgba(0, 0, 0, 0.27),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.ibk-footer-info__heading {
    margin-bottom: 26px;
    text-align: center;
}

.ibk-footer-info__heading > p {
    margin: 0 0 10px;
    color: #62d9ff;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.18em;
}

.ibk-footer-info__heading h2 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(27px, 4vw, 42px);
    line-height: 1.06;
    letter-spacing: -0.045em;
}

.ibk-footer-info__grid {
    display: grid;
    grid-template-columns:
        repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.ibk-footer-info__card {
    min-width: 0;
    min-height: 235px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(111, 216, 255, 0.13);
    border-radius: 19px;
    background:
        linear-gradient(
            150deg,
            rgba(255, 255, 255, 0.065),
            rgba(255, 255, 255, 0.018)
        );
    transition:
        border-color 0.2s ease,
        transform 0.2s ease,
        background 0.2s ease;
}

.ibk-footer-info__card:hover {
    border-color: rgba(101, 219, 255, 0.32);
    transform: translateY(-2px);
    background:
        linear-gradient(
            150deg,
            rgba(83, 191, 255, 0.1),
            rgba(255, 255, 255, 0.025)
        );
}

.ibk-footer-info__number,
.ibk-footer-info__icon {
    width: 45px;
    height: 45px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(101, 218, 255, 0.23);
    border-radius: 13px;
    background: rgba(79, 190, 255, 0.08);
    color: #6cddff;
    font-size: 10px;
    font-weight: 900;
}

.ibk-footer-info__icon svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.ibk-footer-info__icon--instagram {
    border: 0;
    background:
        radial-gradient(
            circle at 30% 100%,
            #ffd263 0 20%,
            transparent 21%
        ),
        radial-gradient(
            circle at 0 100%,
            #ff7045 0 41%,
            transparent 42%
        ),
        linear-gradient(
            135deg,
            #7439f5,
            #d62e94 53%,
            #ff6549
        );
    color: #ffffff;
}

.ibk-footer-info__instagram-dot {
    fill: currentColor;
    stroke: none;
}

.ibk-footer-info__card h3 {
    margin: 20px 0 10px;
    color: #ffffff;
    font-size: 19px;
    line-height: 1.2;
}

.ibk-footer-info__card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.57);
    font-size: 12px;
    line-height: 1.72;
}

.ibk-footer-info__card a {
    margin-top: auto;
    padding-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 13px;
    color: #6bdbff;
    font-size: 11px;
    font-weight: 850;
    line-height: 1.5;
    text-decoration: none;
    overflow-wrap: anywhere;
}

.ibk-footer-info__card a:hover {
    color: #ffffff;
}

@media (max-width: 950px) {
    .ibk-footer-info__grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 580px) {
    .ibk-footer-info {
        width: calc(100% - 24px);
        margin-bottom: 45px;
        padding: 22px 14px;
        border-radius: 21px;
    }

    .ibk-footer-info__grid {
        grid-template-columns: 1fr;
        gap: 11px;
    }

    .ibk-footer-info__card {
        min-height: 195px;
        padding: 19px;
        border-radius: 16px;
    }

    .ibk-footer-info__heading {
        margin-bottom: 21px;
    }

    .ibk-footer-info__heading h2 {
        font-size: 30px;
    }
}

/* IBK FOOTER INFO END */


/* IBK HERO TITLE TRIANGLE REMOVE START */

/*
 * "Sektörünüze" kelimesinde k ile t arasına giren
 * açık mavi üçgen/ok dekoru tamamen kapatılır.
 */

#ibk-main-hero-title {
    position: relative !important;
    z-index: 20 !important;
    display: block !important;
    padding-right: 0 !important;
    background: transparent !important;
    isolation: isolate;
}

/* H1 üzerinde oluşturulan bütün dekoratif pseudo elementleri kapat. */
#ibk-main-hero-title::before,
#ibk-main-hero-title::after,
#ibk-main-hero-title *::before,
#ibk-main-hero-title *::after {
    content: none !important;
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    width: 0 !important;
    height: 0 !important;
    border: 0 !important;
    background: none !important;
    box-shadow: none !important;
    clip-path: none !important;
    -webkit-clip-path: none !important;
}

/*
 * Üçgen başlığın kapsayıcısının pseudo elementi olarak
 * üretiliyorsa yalnızca başlık kapsayıcılarında kapatılır.
 * Hero bölümünün büyük arka plan yörüngeleri korunur.
 */
:is(
    .hero-copy,
    .hero-content,
    .hero-heading,
    .hero-title-wrap,
    .hero-text,
    .hero-main-copy
):has(#ibk-main-hero-title)::before,
:is(
    .hero-copy,
    .hero-content,
    .hero-heading,
    .hero-title-wrap,
    .hero-text,
    .hero-main-copy
):has(#ibk-main-hero-title)::after {
    content: none !important;
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    background: none !important;
    border: 0 !important;
    box-shadow: none !important;
    clip-path: none !important;
    -webkit-clip-path: none !important;
}

/* Başlığın yanında bulunan eski dekor elemanlarını kapat. */
:is(
    .hero-copy,
    .hero-content,
    .hero-heading,
    .hero-title-wrap,
    .hero-text,
    .hero-main-copy
):has(#ibk-main-hero-title)
:is(
    [class*="title-orb"],
    [class*="title-dot"],
    [class*="title-accent"],
    [class*="title-mark"],
    [class*="title-shape"],
    [class*="title-triangle"],
    [class*="hero-orb"],
    [class*="hero-dot"],
    [class*="hero-accent"],
    [class*="hero-mark"],
    [class*="hero-triangle"],
    [class*="blue-orb"],
    [class*="blue-dot"]
) {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}

/* IBK HERO TITLE TRIANGLE REMOVE END */


/* IBK REMOVE KISA BILGI TITLE START */
:is(h1,h2,h3,p,div)[data-title="kisa-bilgi-iletisim"]{
    display:none !important;
}
.section-mini-contact .section-title,
.quick-contact .section-title,
.contact-brief .section-title,
.short-contact .section-title{
    display:none !important;
}
/* IBK REMOVE KISA BILGI TITLE END */


/* IBK HERO TECH THEME START */
.hero.hero-tech-theme{
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background:
        radial-gradient(circle at 18% 18%, rgba(45,135,255,.14), transparent 28%),
        radial-gradient(circle at 82% 20%, rgba(0,225,255,.10), transparent 26%),
        radial-gradient(circle at 70% 72%, rgba(60,130,255,.10), transparent 32%),
        linear-gradient(180deg, #07111d 0%, #08192a 46%, #071526 100%);
    border-top: 1px solid rgba(120,180,255,.10);
    border-bottom: 1px solid rgba(120,180,255,.08);
}

.hero.hero-tech-theme > *:not(.hero-tech-bg){
    position: relative;
    z-index: 3;
}

.hero.hero-tech-theme .hero-tech-bg{
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.hero.hero-tech-theme .hero-tech-bg::before{
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(72,127,176,.09) 1px, transparent 1px),
        linear-gradient(90deg, rgba(72,127,176,.09) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,.95), rgba(0,0,0,.45));
    opacity: .42;
}

.hero.hero-tech-theme .hero-tech-bg::after{
    content: "";
    position: absolute;
    right: -4%;
    top: 8%;
    width: 60%;
    height: 78%;
    opacity: .60;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 900 900'><g fill='none' stroke='%2334b8ff' stroke-opacity='.22' stroke-width='3'><path d='M120 190 H330 L420 280 H640'/><path d='M180 310 H360 L460 410 H720'/><path d='M140 450 H300 L390 540 H650'/><path d='M200 580 H380 L480 670 H760'/><path d='M260 120 V240 L340 320 V420'/><path d='M510 150 V250 L590 330 V460'/><path d='M690 200 V300 L760 370 V520'/></g><g fill='%233fd4ff' fill-opacity='.34'><circle cx='120' cy='190' r='8'/><circle cx='640' cy='190' r='8'/><circle cx='180' cy='310' r='8'/><circle cx='720' cy='410' r='8'/><circle cx='140' cy='450' r='8'/><circle cx='650' cy='540' r='8'/><circle cx='200' cy='580' r='8'/><circle cx='760' cy='670' r='8'/><circle cx='260' cy='120' r='8'/><circle cx='340' cy='420' r='8'/><circle cx='510' cy='150' r='8'/><circle cx='590' cy='460' r='8'/><circle cx='690' cy='200' r='8'/><circle cx='760' cy='520' r='8'/></g></svg>");
    filter: drop-shadow(0 0 16px rgba(42,164,255,.10));
}

.hero.hero-tech-theme .tech-node{
    position: absolute;
    display: block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #8fe8ff 0%, #39c9ff 55%, #0f7fe0 100%);
    box-shadow:
        0 0 0 4px rgba(52,184,255,.10),
        0 0 18px rgba(52,184,255,.28);
    opacity: .95;
}

.hero.hero-tech-theme .tech-node-1{
    left: 10%;
    top: 24%;
}
.hero.hero-tech-theme .tech-node-2{
    right: 18%;
    top: 31%;
}
.hero.hero-tech-theme .tech-node-3{
    right: 10%;
    bottom: 22%;
}

.hero.hero-tech-theme .tech-line{
    position: absolute;
    display: block;
    height: 1px;
    background: linear-gradient(90deg, rgba(58,194,255,0), rgba(58,194,255,.55), rgba(58,194,255,0));
    opacity: .5;
}

.hero.hero-tech-theme .tech-line-1{
    left: 8%;
    top: 25%;
    width: 32%;
    transform: rotate(-7deg);
}
.hero.hero-tech-theme .tech-line-2{
    right: 10%;
    top: 34%;
    width: 24%;
    transform: rotate(18deg);
}
.hero.hero-tech-theme .tech-line-3{
    right: 8%;
    bottom: 24%;
    width: 28%;
    transform: rotate(-12deg);
}

/* Sektörünüze yazısının arkasındaki istenmeyen mavi top / dot / orb benzeri öğeleri kapat */
.hero.hero-tech-theme .orb,
.hero.hero-tech-theme .dot,
.hero.hero-tech-theme .ball,
.hero.hero-tech-theme .bubble,
.hero.hero-tech-theme .floating-dot,
.hero.hero-tech-theme .hero-dot,
.hero.hero-tech-theme .orbit-dot,
.hero.hero-tech-theme .decor-dot,
.hero.hero-tech-theme .blue-dot,
.hero.hero-tech-theme [class*="dot"],
.hero.hero-tech-theme [class*="orb"]{
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

/* Yazılar daha net olsun */
.hero.hero-tech-theme h1{
    position: relative;
    z-index: 4;
    text-shadow: 0 2px 18px rgba(0,0,0,.18);
}

.hero.hero-tech-theme .hero-lead,
.hero.hero-tech-theme p{
    position: relative;
    z-index: 4;
    color: rgba(230,240,255,.90);
}

/* Butonlar daha premium */
.hero.hero-tech-theme .hero-actions .btn-primary,
.hero.hero-tech-theme .hero-actions .button-primary{
    background: linear-gradient(135deg, #2f86ff 0%, #3b7dff 50%, #2967f0 100%);
    box-shadow:
        0 10px 30px rgba(44,125,255,.18),
        inset 0 1px 0 rgba(255,255,255,.16);
}

.hero.hero-tech-theme .hero-actions .btn-secondary,
.hero.hero-tech-theme .hero-actions .button-secondary{
    background: rgba(7,17,29,.26);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(155,190,255,.18);
}

/* Mobilde hafiflet */
@media (max-width: 768px){
    .hero.hero-tech-theme{
        background:
            radial-gradient(circle at 20% 16%, rgba(45,135,255,.12), transparent 28%),
            radial-gradient(circle at 82% 18%, rgba(0,225,255,.08), transparent 22%),
            linear-gradient(180deg, #07111d 0%, #08192a 46%, #071526 100%);
    }

    .hero.hero-tech-theme .hero-tech-bg::before{
        background-size: 32px 32px;
        opacity: .30;
    }

    .hero.hero-tech-theme .hero-tech-bg::after{
        right: -12%;
        top: 12%;
        width: 70%;
        height: 58%;
        opacity: .42;
    }

    .hero.hero-tech-theme .tech-node-2,
    .hero.hero-tech-theme .tech-node-3,
    .hero.hero-tech-theme .tech-line-2,
    .hero.hero-tech-theme .tech-line-3{
        opacity: .55;
    }
}
/* IBK HERO TECH THEME END */
