/* =========================================================
   AD-HOCC DIGITAL SOLUTIONS
   Main Stylesheet — Part 1
   ========================================================= */


/* =========================================================
   1. FONT IMPORT
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');


/* =========================================================
   2. ROOT VARIABLES
   ========================================================= */

:root {
    --color-bg: #050707;
    --color-bg-soft: #090d0d;
    --color-bg-card: #0c1111;
    --color-bg-card-hover: #101717;

    --color-primary: #20ead8;
    --color-primary-dark: #10bcae;
    --color-primary-soft: rgba(32, 234, 216, 0.12);

    --color-secondary: #1ab6f0;

    --color-white: #ffffff;
    --color-text: #f2f7f6;
    --color-text-soft: #b1bcba;
    --color-text-muted: #76817f;

    --color-border: rgba(255, 255, 255, 0.11);
    --color-border-soft: rgba(255, 255, 255, 0.07);
    --color-border-primary: rgba(32, 234, 216, 0.38);

    --container-width: 1320px;
    --header-height: 92px;

    --radius-small: 10px;
    --radius-medium: 18px;
    --radius-large: 28px;
    --radius-pill: 999px;

    --shadow-small: 0 12px 35px rgba(0, 0, 0, 0.28);
    --shadow-large: 0 30px 90px rgba(0, 0, 0, 0.45);

    --transition-fast: 0.2s ease;
    --transition-base: 0.35s ease;
    --transition-slow: 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}


/* =========================================================
   3. RESET
   ========================================================= */

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

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

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    background:
        radial-gradient(
            circle at 15% 10%,
            rgba(32, 234, 216, 0.045),
            transparent 30%
        ),
        var(--color-bg);
    color: var(--color-text);
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.menu-open {
    overflow: hidden;
}

main {
    display: block;
}

section {
    position: relative;
}

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

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

button {
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    cursor: pointer;
}

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

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

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

::selection {
    background: var(--color-primary);
    color: #03100f;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #070909;
}

::-webkit-scrollbar-thumb {
    border: 2px solid #070909;
    border-radius: var(--radius-pill);
    background: #283332;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary-dark);
}


/* =========================================================
   4. GLOBAL LAYOUT
   ========================================================= */

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

.section-number {
    color: var(--color-text-muted);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: var(--color-primary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.section-kicker::before {
    width: 28px;
    height: 1px;
    background: var(--color-primary);
    content: "";
}

.text-gradient {
    background: linear-gradient(
        100deg,
        var(--color-primary) 0%,
        #79f8ed 40%,
        var(--color-secondary) 100%
    );
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.text-outline {
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.72);
}


/* =========================================================
   5. DECORATIVE BACKGROUND
   ========================================================= */

.page-noise {
    position: fixed;
    z-index: 9999;
    inset: 0;
    pointer-events: none;
    opacity: 0.035;
    background-image:
        url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='.7'/%3E%3C/svg%3E");
}

.cursor-glow {
    position: fixed;
    z-index: -1;
    width: 460px;
    height: 460px;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.32;
    transform: translate(-50%, -50%);
    background: radial-gradient(
        circle,
        rgba(32, 234, 216, 0.14) 0%,
        rgba(32, 234, 216, 0.04) 35%,
        transparent 70%
    );
    filter: blur(12px);
}


/* =========================================================
   6. PAGE LOADER
   ========================================================= */

.page-loader {
    position: fixed;
    z-index: 10000;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 22px;
    background: #040606;
    transition:
        opacity 0.55s ease,
        visibility 0.55s ease;
}

.page-loader.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader-logo {
    color: var(--color-white);
    font-size: clamp(22px, 3vw, 40px);
    font-weight: 800;
    letter-spacing: 0.18em;
}

.loader-line {
    position: relative;
    width: 170px;
    height: 2px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
}

.loader-line span {
    position: absolute;
    inset: 0;
    width: 45%;
    background: linear-gradient(
        90deg,
        transparent,
        var(--color-primary),
        transparent
    );
    animation: loaderMove 1.1s ease-in-out infinite;
}

@keyframes loaderMove {
    from {
        transform: translateX(-120%);
    }

    to {
        transform: translateX(260%);
    }
}


/* =========================================================
   7. HEADER
   ========================================================= */

.site-header {
    position: fixed;
    z-index: 1000;
    top: 0;
    right: 0;
    left: 0;
    height: var(--header-height);
    border-bottom: 1px solid transparent;
    transition:
        background var(--transition-base),
        border-color var(--transition-base),
        box-shadow var(--transition-base),
        height var(--transition-base);
}

.site-header.scrolled {
    height: 76px;
    border-bottom-color: var(--color-border-soft);
    background: rgba(5, 7, 7, 0.86);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.16);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    flex-shrink: 0;
}

.brand-mark {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid var(--color-border-primary);
    border-radius: 12px;
    background:
        linear-gradient(
            145deg,
            rgba(32, 234, 216, 0.15),
            rgba(32, 234, 216, 0.025)
        );
    box-shadow:
        inset 0 0 18px rgba(32, 234, 216, 0.05),
        0 0 25px rgba(32, 234, 216, 0.05);
}

.brand-mark span {
    position: absolute;
    width: 15px;
    height: 2px;
    border-radius: 2px;
    background: var(--color-primary);
}

.brand-mark span:first-child {
    transform: rotate(45deg);
}

.brand-mark span:last-child {
    transform: rotate(-45deg);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-text strong {
    color: var(--color-white);
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.brand-text small {
    margin-top: 7px;
    color: var(--color-text-muted);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.2em;
}

.main-navigation {
    display: flex;
    align-items: center;
    gap: 38px;
}

.nav-link {
    position: relative;
    padding: 10px 0;
    color: var(--color-text-soft);
    font-size: 13px;
    font-weight: 600;
    transition: color var(--transition-fast);
}

.nav-link::after {
    position: absolute;
    right: 0;
    bottom: 3px;
    left: 0;
    width: 0;
    height: 1px;
    margin: auto;
    background: var(--color-primary);
    content: "";
    transition: width var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-white);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

/* =========================================================
   LANGUAGE SWITCHER
   ========================================================= */

.language-switcher {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    flex-shrink: 0;
}

.language-link {
    color: var(--color-text-muted);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    transition:
        color var(--transition-fast),
        opacity var(--transition-fast);
}

.language-link:hover {
    color: var(--color-white);
}

.language-link.active {
    color: var(--color-primary);
}

.language-separator {
    color: rgba(255, 255, 255, 0.22);
    font-size: 10px;
}

.header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-height: 48px;
    padding: 0 21px;
    border: 1px solid var(--color-border-primary);
    border-radius: var(--radius-pill);
    background: rgba(32, 234, 216, 0.055);
    color: var(--color-white);
    font-size: 12px;
    font-weight: 700;
    transition:
        background var(--transition-base),
        border-color var(--transition-base),
        transform var(--transition-base);
}

.header-cta svg {
    width: 18px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
    transition: transform var(--transition-base);
}

.header-cta:hover {
    border-color: var(--color-primary);
    background: var(--color-primary);
    color: #04100f;
    transform: translateY(-2px);
}

.header-cta:hover svg {
    transform: translateX(4px);
}

.menu-toggle {
    position: relative;
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid var(--color-border);
    border-radius: 50%;
}

.menu-toggle span {
    position: absolute;
    left: 50%;
    width: 18px;
    height: 1px;
    background: var(--color-white);
    transform: translateX(-50%);
    transition:
        transform var(--transition-base),
        top var(--transition-base);
}

.menu-toggle span:first-child {
    top: 18px;
}

.menu-toggle span:last-child {
    top: 26px;
}

.menu-toggle.active span:first-child {
    top: 22px;
    transform: translateX(-50%) rotate(45deg);
}

.menu-toggle.active span:last-child {
    top: 22px;
    transform: translateX(-50%) rotate(-45deg);
}


/* =========================================================
   8. BUTTONS
   ========================================================= */

.button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    min-height: 58px;
    padding: 0 27px;
    overflow: hidden;
    border-radius: var(--radius-pill);
    font-size: 13px;
    font-weight: 700;
    transition:
        transform var(--transition-base),
        background var(--transition-base),
        border-color var(--transition-base),
        color var(--transition-base);
}

.button svg {
    width: 19px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
    transition: transform var(--transition-base);
}

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

.button:hover svg {
    transform: translateX(5px);
}

.button-primary {
    border: 1px solid var(--color-primary);
    background: var(--color-primary);
    color: #03100f;
    box-shadow: 0 14px 40px rgba(32, 234, 216, 0.16);
}

.button-primary::before {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        110deg,
        transparent 20%,
        rgba(255, 255, 255, 0.38) 50%,
        transparent 80%
    );
    content: "";
    transform: translateX(-150%);
    transition: transform 0.75s ease;
}

.button-primary:hover::before {
    transform: translateX(150%);
}

.button-primary span,
.button-primary svg {
    position: relative;
    z-index: 1;
}

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

.button-secondary:hover {
    border-color: rgba(255, 255, 255, 0.26);
    background: rgba(255, 255, 255, 0.07);
}


/* =========================================================
   9. HERO SECTION
   ========================================================= */

.hero-section {
    min-height: 100vh;
    padding: calc(var(--header-height) + 88px) 0 78px;
    overflow: hidden;
    border-bottom: 1px solid var(--color-border-soft);
}

.hero-container {
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(500px, 0.98fr);
    align-items: center;
    gap: clamp(50px, 7vw, 110px);
    min-height: calc(100vh - var(--header-height) - 166px);
}

.hero-grid {
    position: absolute;
    inset: 0;
    opacity: 0.32;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.035) 1px,
            transparent 1px
        );
    background-size: 70px 70px;
    mask-image: linear-gradient(
        to bottom,
        black 0%,
        black 65%,
        transparent 100%
    );
    -webkit-mask-image: linear-gradient(
        to bottom,
        black 0%,
        black 65%,
        transparent 100%
    );
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(10px);
}

.hero-orb-one {
    top: 8%;
    right: -14%;
    width: 680px;
    height: 680px;
    background: radial-gradient(
        circle,
        rgba(32, 234, 216, 0.1),
        transparent 68%
    );
}

.hero-orb-two {
    bottom: -25%;
    left: -12%;
    width: 600px;
    height: 600px;
    background: radial-gradient(
        circle,
        rgba(26, 182, 240, 0.07),
        transparent 70%
    );
}

.hero-content {
    position: relative;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 29px;
    padding: 9px 15px;
    border: 1px solid rgba(32, 234, 216, 0.2);
    border-radius: var(--radius-pill);
    background: rgba(32, 234, 216, 0.045);
    color: var(--color-text-soft);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.eyebrow-dot {
    position: relative;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--color-primary);
    box-shadow: 0 0 14px var(--color-primary);
}

.eyebrow-dot::after {
    position: absolute;
    inset: -5px;
    border: 1px solid rgba(32, 234, 216, 0.4);
    border-radius: 50%;
    content: "";
    animation: pulseDot 1.8s ease-out infinite;
}

@keyframes pulseDot {
    0% {
        opacity: 0.8;
        transform: scale(0.5);
    }

    100% {
        opacity: 0;
        transform: scale(1.8);
    }
}

.hero-content h1 {
    max-width: 790px;
    margin-bottom: 28px;
    color: var(--color-white);
    font-size: clamp(54px, 5.5vw, 88px);
    font-weight: 600;
    letter-spacing: -0.065em;
    line-height: 1.01;
}

.hero-description {
    max-width: 665px;
    margin-bottom: 37px;
    color: var(--color-text-soft);
    font-size: 17px;
    line-height: 1.85;
}

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

