/* =====================================================================
   EVRENSOFT YAZILIM — XLander-style modern landing page
   White surfaces · single warm orange accent · Poppins + Inter
   ===================================================================== */

/* -------- Tokens -------- */
:root {
    /* Surface */
    --bg:           #FFFFFF;
    --bg-2:         #F7F8FA;
    --bg-3:         #EEF1F5;
    --line:         #E5E8EC;
    --line-strong:  #C9CED6;

    /* Ink */
    --ink:          #1F2533;
    --ink-2:        #2B3242;
    --text:         #4A5163;
    --mute:         #7A8194;
    --mute-2:       #9CA2B3;

    /* Brand — warm persimmon (logo paleti ile uyumlu) */
    --brand:        #FF6A1F;
    --brand-2:      #E5550A;
    --brand-soft:   #FFF1E8;

    /* Accents (Optional secondary) */
    --night:        #181C2A;
    --night-2:      #232838;

    /* Type */
    --font-head: "Poppins", "Inter", -apple-system, sans-serif;
    --font-body: "Inter", "Poppins", -apple-system, sans-serif;

    /* Radius */
    --r-sm: 6px;
    --r-md: 10px;
    --r-lg: 16px;
    --r-pill: 999px;

    /* Easing */
    --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
    --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);

    /* Shadow */
    --sh-1: 0 2px 8px rgba(31, 37, 51, 0.06);
    --sh-2: 0 18px 40px -22px rgba(31, 37, 51, 0.18);
    --sh-3: 0 24px 60px -20px rgba(31, 37, 51, 0.28);
    --sh-glow: 0 16px 40px -10px rgba(255, 106, 31, 0.42);
}

/* -------- Reset -------- */
*, *::before, *::after { box-sizing: border-box; }
html {
    -webkit-text-size-adjust: 100%;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
}
body {
    margin: 0;
    padding-top: 84px;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
}
::selection { background: var(--brand); color: #fff; }
img, svg, video { display: block; max-width: 100%; }
a { color: var(--brand); text-decoration: none; transition: color .25s var(--ease-soft); }
a:hover { color: var(--brand-2); }

/* -------- Headings -------- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-head);
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.012em;
    line-height: 1.18;
    margin: 0 0 16px;
}
h1 { font-size: clamp(2.4rem, 4.6vw, 4rem); font-weight: 800; line-height: 1.08; letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 3.4vw, 2.85rem); font-weight: 700; line-height: 1.16; }
h3 { font-size: 1.5rem; font-weight: 700; }
h4 { font-size: 1.18rem; font-weight: 700; }
h5 { font-size: 1.05rem; font-weight: 700; }

p { margin: 0 0 1rem; color: var(--text); }
.lead { font-size: 1.125rem; color: var(--text); }

/* -------- Container -------- */
.container, .container-lg, .container-md, .container-sm, .container-xl {
    max-width: 1200px;
    padding-left: 24px;
    padding-right: 24px;
}
@media (min-width: 1400px) { .container, .container-xxl { max-width: 1280px; } }

/* -------- Top contact bar -------- */
.topbar {
    background: var(--ink);
    color: rgba(255,255,255,0.78);
    font-size: 0.82rem;
    padding: 8px 0;
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1031;
}
.topbar a { color: rgba(255,255,255,0.78); }
.topbar a:hover { color: var(--brand); }
.topbar i { font-size: 0.95rem; vertical-align: -2px; margin-right: 5px; color: var(--brand); }

/* -------- Navbar -------- */
.navbar-evrensoft {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 1px 0 var(--line);
    padding: 14px 0;
    position: fixed;
    top: 36px; left: 0; right: 0;
    z-index: 1030;
    transition: padding .3s var(--ease-out), box-shadow .25s var(--ease-soft);
}
.navbar-evrensoft.scrolled {
    padding: 8px 0;
    box-shadow: 0 6px 26px -16px rgba(31, 37, 51, 0.18);
}
.navbar-evrensoft .navbar-brand {
    display: flex; align-items: center; gap: 10px;
    padding: 0;
    color: var(--ink);
}
.navbar-evrensoft .brand-logo {
    width: 90px;
    height: auto;
    object-fit: contain;
    transition: height .35s var(--ease-out);
}
.navbar-evrensoft.scrolled .brand-logo { width: 70px; }
.navbar-evrensoft .brand-icon {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--brand);
    color: #fff;
    display: inline-flex;
    align-items: center; justify-content: center;
    font-weight: 700; font-size: 1.1rem;
}

.navbar-evrensoft .nav-link {
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--ink) !important;
    padding: 10px 14px !important;
    position: relative;
    transition: color .25s var(--ease-soft);
}
.navbar-evrensoft .nav-link::after {
    content: "";
    position: absolute;
    left: 14px; right: 14px; bottom: 4px;
    height: 2px;
    background: var(--brand);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s var(--ease-out);
}
.navbar-evrensoft .nav-link:hover { color: var(--brand) !important; }
.navbar-evrensoft .nav-link:hover::after { transform: scaleX(1); }
.navbar-evrensoft .nav-link.active { color: var(--brand) !important; }
.navbar-evrensoft .nav-link.active::after { transform: scaleX(1); }

.navbar-toggler {
    border: 1px solid var(--line);
    border-radius: var(--r-sm);
    padding: 6px 10px;
}
.navbar-toggler:focus { box-shadow: none; }
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%231F2533' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* -------- Buttons -------- */
.btn {
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 0.92rem;
    letter-spacing: 0.01em;
    padding: 13px 28px;
    border-radius: var(--r-pill);
    border: 2px solid transparent;
    transition: all .35s var(--ease-out);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    line-height: 1;
}
.btn:focus, .btn:focus-visible {
    outline: 3px solid rgba(255, 106, 31, 0.35);
    outline-offset: 2px;
    box-shadow: none;
}
.btn-evrensoft {
    background: var(--brand);
    color: #fff;
    border-color: var(--brand);
    box-shadow: 0 8px 20px -10px rgba(255, 106, 31, 0.5);
}
.btn-evrensoft:hover {
    background: var(--brand-2);
    border-color: var(--brand-2);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--sh-glow);
}
.btn-evrensoft i { transition: transform .35s var(--ease-out); }
.btn-evrensoft:hover i { transform: translateX(4px); }

.btn-evrensoft-outline {
    background: transparent;
    color: var(--ink);
    border-color: var(--line-strong);
}
.btn-evrensoft-outline:hover {
    background: var(--ink);
    color: #fff;
    border-color: var(--ink);
}

.btn-ghost-light {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.55);
}
.btn-ghost-light:hover {
    background: #fff;
    color: var(--ink);
    border-color: #fff;
}

.btn.btn-lg { padding: 16px 32px; font-size: 1rem; }
.btn.btn-sm { padding: 10px 18px; font-size: 0.86rem; }

.arrow-link {
    color: var(--brand);
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 0.92rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    position: relative;
}
.arrow-link i { transition: transform .3s var(--ease-out); }
.arrow-link:hover { color: var(--brand-2); }
.arrow-link:hover i { transform: translateX(4px); }

/* -------- HERO  ───────────────────────────────────── */
.hero-slider {
    position: relative;
    overflow: hidden;
}
.hero-slider .carousel-inner { overflow: hidden; }
.hero-slider .carousel-item { transition: opacity .9s var(--ease-out); }