.hero-meta {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    max-width: 680px;
    padding-top: 25px;
    border-top: 1px solid var(--color-border);
}

.hero-meta-item {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-left: 20px;
}

.hero-meta-item:first-child {
    padding-left: 0;
}

.hero-meta-item:not(:first-child)::before {
    position: absolute;
    top: 3px;
    bottom: 3px;
    left: 0;
    width: 1px;
    background: var(--color-border);
    content: "";
}

.hero-meta-item strong {
    color: var(--color-primary);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.hero-meta-item span {
    color: var(--color-text-soft);
    font-size: 13px;
    font-weight: 600;
}


/* =========================================================
   10. HERO VISUAL
   ========================================================= */

.hero-visual {
    position: relative;
    min-width: 0;
}

.visual-frame {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 24px;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.055),
            rgba(255, 255, 255, 0.012)
        );
    box-shadow:
        0 40px 90px rgba(0, 0, 0, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transform: perspective(1200px) rotateY(-4deg) rotateX(1deg);
    transition: transform var(--transition-slow);
}

.hero-visual:hover .visual-frame {
    transform: perspective(1200px) rotateY(0) rotateX(0);
}

.visual-frame::after {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(
        135deg,
        rgba(32, 234, 216, 0.09),
        transparent 30%,
        transparent 70%,
        rgba(26, 182, 240, 0.06)
    );
    content: "";
    pointer-events: none;
}

.visual-topbar {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 20px;
    height: 56px;
    padding: 0 18px;
    border-bottom: 1px solid var(--color-border-soft);
    background: rgba(255, 255, 255, 0.018);
}

.visual-dots {
    display: flex;
    gap: 6px;
}

.visual-dots span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.17);
}

.visual-dots span:first-child {
    background: rgba(32, 234, 216, 0.65);
}

.visual-address {
    justify-self: center;
    color: var(--color-text-muted);
    font-size: 9px;
    letter-spacing: 0.08em;
}

.visual-status {
    display: flex;
    align-items: center;
    gap: 7px;
    color: var(--color-text-muted);
    font-size: 9px;
}

.visual-status span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-primary);
    box-shadow: 0 0 10px rgba(32, 234, 216, 0.7);
}

.visual-body {
    display: grid;
    grid-template-columns: 62px 1fr;
    min-height: 510px;
}

.visual-sidebar {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 23px;
    padding-top: 20px;
    border-right: 1px solid var(--color-border-soft);
    background: rgba(255, 255, 255, 0.012);
}

.sidebar-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    margin-bottom: 12px;
    border: 1px solid var(--color-border-primary);
    border-radius: 9px;
    background: var(--color-primary-soft);
    color: var(--color-primary);
    font-size: 12px;
    font-weight: 800;
}

.sidebar-item {
    width: 15px;
    height: 15px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 4px;
}

.sidebar-item.active {
    border-color: var(--color-primary);
    background: var(--color-primary-soft);
    box-shadow: 0 0 12px rgba(32, 234, 216, 0.12);
}

.visual-dashboard {
    min-width: 0;
    padding: 31px 28px 27px;
}

.dashboard-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 25px;
    margin-bottom: 27px;
}

.dashboard-label {
    display: block;
    margin-bottom: 10px;
    color: var(--color-primary);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.18em;
}

.dashboard-heading h2 {
    margin-bottom: 0;
    color: var(--color-white);
    font-size: clamp(23px, 2.3vw, 34px);
    font-weight: 600;
    letter-spacing: -0.04em;
}

.dashboard-indicator {
    width: 10px;
    height: 10px;
    margin-top: 9px;
    border-radius: 50%;
    background: var(--color-primary);
    box-shadow:
        0 0 0 7px rgba(32, 234, 216, 0.07),
        0 0 20px rgba(32, 234, 216, 0.35);
}

.dashboard-chart {
    position: relative;
    height: 240px;
    margin-bottom: 21px;
    overflow: hidden;
    border: 1px solid var(--color-border-soft);
    border-radius: 15px;
    background:
        linear-gradient(
            180deg,
            rgba(32, 234, 216, 0.035),
            rgba(255, 255, 255, 0.008)
        );
}

.chart-grid {
    position: absolute;
    inset: 0;
    opacity: 0.65;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.04) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.04) 1px,
            transparent 1px
        );
    background-size: 48px 48px;
}

.dashboard-chart svg {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 86%;
    overflow: visible;
}

.chart-area {
    fill: url("#chartGradient");
    opacity: 0.09;
}

.chart-line {
    fill: none;
    stroke: url("#chartGradient");
    stroke-width: 3;
    stroke-linecap: round;
    stroke-dasharray: 950;
    stroke-dashoffset: 950;
    animation: drawChart 2.2s 0.7s ease forwards;
}

@keyframes drawChart {
    to {
        stroke-dashoffset: 0;
    }
}

.chart-point {
    position: absolute;
    width: 8px;
    height: 8px;
    border: 2px solid #08100f;
    border-radius: 50%;
    background: var(--color-primary);
    box-shadow: 0 0 13px rgba(32, 234, 216, 0.75);
}

.point-one {
    top: 48%;
    left: 26%;
}

.point-two {
    top: 30%;
    left: 61%;
}

.point-three {
    top: 19%;
    right: 6%;
}

.dashboard-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.dashboard-card {
    min-width: 0;
    padding: 16px 14px;
    border: 1px solid var(--color-border-soft);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.015);
}

.dashboard-card span,
.dashboard-card strong,
.dashboard-card small {
    display: block;
}

.dashboard-card span {
    margin-bottom: 11px;
    color: var(--color-text-muted);
    font-size: 7px;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.dashboard-card strong {
    overflow: hidden;
    margin-bottom: 5px;
    color: var(--color-white);
    font-size: 10px;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dashboard-card small {
    overflow: hidden;
    color: var(--color-text-muted);
    font-size: 7px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dashboard-card.highlighted {
    border-color: rgba(32, 234, 216, 0.28);
    background: rgba(32, 234, 216, 0.06);
}

.dashboard-card.highlighted strong {
    color: var(--color-primary);
}


/* =========================================================
   11. FLOATING HERO CARDS
   ========================================================= */

.floating-card {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 14px 17px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 14px;
    background: rgba(9, 14, 14, 0.84);
    box-shadow: var(--shadow-small);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.floating-card small,
.floating-card strong {
    display: block;
}

.floating-card small {
    margin-bottom: 3px;
    color: var(--color-text-muted);
    font-size: 8px;
}

.floating-card strong {
    color: var(--color-white);
    font-size: 10px;
    font-weight: 700;
}

.floating-card-top {
    top: 14%;
    right: -34px;
    animation: floatCard 5s ease-in-out infinite;
}

.floating-card-bottom {
    bottom: 11%;
    left: -40px;
    animation: floatCard 5.5s 0.7s ease-in-out infinite;
}

@keyframes floatCard {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-9px);
    }
}

.floating-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: var(--color-primary-soft);
    color: var(--color-primary);
}

.floating-icon svg {
    width: 16px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-width: 1.8;
}

.floating-number {
    color: var(--color-primary);
    font-size: 19px;
    font-weight: 800;
    letter-spacing: -0.05em;
}


/* =========================================================
   12. HERO SCROLL INDICATOR
   ========================================================= */

.hero-scroll {
    position: absolute;
    z-index: 6;
    bottom: 24px;
    left: 50%;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    color: var(--color-text-muted);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transform: translateX(-50%);
}

.scroll-line {
    position: relative;
    width: 1px;
    height: 35px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
}

.scroll-line i {
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 13px;
    background: var(--color-primary);
    animation: scrollIndicator 1.7s ease-in-out infinite;
}

@keyframes scrollIndicator {
    0% {
        opacity: 0;
        transform: translateY(-15px);
    }

    30% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translateY(38px);
    }
}


/* =========================================================
   13. REVEAL BASE
   JavaScript eklendikten sonra aktif olacaktır.
   ========================================================= */

.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition:
        opacity 0.8s ease,
        transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-delay {
    transition-delay: 0.14s;
}


/* =========================================================
   14. FIRST RESPONSIVE RULES
   ========================================================= */

@media (max-width: 1180px) {
    :root {
        --header-height: 82px;
    }

    .main-navigation {
        gap: 24px;
    }

    .header-cta {
        padding-inline: 17px;
    }

    .hero-container {
        grid-template-columns: minmax(0, 1fr) minmax(430px, 0.9fr);
        gap: 48px;
    }

    .hero-content h1 {
        font-size: clamp(50px, 5.8vw, 72px);
    }

    .visual-body {
        min-height: 460px;
    }

    .visual-dashboard {
        padding: 27px 22px 23px;
    }

    .dashboard-chart {
        height: 210px;
    }
}

@media (max-width: 1024px) {
    .main-navigation {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: min(380px, 88vw);
        padding: 120px 38px 40px;
        align-items: flex-start;
        flex-direction: column;
        gap: 7px;
        background: rgba(5, 8, 8, 0.98);
        border-left: 1px solid var(--color-border);
        box-shadow: -20px 0 60px rgba(0, 0, 0, 0.35);
        transform: translateX(105%);
        transition: transform var(--transition-slow);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
    }

    .main-navigation.open {
        transform: translateX(0);
    }

    .nav-link {
        width: 100%;
        padding: 15px 0;
        border-bottom: 1px solid var(--color-border-soft);
        font-size: 16px;
    }

    .nav-link::after {
        display: none;
    }

    .menu-toggle {
        z-index: 1001;
        display: block;
    }

    .header-cta {
        display: none;
    }

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

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

    .hero-content {
        max-width: 850px;
    }

    .hero-content h1 {
        max-width: 820px;
    }

    .hero-description {
        max-width: 750px;
    }

    .hero-visual {
        width: min(100%, 760px);
        margin-inline: auto;
    }

    .visual-frame {
        transform: none;
    }
}

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

    .site-header {
        height: 74px;
    }

    .site-header.scrolled {
        height: 68px;
    }

    .brand-mark {
        width: 38px;
        height: 38px;
    }

    .brand-text strong {
        font-size: 14px;
    }

    .brand-text small {
        font-size: 7px;
    }

    .hero-section {
        min-height: auto;
        padding-top: 126px;
        padding-bottom: 70px;
    }

    .hero-container {
        min-height: auto;
        gap: 56px;
    }

    .eyebrow {
        margin-bottom: 23px;
        padding: 8px 12px;
        font-size: 9px;
        letter-spacing: 0.06em;
    }

    .hero-content h1 {
        margin-bottom: 23px;
        font-size: clamp(43px, 13vw, 61px);
        letter-spacing: -0.06em;
    }

    .hero-description {
        margin-bottom: 30px;
        font-size: 15px;
        line-height: 1.75;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
        margin-bottom: 42px;
    }

    .button {
        width: 100%;
    }

    .hero-meta {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px 0;
    }

    .hero-meta-item:nth-child(3) {
        padding-left: 0;
    }

    .hero-meta-item:nth-child(3)::before {
        display: none;
    }

    .visual-frame {
        border-radius: 18px;
    }

    .visual-topbar {
        grid-template-columns: auto 1fr;
        height: 48px;
    }

    .visual-address {
        justify-self: end;
    }

    .visual-status {
        display: none;
    }

    .visual-body {
        grid-template-columns: 46px 1fr;
        min-height: 410px;
    }

    .visual-sidebar {
        gap: 20px;
    }

    .sidebar-logo {
        width: 27px;
        height: 27px;
    }

    .visual-dashboard {
        padding: 23px 15px 17px;
    }

    .dashboard-heading {
        margin-bottom: 20px;
    }

    .dashboard-heading h2 {
        font-size: 22px;
    }

    .dashboard-chart {
        height: 175px;
    }

    .dashboard-cards {
        grid-template-columns: 1fr;
    }

    .dashboard-card:nth-child(2),
    .dashboard-card:nth-child(3) {
        display: none;
    }

    .floating-card-top {
        top: 11%;
        right: -8px;
    }

    .floating-card-bottom {
        bottom: 7%;
        left: -8px;
    }

    .hero-scroll {
        display: none;
    }

    .cursor-glow {
        display: none;
    }
}