.hero, .hero-slide {
    position: relative;
    min-height: calc(100vh - 84px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
    padding: 120px 0 100px;
    background: var(--ink);
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.05);
    transition: transform 12s linear;
    z-index: 0;
}
.carousel-item.active .hero-bg { transform: scale(1.18); }
.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(15, 20, 38, 0.65) 0%, rgba(15, 20, 38, 0.78) 100%);
    z-index: 1;
}
.hero-overlay.pattern::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(rgba(255,255,255,0.08) 1px, transparent 1px);
    background-size: 28px 28px;
    opacity: 0.35;
    pointer-events: none;
}
.hero-content {
    position: relative;
    z-index: 3;
    max-width: 880px;
    padding: 0 24px;
    margin: 0 auto;
}
.hero-eyebrow {
    display: inline-block;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 0.78rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--brand);
    background: rgba(255, 106, 31, 0.12);
    border: 1px solid rgba(255, 106, 31, 0.4);
    padding: 8px 18px;
    border-radius: var(--r-pill);
    margin-bottom: 28px;
    backdrop-filter: blur(10px);
}
.hero-title {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: clamp(2.4rem, 5.5vw, 4.6rem);
    line-height: 1.05;
    letter-spacing: -0.022em;
    color: #fff;
    margin: 0 0 24px;
    text-shadow: 0 6px 30px rgba(0,0,0,0.35);
}
.hero-title .accent { color: var(--brand); }
.hero-sub {
    font-size: 1.18rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.86);
    max-width: 660px;
    margin: 0 auto 40px;
}
.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* Hero scroll indicator */
.hero-scroll {
    position: absolute;
    left: 50%;
    bottom: 32px;
    transform: translateX(-50%);
    z-index: 4;
    color: rgba(255, 255, 255, 0.6);
    font-family: var(--font-head);
    font-size: 0.74rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-align: center;
    transition: color .25s var(--ease-soft);
}
.hero-scroll:hover { color: var(--brand); }
.hero-scroll .mouse {
    display: block;
    width: 22px; height: 36px;
    border: 2px solid currentColor;
    border-radius: 14px;
    margin: 0 auto 8px;
    position: relative;
}
.hero-scroll .mouse::after {
    content: "";
    position: absolute;
    top: 7px; left: 50%;
    transform: translateX(-50%);
    width: 3px; height: 7px;
    background: currentColor;
    border-radius: 3px;
    animation: scroll-dot 1.8s var(--ease-out) infinite;
}
@keyframes scroll-dot {
    0%   { opacity: 0; transform: translate(-50%, -2px); }
    50%  { opacity: 1; }
    100% { opacity: 0; transform: translate(-50%, 12px); }
}

/* Hero carousel controls */
.hero-slider .carousel-indicators {
    bottom: 110px;
    margin: 0;
    z-index: 4;
    gap: 8px;
}
.hero-slider .carousel-indicators button {
    width: 10px; height: 10px; border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    transition: all .3s var(--ease-soft);
    margin: 0 4px;
}
.hero-slider .carousel-indicators .active {
    width: 30px; border-radius: 5px;
    background: var(--brand);
}
.hero-slider .carousel-control-prev,
.hero-slider .carousel-control-next {
    width: 56px;
    opacity: 0.7;
    z-index: 3;
    transition: opacity .25s var(--ease-soft);
}
.hero-slider .carousel-control-prev:hover,
.hero-slider .carousel-control-next:hover { opacity: 1; }
.hero-slider .carousel-control-prev-icon,
.hero-slider .carousel-control-next-icon {
    width: 48px; height: 48px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(8px);
}

/* -------- SECTION HEADER  ───────────────────────────── */
section { padding: 100px 0; }
.section-light { background: var(--bg-2); }
.section-cream { background: var(--bg-3); }

.section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 64px;
}
.section-head .eyebrow,
.section-kicker {
    display: inline-block;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 0.78rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--brand);
    margin-bottom: 14px;
}
.section-head h2,
.section-title {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: clamp(2rem, 3.6vw, 2.85rem);
    color: var(--ink);
    line-height: 1.18;
    letter-spacing: -0.012em;
    margin: 0 0 20px;
}
.section-head .divider,
.section-divider {
    width: 56px;
    height: 3px;
    background: var(--brand);
    margin: 0 auto 22px;
    border-radius: 2px;
}
.section-head p,
.section-subtitle {
    color: var(--text);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 60ch;
    margin: 0 auto;
}

/* -------- TRUST / FEATURES (Why us)  ─────────────────── */
.trust-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}
.trust-item {
    text-align: center;
    padding: 36px 24px;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    transition: transform .4s var(--ease-out), box-shadow .35s var(--ease-soft), border-color .25s;
}
.trust-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--sh-2);
    border-color: transparent;
}
.trust-item .ic {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: var(--brand-soft);
    color: var(--brand);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.55rem;
    margin: 0 auto 22px;
    transition: all .35s var(--ease-out);
}
.trust-item:hover .ic {
    background: var(--brand);
    color: #fff;
    transform: rotate(-6deg) scale(1.06);
}
.trust-item h5 {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--ink);
    margin: 0 0 10px;
}
.trust-item p {
    color: var(--text);
    font-size: 0.94rem;
    margin: 0;
    line-height: 1.65;
}

/* -------- SERVICES (3-col cards)  ─────────────────────── */
.feature-card {
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    padding: 36px 30px;
    height: 100%;
    transition: transform .45s var(--ease-out), box-shadow .35s var(--ease-soft), border-color .25s;
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brand), #FFA060);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .5s var(--ease-out);
}
.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--sh-3);
    border-color: transparent;
}
.feature-card:hover::before { transform: scaleX(1); }

.feature-card .icon-circle,
.feature-card .feature-icon {
    width: 72px; height: 72px;
    border-radius: 18px;
    background: var(--brand-soft);
    color: var(--brand);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    margin-bottom: 24px;
    transition: all .4s var(--ease-out);
}
.feature-card:hover .icon-circle,
.feature-card:hover .feature-icon {
    background: var(--brand);
    color: #fff;
    transform: rotate(-8deg) scale(1.05);
    box-shadow: var(--sh-glow);
}
.feature-card h3, .feature-card h4 {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1.32rem;
    color: var(--ink);
    margin: 0 0 12px;
    line-height: 1.25;
}
.feature-card p {
    color: var(--text);
    font-size: 0.96rem;
    line-height: 1.7;
    margin: 0 0 20px;
    flex-grow: 1;
}
.feature-card .arrow-link { margin-top: auto; align-self: flex-start; }
.feature-card.text-center { text-align: center; }
.feature-card.text-center .icon-circle,
.feature-card.text-center .feature-icon { margin-left: auto; margin-right: auto; }

/* Cover variant — service cards with image */
.feature-card.with-cover { padding: 0; }
.feature-card.with-cover .feature-cover {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--bg-3);
}
.feature-card.with-cover .feature-cover img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1s var(--ease-out);
}
.feature-card.with-cover:hover .feature-cover img { transform: scale(1.06); }
.feature-card.with-cover .feature-body { padding: 30px 30px 32px; flex-grow: 1; display: flex; flex-direction: column; }
.feature-card.with-cover .icon-circle {
    margin-top: -56px;
    margin-bottom: 20px;
    border: 4px solid #fff;
    background: var(--brand);
    color: #fff;
    z-index: 2; position: relative;
    box-shadow: var(--sh-1);
}

/* -------- EDUCATIONAL PRODUCTS (2-col)  ─────────────── */
.product-card {
    background: var(--bg);
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--sh-1);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform .5s var(--ease-out), box-shadow .35s var(--ease-soft);
}
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--sh-3);
}
.product-card .product-cover {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--ink);
}
.product-card .product-cover img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1.1s var(--ease-out);
}
.product-card:hover .product-cover img { transform: scale(1.05); }
.product-card .product-cover::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.45) 100%);
    pointer-events: none;
}
.product-card .product-cover i {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.85);
    font-size: 4rem;
}
.product-card .product-tag {
    position: absolute;
    top: 18px; left: 18px;
    z-index: 2;
    font-family: var(--font-head);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fff;
    background: var(--brand);
    padding: 6px 14px;
    border-radius: var(--r-pill);
}
.product-card .product-body {
    padding: 32px 32px 36px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.product-card .product-body h3 {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1.55rem;
    color: var(--ink);
    margin: 0 0 6px;
}
.product-card .tagline {
    font-size: 0.92rem;
    color: var(--brand);
    font-weight: 600;
    margin: 0 0 14px;
    text-transform: none;
}
.product-card .product-body p {
    color: var(--text);
    font-size: 0.96rem;
    line-height: 1.7;
    margin: 0 0 22px;
    flex-grow: 1;
}

/* -------- PROJECTS (3-col grid)  ─────────────────────── */
.project-card {
    background: var(--bg);
    border-radius: var(--r-md);
    overflow: hidden;
    box-shadow: var(--sh-1);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform .5s var(--ease-out), box-shadow .35s var(--ease-soft);
}
.project-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--sh-2);
}
.project-card .project-cover {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    position: relative;
    background: var(--bg-3);
}
.project-card .project-cover img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1.1s var(--ease-out);
}
.project-card:hover .project-cover img { transform: scale(1.06); }
.project-card .project-cover i {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    color: var(--mute-2);
    font-size: 3rem;
}
.project-card .project-body {
    padding: 24px 24px 26px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.project-card .project-body h4 {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--ink);
    margin: 8px 0 6px;
}
.project-card .project-body p {
    color: var(--text);
    font-size: 0.92rem;
    line-height: 1.65;
    margin: 0 0 16px;
    flex-grow: 1;
}
.project-card .project-body small {
    font-family: var(--font-head);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--brand) !important;
}