@media (max-width: 420px) {
    .brand-text small {
        letter-spacing: 0.14em;
    }

    .hero-content h1 {
        font-size: 41px;
    }

    .floating-card {
        padding: 11px 12px;
    }

    .floating-card-top {
        right: -4px;
    }

    .floating-card-bottom {
        left: -4px;
    }

    .floating-icon {
        width: 30px;
        height: 30px;
    }
}

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

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

/* =========================================================
   AD-HOCC DIGITAL SOLUTIONS
   Main Stylesheet — Part 2A
   Statement + Section Headers + Services Base
   ========================================================= */


/* =========================================================
   15. STATEMENT SECTION
   ========================================================= */

.statement-section {
    padding: 145px 0 155px;
    overflow: hidden;
    border-bottom: 1px solid var(--color-border-soft);
    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.012),
            transparent 50%
        );
}

.statement-section .section-number {
    margin-bottom: 62px;
}

.statement-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.75fr);
    gap: clamp(70px, 10vw, 150px);
    align-items: start;
}

.statement-heading h2 {
    max-width: 790px;
    margin-bottom: 0;
    color: var(--color-white);
    font-size: clamp(46px, 5vw, 76px);
    font-weight: 500;
    letter-spacing: -0.06em;
    line-height: 1.08;
}

.statement-heading h2 span {
    color: var(--color-primary);
}

.statement-content {
    padding-top: 57px;
}

.statement-content p {
    margin-bottom: 24px;
    color: var(--color-text-soft);
    font-size: 16px;
    line-height: 1.9;
}

.statement-content p:last-of-type {
    margin-bottom: 38px;
}

.statement-signature {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--color-white);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.statement-signature span {
    width: 42px;
    height: 1px;
    background: var(--color-primary);
}


/* =========================================================
   16. SHARED SECTION HEADER
   ========================================================= */

.section-header {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(350px, 0.6fr);
    gap: clamp(60px, 10vw, 145px);
    align-items: end;
    margin-bottom: 75px;
}

.section-header-left .section-number {
    margin-bottom: 48px;
}

.section-header-left h2 {
    max-width: 820px;
    margin-bottom: 0;
    color: var(--color-white);
    font-size: clamp(44px, 4.8vw, 72px);
    font-weight: 500;
    letter-spacing: -0.06em;
    line-height: 1.08;
}

.section-header-left h2 span {
    color: var(--color-primary);
}

.section-header-right {
    padding-bottom: 7px;
}

.section-header-right p {
    margin-bottom: 0;
    color: var(--color-text-soft);
    font-size: 16px;
    line-height: 1.9;
}


/* =========================================================
   17. SERVICES SECTION
   ========================================================= */

.services-section {
    padding: 150px 0 165px;
    overflow: hidden;
    border-bottom: 1px solid var(--color-border-soft);
    background:
        radial-gradient(
            circle at 90% 5%,
            rgba(32, 234, 216, 0.055),
            transparent 27%
        ),
        var(--color-bg-soft);
}

.services-glow {
    position: absolute;
    top: 17%;
    left: -250px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    pointer-events: none;
    background: radial-gradient(
        circle,
        rgba(26, 182, 240, 0.055),
        transparent 70%
    );
    filter: blur(10px);
}


/* =========================================================
   18. SERVICES GRID
   ========================================================= */

.services-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.service-card {
    position: relative;
    display: flex;
    min-height: 610px;
    overflow: hidden;
    flex-direction: column;
    padding: 35px 36px 39px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-large);
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.045),
            rgba(255, 255, 255, 0.012)
        ),
        var(--color-bg-card);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.025);
    transition:
        transform var(--transition-slow),
        border-color var(--transition-base),
        background var(--transition-base),
        box-shadow var(--transition-base);
}

.service-card::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(32, 234, 216, 0.7),
        transparent
    );
    content: "";
    opacity: 0;
    transform: scaleX(0.25);
    transition:
        opacity var(--transition-base),
        transform var(--transition-slow);
}

.service-card::after {
    position: absolute;
    right: -150px;
    bottom: -180px;
    width: 390px;
    height: 390px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(32, 234, 216, 0.07),
        transparent 68%
    );
    content: "";
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-base);
}

.service-card:hover {
    z-index: 3;
    border-color: rgba(32, 234, 216, 0.3);
    background:
        linear-gradient(
            145deg,
            rgba(32, 234, 216, 0.055),
            rgba(255, 255, 255, 0.015)
        ),
        var(--color-bg-card-hover);
    box-shadow:
        0 32px 80px rgba(0, 0, 0, 0.33),
        inset 0 1px 0 rgba(255, 255, 255, 0.045);
    transform: translateY(-8px);
}

.service-card:hover::before {
    opacity: 1;
    transform: scaleX(1);
}

.service-card:hover::after {
    opacity: 1;
}

.service-card-large {
    grid-row: span 1;
}

.service-card-wide {
    grid-column: 1 / -1;
}


/* =========================================================
   19. SERVICE CARD HEADER
   ========================================================= */

.service-card-header {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 38px;
}

.service-index {
    color: var(--color-text-muted);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
}

.service-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    color: var(--color-text-soft);
    transition:
        border-color var(--transition-base),
        background var(--transition-base),
        color var(--transition-base),
        transform var(--transition-base);
}

.service-arrow svg {
    width: 19px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.5;
}

.service-card:hover .service-arrow {
    border-color: var(--color-primary);
    background: var(--color-primary);
    color: #04100f;
    transform: rotate(45deg);
}


/* =========================================================
   20. SERVICE ICON
   ========================================================= */

.service-icon {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 76px;
    height: 76px;
    margin-bottom: 47px;
    border: 1px solid rgba(32, 234, 216, 0.22);
    border-radius: 22px;
    background:
        linear-gradient(
            145deg,
            rgba(32, 234, 216, 0.13),
            rgba(32, 234, 216, 0.025)
        );
    color: var(--color-primary);
    box-shadow:
        inset 0 0 25px rgba(32, 234, 216, 0.035),
        0 10px 30px rgba(0, 0, 0, 0.18);
    transition:
        transform var(--transition-slow),
        border-color var(--transition-base),
        box-shadow var(--transition-base);
}

.service-icon::after {
    position: absolute;
    inset: 8px;
    border: 1px solid rgba(32, 234, 216, 0.09);
    border-radius: 16px;
    content: "";
}

.service-icon svg {
    position: relative;
    z-index: 1;
    width: 43px;
    height: 43px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.4;
}

.service-card:hover .service-icon {
    border-color: rgba(32, 234, 216, 0.5);
    box-shadow:
        inset 0 0 28px rgba(32, 234, 216, 0.08),
        0 0 35px rgba(32, 234, 216, 0.09);
    transform: translateY(-4px) rotate(-3deg);
}


/* =========================================================
   21. SERVICE CONTENT
   ========================================================= */

.service-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex: 1;
    flex-direction: column;
}

.service-category {
    display: block;
    margin-bottom: 16px;
    color: var(--color-primary);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.19em;
    text-transform: uppercase;
}

.service-content h3 {
    max-width: 520px;
    margin-bottom: 21px;
    color: var(--color-white);
    font-size: clamp(26px, 2.5vw, 36px);
    font-weight: 600;
    letter-spacing: -0.045em;
    line-height: 1.22;
}

.service-content > p {
    max-width: 590px;
    margin-bottom: 30px;
    color: var(--color-text-soft);
    font-size: 15px;
    line-height: 1.85;
}

.service-list {
    display: grid;
    gap: 13px;
    margin-top: auto;
    padding-top: 27px;
    border-top: 1px solid var(--color-border-soft);
}

.service-list li {
    position: relative;
    padding-left: 22px;
    color: #9ca8a6;
    font-size: 13px;
    line-height: 1.55;
    transition:
        color var(--transition-fast),
        transform var(--transition-fast);
}

.service-list li::before {
    position: absolute;
    top: 9px;
    left: 0;
    width: 7px;
    height: 1px;
    background: var(--color-primary);
    content: "";
}

.service-card:hover .service-list li {
    color: #bcc6c4;
}

.service-list li:hover {
    color: var(--color-white);
    transform: translateX(4px);
}


/* =========================================================
   22. FEATURED SERVICE BASE
   ========================================================= */

.service-card-featured {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
    gap: 65px;
    min-height: 660px;
    padding: 52px 55px;
    background:
        linear-gradient(
            125deg,
            rgba(32, 234, 216, 0.08),
            rgba(10, 17, 17, 0.92) 42%,
            rgba(6, 10, 10, 0.98)
        );
}

.service-card-featured::after {
    right: -110px;
    bottom: -160px;
    width: 540px;
    height: 540px;
    opacity: 0.7;
}

.featured-grid {
    position: absolute;
    inset: 0;
    opacity: 0.18;
    pointer-events: none;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.04) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.04) 1px,
            transparent 1px
        );
    background-size: 55px 55px;
    mask-image: linear-gradient(
        90deg,
        black 0%,
        transparent 78%
    );
    -webkit-mask-image: linear-gradient(
        90deg,
        black 0%,
        transparent 78%
    );
}

.service-featured-content {
    position: relative;
    z-index: 2;
}

.service-card-featured .service-card-header {
    margin-bottom: 34px;
}

.service-badge {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border: 1px solid rgba(32, 234, 216, 0.28);
    border-radius: var(--radius-pill);
    background: rgba(32, 234, 216, 0.06);
    color: var(--color-primary);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.18em;
}

.service-card-featured .service-icon {
    margin-bottom: 36px;
}

.service-card-featured h3 {
    max-width: 650px;
    margin-bottom: 22px;
    color: var(--color-white);
    font-size: clamp(38px, 4vw, 61px);
    font-weight: 500;
    letter-spacing: -0.06em;
    line-height: 1.08;
}

.service-card-featured p {
    max-width: 700px;
    margin-bottom: 34px;
    color: var(--color-text-soft);
    font-size: 16px;
    line-height: 1.85;
}

.service-list-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 30px;
}


/* =========================================================
   23. PART 2A RESPONSIVE
   ========================================================= */