.text-accent-evrensoft { color: var(--brand); }
.text-primary-evrensoft { color: var(--ink); }

/* -------- STATS (parallax-style dark)  ────────────────── */
.section-primary {
    background: var(--ink);
    background-image:
        radial-gradient(circle at 20% 10%, rgba(255, 106, 31, 0.18), transparent 40%),
        radial-gradient(circle at 80% 90%, rgba(255, 106, 31, 0.12), transparent 50%);
    color: #fff;
    padding: 96px 0;
    position: relative;
}
.section-primary .section-head h2,
.section-primary .section-title { color: #fff; }
.section-primary .section-head .eyebrow,
.section-primary .section-kicker { color: var(--brand); }
.section-primary .section-head p,
.section-primary .section-subtitle { color: rgba(255,255,255,0.78); }

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin: 0;
}
.stats-row .stat {
    text-align: center;
    padding: 20px 16px;
    position: relative;
    max-width: 100%;
    flex: 0 0 auto;
}
.stats-row .stat:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 25%; height: 50%;
    width: 1px;
    background: rgba(255,255,255,0.14);
    display: block;
}
.stats-row .stat .value {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: clamp(2.4rem, 4.6vw, 3.6rem);
    color: #fff;
    line-height: 1;
    margin: 0 0 10px;
    letter-spacing: -0.018em;
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
}
.stats-row .stat .value .plus { color: var(--brand); font-weight: 700; }
.stats-row .stat .label {
    color: rgba(255,255,255,0.72);
    font-family: var(--font-head);
    font-size: 0.86rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

/* -------- CTA BAND  ───────────────────────────────────── */
.cta-band {
    background: linear-gradient(120deg, var(--brand) 0%, #FF8E4D 100%);
    color: #fff;
    border-radius: var(--r-lg);
    padding: 72px 56px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.18) 1px, transparent 1px);
    background-size: 26px 26px;
    opacity: 0.4;
    pointer-events: none;
}
.cta-band .eyebrow,
.cta-band .section-kicker {
    color: rgba(255,255,255,0.86);
    margin-bottom: 14px;
    display: inline-block;
}
.cta-band h2 {
    font-family: var(--font-head);
    font-weight: 800;
    color: #fff;
    font-size: clamp(2rem, 3.4vw, 2.6rem);
    line-height: 1.16;
    margin: 0 0 16px;
    letter-spacing: -0.015em;
}
.cta-band p {
    color: rgba(255,255,255,0.92);
    font-size: 1.05rem;
    margin: 0 0 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.cta-band .btn-evrensoft {
    background: var(--ink);
    border-color: var(--ink);
    color: #fff;
}
.cta-band .btn-evrensoft:hover {
    background: #fff;
    color: var(--ink);
    border-color: #fff;
}
.cta-band .btn-ghost-light {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.7);
}
.cta-band .btn-ghost-light:hover {
    background: #fff;
    color: var(--brand);
    border-color: #fff;
}