@media (max-width: 1100px) {
    .statement-layout {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .statement-content {
        max-width: 790px;
        padding-top: 0;
    }

    .section-header {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .section-header-right {
        max-width: 790px;
        padding-bottom: 0;
    }

    .service-card-featured {
        grid-template-columns: 1fr;
        gap: 35px;
    }
}

@media (max-width: 850px) {
    .statement-section,
    .services-section {
        padding-top: 110px;
        padding-bottom: 115px;
    }

    .statement-section .section-number,
    .section-header-left .section-number {
        margin-bottom: 35px;
    }

    .section-header {
        margin-bottom: 55px;
    }

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

    .service-card-wide {
        grid-column: auto;
    }

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

    .service-card-featured {
        padding: 40px 36px;
    }
}

@media (max-width: 600px) {
    .statement-section,
    .services-section {
        padding-top: 85px;
        padding-bottom: 90px;
    }

    .statement-heading h2,
    .section-header-left h2 {
        font-size: 40px;
    }

    .statement-content p,
    .section-header-right p {
        font-size: 15px;
        line-height: 1.78;
    }

    .services-grid {
        gap: 16px;
    }

    .service-card,
    .service-card-featured {
        padding: 28px 24px 31px;
        border-radius: 22px;
    }

    .service-card-header {
        margin-bottom: 30px;
    }

    .service-icon {
        width: 66px;
        height: 66px;
        margin-bottom: 36px;
        border-radius: 18px;
    }

    .service-icon::after {
        border-radius: 12px;
    }

    .service-icon svg {
        width: 37px;
        height: 37px;
    }

    .service-content h3 {
        font-size: 28px;
    }

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

    .service-content > p,
    .service-card-featured p {
        font-size: 14px;
        line-height: 1.78;
    }

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

@media (max-width: 400px) {
    .statement-heading h2,
    .section-header-left h2 {
        font-size: 36px;
    }

    .service-card,
    .service-card-featured {
        padding-inline: 20px;
    }

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

/* =========================================================
   AD-HOCC DIGITAL SOLUTIONS
   Main Stylesheet — Part 2B
   AI Visual + Service Enhancements
   ========================================================= */


/* =========================================================
   24. AI VISUAL AREA
   ========================================================= */

.ai-visual {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 520px;
    overflow: hidden;
    border: 1px solid rgba(32, 234, 216, 0.15);
    border-radius: 26px;
    background:
        radial-gradient(
            circle at center,
            rgba(32, 234, 216, 0.08),
            transparent 42%
        ),
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.025),
            rgba(255, 255, 255, 0.006)
        );
    box-shadow:
        inset 0 0 60px rgba(32, 234, 216, 0.025),
        0 25px 65px rgba(0, 0, 0, 0.25);
}

.ai-visual::before {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.035) 1px,
            transparent 1px
        );
    background-size: 38px 38px;
    content: "";
    opacity: 0.45;
    pointer-events: none;
    mask-image: radial-gradient(
        circle at center,
        black 15%,
        transparent 75%
    );
    -webkit-mask-image: radial-gradient(
        circle at center,
        black 15%,
        transparent 75%
    );
}

.ai-visual::after {
    position: absolute;
    inset: 12%;
    border: 1px solid rgba(32, 234, 216, 0.08);
    border-radius: 50%;
    content: "";
    animation: aiOuterPulse 4.5s ease-in-out infinite;
}

@keyframes aiOuterPulse {
    0%,
    100% {
        opacity: 0.25;
        transform: scale(0.96);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.04);
    }
}


/* =========================================================
   25. AI CORE
   ========================================================= */

.ai-core {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 350px;
    height: 350px;
}

.ai-core::before {
    position: absolute;
    inset: 36px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(32, 234, 216, 0.08),
        rgba(32, 234, 216, 0.015) 48%,
        transparent 70%
    );
    content: "";
    filter: blur(2px);
    animation: coreGlow 3.2s ease-in-out infinite;
}

@keyframes coreGlow {
    0%,
    100% {
        opacity: 0.65;
        transform: scale(0.94);
    }

    50% {
        opacity: 1;
        transform: scale(1.08);
    }
}

.ai-ring {
    position: absolute;
    border: 1px solid rgba(32, 234, 216, 0.22);
    border-radius: 50%;
}

.ring-one {
    width: 305px;
    height: 305px;
    border-style: dashed;
    animation: ringRotate 28s linear infinite;
}

.ring-two {
    width: 235px;
    height: 235px;
    border-color: rgba(26, 182, 240, 0.22);
    animation: ringRotateReverse 20s linear infinite;
}

.ring-three {
    width: 165px;
    height: 165px;
    border-color: rgba(32, 234, 216, 0.38);
    box-shadow:
        0 0 30px rgba(32, 234, 216, 0.05),
        inset 0 0 30px rgba(32, 234, 216, 0.04);
    animation: ringPulse 3s ease-in-out infinite;
}

.ring-one::before,
.ring-one::after,
.ring-two::before,
.ring-two::after,
.ring-three::before,
.ring-three::after {
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--color-primary);
    box-shadow: 0 0 14px rgba(32, 234, 216, 0.8);
    content: "";
}

.ring-one::before {
    top: 17px;
    left: 72px;
}

.ring-one::after {
    right: 37px;
    bottom: 48px;
}

.ring-two::before {
    top: -4px;
    left: 50%;
    background: var(--color-secondary);
    box-shadow: 0 0 14px rgba(26, 182, 240, 0.75);
}

.ring-two::after {
    right: -4px;
    top: 50%;
    background: var(--color-secondary);
    box-shadow: 0 0 14px rgba(26, 182, 240, 0.75);
}

.ring-three::before {
    right: 20px;
    top: 18px;
}

.ring-three::after {
    bottom: 8px;
    left: 44px;
}

@keyframes ringRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes ringRotateReverse {
    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }
}

@keyframes ringPulse {
    0%,
    100% {
        opacity: 0.65;
        transform: scale(0.96);
    }

    50% {
        opacity: 1;
        transform: scale(1.04);
    }
}


/* =========================================================
   26. AI CENTER
   ========================================================= */

.ai-center {
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 112px;
    height: 112px;
    border: 1px solid rgba(32, 234, 216, 0.5);
    border-radius: 50%;
    background:
        radial-gradient(
            circle at 35% 30%,
            rgba(116, 255, 243, 0.18),
            rgba(32, 234, 216, 0.08) 35%,
            rgba(4, 13, 12, 0.96) 72%
        );
    box-shadow:
        0 0 35px rgba(32, 234, 216, 0.14),
        0 0 80px rgba(32, 234, 216, 0.07),
        inset 0 0 25px rgba(32, 234, 216, 0.08);
    animation: aiCenterFloat 4s ease-in-out infinite;
}

.ai-center::before {
    position: absolute;
    inset: 10px;
    border: 1px solid rgba(32, 234, 216, 0.18);
    border-radius: 50%;
    content: "";
}

.ai-center::after {
    position: absolute;
    inset: -16px;
    border: 1px solid rgba(32, 234, 216, 0.08);
    border-radius: 50%;
    content: "";
    animation: centerWave 2.8s ease-out infinite;
}

.ai-center span {
    position: relative;
    z-index: 2;
    background: linear-gradient(
        135deg,
        #ffffff,
        var(--color-primary)
    );
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    font-size: 31px;
    font-weight: 800;
    letter-spacing: -0.05em;
    -webkit-text-fill-color: transparent;
}

@keyframes aiCenterFloat {
    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-8px) scale(1.025);
    }
}

@keyframes centerWave {
    0% {
        opacity: 0.75;
        transform: scale(0.8);
    }

    100% {
        opacity: 0;
        transform: scale(1.45);
    }
}


/* =========================================================
   27. AI NODES
   ========================================================= */

.ai-node {
    position: absolute;
    z-index: 4;
    width: 11px;
    height: 11px;
    border: 2px solid #07100f;
    border-radius: 50%;
    background: var(--color-primary);
    box-shadow:
        0 0 13px rgba(32, 234, 216, 0.9),
        0 0 25px rgba(32, 234, 216, 0.4);
}

.ai-node::before {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 46px;
    height: 1px;
    background: linear-gradient(
        90deg,
        rgba(32, 234, 216, 0.7),
        transparent
    );
    content: "";
    transform-origin: left center;
}

.node-one {
    top: 46px;
    left: 82px;
    animation: nodeFloatOne 4.8s ease-in-out infinite;
}

.node-one::before {
    transform: rotate(43deg);
}

.node-two {
    top: 72px;
    right: 56px;
    background: var(--color-secondary);
    box-shadow:
        0 0 13px rgba(26, 182, 240, 0.9),
        0 0 25px rgba(26, 182, 240, 0.4);
    animation: nodeFloatTwo 5.1s ease-in-out infinite;
}

.node-two::before {
    background: linear-gradient(
        90deg,
        rgba(26, 182, 240, 0.7),
        transparent
    );
    transform: rotate(138deg);
}

.node-three {
    right: 72px;
    bottom: 51px;
    animation: nodeFloatThree 5.4s ease-in-out infinite;
}

.node-three::before {
    transform: rotate(220deg);
}

.node-four {
    bottom: 70px;
    left: 54px;
    background: var(--color-secondary);
    box-shadow:
        0 0 13px rgba(26, 182, 240, 0.9),
        0 0 25px rgba(26, 182, 240, 0.4);
    animation: nodeFloatFour 5.7s ease-in-out infinite;
}

.node-four::before {
    background: linear-gradient(
        90deg,
        rgba(26, 182, 240, 0.7),
        transparent
    );
    transform: rotate(318deg);
}

@keyframes nodeFloatOne {
    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(8px, -7px);
    }
}

@keyframes nodeFloatTwo {
    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-7px, 9px);
    }
}

@keyframes nodeFloatThree {
    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(6px, 7px);
    }
}

@keyframes nodeFloatFour {
    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-8px, -6px);
    }
}


/* =========================================================
   28. AI MESSAGES
   ========================================================= */

.ai-message {
    position: absolute;
    z-index: 6;
    display: flex;
    align-items: center;
    gap: 9px;
    min-height: 38px;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: var(--radius-pill);
    background: rgba(7, 13, 13, 0.82);
    box-shadow:
        0 12px 35px rgba(0, 0, 0, 0.32),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    color: var(--color-text-soft);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.03em;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.ai-message span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-primary);
    box-shadow: 0 0 9px rgba(32, 234, 216, 0.7);
}

.ai-message-one {
    top: 62px;
    right: 19px;
    animation: messageFloatOne 4.2s ease-in-out infinite;
}

.ai-message-two {
    bottom: 61px;
    left: 16px;
    animation: messageFloatTwo 4.8s 0.5s ease-in-out infinite;
}

.ai-message-two span {
    background: var(--color-secondary);
    box-shadow: 0 0 9px rgba(26, 182, 240, 0.7);
}

@keyframes messageFloatOne {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-9px);
    }
}

@keyframes messageFloatTwo {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(9px);
    }
}


/* =========================================================
   29. SERVICE CARD VISUAL DETAILS
   ========================================================= */

.service-card:nth-child(2) .service-icon {
    color: #6fe8ff;
    border-color: rgba(111, 232, 255, 0.22);
    background:
        linear-gradient(
            145deg,
            rgba(111, 232, 255, 0.11),
            rgba(111, 232, 255, 0.02)
        );
}

.service-card:nth-child(3) .service-icon {
    color: #a6ffde;
}

.service-card:nth-child(4) .service-icon {
    color: #7bd9ff;
    border-color: rgba(123, 217, 255, 0.22);
    background:
        linear-gradient(
            145deg,
            rgba(123, 217, 255, 0.11),
            rgba(123, 217, 255, 0.02)
        );
}

.service-card:nth-child(5) .service-icon {
    color: #82f4d1;
}

.service-card:nth-child(6) .service-icon {
    color: #69cbff;
    border-color: rgba(105, 203, 255, 0.22);
    background:
        linear-gradient(
            145deg,
            rgba(105, 203, 255, 0.11),
            rgba(105, 203, 255, 0.02)
        );
}

.service-card:nth-child(2):hover,
.service-card:nth-child(4):hover,
.service-card:nth-child(6):hover {
    border-color: rgba(26, 182, 240, 0.32);
}