/* -------- FOOTER  ─────────────────────────────────────── */
.site-footer {
    background: var(--night);
    color: rgba(255,255,255,0.76);
    padding: 80px 0 28px;
}
.site-footer h5 {
    font-family: var(--font-head);
    font-weight: 700;
    color: #fff;
    font-size: 1.05rem;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 14px;
}
.site-footer h5::after {
    content: "";
    position: absolute;
    left: 0; bottom: 0;
    width: 32px; height: 2px;
    background: var(--brand);
}
.site-footer p, .site-footer li, .site-footer a {
    font-size: 0.94rem;
    line-height: 1.7;
}
.site-footer a {
    color: rgba(255,255,255,0.76);
    transition: color .25s var(--ease-soft);
}
.site-footer a:hover { color: var(--brand); }
.site-footer ul { padding: 0; margin: 0; list-style: none; }
.site-footer ul li { padding: 4px 0; }
.site-footer ul li a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color .25s var(--ease-soft), transform .25s var(--ease-out);
}
.site-footer ul li a::before {
    content: "›";
    color: var(--brand);
    font-weight: 700;
}
.site-footer ul li a:hover { transform: translateX(4px); }
.site-footer .social-links {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}
.site-footer .social-links a {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all .35s var(--ease-out);
}
.site-footer .social-links a:hover {
    background: var(--brand);
    border-color: var(--brand);
    color: #fff;
    transform: translateY(-3px);
}
.site-footer .footer-bottom {
    margin-top: 56px;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 0.86rem;
    color: rgba(255,255,255,0.55);
}

/* -------- COOKIE  ────────────────────────────────────── */
.cookie-consent {
    position: fixed;
    bottom: 24px;
    left: 24px;
    right: 24px;
    max-width: 540px;
    margin-left: auto;
    background: var(--ink);
    color: #fff;
    border-radius: var(--r-md);
    padding: 22px 26px;
    box-shadow: var(--sh-3);
    z-index: 1050;
    display: none;
}
.cookie-consent.show { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.cookie-consent p {
    margin: 0;
    font-size: 0.92rem;
    color: rgba(255,255,255,0.86);
    flex: 1 1 240px;
}
.cookie-consent a {
    color: var(--brand);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* -------- PAGE HEADER (sub-pages) ─────────────────────── */
.page-header {
    padding: 100px 0 80px;
    background: var(--ink);
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255, 106, 31, 0.22), transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 106, 31, 0.12), transparent 50%);
    color: #fff;
    text-align: center;
}
.page-header h1 {
    font-family: var(--font-head);
    font-weight: 800;
    color: #fff;
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    margin: 0 0 16px;
    letter-spacing: -0.02em;
}
.page-header .breadcrumb {
    margin: 0;
    background: transparent;
    padding: 0;
    justify-content: center;
    font-family: var(--font-head);
    font-size: 0.86rem;
    color: rgba(255,255,255,0.7);
}
.page-header .breadcrumb a { color: rgba(255,255,255,0.85); transition: color .25s; }
.page-header .breadcrumb a:hover { color: var(--brand); }
.page-header .breadcrumb-item.active { color: var(--brand); }
.page-header .breadcrumb-item + .breadcrumb-item::before { content: "/"; color: rgba(255,255,255,0.4); }

/* -------- FORMS ───────────────────────────────────────── */
.form-control, .form-select {
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: var(--r-sm);
    padding: 12px 16px;
    font-size: 0.95rem;
    color: var(--ink);
    transition: border-color .25s, box-shadow .25s;
}
.form-control:focus, .form-select:focus {
    outline: none;
    border-color: var(--brand);
    box-shadow: 0 0 0 4px rgba(255, 106, 31, 0.15);
    background: var(--bg);
}
.form-label {
    font-family: var(--font-head);
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 8px;
}

/* -------- CONTACT PAGE  ───────────────────────────────── */
.contact-section { padding: 100px 0 120px; background: var(--bg-2); position: relative; }
.contact-section::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(800px 360px at 100% 0%, rgba(255,106,31,0.08), transparent 60%),
        radial-gradient(700px 300px at 0% 90%, rgba(31,37,51,0.05), transparent 60%);
    pointer-events: none;
}
.contact-section .container { position: relative; }

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.7fr);
    gap: 32px;
    align-items: stretch;
    margin-top: 48px;
}

/* Info side (sidebar) */
.contact-info-card {
    background: linear-gradient(160deg, var(--ink) 0%, #2a3040 100%);
    color: rgba(255,255,255,0.82);
    border-radius: var(--r-lg);
    padding: 44px 36px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 18px 50px rgba(31,37,51,0.18);
}
.contact-info-card::before {
    content: '';
    position: absolute;
    width: 280px; height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,106,31,0.22) 0%, transparent 70%);
    top: -120px; right: -90px;
    pointer-events: none;
}
.contact-info-card::after {
    content: '';
    position: absolute;
    width: 180px; height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,106,31,0.12) 0%, transparent 70%);
    bottom: -80px; left: -60px;
    pointer-events: none;
}
.contact-info-card .info-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-head);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--brand);
    margin-bottom: 16px;
    position: relative; z-index: 1;
}
.contact-info-card .info-eyebrow::before {
    content: '';
    width: 28px; height: 2px;
    background: var(--brand);
    border-radius: 2px;
}
.contact-info-card h3 {
    font-family: var(--font-head);
    font-size: clamp(1.5rem, 2.4vw, 1.9rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin: 0 0 14px 0;
    position: relative; z-index: 1;
}
.contact-info-card .info-lead {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 36px;
    position: relative; z-index: 1;
}
.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
    position: relative; z-index: 1;
}
.contact-info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.contact-info-item .ic {
    flex-shrink: 0;
    width: 46px; height: 46px;
    border-radius: 12px;
    background: rgba(255,106,31,0.16);
    border: 1px solid rgba(255,106,31,0.32);
    color: var(--brand);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
}
.contact-info-item .info-label {
    display: block;
    font-family: var(--font-head);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    margin-bottom: 4px;
}
.contact-info-item .info-value {
    color: #fff;
    font-size: 0.97rem;
    line-height: 1.55;
    margin: 0;
}
.contact-info-item .info-value a {
    color: #fff;
    text-decoration: none;
    transition: color .25s;
}
.contact-info-item .info-value a:hover { color: var(--brand); }

.contact-info-divider {
    height: 1px;
    background: rgba(255,255,255,0.08);
    margin: 32px 0 24px;
    position: relative; z-index: 1;
}

.contact-socials {
    display: flex;
    gap: 10px;
    position: relative; z-index: 1;
}
.contact-socials a {
    width: 40px; height: 40px;
    border-radius: 10px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all .25s var(--ease-soft);
}
.contact-socials a:hover {
    background: var(--brand);
    border-color: var(--brand);
    transform: translateY(-2px);
}

/* Form side */
.contact-form-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: 44px 44px 40px;
    box-shadow: 0 18px 50px rgba(31,37,51,0.06);
    position: relative;
}
.contact-form-card .form-head {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--line);
}
.contact-form-card .form-head .eyebrow {
    font-family: var(--font-head);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--brand);
}
.contact-form-card .form-head h2 {
    font-family: var(--font-head);
    font-size: clamp(1.6rem, 2.6vw, 2.05rem);
    font-weight: 700;
    color: var(--ink);
    line-height: 1.2;
    margin: 0;
}
.contact-form-card .form-head p {
    color: var(--mute);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}
.contact-form-card .form-label {
    font-family: var(--font-head);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--ink);
    margin-bottom: 8px;
    text-transform: none;
}
.contact-form-card .form-label.required::after {
    content: ' *';
    color: var(--brand);
}
.contact-form-card .form-control {
    background: #fafbfc;
    border: 1.5px solid var(--line);
    border-radius: 12px;
    padding: 14px 18px;
    font-size: 0.95rem;
    transition: all .25s var(--ease-soft);
}
.contact-form-card .form-control:focus {
    background: #fff;
    border-color: var(--brand);
    box-shadow: 0 0 0 4px rgba(255,106,31,0.12);
}
.contact-form-card .form-control::placeholder { color: rgba(31,37,51,0.35); }
.contact-form-card textarea.form-control { min-height: 150px; resize: vertical; }
.contact-form-card .form-check { padding-left: 2em; }
.contact-form-card .form-check-input {
    width: 1.2em; height: 1.2em;
    margin-left: -2em;
    margin-top: 0.18em;
    border: 1.5px solid var(--line);
    cursor: pointer;
}
.contact-form-card .form-check-input:checked {
    background-color: var(--brand);
    border-color: var(--brand);
}
.contact-form-card .form-check-input:focus {
    box-shadow: 0 0 0 4px rgba(255,106,31,0.15);
    border-color: var(--brand);
}
.contact-form-card .form-check-label { font-size: 0.92rem; color: var(--text); line-height: 1.55; }
.contact-form-card .form-check-label a { color: var(--brand); text-decoration: none; font-weight: 600; }
.contact-form-card .form-check-label a:hover { text-decoration: underline; }
.contact-form-card .alert-success {
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    color: #065f46;
    border-radius: 12px;
    padding: 14px 18px;
    margin-bottom: 24px;
}
.contact-form-card .alert-danger {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
    border-radius: 12px;
}