.service-card:nth-child(2)::before,
.service-card:nth-child(4)::before,
.service-card:nth-child(6)::before {
    background: linear-gradient(
        90deg,
        transparent,
        rgba(26, 182, 240, 0.75),
        transparent
    );
}


/* =========================================================
   30. CARD HOVER LIGHT
   ========================================================= */

.service-card .service-content::after {
    position: absolute;
    top: -70px;
    right: -100px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(32, 234, 216, 0.07),
        transparent 68%
    );
    content: "";
    opacity: 0;
    pointer-events: none;
    transition:
        opacity var(--transition-base),
        transform var(--transition-slow);
}

.service-card:hover .service-content::after {
    opacity: 1;
    transform: translate(-12px, 12px);
}


/* =========================================================
   31. CARD ENTRY DECORATIONS
   ========================================================= */

.service-card:not(.service-card-featured) .service-index::after {
    display: inline-block;
    width: 28px;
    height: 1px;
    margin-left: 12px;
    vertical-align: middle;
    background: rgba(255, 255, 255, 0.11);
    content: "";
}

.service-card:hover .service-index {
    color: var(--color-primary);
}

.service-card:hover .service-index::after {
    background: rgba(32, 234, 216, 0.45);
}


/* =========================================================
   32. SERVICE CARD STAGGER
   ========================================================= */

.services-grid .service-card:nth-child(1) {
    transition-delay: 0s;
}

.services-grid .service-card:nth-child(2) {
    transition-delay: 0.04s;
}

.services-grid .service-card:nth-child(3) {
    transition-delay: 0.08s;
}

.services-grid .service-card:nth-child(4) {
    transition-delay: 0.12s;
}

.services-grid .service-card:nth-child(5) {
    transition-delay: 0.16s;
}

.services-grid .service-card:nth-child(6) {
    transition-delay: 0.2s;
}

.services-grid .service-card:nth-child(7) {
    transition-delay: 0.24s;
}


/* =========================================================
   33. AI CARD HOVER EFFECT
   ========================================================= */

.service-card-featured:hover .ai-ring {
    border-color: rgba(32, 234, 216, 0.38);
}

.service-card-featured:hover .ai-center {
    box-shadow:
        0 0 45px rgba(32, 234, 216, 0.22),
        0 0 105px rgba(32, 234, 216, 0.11),
        inset 0 0 30px rgba(32, 234, 216, 0.12);
}

.service-card-featured:hover .ai-visual {
    border-color: rgba(32, 234, 216, 0.3);
}


/* =========================================================
   34. RESPONSIVE — AI VISUAL
   ========================================================= */

@media (max-width: 1100px) {
    .ai-visual {
        width: min(100%, 720px);
        min-height: 500px;
        margin-inline: auto;
    }

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

@media (max-width: 850px) {
    .ai-visual {
        min-height: 460px;
    }

    .ai-core {
        width: 315px;
        height: 315px;
    }

    .ring-one {
        width: 280px;
        height: 280px;
    }

    .ring-two {
        width: 215px;
        height: 215px;
    }

    .ring-three {
        width: 150px;
        height: 150px;
    }

    .ai-center {
        width: 102px;
        height: 102px;
    }
}

@media (max-width: 600px) {
    .ai-visual {
        min-height: 390px;
        border-radius: 20px;
    }

    .ai-core {
        width: 265px;
        height: 265px;
    }

    .ring-one {
        width: 235px;
        height: 235px;
    }

    .ring-two {
        width: 180px;
        height: 180px;
    }

    .ring-three {
        width: 125px;
        height: 125px;
    }

    .ai-center {
        width: 88px;
        height: 88px;
    }

    .ai-center span {
        font-size: 26px;
    }

    .ai-node {
        width: 9px;
        height: 9px;
    }

    .node-one {
        top: 34px;
        left: 55px;
    }

    .node-two {
        top: 50px;
        right: 39px;
    }

    .node-three {
        right: 52px;
        bottom: 34px;
    }

    .node-four {
        bottom: 49px;
        left: 38px;
    }

    .ai-message {
        min-height: 33px;
        padding-inline: 11px;
        font-size: 8px;
    }

    .ai-message-one {
        top: 39px;
        right: 8px;
    }

    .ai-message-two {
        bottom: 39px;
        left: 8px;
    }
}

@media (max-width: 430px) {
    .ai-visual {
        min-height: 340px;
    }

    .ai-core {
        width: 225px;
        height: 225px;
    }

    .ring-one {
        width: 205px;
        height: 205px;
    }

    .ring-two {
        width: 155px;
        height: 155px;
    }

    .ring-three {
        width: 108px;
        height: 108px;
    }

    .ai-center {
        width: 76px;
        height: 76px;
    }

    .ai-center span {
        font-size: 23px;
    }

    .ai-message {
        font-size: 7px;
    }

    .ai-message-one {
        top: 18px;
    }

    .ai-message-two {
        bottom: 18px;
    }
}

/* =========================================================
   AD-HOCC DIGITAL SOLUTIONS
   Main Stylesheet — Part 3
   Approach + Process + Contact + Footer + Final Responsive
   ========================================================= */


/* =========================================================
   35. APPROACH SECTION
   ========================================================= */

.approach-section {
    position: relative;
    padding: 155px 0 165px;
    overflow: hidden;
    border-bottom: 1px solid var(--color-border-soft);
    background:
        radial-gradient(
            circle at 5% 25%,
            rgba(26, 182, 240, 0.055),
            transparent 28%
        ),
        var(--color-bg);
}

.approach-section::before {
    position: absolute;
    top: -260px;
    right: -320px;
    width: 760px;
    height: 760px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(32, 234, 216, 0.06),
        transparent 70%
    );
    content: "";
    pointer-events: none;
}

.approach-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(360px, 0.75fr) minmax(0, 1.25fr);
    gap: clamp(70px, 10vw, 150px);
    align-items: start;
}

.approach-intro {
    position: sticky;
    top: 140px;
}

.approach-intro .section-number {
    margin-bottom: 48px;
}

.approach-intro h2 {
    max-width: 610px;
    margin-bottom: 30px;
    color: var(--color-white);
    font-size: clamp(44px, 4.7vw, 70px);
    font-weight: 500;
    letter-spacing: -0.06em;
    line-height: 1.08;
}

.approach-intro h2 span {
    color: var(--color-primary);
}

.approach-intro > p {
    max-width: 540px;
    margin-bottom: 40px;
    color: var(--color-text-soft);
    font-size: 16px;
    line-height: 1.9;
}

.approach-label {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    min-height: 38px;
    padding: 0 17px;
    border: 1px solid rgba(32, 234, 216, 0.2);
    border-radius: var(--radius-pill);
    background: rgba(32, 234, 216, 0.045);
    color: var(--color-primary);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.approach-label::before {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-primary);
    box-shadow: 0 0 12px rgba(32, 234, 216, 0.75);
    content: "";
}


/* =========================================================
   36. APPROACH ITEMS
   ========================================================= */

.approach-list {
    display: grid;
    border-top: 1px solid var(--color-border);
}

.approach-item {
    position: relative;
    display: grid;
    grid-template-columns: 75px minmax(0, 1fr) 55px;
    gap: 28px;
    align-items: start;
    min-height: 210px;
    padding: 42px 5px 42px 0;
    overflow: hidden;
    border-bottom: 1px solid var(--color-border);
    transition:
        padding var(--transition-base),
        border-color var(--transition-base);
}

.approach-item::before {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(32, 234, 216, 0.055),
        transparent 72%
    );
    content: "";
    opacity: 0;
    transform: translateX(-35px);
    transition:
        opacity var(--transition-base),
        transform var(--transition-slow);
}

.approach-item::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
    background: var(--color-primary);
    content: "";
    opacity: 0;
    transform: scaleY(0);
    transform-origin: top;
    transition:
        opacity var(--transition-base),
        transform var(--transition-slow);
}

.approach-item:hover {
    padding-left: 25px;
    border-color: rgba(32, 234, 216, 0.23);
}

.approach-item:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.approach-item:hover::after {
    opacity: 1;
    transform: scaleY(1);
}

.approach-number {
    position: relative;
    z-index: 2;
    padding-top: 7px;
    color: var(--color-primary);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.18em;
}

.approach-content {
    position: relative;
    z-index: 2;
}

.approach-content h3 {
    margin-bottom: 16px;
    color: var(--color-white);
    font-size: clamp(25px, 2.4vw, 35px);
    font-weight: 600;
    letter-spacing: -0.04em;
    line-height: 1.2;
}

.approach-content p {
    max-width: 630px;
    margin-bottom: 0;
    color: var(--color-text-soft);
    font-size: 14px;
    line-height: 1.85;
}

.approach-icon {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    color: var(--color-text-muted);
    transition:
        color var(--transition-base),
        border-color var(--transition-base),
        background var(--transition-base),
        transform var(--transition-base);
}

.approach-icon svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.5;
}

.approach-item:hover .approach-icon {
    border-color: var(--color-primary);
    background: var(--color-primary);
    color: #04100f;
    transform: rotate(45deg);
}


/* =========================================================
   37. PROCESS SECTION
   ========================================================= */

.process-section {
    position: relative;
    padding: 155px 0 170px;
    overflow: hidden;
    border-bottom: 1px solid var(--color-border-soft);
    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.012),
            transparent 45%
        ),
        var(--color-bg-soft);
}

.process-section::before {
    position: absolute;
    left: 50%;
    bottom: -400px;
    width: 920px;
    height: 920px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(32, 234, 216, 0.045),
        transparent 68%
    );
    content: "";
    pointer-events: none;
    transform: translateX(-50%);
}

.process-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.process-card {
    position: relative;
    min-height: 350px;
    overflow: hidden;
    padding: 34px 29px 32px;
    border: 1px solid var(--color-border);
    border-radius: 24px;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.035),
            rgba(255, 255, 255, 0.008)
        ),
        var(--color-bg-card);
    transition:
        transform var(--transition-slow),
        border-color var(--transition-base),
        background var(--transition-base),
        box-shadow var(--transition-base);
}

.process-card::before {
    position: absolute;
    top: -90px;
    right: -95px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(32, 234, 216, 0.075),
        transparent 68%
    );
    content: "";
    opacity: 0;
    transition:
        opacity var(--transition-base),
        transform var(--transition-slow);
}

.process-card::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--color-primary),
        transparent
    );
    content: "";
    opacity: 0;
    transform: scaleX(0.25);
    transition:
        opacity var(--transition-base),
        transform var(--transition-slow);
}

.process-card:hover {
    z-index: 3;
    border-color: rgba(32, 234, 216, 0.3);
    background:
        linear-gradient(
            145deg,
            rgba(32, 234, 216, 0.06),
            rgba(255, 255, 255, 0.01)
        ),
        var(--color-bg-card-hover);
    box-shadow: 0 30px 65px rgba(0, 0, 0, 0.3);
    transform: translateY(-9px);
}

.process-card:hover::before {
    opacity: 1;
    transform: translate(-15px, 15px);
}

.process-card:hover::after {
    opacity: 1;
    transform: scaleX(1);
}

.process-top {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 45px;
}

.process-number {
    color: var(--color-primary);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.18em;
}

.process-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(
        90deg,
        rgba(32, 234, 216, 0.35),
        rgba(255, 255, 255, 0.045)
    );
}

.process-dot {
    position: relative;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--color-primary);
    box-shadow: 0 0 14px rgba(32, 234, 216, 0.65);
}

.process-dot::after {
    position: absolute;
    inset: -7px;
    border: 1px solid rgba(32, 234, 216, 0.16);
    border-radius: 50%;
    content: "";
    transition: transform var(--transition-base);
}

.process-card:hover .process-dot::after {
    transform: scale(1.4);
}

.process-content {
    position: relative;
    z-index: 2;
}

.process-content h3 {
    margin-bottom: 18px;
    color: var(--color-white);
    font-size: clamp(24px, 2vw, 31px);
    font-weight: 600;
    letter-spacing: -0.045em;
    line-height: 1.18;
}

.process-content p {
    margin-bottom: 0;
    color: var(--color-text-soft);
    font-size: 14px;
    line-height: 1.82;
}

.process-meta {
    position: absolute;
    right: 28px;
    bottom: 25px;
    color: rgba(255, 255, 255, 0.055);
    font-size: 56px;
    font-weight: 700;
    letter-spacing: -0.07em;
    line-height: 1;
    transition:
        color var(--transition-base),
        transform var(--transition-slow);
}

.process-card:hover .process-meta {
    color: rgba(32, 234, 216, 0.095);
    transform: translateY(-5px);
}


/* =========================================================
   38. CONTACT SECTION
   ========================================================= */

.contact-section {
    position: relative;
    padding: 170px 0 145px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 50% 40%,
            rgba(32, 234, 216, 0.075),
            transparent 34%
        ),
        var(--color-bg);
}

.contact-section::before {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 900px;
    height: 900px;
    border: 1px solid rgba(32, 234, 216, 0.035);
    border-radius: 50%;
    content: "";
    pointer-events: none;
    transform: translate(-50%, -50%);
}

.contact-section::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 650px;
    height: 650px;
    border: 1px solid rgba(255, 255, 255, 0.025);
    border-radius: 50%;
    content: "";
    pointer-events: none;
    transform: translate(-50%, -50%);
}

.contact-wrapper {
    position: relative;
    z-index: 2;
    overflow: hidden;
    padding: clamp(60px, 8vw, 105px) clamp(30px, 7vw, 100px);
    border: 1px solid rgba(32, 234, 216, 0.2);
    border-radius: 34px;
    background:
        linear-gradient(
            135deg,
            rgba(32, 234, 216, 0.07),
            rgba(255, 255, 255, 0.012) 43%,
            rgba(26, 182, 240, 0.035)
        ),
        rgba(8, 14, 14, 0.9);
    box-shadow:
        0 45px 100px rgba(0, 0, 0, 0.38),
        inset 0 1px 0 rgba(255, 255, 255, 0.035);
    text-align: center;
}

.contact-wrapper::before {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.028) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.028) 1px,
            transparent 1px
        );
    background-size: 52px 52px;
    content: "";
    opacity: 0.28;
    pointer-events: none;
    mask-image: radial-gradient(
        circle at center,
        black,
        transparent 78%
    );
    -webkit-mask-image: radial-gradient(
        circle at center,
        black,
        transparent 78%
    );
}

.contact-wrapper::after {
    position: absolute;
    top: -190px;
    left: 50%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(32, 234, 216, 0.09),
        transparent 70%
    );
    content: "";
    pointer-events: none;
    transform: translateX(-50%);
}

.contact-content {
    position: relative;
    z-index: 2;
    max-width: 940px;
    margin-inline: auto;
}

.contact-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    min-height: 38px;
    margin-bottom: 35px;
    padding: 0 17px;
    border: 1px solid rgba(32, 234, 216, 0.25);
    border-radius: var(--radius-pill);
    background: rgba(32, 234, 216, 0.055);
    color: var(--color-primary);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

.contact-eyebrow::before {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-primary);
    box-shadow: 0 0 12px rgba(32, 234, 216, 0.8);
    content: "";
}

.contact-content h2 {
    max-width: 950px;
    margin: 0 auto 30px;
    color: var(--color-white);
    font-size: clamp(48px, 6.3vw, 92px);
    font-weight: 500;
    letter-spacing: -0.07em;
    line-height: 1.02;
}

.contact-content h2 span {
    color: var(--color-primary);
}

.contact-content > p {
    max-width: 680px;
    margin: 0 auto 45px;
    color: var(--color-text-soft);
    font-size: 17px;
    line-height: 1.85;
}

.contact-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.contact-actions .btn {
    min-width: 190px;
}

.contact-details {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px 35px;
    margin-top: 55px;
    padding-top: 34px;
    border-top: 1px solid var(--color-border-soft);
}

.contact-detail {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--color-text-soft);
    font-size: 12px;
    transition: color var(--transition-fast);
}

.contact-detail:hover {
    color: var(--color-white);
}

.contact-detail svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: var(--color-primary);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.5;
}


/* =========================================================
   39. FOOTER
   ========================================================= */

.site-footer {
    position: relative;
    padding: 78px 0 30px;
    overflow: hidden;
    border-top: 1px solid var(--color-border-soft);
    background: #050909;
}

.footer-main {
    display: grid;
    grid-template-columns: minmax(260px, 1.15fr) repeat(3, minmax(130px, 0.45fr));
    gap: clamp(45px, 7vw, 100px);
    padding-bottom: 65px;
}

.footer-brand {
    max-width: 440px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    margin-bottom: 25px;
    color: var(--color-white);
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.footer-logo span {
    color: var(--color-primary);
}

.footer-brand p {
    max-width: 390px;
    margin-bottom: 30px;
    color: var(--color-text-soft);
    font-size: 14px;
    line-height: 1.85;
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    color: var(--color-text-soft);
    transition:
        color var(--transition-base),
        background var(--transition-base),
        border-color var(--transition-base),
        transform var(--transition-base);
}

.footer-social:hover {
    border-color: var(--color-primary);
    background: var(--color-primary);
    color: #04100f;
    transform: translateY(-4px);
}

.footer-social svg {
    width: 17px;
    height: 17px;
    fill: currentColor;
}

.footer-column h4 {
    margin-bottom: 24px;
    color: var(--color-white);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.footer-links {
    display: grid;
    gap: 15px;
}

.footer-links a {
    position: relative;
    width: fit-content;
    color: var(--color-text-soft);
    font-size: 13px;
    transition:
        color var(--transition-fast),
        transform var(--transition-fast);
}

.footer-links a::after {
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--color-primary);
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition-base);
}

.footer-links a:hover {
    color: var(--color-white);
    transform: translateX(4px);
}

.footer-links a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    padding-top: 28px;
    border-top: 1px solid var(--color-border-soft);
}

.footer-bottom p {
    margin-bottom: 0;
    color: var(--color-text-muted);
    font-size: 11px;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 22px;
}

.footer-bottom-links a {
    color: var(--color-text-muted);
    font-size: 11px;
    transition: color var(--transition-fast);
}

.footer-bottom-links a:hover {
    color: var(--color-primary);
}


/* =========================================================
   40. BACK TO TOP
   ========================================================= */

.back-to-top {
    position: fixed;
    right: 25px;
    bottom: 25px;
    z-index: 90;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(32, 234, 216, 0.25);
    border-radius: 50%;
    background: rgba(6, 12, 12, 0.86);
    color: var(--color-primary);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    opacity: 0;
    pointer-events: none;
    transform: translateY(18px);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition:
        opacity var(--transition-base),
        transform var(--transition-base),
        background var(--transition-base),
        color var(--transition-base);
}

.back-to-top.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--color-primary);
    color: #04100f;
}

.back-to-top svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.6;
}


/* =========================================================
   41. FINAL REVEAL ANIMATIONS
   ========================================================= */

.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition:
        opacity 0.85s ease,
        transform 0.85s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

.reveal-left {
    opacity: 0;
    transform: translateX(-45px);
    transition:
        opacity 0.85s ease,
        transform 0.85s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(45px);
    transition:
        opacity 0.85s ease,
        transform 0.85s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.94);
    transition:
        opacity 0.85s ease,
        transform 0.85s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-scale.visible {
    opacity: 1;
    transform: scale(1);
}


/* =========================================================
   42. RESPONSIVE — LARGE TABLET
   ========================================================= */

@media (max-width: 1100px) {
    .approach-layout {
        grid-template-columns: 1fr;
        gap: 65px;
    }

    .approach-intro {
        position: relative;
        top: auto;
        max-width: 780px;
    }

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

    .footer-main {
        grid-template-columns: minmax(260px, 1fr) repeat(2, minmax(140px, 0.45fr));
    }

    .footer-column:last-child {
        grid-column: 2;
    }
}


/* =========================================================
   43. RESPONSIVE — TABLET
   ========================================================= */

@media (max-width: 850px) {
    .approach-section,
    .process-section {
        padding-top: 110px;
        padding-bottom: 120px;
    }

    .contact-section {
        padding-top: 120px;
        padding-bottom: 100px;
    }

    .approach-intro .section-number {
        margin-bottom: 35px;
    }

    .approach-item {
        grid-template-columns: 58px minmax(0, 1fr) 48px;
        gap: 20px;
        min-height: 185px;
    }

    .process-grid {
        gap: 14px;
    }

    .process-card {
        min-height: 380px;
    }

    .contact-wrapper {
        border-radius: 28px;
    }

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

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-column:last-child {
        grid-column: auto;
    }
}


/* =========================================================
   44. RESPONSIVE — MOBILE
   ========================================================= */

@media (max-width: 600px) {
    .approach-section,
    .process-section {
        padding-top: 85px;
        padding-bottom: 90px;
    }

    .contact-section {
        padding-top: 90px;
        padding-bottom: 75px;
    }

    .approach-layout {
        gap: 45px;
    }

    .approach-intro h2 {
        font-size: 40px;
    }

    .approach-intro > p {
        font-size: 15px;
        line-height: 1.78;
    }

    .approach-item {
        grid-template-columns: 42px minmax(0, 1fr);
        gap: 16px;
        min-height: auto;
        padding: 32px 0;
    }

    .approach-item:hover {
        padding-left: 14px;
    }

    .approach-number {
        padding-top: 5px;
    }

    .approach-icon {
        display: none;
    }

    .approach-content h3 {
        font-size: 27px;
    }

    .approach-content p {
        font-size: 13px;
        line-height: 1.75;
    }

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

    .process-card {
        min-height: 330px;
        padding: 28px 24px;
        border-radius: 21px;
    }

    .process-top {
        margin-bottom: 55px;
    }

    .process-content h3 {
        font-size: 28px;
    }

    .contact-wrapper {
        padding: 58px 23px 48px;
        border-radius: 23px;
    }

    .contact-content h2 {
        font-size: 44px;
    }

    .contact-content > p {
        font-size: 15px;
        line-height: 1.75;
    }

    .contact-actions {
        flex-direction: column;
    }

    .contact-actions .btn {
        width: 100%;
    }

    .contact-details {
        align-items: flex-start;
        flex-direction: column;
    }

    .site-footer {
        padding-top: 60px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 42px;
        padding-bottom: 48px;
    }

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

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

    .back-to-top {
        right: 16px;
        bottom: 16px;
        width: 44px;
        height: 44px;
    }
}


/* =========================================================
   45. RESPONSIVE — SMALL MOBILE
   ========================================================= */

@media (max-width: 400px) {
    .approach-intro h2 {
        font-size: 36px;
    }

    .approach-item {
        grid-template-columns: 34px minmax(0, 1fr);
        gap: 12px;
    }

    .approach-content h3 {
        font-size: 24px;
    }

    .contact-content h2 {
        font-size: 38px;
    }

    .contact-wrapper {
        padding-inline: 19px;
    }

    .process-card {
        padding-inline: 21px;
    }
}