/* Map */
.contact-map {
    margin-top: 48px;
    border-radius: var(--r-lg);
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: 0 18px 50px rgba(31,37,51,0.06);
}
.contact-map iframe { display: block; width: 100%; height: 420px; border: 0; }

/* Responsive */
@media (max-width: 991.98px) {
    .contact-grid { grid-template-columns: 1fr; gap: 24px; }
    .contact-info-card,
    .contact-form-card { padding: 36px 28px; }
    .contact-section { padding: 80px 0 100px; }
}
@media (max-width: 575.98px) {
    .contact-info-card,
    .contact-form-card { padding: 32px 22px; border-radius: var(--r-md); }
    .contact-form-card .form-head { margin-bottom: 24px; padding-bottom: 18px; }
    .contact-map iframe { height: 320px; }
}

/* -------- LANGUAGE SWITCHER  ──────────────────────────── */
.lang-switcher {
    display: inline-flex;
    gap: 4px;
    align-items: center;
}
.lang-switcher button {
    background: transparent;
    border: none;
    color: rgba(255,255,255,0.6);
    font-family: var(--font-head);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: var(--r-sm);
    cursor: pointer;
    transition: all .25s var(--ease-soft);
}
.lang-switcher button.active {
    color: var(--brand);
    background: rgba(255, 106, 31, 0.12);
}
.lang-switcher button:hover { color: var(--brand); }

/* -------- REVEAL ANIMATIONS  ──────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
    will-change: opacity, transform;
}
.reveal.is-visible,
.reveal.in {
    opacity: 1;
    transform: translateY(0);
}
.reveal.delay-1 { transition-delay: .1s; }
.reveal.delay-2 { transition-delay: .2s; }
.reveal.delay-3 { transition-delay: .3s; }
.reveal.delay-4 { transition-delay: .4s; }

/* -------- UTILITIES  ──────────────────────────────────── */
.divider-rule { height: 1px; background: var(--line); margin: 48px 0; }
.text-mute { color: var(--mute); }
.text-soft { color: var(--text); }

/* -------- RESPONSIVE  ─────────────────────────────────── */
@media (max-width: 1199.98px) {
    .trust-row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 991.98px) {
    body { padding-top: 76px; }
    .topbar { display: none; }
    .navbar-evrensoft { top: 0; padding: 12px 0; }
    .navbar-evrensoft .brand-logo { width: 64px; }
    .navbar-evrensoft.scrolled .brand-logo { width: 56px; }
    .navbar-evrensoft .nav-link { padding: 10px 0 !important; }
    .navbar-evrensoft .nav-link::after { left: 0; right: 0; }

    section { padding: 70px 0; }
    .section-head { margin-bottom: 48px; }

    .hero, .hero-slide {
        min-height: calc(100vh - 76px);
        padding: 100px 0 80px;
    }

    .stats-row { grid-template-columns: repeat(2, 1fr); }
    .stats-row .stat:nth-child(2)::after { display: none; }

    .cta-band { padding: 60px 32px; }
}

@media (max-width: 575.98px) {
    .container { padding-left: 18px; padding-right: 18px; }
    .hero-title { font-size: clamp(2rem, 9vw, 2.8rem); }
    .hero-eyebrow { font-size: 0.7rem; padding: 6px 14px; }
    .hero-sub { font-size: 1rem; }
    .trust-row { grid-template-columns: 1fr; }
    .stats-row { grid-template-columns: 1fr; gap: 8px; }
    .stats-row .stat::after { display: none !important; }
    .product-card .product-body, .feature-card { padding: 26px 22px; }
}

@media print {
    .topbar, nav, footer, .cookie-consent, .hero-scroll { display: none !important; }
    body { background: #fff; color: #000; padding-top: 0; }
}