/* =========================================================
   46. ACCESSIBILITY AND REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal,
    .reveal-left,
    .reveal-right,
    .reveal-scale {
        opacity: 1;
        transform: none;
    }
}

/* =========================================================
   FINAL SPACING FIX
   ========================================================= */

.statement-section {
    padding-top: 105px;
    padding-bottom: 110px;
}

.services-section {
    padding-top: 105px;
    padding-bottom: 115px;
}

.approach-section {
    padding-top: 105px;
    padding-bottom: 115px;
}

.process-section {
    padding-top: 105px;
    padding-bottom: 115px;
}

.contact-section {
    padding-top: 110px;
    padding-bottom: 90px;
}

.section-header {
    margin-bottom: 52px;
}

.statement-section .section-number,
.section-header-left .section-number,
.approach-intro .section-number {
    margin-bottom: 32px;
}

.approach-layout {
    gap: clamp(55px, 7vw, 100px);
}

.contact-details {
    margin-top: 38px;
}

.service-card {
    min-height: 520px;
}

.service-card-featured {
    min-height: 570px;
}

.service-icon {
    margin-bottom: 32px;
}

.service-card-header {
    margin-bottom: 28px;
}

/* =========================================================
   FOOTER LAYOUT FIX
   ========================================================= */

.site-footer {
    padding-top: 65px;
    padding-bottom: 28px;
}

.footer-main {
    display: grid;
    grid-template-columns: minmax(280px, 1.4fr) repeat(3, minmax(150px, 1fr));
    gap: 45px;
    align-items: start;
    padding-bottom: 52px;
}

.footer-brand,
.footer-column {
    min-width: 0;
}

.footer-brand {
    max-width: 420px;
}

.footer-column:last-child {
    grid-column: auto;
}

.footer-links {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 18px;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
}

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

    .footer-brand {
        grid-column: 1 / -1;
        max-width: 600px;
    }

    .footer-column:last-child {
        grid-column: auto;
    }
}

@media (max-width: 600px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-brand,
    .footer-column,
    .footer-column:last-child {
        grid-column: auto;
    }

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

/* =========================================================
   PROCESS SECTION — HARD RESET
   ========================================================= */

.process-section {
    padding: 90px 0 95px !important;
}

.process-section .section-header {
    margin-bottom: 40px !important;
}

.process-grid {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 16px !important;
    align-items: stretch !important;
}

.process-card {
    display: flex !important;
    flex-direction: column !important;
    min-height: 0 !important;
    height: auto !important;
    padding: 28px 26px !important;
}

.process-top {
    margin-bottom: 32px !important;
}

.process-content {
    flex: 1 !important;
}

.process-content h3 {
    margin-bottom: 13px !important;
}

.process-content p {
    margin-bottom: 0 !important;
}

.process-meta {
    position: static !important;
    display: block !important;
    margin-top: 28px !important;
    font-size: 42px !important;
    text-align: right !important;
}

@media (max-width: 1100px) {
    .process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .process-card {
        min-height: 0 !important;
        height: auto !important;
    }
}

@media (max-width: 600px) {
    .process-section {
        padding: 70px 0 75px !important;
    }

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

    .process-card {
        min-height: 0 !important;
        height: auto !important;
        padding: 25px 22px !important;
    }

    .process-top {
        margin-bottom: 25px !important;
    }

    .process-meta {
        margin-top: 22px !important;
        font-size: 36px !important;
    }
}

/* =========================================================
   FOOTER — FINAL STRUCTURE
   ========================================================= */

.site-footer {
    position: relative !important;
    display: block !important;
    width: 100% !important;
    padding: 65px 0 28px !important;
    overflow: hidden !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    background: #050909 !important;
}

.site-footer .container {
    position: relative !important;
    display: block !important;
}

.footer-main {
    display: grid !important;
    grid-template-columns: minmax(280px, 1.4fr) repeat(3, minmax(140px, 0.65fr)) !important;
    gap: 55px !important;
    align-items: start !important;
    padding-bottom: 50px !important;
}

.footer-brand,
.footer-column {
    display: block !important;
    min-width: 0 !important;
    grid-column: auto !important;
}

.footer-brand {
    max-width: 420px !important;
}

.footer-logo {
    display: inline-flex !important;
    margin-bottom: 22px !important;
    color: #ffffff !important;
    font-size: 23px !important;
    font-weight: 800 !important;
    text-decoration: none !important;
}

.footer-logo span {
    color: var(--color-primary) !important;
}

.footer-brand p {
    max-width: 390px !important;
    margin: 0 0 27px !important;
    color: var(--color-text-soft) !important;
    font-size: 14px !important;
    line-height: 1.8 !important;
}

.footer-column h4 {
    margin: 4px 0 23px !important;
    color: #ffffff !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: 0.15em !important;
    text-transform: uppercase !important;
}

.footer-links {
    display: flex !important;
    flex-direction: column !important;
    gap: 14px !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.footer-links li {
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
}

.footer-links a,
.footer-links span {
    display: inline-block !important;
    color: var(--color-text-soft) !important;
    font-size: 13px !important;
    line-height: 1.55 !important;
    text-decoration: none !important;
}

.footer-links a:hover {
    color: var(--color-primary) !important;
}

.footer-socials {
    display: flex !important;
    gap: 10px !important;
}

.footer-social {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 42px !important;
    height: 42px !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 50% !important;
}

.footer-social svg {
    width: 17px !important;
    height: 17px !important;
    fill: currentColor !important;
}

.footer-bottom {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    gap: 20px !important;
    padding-top: 27px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.footer-bottom p {
    margin: 0 !important;
    color: var(--color-text-muted) !important;
    font-size: 11px !important;
}

.footer-bottom-links {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    gap: 20px !important;
}

.footer-bottom-links a {
    color: var(--color-text-muted) !important;
    font-size: 11px !important;
    text-decoration: none !important;
}

.footer-bottom-links a:hover {
    color: var(--color-primary) !important;
}

@media (max-width: 1000px) {
    .footer-main {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 45px !important;
    }

    .footer-brand {
        grid-column: 1 / -1 !important;
        max-width: 600px !important;
    }
}

@media (max-width: 600px) {
    .site-footer {
        padding-top: 55px !important;
    }

    .footer-main {
        grid-template-columns: 1fr !important;
        gap: 37px !important;
    }

    .footer-brand,
    .footer-column {
        grid-column: auto !important;
    }

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

/* =========================================================
   PROCESS SECTION — COMPLETE HEIGHT RESET
   ========================================================= */

html body #process,
html body .process-section {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    padding: 75px 0 80px !important;
    margin: 0 !important;
}

html body #process > .container,
html body .process-section > .container,
html body .process-section .container {
    display: block !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

/* Süreç başlığının çevresindeki fazla alanı kaldır */
html body .process-section .section-header {
    display: grid !important;
    height: auto !important;
    min-height: 0 !important;
    margin: 0 0 35px !important;
    padding: 0 !important;
}

html body .process-section .section-header-left,
html body .process-section .section-header-right {
    height: auto !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

html body .process-section .section-number {
    margin: 0 0 22px !important;
}

html body .process-section .section-header-left h2 {
    margin: 0 !important;
}

html body .process-section .section-header-right p {
    margin: 0 !important;
}

/* Kart alanının dışındaki olası yükseklikleri kaldır */
html body .process-grid {
    position: relative !important;
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    align-items: start !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    gap: 14px !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Kartları içerik kadar yüksek tut */
html body .process-card {
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    align-self: start !important;
    justify-content: flex-start !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    margin: 0 !important;
    padding: 26px 24px 24px !important;
}

/* Kartın üst kısmındaki büyük aralığı kaldır */
html body .process-top {
    display: flex !important;
    align-items: center !important;
    height: auto !important;
    min-height: 0 !important;
    margin: 0 0 25px !important;
    padding: 0 !important;
}

/* Metin yapısında zorunlu yükseklik kalmasın */
html body .process-content {
    display: block !important;
    flex: none !important;
    height: auto !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

html body .process-content h3 {
    margin: 0 0 12px !important;
}

html body .process-content p {
    margin: 0 !important;
}

/* Büyük arka plan numarasını normal akıştan tamamen çıkar */
html body .process-meta {
    position: absolute !important;
    right: 20px !important;
    bottom: 16px !important;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    font-size: 40px !important;
    line-height: 1 !important;
    pointer-events: none !important;
}

/* Kart metni numaranın üzerine gelmesin */
html body .process-content {
    padding-bottom: 42px !important;
}

/* Bölümde varsa genel dekoratif katmanlar alan kaplamasın */
html body .process-section::before,
html body .process-section::after {
    pointer-events: none !important;
}

/* Tablet */
@media (max-width: 1100px) {
    html body #process,
    html body .process-section {
        padding: 70px 0 75px !important;
    }

    html body .process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

/* Mobil */
@media (max-width: 600px) {
    html body #process,
    html body .process-section {
        padding: 60px 0 65px !important;
    }

    html body .process-section .section-header {
        margin-bottom: 28px !important;
    }

    html body .process-grid {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }

    html body .process-card {
        padding: 23px 21px 21px !important;
    }

    html body .process-top {
        margin-bottom: 21px !important;
    }
}

/* =========================================================
   PROCESS SECTION — CURRENT HTML STRUCTURE FIX
   ========================================================= */

#process.process-section {
    height: auto !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 90px 0 95px !important;
}

#process .container {
    height: auto !important;
    min-height: 0 !important;
}

/* Süreç başlığı */
#process .process-intro {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    width: 100% !important;
    max-width: 850px !important;
    height: auto !important;
    min-height: 0 !important;
    margin: 0 0 55px !important;
    padding: 0 !important;
}

#process .process-intro .section-number {
    margin: 0 0 25px !important;
}

#process .process-intro .section-kicker {
    display: block !important;
    margin: 0 0 18px !important;
}

#process .process-intro h2 {
    max-width: 800px !important;
    margin: 0 !important;
    padding: 0 !important;
    color: var(--color-white) !important;
    font-size: clamp(44px, 4.8vw, 72px) !important;
    font-weight: 500 !important;
    letter-spacing: -0.06em !important;
    line-height: 1.08 !important;
}

#process .process-intro h2 span {
    color: var(--color-primary) !important;
}

/* Süreç liste alanı */
#process .process-list {
    display: grid !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    border-top: 1px solid var(--color-border) !important;
}

/* Her süreç satırı */
#process .process-item {
    position: relative !important;
    display: grid !important;
    grid-template-columns:
        80px
        minmax(210px, 0.75fr)
        minmax(300px, 1.25fr)
        50px !important;
    gap: 30px !important;
    align-items: center !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 32px 0 !important;
    overflow: hidden !important;
    border-bottom: 1px solid var(--color-border) !important;
}

#process .process-item::before {
    position: absolute !important;
    inset: 0 !important;
    background: linear-gradient(
        90deg,
        rgba(32, 234, 216, 0.05),
        transparent 75%
    ) !important;
    content: "" !important;
    opacity: 0 !important;
    pointer-events: none !important;
    transition:
        opacity var(--transition-base),
        transform var(--transition-base) !important;
    transform: translateX(-30px) !important;
}

#process .process-item:hover::before {
    opacity: 1 !important;
    transform: translateX(0) !important;
}

/* Numara */
#process .process-index {
    position: relative !important;
    z-index: 2 !important;
    display: flex !important;
    align-items: center !important;
    height: auto !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

#process .process-index span {
    color: var(--color-primary) !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    letter-spacing: 0.17em !important;
}

/* Başlık */
#process .process-title {
    position: relative !important;
    z-index: 2 !important;
    height: auto !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

#process .process-title > span {
    display: block !important;
    margin: 0 0 10px !important;
    color: var(--color-primary) !important;
    font-size: 9px !important;
    font-weight: 800 !important;
    letter-spacing: 0.17em !important;
}

#process .process-title h3 {
    margin: 0 !important;
    color: var(--color-white) !important;
    font-size: clamp(23px, 2.2vw, 32px) !important;
    font-weight: 600 !important;
    letter-spacing: -0.04em !important;
    line-height: 1.2 !important;
}

/* Açıklama */
#process .process-description {
    position: relative !important;
    z-index: 2 !important;
    height: auto !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

#process .process-description p {
    max-width: 600px !important;
    margin: 0 !important;
    padding: 0 !important;
    color: var(--color-text-soft) !important;
    font-size: 14px !important;
    line-height: 1.75 !important;
}

/* Sağ ikon */
#process .process-icon {
    position: relative !important;
    z-index: 2 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 46px !important;
    height: 46px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 1px solid var(--color-border) !important;
    border-radius: 50% !important;
    color: var(--color-text-soft) !important;
    transition:
        color var(--transition-base),
        border-color var(--transition-base),
        background var(--transition-base),
        transform var(--transition-base) !important;
}

#process .process-icon svg {
    width: 18px !important;
    height: 18px !important;
    fill: none !important;
    stroke: currentColor !important;
    stroke-linecap: round !important;
    stroke-linejoin: round !important;
    stroke-width: 1.5 !important;
}

#process .process-item:hover .process-icon {
    border-color: var(--color-primary) !important;
    background: var(--color-primary) !important;
    color: #04100f !important;
    transform: rotate(45deg) !important;
}

/* Tablet */
@media (max-width: 900px) {
    #process.process-section {
        padding: 75px 0 80px !important;
    }

    #process .process-intro {
        margin-bottom: 40px !important;
    }

    #process .process-item {
        grid-template-columns: 55px minmax(0, 1fr) 45px !important;
        gap: 20px !important;
        padding: 28px 0 !important;
    }

    #process .process-description {
        grid-column: 2 / 3 !important;
    }

    #process .process-icon {
        grid-column: 3 !important;
        grid-row: 1 / span 2 !important;
    }
}

/* Mobil */
@media (max-width: 600px) {
    #process.process-section {
        padding: 65px 0 70px !important;
    }

    #process .process-intro {
        margin-bottom: 32px !important;
    }

    #process .process-intro h2 {
        font-size: 40px !important;
    }

    #process .process-item {
        grid-template-columns: 38px minmax(0, 1fr) !important;
        gap: 14px !important;
        padding: 25px 0 !important;
    }

    #process .process-index {
        align-self: start !important;
        padding-top: 4px !important;
    }

    #process .process-title {
        grid-column: 2 !important;
    }

    #process .process-description {
        grid-column: 2 !important;
    }

    #process .process-icon {
        display: none !important;
    }

    #process .process-title h3 {
        font-size: 25px !important;
    }

    #process .process-description p {
        font-size: 13px !important;
        line-height: 1.7 !important;
    }
}

/* =========================================================
   CONTACT SECTION — SPACING AND ALIGNMENT FIX
   ========================================================= */

#contact.contact-section {
    height: auto !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 85px 0 90px !important;
}

#contact .contact-container {
    display: grid !important;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr) !important;
    align-items: center !important;
    gap: 65px !important;
    height: auto !important;
    min-height: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

/* Sol başlık alanı */
#contact .contact-heading {
    width: 100% !important;
    max-width: 760px !important;
    margin: 0 !important;
    padding: 0 !important;
    text-align: left !important;
}

#contact .contact-heading .section-kicker {
    display: block !important;
    margin: 0 0 20px !important;
}

#contact .contact-heading h2 {
    margin: 0 0 22px !important;
}

#contact .contact-heading p {
    max-width: 650px !important;
    margin: 0 !important;
}

/* Sağ e-posta ve telefon alanı */
#contact .contact-actions {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: center !important;
    width: 100% !important;
    max-width: 480px !important;
    margin: 0 auto !important;
    padding: 0 !important;
    gap: 14px !important;
}

/* E-posta kutusu */
#contact .contact-email {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 46px !important;
    align-items: center !important;
    width: 100% !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 24px 25px !important;
    text-align: left !important;
}

#contact .contact-email-label {
    grid-column: 1 !important;
    display: block !important;
    margin: 0 0 7px !important;
}

#contact .contact-email strong {
    grid-column: 1 !important;
    display: block !important;
    margin: 0 !important;
    line-height: 1.3 !important;
}

#contact .contact-email-icon {
    grid-column: 2 !important;
    grid-row: 1 / span 2 !important;
    align-self: center !important;
    justify-self: end !important;
    margin: 0 !important;
}

/* Telefon kutusu */
#contact .contact-phone {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: center !important;
    width: 100% !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 21px 25px !important;
    text-align: left !important;
}

#contact .contact-phone span {
    display: block !important;
    margin: 0 0 7px !important;
}

#contact .contact-phone strong {
    display: block !important;
    margin: 0 !important;
    line-height: 1.3 !important;
}

/* Tablet */
@media (max-width: 900px) {
    #contact.contact-section {
        padding: 75px 0 80px !important;
    }

    #contact .contact-container {
        grid-template-columns: 1fr !important;
        gap: 42px !important;
    }

    #contact .contact-heading {
        max-width: 720px !important;
        margin: 0 auto !important;
        text-align: center !important;
    }

    #contact .contact-heading p {
        margin: 0 auto !important;
    }

    #contact .contact-actions {
        max-width: 560px !important;
    }
}

/* Mobil */
@media (max-width: 600px) {
    #contact.contact-section {
        padding: 60px 0 65px !important;
    }

    #contact .contact-container {
        gap: 32px !important;
    }

    #contact .contact-heading h2 {
        margin-bottom: 18px !important;
    }

    #contact .contact-email,
    #contact .contact-phone {
        padding: 20px !important;
    }

    #contact .contact-email {
        grid-template-columns: minmax(0, 1fr) 40px !important;
    }

    #contact .contact-email strong,
    #contact .contact-phone strong {
        font-size: 16px !important;
        overflow-wrap: anywhere !important;
    }
}

/* =========================================================
   AD-HOCC LOGO
   ========================================================= */

.brand-logo {
    display: flex !important;
    align-items: center !important;
    flex-shrink: 0 !important;
    width: auto !important;
    height: auto !important;
    text-decoration: none !important;
}

.header-logo {
    display: block !important;
    width: auto !important;
    height: 52px !important;
    max-width: 280px !important;
    object-fit: contain !important;
}

/* Eski sembol ve yazı yapısı kalırsa gizle */
.brand-logo .brand-mark,
.brand-logo .brand-text {
    display: none !important;
}

/* Sticky header */
.site-header.scrolled .header-logo {
    height: 45px !important;
}

/* Footer logo */
.footer-logo-image {
    display: inline-flex !important;
    align-items: center !important;
    width: auto !important;
    height: auto !important;
    margin: 0 0 24px !important;
    text-decoration: none !important;
}

.footer-logo-image img {
    display: block !important;
    width: auto !important;
    height: 66px !important;
    max-width: 340px !important;
    object-fit: contain !important;
}

@media (max-width: 900px) {
    .header-logo {
        height: 47px !important;
        max-width: 245px !important;
    }

    .site-header.scrolled .header-logo {
        height: 42px !important;
    }

    .footer-logo-image img {
        height: 61px !important;
        max-width: 310px !important;
    }
}

@media (max-width: 600px) {
    .header-logo {
        height: 41px !important;
        max-width: 205px !important;
    }

    .site-header.scrolled .header-logo {
        height: 38px !important;
    }

    .footer-logo-image img {
        height: 54px !important;
        max-width: 270px !important;
    }
}

/* =========================================================
   HEADER + FOOTER LOGO — TRANSPARENT SPACE CROP FIX
   ========================================================= */

/* HEADER LOGO KUTUSU */
.site-header .brand-logo {
    position: relative !important;
    display: block !important;
    flex-shrink: 0 !important;

    width: 255px !important;
    height: 62px !important;

    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
}

/*
 * Görsele yalnız genişlik veriyoruz.
 * Yükseklik otomatik kalıyor.
 * Böylece PNG'nin üst-alt şeffaf alanları kutunun dışında kalıyor.
 */
.site-header .header-logo {
    position: absolute !important;
    top: 50% !important;
    left: 0 !important;

    display: block !important;
    width: 255px !important;
    height: auto !important;
    max-width: none !important;

    margin: 0 !important;
    padding: 0 !important;

    object-fit: initial !important;
    transform: translateY(-50%) !important;
    transform-origin: left center !important;
}

/* Sticky header */
.site-header.scrolled .brand-logo {
    width: 235px !important;
    height: 56px !important;
}

.site-header.scrolled .header-logo {
    width: 235px !important;
    height: auto !important;
    max-width: none !important;
    transform: translateY(-50%) !important;
}


/* =========================================================
   FOOTER LOGO
   ========================================================= */

.site-footer .footer-logo-image {
    position: relative !important;
    display: block !important;

    width: 305px !important;
    height: 78px !important;

    margin: 0 0 24px !important;
    padding: 0 !important;
    overflow: hidden !important;
}

.site-footer .footer-logo-image img {
    position: absolute !important;
    top: 50% !important;
    left: 0 !important;

    display: block !important;
    width: 305px !important;
    height: auto !important;
    max-width: none !important;

    margin: 0 !important;
    padding: 0 !important;

    object-fit: initial !important;
    transform: translateY(-50%) !important;
    transform-origin: left center !important;
}


/* TABLET */
@media (max-width: 1000px) {
    .site-header .brand-logo {
        width: 225px !important;
        height: 56px !important;
    }

    .site-header .header-logo {
        width: 225px !important;
    }

    .site-header.scrolled .brand-logo {
        width: 215px !important;
        height: 52px !important;
    }

    .site-header.scrolled .header-logo {
        width: 215px !important;
    }

    .site-footer .footer-logo-image {
        width: 280px !important;
        height: 72px !important;
    }

    .site-footer .footer-logo-image img {
        width: 280px !important;
    }
}


/* MOBILE */
@media (max-width: 600px) {
    .site-header .brand-logo {
        width: 190px !important;
        height: 48px !important;
    }

    .site-header .header-logo {
        width: 190px !important;
    }

    .site-header.scrolled .brand-logo {
        width: 182px !important;
        height: 46px !important;
    }

    .site-header.scrolled .header-logo {
        width: 182px !important;
    }

    .site-footer .footer-logo-image {
        width: 245px !important;
        height: 64px !important;
    }

    .site-footer .footer-logo-image img {
        width: 245px !important;
    }
}

/* =========================================================
   HEADER — NORMAL FLOW FIX
   ========================================================= */

.site-header {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    left: auto !important;

    width: 100% !important;
    height: var(--header-height) !important;

    background: var(--color-bg) !important;
    border-bottom: 1px solid var(--color-border-soft) !important;

    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

/* Scroll sırasında header biçimini değiştirme */
.site-header.scrolled {
    position: relative !important;
    height: var(--header-height) !important;
    background: var(--color-bg) !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

/* Header artık normal akışta olduğu için hero'nun ekstra header payını kaldır */
.hero-section {
    padding-top: 88px !important;
}

@media (max-width: 700px) {
    .hero-section {
        padding-top: 70px !important;
    }
}

@media (max-width: 600px) {
    .language-switcher {
        gap: 5px;
    }

    .language-link {
        font-size: 10px;
    }

    .language-separator {
        font-size: 9px;
    }
}