:root {
    --navy: #2f4356;
    --navy-2: #3d5870;
    --navy-3: #56738d;

    --orange: #d7a43b;
    --orange-dark: #bd8b28;

    --cream: #f8f7f4;
    --ice: #eef2f5;

    --text: #243342;
    --muted: #6f7c88;
    --line: #dce3e8;

    --white: #ffffff;

    --shadow: 0 24px 70px rgba(47, 67, 86, 0.14);

    --radius: 22px;
    --container: 1280px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

body,
button,
input,
textarea,
select {
    font-family: 'Manrope', sans-serif;
}

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

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

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

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

/* ============================================================
   TOP BAR
============================================================ */

.site-topbar {
    background: #05152e;
    color: rgba(255, 255, 255, 0.82);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar-inner {
    min-height: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.topbar-inner > span {
    text-transform: uppercase;
}

.topbar-inner a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #f8c34f;
}

.topbar-inner i {
    font-size: 14px;
}

/* ============================================================
   HEADER
============================================================ */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(7, 28, 59, 0.07);
    transition: box-shadow 0.3s ease, background 0.3s ease;
    backdrop-filter: blur(16px);
}

.site-header.is-scrolled {
    box-shadow: 0 12px 35px rgba(7, 28, 59, 0.09);
}

.header-inner {
    min-height: 84px;
    display: grid;
    grid-template-columns: 210px 1fr auto;
    align-items: center;
    gap: 28px;
}

.brand img {
    width: 175px;
    max-height: 100%;
    object-fit: contain;
    object-position: left center;
}

.desktop-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.desktop-menu a {
    position: relative;
    padding: 30px 0;
    color: #263850;
    font-size: 15px;
    font-weight: 700;
    white-space: nowrap;
}

.desktop-menu a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 22px;
    width: 0;
    height: 2px;
    background: var(--orange);
    transition: width 0.25s ease;
}

.desktop-menu a:hover::after {
    width: 100%;
}

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

.header-icon,
.menu-toggle {
    width: 46px;
    height: 46px;
    border: 1px solid var(--line);
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    color: var(--navy);
    font-size: 19px;
}

.menu-toggle {
    padding: 0;
}

/* ============================================================
   BUTTONS
============================================================ */

.btn-site {
    min-height: 50px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 9px;
    display: inline-flex;
    align-items: center;
    gap: 11px;
    font-size: 15px;
    font-weight: 800;
    line-height: 1;
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

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

.btn-site-primary {
    background: var(--orange);
    color: var(--navy);
}

.btn-site-primary:hover {
    background: #ffb20a;
    color: var(--navy);
}

.btn-site-dark {
    background: var(--navy);
    color: var(--white);
}

.btn-site-dark:hover {
    background: var(--navy-2);
    color: var(--white);
}

.btn-site-soft {
    background: rgba(255, 255, 255, 0.58);
    border-color: rgba(7, 28, 59, 0.12);
    color: var(--navy);
}

.btn-site-outline-light {
    border-color: rgba(255, 255, 255, 0.34);
    color: var(--white);
    background: rgba(255, 255, 255, 0.06);
}

.btn-site-outline-light:hover {
    border-color: var(--white);
    background: var(--white);
    color: var(--navy);
}

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

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

.hero-grid-bg,
.project-grid-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.16;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.16) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(to right, #000 0%, rgba(0, 0, 0, 0.65) 55%, transparent 100%);
}

.hero-layout {
    position: relative;
    z-index: 2;
    min-height: 610px;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 62px;
    padding-top: 68px;
    padding-bottom: 70px;
}

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

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 17px;
    color: #e7eef8;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.4;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.eyebrow-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--orange);
    box-shadow: 0 0 0 6px rgba(245, 164, 0, 0.13);
}

.eyebrow-dark {
    color: #b47700;
}

.eyebrow-light {
    color: #f7c75d;
}

.hero-title {
    max-width: 720px;
    margin: 0;
    font-size: clamp(44px, 6vw, 56px);
    line-height: 0.98;
    letter-spacing: -0.055em;
    font-weight: 800;
}

.hero-title span {
    color: var(--orange);
}

.hero-text {
    max-width: 585px;
    margin: 28px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 17px;
    line-height: 1.75;
}

.hero-buttons {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-stats {
    max-width: 560px;
    margin-top: 42px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.hero-stat {
    min-height: 70px;
    padding: 0 22px;
    border-right: 1px solid rgba(255, 255, 255, 0.14);
}

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

.hero-stat:last-child {
    border-right: 0;
}

.hero-stat strong {
    display: block;
    color: var(--orange);
    font-size: 27px;
    line-height: 1.1;
    font-weight: 800;
}

.hero-stat span {
    display: block;
    margin-top: 7px;
    color: rgba(255, 255, 255, 0.66);
    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;
}

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

.hero-media > img {
    width: 100%;
    height: 470px;
    border-radius: 24px;
    object-fit: cover;
    box-shadow: 0 34px 70px rgba(0, 0, 0, 0.28);
}

.hero-media-badge {
    position: absolute;
    left: 18px;
    bottom: 18px;
    max-width: 315px;
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 13px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(7, 28, 59, 0.88);
    backdrop-filter: blur(12px);
}

.badge-icon {
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: var(--orange);
    color: var(--navy);
    font-size: 18px;
}

.hero-media-badge strong {
    display: block;
    font-size: 15px;
    line-height: 1.35;
}

.hero-media-badge small {
    display: block;
    margin-top: 2px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 13px;
    line-height: 1.45;
}

.energy-chip {
    position: absolute;
    top: 20px;
    right: -18px;
    min-width: 170px;
    padding: 14px 16px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    color: var(--navy);
    box-shadow: var(--shadow);
}

.energy-chip > i {
    color: var(--orange);
    font-size: 27px;
}

.energy-chip small,
.energy-chip strong {
    display: block;
}

.energy-chip small {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.3;
}

.energy-chip strong {
    margin-top: 2px;
    font-size: 17px;
    line-height: 1.2;
}

.hero-service-strip {
    position: relative;
    z-index: 3;
    background: var(--white);
    color: var(--navy);
}

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

.strip-item {
    min-height: 72px;
    border-right: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 800;
}

.strip-item:first-child {
    border-left: 1px solid var(--line);
}

.strip-item i {
    color: var(--orange);
    font-size: 19px;
}

/* ============================================================
   TYPOGRAPHY / GENERAL
============================================================ */

.section-space {
    padding: 55px 0;
}

.section-heading-row {
    margin-bottom: 40px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
}

.section-title {
    max-width: 830px;
    margin: 0;
    color: var(--navy);
    font-size: clamp(40px, 4.5vw, 61px);
    line-height: 1.03;
    letter-spacing: -0.045em;
    font-weight: 800;
}

.section-title span {
    color: var(--orange-dark);
}

.section-title-light {
    color: var(--white);
}

.section-title-light span {
    color: var(--orange);
}

.text-link,
.card-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--navy);
    font-size: 15px;
    font-weight: 800;
}

.text-link {
    padding-bottom: 5px;
    border-bottom: 1px solid #c9d3df;
}

/* ============================================================
   FEATURED PRODUCTS
============================================================ */

.products-featured {
    background: var(--cream);
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.featured-card {
    overflow: hidden;
    border: 1px solid #dfe4ea;
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 16px 50px rgba(7, 28, 59, 0.05);
}

.featured-image {
    position: relative;
    overflow: hidden;
    height: 340px;
}

.featured-image img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.2, 0.65, 0.2, 1);
}

.featured-card:hover .featured-image img {
    transform: scale(1.045);
}

.number-pill {
    position: absolute;
    z-index: 2;
    top: 18px;
    left: 18px;
    min-width: 41px;
    height: 31px;
    padding: 0 10px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--navy);
    color: var(--white);
    font-size: 13px;
    font-weight: 800;
}

.featured-body {
    padding: 28px;
}

.featured-body h3 {
    margin: 0;
    color: var(--navy);
    font-size: 22px;
    line-height: 1.25;
    font-weight: 800;
}

.featured-body > p {
    margin: 10px 0 22px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.7;
}

.spec-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 18px;
    margin-bottom: 22px;
}

.spec-grid span {
    position: relative;
    display: flex;
    gap: 8px;
    color: #526076;
    font-size: 14px;
    line-height: 1.45;
    font-weight: 600;
}

.spec-grid i {
    color: var(--orange-dark);
    font-size: 16px;
}

.card-link {
    font-size: 15px;
}

/* ============================================================
   PROCESS
============================================================ */

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

.process-layout {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 72px;
    align-items: center;
}

.process-intro > p {
    max-width: 530px;
    margin: 22px 0 28px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.75;
}

.process-list {
    display: grid;
    gap: 14px;
}

.process-item {
    position: relative;
    min-height: 108px;
    padding: 22px 78px 22px 22px;
    border: 1px solid #dbe3ec;
    border-radius: 16px;
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 17px;
    align-items: center;
    background: var(--white);
    box-shadow: 0 8px 25px rgba(7, 28, 59, 0.04);
}

.process-icon {
    width: 54px;
    height: 54px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: var(--navy);
    color: var(--orange);
    font-size: 22px;
}

.process-item-copy h3 {
    margin: 0;
    color: var(--navy);
    font-size: 18px;
    line-height: 1.35;
    font-weight: 800;
}

.process-item-copy p {
    margin: 5px 0 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.55;
}

.process-number {
    position: absolute;
    top: 50%;
    right: 22px;
    transform: translateY(-50%);
    color: #dce2ea;
    font-size: 24px;
    line-height: 1;
    font-weight: 800;
}

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

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

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 74px;
    align-items: center;
}

.about-visual {
    position: relative;
    padding: 0 30px 40px 0;
}

.about-image-main {
    overflow: hidden;
    border-radius: 24px;
}

.about-image-main img {
    height: 560px;
    object-fit: cover;
}

.about-floating-card {
    position: absolute;
    right: 0;
    bottom: 0;
    width: min(320px, 78%);
    padding: 22px;
    border-radius: 16px;
    background: var(--orange);
    color: var(--navy);
    box-shadow: var(--shadow);
}

.about-floating-card strong {
    display: block;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 800;
}

.about-floating-card span {
    display: block;
    margin-top: 6px;
    font-size: 15px;
    line-height: 1.55;
    font-weight: 600;
}

.lead-copy {
    margin: 22px 0 30px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.8;
}

.benefit-list {
    display: grid;
    gap: 20px;
}

.benefit-item {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 16px;
    align-items: start;
}

.benefit-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: #fff5da;
    color: var(--orange-dark);
    font-size: 21px;
}

.benefit-item h3 {
    margin: 0;
    color: var(--navy);
    font-size: 18px;
    line-height: 1.35;
    font-weight: 800;
}

.benefit-item p {
    margin: 5px 0 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.6;
}

/* ============================================================
   APPLICATIONS
============================================================ */

.application-section {
    background: var(--cream);
}

.application-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.application-card {
    position: relative;
    min-height: 440px;
    overflow: hidden;
    border-radius: var(--radius);
    color: var(--white);
}

.application-card > img {
    position: absolute;
    inset: 0;
    height: 100%;
    object-fit: cover;
    transition: transform 0.75s cubic-bezier(0.2, 0.65, 0.2, 1);
}

.application-card:hover > img {
    transform: scale(1.05);
}

.application-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 28, 59, 0.08) 15%, rgba(7, 28, 59, 0.9) 100%);
}

.application-content {
    position: absolute;
    z-index: 2;
    left: 30px;
    right: 30px;
    bottom: 28px;
}

.application-label {
    margin-bottom: 10px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ffd269;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.application-content h3 {
    margin: 0;
    font-size: 25px;
    line-height: 1.2;
    font-weight: 800;
}

.application-content p {
    max-width: 570px;
    margin: 10px 0 0;
    color: rgba(255, 255, 255, 0.74);
    font-size: 15px;
    line-height: 1.65;
}

/* ============================================================
   MARKET
============================================================ */

.market-section {
    background: #0a2246;
    color: var(--white);
}

.market-head {
    margin-bottom: 42px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 60px;
}

.market-head > p {
    max-width: 390px;
    margin: 0 0 5px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 16px;
    line-height: 1.7;
}

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

.market-card {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 18px;
    background: #ffffff;
    color: var(--navy);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.market-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.market-image {
    position: relative;
    height: 245px;
    overflow: hidden;
    background: #dde7ef;
}

.market-image img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
}

.market-card:hover .market-image img {
    transform: scale(1.05);
}

.market-badge {
    position: absolute;
    z-index: 2;
    top: 14px;
    left: 14px;
    padding: 7px 10px;
    border-radius: 999px;
    background: var(--orange);
    color: var(--navy);
    font-size: 13px;
    line-height: 1;
    font-weight: 800;
}

.market-body {
    padding: 21px;
}

.market-category {
    color: #a76f00;
    font-size: 13px;
    line-height: 1.4;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.market-body h3 {
    min-height: 50px;
    margin: 8px 0 15px;
    font-size: 19px;
    line-height: 1.35;
    font-weight: 800;
}

.market-meta {
    min-height: 48px;
    padding: 12px 0;
    border-top: 1px solid #e6ebf1;
    border-bottom: 1px solid #e6ebf1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
}

.market-footer {
    margin-top: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.market-footer strong {
    font-size: 21px;
    line-height: 1.2;
    font-weight: 800;
}

.market-footer a {
    width: 42px;
    height: 42px;
    border-radius: 11px;
    display: grid;
    place-items: center;
    background: var(--navy);
    color: var(--white);
    font-size: 18px;
}

/* ============================================================
   PROJECT FLOW
============================================================ */

.project-flow {
    position: relative;
    overflow: hidden;
    padding: 92px 0 86px;
    background: var(--navy);
    color: var(--white);
}

.project-flow > .site-container {
    position: relative;
    z-index: 2;
}

.project-flow-head h2 {
    max-width: 720px;
    margin: 0;
    font-size: clamp(40px, 4vw, 58px);
    line-height: 1.04;
    letter-spacing: -0.045em;
    font-weight: 800;
}

.project-flow-head h2 span {
    color: var(--orange);
}

.flow-steps {
    margin-top: 55px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.flow-step {
    min-height: 110px;
    padding: 22px 26px 10px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-right: 1px solid rgba(255, 255, 255, 0.10);
}

.flow-step + .flow-step {
    padding-left: 26px;
}

.flow-step:last-child {
    border-right: 0;
}

.flow-step span {
    display: block;
    color: var(--orange);
    font-size: 15px;
    font-weight: 800;
}

.flow-step strong {
    display: block;
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 15px;
    line-height: 1.45;
    font-weight: 700;
}

/* ============================================================
   CTA
============================================================ */

.cta-band {
    background: var(--orange);
    color: var(--navy);
}

.cta-inner {
    min-height: 128px;
    padding-top: 24px;
    padding-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 42px;
}

.cta-inner > div:first-child > span {
    display: block;
    margin-bottom: 4px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.cta-inner h2 {
    margin: 0;
    font-size: clamp(27px, 3vw, 39px);
    line-height: 1.15;
    letter-spacing: -0.035em;
    font-weight: 800;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

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

.site-footer {
    padding: 68px 0 24px;
    background: #2d4155;;
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.35fr 0.8fr 0.85fr 1fr;
    gap: 52px;
}

.footer-brand img {
    width: 180px;
    padding: 7px 10px;
    border-radius: 8px;
    background: var(--white);
}

.footer-brand p {
    max-width: 390px;
    margin: 20px 0 0;
    color: rgba(255, 255, 255, 0.55);
    font-size: 15px;
    line-height: 1.75;
}

.footer-col h3 {
    margin: 0 0 18px;
    color: #f7c75d;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.footer-col a,
.footer-col span {
    display: block;
    margin: 10px 0;
    color: rgba(255, 255, 255, 0.67);
    font-size: 15px;
    line-height: 1.55;
    font-weight: 600;
}

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

.footer-bottom {
    margin-top: 54px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    color: rgba(255, 255, 255, 0.42);
    font-size: 13px;
    font-weight: 600;
}

/* ============================================================
   MOBILE MENU
============================================================ */

.mobile-offcanvas {
    width: min(390px, 92vw) !important;
}

.mobile-offcanvas .offcanvas-header {
    padding: 22px;
    border-bottom: 1px solid var(--line);
}

.mobile-offcanvas .offcanvas-header img {
    width: 160px;
}

.mobile-offcanvas .offcanvas-body {
    padding: 22px;
}

.mobile-nav {
    display: grid;
}

.mobile-nav a {
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
    color: var(--navy);
    font-size: 17px;
    font-weight: 800;
}

/* ============================================================
   RESPONSIVE
============================================================ */

@media (max-width: 1199px) {
    .header-inner {
        grid-template-columns: 180px 1fr auto;
    }

    .desktop-menu {
        gap: 20px;
    }

    .desktop-menu a {
        font-size: 14px;
    }

    .hero-layout {
        gap: 38px;
    }

    .hero-media > img {
        height: 430px;
    }

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

    .market-image {
        height: 300px;
    }
}

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

    .desktop-menu {
        display: none;
    }

    .header-inner {
        min-height: 74px;
        grid-template-columns: 1fr auto;
    }

    .hero-layout {
        min-height: auto;
        grid-template-columns: 1fr;
        padding-top: 62px;
        padding-bottom: 60px;
    }

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

    .hero-media > img {
        height: 500px;
    }

    .energy-chip {
        right: 16px;
    }

    .process-layout,
    .about-layout {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .process-intro {
        max-width: 720px;
    }

    .about-visual {
        max-width: 760px;
    }

    .flow-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
    }

    .flow-step:nth-child(2) {
        border-right: 0;
    }

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

    .cta-inner {
        align-items: flex-start;
        flex-direction: column;
        gap: 22px;
    }

    .cta-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 767px) {
    
    
    .hero-live {
    position: absolute;

    top: 14px;
    right: 14px;

    width: 245px;
    padding: 16px;
}

.live-head {
    margin-bottom: 15px;
}

.live-head > span {
    font-size: 11px;
}

.live-value strong {
    font-size: 26px;
}

.live-value small {
    font-size: 12px;
}

.sun-circle {
    width: 48px;
    height: 48px;
    flex-basis: 48px;

    font-size: 20px;
}

.live-bars {
    height: 40px;
    margin-top: 15px;
}


    body {
        font-size: 16px;
    }

    .site-container {
        width: calc(100% - 28px);
    }

    .site-topbar {
        display: none;
    }

    .brand img {
        width: 150px;
    }

    .header-icon {
        display: none;
    }

    .hero-layout {
        padding-top: 52px;
        padding-bottom: 46px;
    }

    .eyebrow {
        font-size: 13px;
        letter-spacing: 0.055em;
    }

    .hero-title {
        font-size: clamp(43px, 13vw, 60px);
        line-height: 1;
    }

    .hero-text {
        font-size: 16px;
    }

    .hero-buttons {
        align-items: stretch;
        flex-direction: column;
    }

    .hero-buttons .btn-site {
        justify-content: center;
    }

    .hero-stats {
        gap: 0;
    }

    .hero-stat {
        padding: 0 12px;
    }

    .hero-stat strong {
        font-size: 23px;
    }

    .hero-stat span {
        font-size: 13px;
    }

    .hero-media > img {
        height: 380px;
        border-radius: 18px;
    }

    .hero-media-badge {
        left: 12px;
        right: 12px;
        bottom: 12px;
        max-width: none;
    }

    .energy-chip {
        display: none;
    }

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

    .strip-item {
        min-height: 58px;
        justify-content: flex-start;
        padding: 0 18px;
        border: 0;
        border-bottom: 1px solid var(--line);
    }

    .strip-item:first-child {
        border-left: 0;
    }

    .section-space {
        padding: 76px 0;
    }

    .section-heading-row {
        margin-bottom: 30px;
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
    }

    .section-title {
        font-size: clamp(36px, 10vw, 48px);
        line-height: 1.05;
    }

    .featured-grid,
    .application-grid {
        grid-template-columns: 1fr;
    }

    .featured-image {
        height: 300px;
    }

    .featured-body {
        padding: 22px;
    }

    .featured-body h3 {
        font-size: 21px;
    }

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

    .process-item {
        padding: 20px;
        grid-template-columns: 48px 1fr;
    }

    .process-icon {
        width: 48px;
        height: 48px;
    }

    .process-number {
        display: none;
    }

    .about-visual {
        padding: 0 0 36px;
    }

    .about-image-main img {
        height: 420px;
    }

    .about-floating-card {
        right: 16px;
        width: calc(100% - 32px);
    }

    .application-card {
        min-height: 390px;
    }

    .market-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
    }

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

    .market-image {
        height: 310px;
    }

    .project-flow {
        padding: 72px 0;
    }

    .flow-steps {
        grid-template-columns: 1fr;
    }

    .flow-step,
    .flow-step + .flow-step {
        padding: 20px 0;
        border-right: 0;
    }

    .cta-band {
        padding: 12px 0;
    }

    .cta-actions {
        width: 100%;
        flex-direction: column;
    }

    .cta-actions .btn-site {
        justify-content: center;
    }

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

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

@media (max-width: 430px) {
    .hero-title {
        font-size: 43px;
    }

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

    .hero-stat,
    .hero-stat:first-child {
        min-height: auto;
        padding: 0 0 16px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.13);
    }

    .hero-stat:last-child {
        padding-bottom: 0;
        border-bottom: 0;
    }

    .featured-image,
    .market-image {
        height: 270px;
    }

    .application-content {
        left: 20px;
        right: 20px;
        bottom: 20px;
    }
}

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

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


/* ============================================================
   HERO CANLI ENERJİ
============================================================ */

.hero-live {
    position: absolute;
    z-index: 6;
    top: 20px;
    right: -18px;

    width: 290px;
    padding: 20px;

    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 16px;

    background: rgba(7, 28, 59, 0.90);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(15px);

    color: #fff;
}


/* üst kısım */

.live-head {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 20px;
}

.live-head > span {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .06em;
}


/* aktif durumu */

.live-status {
    display: flex;
    align-items: center;
    gap: 7px;

    color: #ffc44d;
}

.live-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;
    background: var(--orange);

    box-shadow: 0 0 0 5px rgba(245, 164, 0, 0.12);

    animation: livePulse 1.6s infinite;
}


/* orta alan */

.live-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.live-value strong {
    display: block;

    font-size: 32px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -1.5px;
}

.live-value small {
    display: block;

    margin-top: 7px;

    color: rgba(255, 255, 255, 0.60);

    font-size: 13px;
    line-height: 1.4;
}


/* güneş */

.sun-circle {
    width: 56px;
    height: 56px;

    flex: 0 0 56px;

    border: 1px solid rgba(245, 164, 0, 0.28);
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(245, 164, 0, 0.08);
    color: var(--orange);

    font-size: 23px;

    box-shadow: 0 0 30px rgba(245, 164, 0, 0.08);
}


/* grafik */

.live-bars {
    height: 53px;

    margin-top: 20px;

    display: flex;
    align-items: flex-end;
    gap: 5px;
}

.live-bars span {
    flex: 1;

    border-radius: 3px 3px 0 0;

    background: rgba(245, 164, 0, 0.25);
}

.live-bars span:nth-child(1)  { height: 22%; }
.live-bars span:nth-child(2)  { height: 34%; }
.live-bars span:nth-child(3)  { height: 46%; }
.live-bars span:nth-child(4)  { height: 39%; }
.live-bars span:nth-child(5)  { height: 60%; }
.live-bars span:nth-child(6)  { height: 74%; }
.live-bars span:nth-child(7)  {
    height: 92%;
    background: var(--orange);
}
.live-bars span:nth-child(8)  { height: 70%; }
.live-bars span:nth-child(9)  { height: 53%; }
.live-bars span:nth-child(10) { height: 38%; }


@keyframes livePulse {

    0% {
        box-shadow: 0 0 0 0 rgba(245, 164, 0, 0.50);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(245, 164, 0, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(245, 164, 0, 0, 0);
    }

}

/* ============================================================
   SOLAR MARQUEE
============================================================ */

.solar-marquee {
    position: relative;
    overflow: hidden;

    width: 100%;

    background: var(--navy);
    border-top: 1px solid rgba(255,255,255,.08);
    border-bottom: 1px solid rgba(255,255,255,.08);
}


/* kenarlarda hafif kararma */

.solar-marquee::before,
.solar-marquee::after {
    content: "";

    position: absolute;
    z-index: 3;

    top: 0;
    bottom: 0;

    width: 100px;

    pointer-events: none;
}

.solar-marquee::before {
    left: 0;

    background: linear-gradient(
        90deg,
        var(--navy),
        rgba(7, 28, 59, 0)
    );
}

.solar-marquee::after {
    right: 0;

    background: linear-gradient(
        -90deg,
        var(--navy),
        rgba(7, 28, 59, 0)
    );
}


/* kayan ana alan */

.solar-marquee-track {
    width: max-content;

    display: flex;

    animation: solarMarquee 30s linear infinite;
}


/* grup */

.solar-marquee-group {
    display: flex;
    align-items: center;
    flex-shrink: 0;

    padding: 20px 0;
}


/* her yazı */

.solar-marquee-item {
    position: relative;

    display: inline-flex;
    align-items: center;

    gap: 10px;

    padding: 0 30px;

    white-space: nowrap;

    color: rgba(255,255,255,.78);

    font-size: 15px;
    line-height: 1;
    font-weight: 700;
}


/* ayırıcı nokta */

.solar-marquee-item::after {
    content: "";

    position: absolute;

    right: -3px;
    top: 50%;

    width: 6px;
    height: 6px;

    transform: translateY(-50%);

    border-radius: 50%;

    background: var(--orange);
}


/* ikon */

.solar-marquee-item i {
    color: var(--orange);

    font-size: 18px;
}


/* hover olunca biraz yavaş his versin */

.solar-marquee:hover .solar-marquee-track {
    animation-play-state: paused;
}


/* animasyon */

@keyframes solarMarquee {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }

}


/* mobil */

@media (max-width: 767px) {

    .solar-marquee::before,
    .solar-marquee::after {
        width: 45px;
    }

    .solar-marquee-group {
        padding: 17px 0;
    }

    .solar-marquee-item {
        padding: 0 22px;

        font-size: 14px;
    }

    .solar-marquee-item i {
        font-size: 17px;
    }

    .solar-marquee-track {
        animation-duration: 24s;
    }

}


/* ============================================================
   ENERJİ AKIŞI
============================================================ */

.energy-flow-section {
    position: relative;
    overflow: hidden;

    padding: 110px 0 120px;

    background: var(--navy);
    color: #fff;
}


/* grid dokusu */

.energy-flow-section::before {
    content: "";

    position: absolute;
    inset: 0;

    opacity: .12;

    background-image:
        linear-gradient(
            rgba(255,255,255,.13) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.13) 1px,
            transparent 1px
        );

    background-size: 42px 42px;

    pointer-events: none;
}


.energy-flow-section .site-container {
    position: relative;
    z-index: 2;
}


/* BAŞLIK */

.energy-flow-head {
    max-width: 780px;

    margin-bottom: 75px;
}


.energy-flow-head h2 {
    margin: 0;

    font-size: clamp(42px, 4.5vw, 62px);
    line-height: 1.04;

    letter-spacing: -.045em;

    font-weight: 800;
}


.energy-flow-head h2 span {
    display: block;

    color: var(--orange);
}


.energy-flow-head > p {
    max-width: 650px;

    margin: 22px 0 0;

    color: rgba(255,255,255,.65);

    font-size: 16px;
    line-height: 1.8;
}


/* AKIŞ */

.energy-flow-system {
    position: relative;

    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 40px;
}


/* yatay çizgi */

.energy-flow-line {
    position: absolute;

    z-index: 0;

    top: 69px;
    left: 10%;

    width: 80%;
    height: 2px;

    overflow: hidden;

    background: rgba(255,255,255,.12);
}


.energy-flow-progress {
    width: 0;
    height: 100%;

    background: linear-gradient(
        90deg,
        #ffd56e,
        var(--orange)
    );

    box-shadow:
        0 0 18px rgba(245,164,0,.7);
}


/* ITEM */

.energy-flow-item {
    position: relative;

    z-index: 2;

    text-align: center;
}


/* İKON */

.energy-flow-icon {
    position: relative;

    width: 140px;
    height: 140px;

    margin: 0 auto 28px;

    border: 1px solid rgba(255,255,255,.15);
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

      background: #d7a43b;
    color: #ffffff;
    font-size: 38px;

    box-shadow:
        0 20px 45px rgba(0,0,0,.12);
}


.energy-flow-icon::before {
    content: "";

    position: absolute;

    inset: 8px;

    border: 1px dashed rgba(245,164,0,.35);
    border-radius: 50%;

    animation: energyCircleRotate 12s linear infinite;
}


.energy-flow-icon i {
    position: relative;
    z-index: 2;
}


@keyframes energyCircleRotate {

    to {
        transform: rotate(360deg);
    }

}


/* NUMARA */

.energy-flow-number {
    display: block;

    margin-bottom: 9px;

    color: var(--orange);

    font-size: 13px;
    line-height: 1.4;

    font-weight: 800;

    letter-spacing: .08em;
}


/* BAŞLIK */

.energy-flow-item h3 {
    margin: 0;

    color: #fff;

    font-size: 20px;
    line-height: 1.3;

    font-weight: 800;
}


/* METİN */

.energy-flow-item p {
    max-width: 230px;

    margin: 10px auto 0;

    color: rgba(255,255,255,.58);

    font-size: 15px;
    line-height: 1.7;
}


/* ============================================================
   RESPONSIVE
============================================================ */

@media (max-width: 991px) {

    .energy-flow-section {
        padding: 90px 0;
    }

    .energy-flow-system {
        grid-template-columns: repeat(2, 1fr);

        gap: 55px 25px;
    }

    .energy-flow-line {
        display: none;
    }

}


@media (max-width: 767px) {

    .energy-flow-section {
        padding: 75px 0;
    }

    .energy-flow-head {
        margin-bottom: 50px;
    }

    .energy-flow-head h2 {
        font-size: clamp(36px, 10vw, 47px);
    }

    .energy-flow-head > p {
        font-size: 16px;
    }

    .energy-flow-system {
        grid-template-columns: 1fr;

        gap: 26px;
    }

    .energy-flow-item {
        padding: 28px 20px;

        border: 1px solid rgba(255,255,255,.10);
        border-radius: 18px;

        background: rgba(255,255,255,.035);
    }

    .energy-flow-icon {
        width: 110px;
        height: 110px;

        margin-bottom: 22px;

        font-size: 31px;
    }

    .energy-flow-item h3 {
        font-size: 20px;
    }

    .energy-flow-item p {
        font-size: 15px;
    }

}


/* ============================================================
   SOLAR ÜRÜNLER
============================================================ */

.solar-products-section {
    padding: 55px 0;
    background: #f8f5ef;
}


.solar-products-head {
    margin-bottom: 38px;
}


.solar-products-head p {
    max-width: 650px;

    margin: 20px 0 0;

    color: var(--muted);

    font-size: 16px;
    line-height: 1.75;
}


/* ============================================================
   KATEGORİ TABLARI
============================================================ */

.product-category-tabs {
    width: 100%;

    margin-bottom: 35px;

    padding: 6px;

    border: 1px solid var(--line);
    border-radius: 14px;

    display: grid;
    grid-template-columns: repeat(5, 1fr);

    background: #fff;
}


.product-tab {
    min-height: 52px;

    padding: 0 18px;

    border: 0;
    border-right: 1px solid var(--line);

    background: transparent;

    color: #667387;

    font-size: 15px;
    font-weight: 800;

    transition: .25s ease;
}


.product-tab:last-child {
    border-right: 0;
}


.product-tab:hover {
    color: var(--navy);

    background: #f7f9fb;
}


.product-tab.active {
    border-radius: 10px;

    background: var(--navy);

    color: #fff;

    box-shadow:
        0 8px 25px rgba(7, 28, 59, .15);
}


/* ============================================================
   ÜRÜN GRID
============================================================ */

.solar-product-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;
}


/* kart */

.solar-product-card {
    overflow: hidden;

    border: 1px solid #e0e6ed;
    border-radius: 18px;

    background: #fff;

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        opacity .25s ease;
}


.solar-product-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 24px 60px rgba(7, 28, 59, .10);
}


/* filtrelenirken */

.solar-product-card.product-hidden {
    display: none;
}


/* ============================================================
   RESİM
============================================================ */

.solar-product-image {
    position: relative;

    height: 275px;

    overflow: hidden;

    background: #edf1f5;
}


.solar-product-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .65s cubic-bezier(.2,.7,.2,1);
}


.solar-product-card:hover .solar-product-image img {
    transform: scale(1.055);
}


/* badge */

.solar-product-badge {
    position: absolute;

    z-index: 2;

    top: 15px;
    left: 15px;

    padding: 8px 11px;

    border-radius: 7px;

    background: var(--orange);

    color: var(--navy);

    font-size: 13px;
    line-height: 1;

    font-weight: 800;
}


/* ============================================================
   İÇERİK
============================================================ */

.solar-product-content {
    padding: 21px;
}


.solar-product-category {
    display: block;

    color: #a56e00;

    font-size: 13px;
    line-height: 1.4;

    font-weight: 800;

    letter-spacing: .05em;

    text-transform: uppercase;
}


.solar-product-content h3 {
    min-height: 52px;

    margin: 8px 0 20px;

    color: var(--navy);

    font-size: 18px;
    line-height: 1.4;

    font-weight: 800;
}


/* ============================================================
   ALT ALAN
============================================================ */

.solar-product-bottom {
    padding-top: 18px;

    border-top: 1px solid #e7ebf0;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 12px;
}


.solar-product-price {
    white-space: nowrap;

    color: var(--navy);

    font-size: 19px;
    line-height: 1.2;

    font-weight: 800;
}


/* ============================================================
   SEPET BUTONU
============================================================ */

.solar-add-cart {
    min-height: 45px;

    padding: 0 15px;

    border: 0;
    border-radius: 9px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    background: var(--navy);

    color: #fff;

    font-size: 14px;
    line-height: 1;

    font-weight: 800;

    transition: .25s ease;
}


.solar-add-cart i {
    font-size: 17px;
}


.solar-add-cart:hover {
    background: var(--orange);

    color: var(--navy);
}


.solar-add-cart.added {
    background: #16833b;

    color: #fff;
}


/* ============================================================
   TOAST
============================================================ */

.solar-cart-toast {
    position: fixed;

    z-index: 9999;

    right: 25px;
    bottom: 25px;

    padding: 16px 20px;

    border-radius: 12px;

    display: flex;
    align-items: center;

    gap: 10px;

    background: var(--navy);

    color: #fff;

    box-shadow:
        0 20px 60px rgba(7, 28, 59, .25);

    font-size: 15px;
    font-weight: 700;

    opacity: 0;
    visibility: hidden;

    transform: translateY(15px);

    transition: .3s ease;
}


.solar-cart-toast i {
    color: var(--orange);

    font-size: 20px;
}


.solar-cart-toast.show {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}


/* ============================================================
   TABLET
============================================================ */

@media(max-width:1199px) {

    .solar-product-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}


@media(max-width:991px) {

    .solar-product-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    .product-category-tabs {
        display: flex;

        overflow-x: auto;

        scrollbar-width: none;
    }


    .product-category-tabs::-webkit-scrollbar {
        display: none;
    }


    .product-tab {
        flex: 0 0 auto;

        min-width: 180px;

        border-right: 1px solid var(--line);
    }

}


/* ============================================================
   MOBİL
============================================================ */

@media(max-width:767px) {

    .solar-products-section {
        padding: 75px 0;
    }


    .solar-product-grid {
        grid-template-columns: repeat(2, 1fr);

        gap: 12px;
    }


    .solar-product-image {
        height: 220px;
    }


    .solar-product-content {
        padding: 16px;
    }


    .solar-product-content h3 {
        min-height: 48px;

        font-size: 16px;
    }


    .solar-product-bottom {
        align-items: stretch;

        flex-direction: column;
    }


    .solar-product-price {
        font-size: 18px;
    }


    .solar-add-cart {
        width: 100%;

        min-height: 45px;
    }


    .solar-cart-toast {
        right: 14px;
        left: 14px;
        bottom: 14px;

        justify-content: center;
    }

}


@media(max-width:480px) {

    .solar-product-grid {
        grid-template-columns: 1fr;
    }


    .solar-product-image {
        height: 310px;
    }

}


.header-cart-icon {
    position: relative;
}


.header-cart-count {
    position: absolute;

    top: -6px;
    right: -6px;

    min-width: 22px;
    height: 22px;

    padding: 0 6px;

    border: 2px solid #fff;
    border-radius: 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--orange);

    color: var(--navy);

    font-size: 12px;
    line-height: 1;

    font-weight: 800;
}


/* ============================================================
   CONTACT PAGE HERO
============================================================ */

.contact-hero {
    position: relative;
    overflow: hidden;

    padding: 100px 0 105px;

    background: var(--navy);

    color: #fff;
}


.contact-hero-grid {
    position: absolute;
    inset: 0;

    opacity: .14;

    background-image:

        linear-gradient(
            rgba(255,255,255,.15) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(255,255,255,.15) 1px,
            transparent 1px
        );

    background-size: 42px 42px;

    pointer-events: none;
}


.contact-hero::after {
    content: "";

    position: absolute;

    width: 520px;
    height: 520px;

    right: -120px;
    top: -220px;

    border: 90px solid rgba(245,164,0,.06);

    border-radius: 50%;
}


.contact-hero .site-container {
    position: relative;

    z-index: 2;
}


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


.contact-hero-content h1 {
    margin: 0;

    font-size: clamp(48px, 6vw, 78px);
    line-height: 1;

    letter-spacing: -.055em;

    font-weight: 800;
}


.contact-hero-content h1 span {
    display: block;

    color: var(--orange);
}


.contact-hero-content > p {
    max-width: 650px;

    margin: 24px 0 0;

    color: rgba(255,255,255,.68);

    font-size: 17px;
    line-height: 1.8;
}



/* ============================================================
   CONTACT MAIN
============================================================ */

.contact-page-section {
    padding: 105px 0;

    background: #f8f5ef;
}


.contact-page-grid {
    display: grid;

    grid-template-columns:
        minmax(0,.9fr)
        minmax(500px,1.1fr);

    gap: 75px;

    align-items: start;
}


.contact-page-description {
    max-width: 610px;

    margin: 23px 0 35px;

    color: var(--muted);

    font-size: 16px;
    line-height: 1.8;
}



/* ============================================================
   CONTACT INFO
============================================================ */

.contact-info-list {
    display: grid;

    gap: 12px;
}


.contact-info-card {
    position: relative;

    min-height: 96px;

    padding: 18px;

    border: 1px solid #e0e5eb;
    border-radius: 15px;

    display: grid;

    grid-template-columns: 52px 1fr auto;

    align-items: center;

    gap: 16px;

    background: #fff;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}


a.contact-info-card:hover {
    transform: translateY(-3px);

    border-color:
        rgba(245,164,0,.5);

    box-shadow:
        0 18px 45px rgba(7,28,59,.08);

    color: inherit;
}


.contact-info-icon {
    width: 52px;
    height: 52px;

    border-radius: 13px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #fff2ce;

    color: var(--orange-dark);

    font-size: 21px;
}


.contact-info-content {
    min-width: 0;
}


.contact-info-content > span {
    display: block;

    margin-bottom: 3px;

    color: #9d6a05;

    font-size: 13px;
    line-height: 1.4;

    font-weight: 800;

    letter-spacing: .05em;

    text-transform: uppercase;
}


.contact-info-content strong {
    display: block;

    overflow-wrap: anywhere;

    color: var(--navy);

    font-size: 17px;
    line-height: 1.45;

    font-weight: 800;
}


.contact-info-content small {
    display: block;

    margin-top: 3px;

    color: var(--muted);

    font-size: 14px;
    line-height: 1.5;
}


.contact-info-arrow {
    width: 38px;
    height: 38px;

    border: 1px solid var(--line);
    border-radius: 9px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--navy);

    font-size: 17px;
}



/* ============================================================
   CONTACT FORM
============================================================ */

.contact-form-box {
    padding: 42px;

    border-radius: 22px;

    background: #fff;

    box-shadow:
        0 25px 70px rgba(7,28,59,.09);
}


.contact-form-head > span {
    display: block;

    margin-bottom: 7px;

    color: var(--orange-dark);

    font-size: 13px;

    font-weight: 800;

    letter-spacing: .06em;

    text-transform: uppercase;
}


.contact-form-head h2 {
    margin: 0;

    color: var(--navy);

    font-size: 31px;
    line-height: 1.2;

    letter-spacing: -.025em;

    font-weight: 800;
}


.contact-form-head p {
    margin: 12px 0 30px;

    color: var(--muted);

    font-size: 15px;
    line-height: 1.7;
}


.contact-form {
    display: grid;

    gap: 20px;
}


.contact-form-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 16px;
}


.contact-form-group label {
    display: block;

    margin-bottom: 8px;

    color: var(--navy);

    font-size: 14px;

    font-weight: 800;
}


.contact-form-group input,
.contact-form-group select,
.contact-form-group textarea {
    width: 100%;

    border: 1px solid #dce3ea;
    border-radius: 10px;

    outline: none;

    background: #fafbfd;

    color: var(--navy);

    font-size: 15px;

    transition:
        border-color .2s ease,
        box-shadow .2s ease,
        background .2s ease;
}


.contact-form-group input,
.contact-form-group select {
    height: 55px;

    padding: 0 16px;
}


.contact-form-group textarea {
    min-height: 145px;

    padding: 15px 16px;

    resize: vertical;
}


.contact-form-group input:focus,
.contact-form-group select:focus,
.contact-form-group textarea:focus {
    border-color: var(--orange);

    background: #fff;

    box-shadow:
        0 0 0 4px rgba(245,164,0,.09);
}


.contact-check {
    display: flex;

    align-items: flex-start;

    gap: 10px;

    cursor: pointer;
}


.contact-check input {
    width: 18px;
    height: 18px;

    margin-top: 3px;

    accent-color: var(--orange);
}


.contact-check span {
    color: var(--muted);

    font-size: 13px;
    line-height: 1.6;
}


.contact-submit {
    width: 100%;

    min-height: 56px;

    padding: 0 22px;

    border: 0;
    border-radius: 10px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 11px;

    background: var(--navy);

    color: #fff;

    font-size: 15px;

    font-weight: 800;

    transition: .25s ease;
}


.contact-submit:hover {
    background: var(--orange);

    color: var(--navy);

    transform: translateY(-2px);
}



/* ============================================================
   SUPPORT
============================================================ */

.contact-support-section {
    padding: 100px 0;

    background: #fff;
}


.contact-support-grid {
    display: grid;

    grid-template-columns: .85fr 1.15fr;

    gap: 90px;

    align-items: start;
}


.contact-support-title h2 {
    max-width: 570px;

    margin: 0;

    color: var(--navy);

    font-size: clamp(38px,4vw,56px);
    line-height: 1.05;

    letter-spacing: -.045em;

    font-weight: 800;
}


.contact-support-title h2 span {
    color: var(--orange-dark);
}


.contact-support-items {
    border-top: 1px solid var(--line);
}


.contact-support-item {
    padding: 25px 0;

    border-bottom: 1px solid var(--line);

    display: grid;

    grid-template-columns: 55px 1fr;

    gap: 18px;
}


.contact-support-number {
    color: var(--orange-dark);

    font-size: 14px;

    font-weight: 800;
}


.contact-support-item h3 {
    margin: 0;

    color: var(--navy);

    font-size: 18px;

    font-weight: 800;
}


.contact-support-item p {
    max-width: 590px;

    margin: 7px 0 0;

    color: var(--muted);

    font-size: 15px;
    line-height: 1.7;
}



/* ============================================================
   RESPONSIVE
============================================================ */

@media(max-width:991px) {

    .contact-page-grid,
    .contact-support-grid {
        grid-template-columns: 1fr;

        gap: 50px;
    }


    .contact-form-box {
        padding: 35px;
    }

}


@media(max-width:767px) {

    .contact-hero {
        padding: 70px 0;
    }


    .contact-hero-content h1 {
        font-size: clamp(42px,12vw,58px);
    }


    .contact-hero-content > p {
        font-size: 16px;
    }


    .contact-page-section,
    .contact-support-section {
        padding: 75px 0;
    }


    .contact-form-box {
        padding: 25px 20px;

        border-radius: 17px;
    }


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


    .contact-info-card {
        grid-template-columns: 48px 1fr;

        gap: 13px;
    }


    .contact-info-icon {
        width: 48px;
        height: 48px;
    }


    .contact-info-arrow {
        display: none;
    }


    .contact-info-content strong {
        font-size: 15px;
    }


    .contact-support-item {
        grid-template-columns: 40px 1fr;
    }

}


/* ============================================================
   PROJELER - HERO
============================================================ */

.projects-hero {
    position: relative;

    overflow: hidden;

    padding: 100px 0 105px;

    background: var(--navy);

    color: #fff;
}


.projects-hero-grid {
    position: absolute;
    inset: 0;

    opacity: .14;

    background-image:

        linear-gradient(
            rgba(255,255,255,.15) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(255,255,255,.15) 1px,
            transparent 1px
        );

    background-size: 42px 42px;

    pointer-events: none;
}


.projects-hero::after {
    content: "";

    position: absolute;

    width: 520px;
    height: 520px;

    right: -120px;
    top: -220px;

    border: 90px solid rgba(245,164,0,.06);

    border-radius: 50%;
}


.projects-hero .site-container {
    position: relative;

    z-index: 2;
}


.projects-hero-content {
    max-width: 900px;
}


.projects-hero-content h1 {
    margin: 0;

    max-width: 900px;

    color: #fff;

    font-size: clamp(48px,6vw,78px);
    line-height: 1;

    letter-spacing: -.055em;

    font-weight: 800;
}


.projects-hero-content h1 span {
    display: block;

    color: var(--orange);
}


.projects-hero-content > p {
    max-width: 670px;

    margin: 24px 0 0;

    color: rgba(255,255,255,.68);

    font-size: 17px;
    line-height: 1.8;
}



/* ============================================================
   PROJELER LİSTE
============================================================ */

.projects-list-section {
    padding: 105px 0 120px;

    background: #f8f5ef;
}


.projects-list-head {
    margin-bottom: 45px;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 50px;
}


.projects-list-head > div {
    max-width: 650px;
}


.projects-list-head > p {
    max-width: 500px;

    margin: 0;

    color: var(--muted);

    font-size: 16px;
    line-height: 1.75;
}



/* ============================================================
   GRID
============================================================ */

.projects-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 24px;
}



/* ============================================================
   PROJECT CARD
============================================================ */

.project-card {
    overflow: hidden;

    border: 1px solid #e0e5eb;
    border-radius: 18px;

    background: #fff;

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}


.project-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 25px 60px rgba(7,28,59,.10);
}



/* ============================================================
   IMAGE
============================================================ */

.project-card-image {
    position: relative;

    display: block;

    height: 300px;

    overflow: hidden;

    background: #edf1f5;
}


.project-card-image::after {
    content: "";

    position: absolute;
    inset: 0;

    background: linear-gradient(
        180deg,
        transparent 55%,
        rgba(7,28,59,.2)
    );

    pointer-events: none;
}


.project-card-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .7s cubic-bezier(.2,.7,.2,1);
}


.project-card:hover .project-card-image img {
    transform: scale(1.06);
}



/* ARROW */

.project-image-arrow {
    position: absolute;

    z-index: 3;

    right: 18px;
    bottom: 18px;

    width: 50px;
    height: 50px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--orange);

    color: var(--navy);

    font-size: 19px;

    transition:
        transform .3s ease,
        background .3s ease;
}


.project-card:hover .project-image-arrow {
    transform: rotate(45deg);

    background: #fff;
}



/* ============================================================
   CONTENT
============================================================ */

.project-card-content {
    padding: 25px;
}


.project-card-content h3 {
    margin: 0;

    font-size: 20px;
    line-height: 1.4;

    font-weight: 800;
}


.project-card-content h3 a {
    color: var(--navy);
}


.project-card-content h3 a:hover {
    color: var(--orange-dark);
}


.project-card-content p {
    min-height: 78px;

    margin: 13px 0 21px;

    color: var(--muted);

    font-size: 15px;
    line-height: 1.7;
}



/* ============================================================
   DETAY
============================================================ */

.project-detail-link {
    padding-top: 18px;

    border-top: 1px solid #e4e9ee;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;

    color: var(--navy);

    font-size: 15px;
    line-height: 1;

    font-weight: 800;
}


.project-detail-link i {
    color: var(--orange-dark);

    font-size: 18px;

    transition: transform .25s ease;
}


.project-detail-link:hover {
    color: var(--orange-dark);
}


.project-detail-link:hover i {
    transform: translateX(5px);
}



/* ============================================================
   RESPONSIVE
============================================================ */

@media(max-width:1199px) {

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

}


@media(max-width:991px) {

    .projects-list-head {
        align-items: flex-start;

        flex-direction: column;

        gap: 20px;
    }


    .projects-list-head > p {
        max-width: 650px;
    }

}


@media(max-width:767px) {

    .projects-hero {
        padding: 70px 0;
    }


    .projects-hero-content h1 {
        font-size: clamp(42px,12vw,58px);
    }


    .projects-hero-content > p {
        font-size: 16px;
    }


    .projects-list-section {
        padding: 75px 0;
    }


    .projects-grid {
        grid-template-columns: 1fr;

        gap: 18px;
    }


    .project-card-image {
        height: 280px;
    }


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


    .project-card-content h3 {
        font-size: 19px;
    }


    .project-card-content p {
        min-height: auto;

        font-size: 15px;
    }

}


/* ============================================================
   ÜRÜNLER SAYFASI HERO
============================================================ */

.products-page-hero {
    position: relative;

    overflow: hidden;

    padding: 100px 0 105px;

    background: var(--navy);

    color: #fff;
}


.products-page-hero-grid {
    position: absolute;
    inset: 0;

    opacity: .14;

    background-image:

        linear-gradient(
            rgba(255,255,255,.15) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(255,255,255,.15) 1px,
            transparent 1px
        );

    background-size: 42px 42px;

    pointer-events: none;
}


.products-page-hero::after {
    content: "";

    position: absolute;

    width: 520px;
    height: 520px;

    right: -120px;
    top: -220px;

    border: 90px solid rgba(245,164,0,.06);

    border-radius: 50%;

    pointer-events: none;
}


.products-page-hero .site-container {
    position: relative;

    z-index: 2;
}


.products-page-hero-content {
    max-width: 900px;
}


.products-page-hero-content h1 {
    max-width: 900px;

    margin: 0;

    color: #fff;

    font-size: clamp(48px,6vw,78px);
    line-height: 1;

    letter-spacing: -.055em;

    font-weight: 800;
}


.products-page-hero-content h1 span {
    display: block;

    color: var(--orange);
}


.products-page-hero-content > p {
    max-width: 690px;

    margin: 24px 0 0;

    color: rgba(255,255,255,.68);

    font-size: 17px;
    line-height: 1.8;
}



/* ============================================================
   ÜRÜNLER SAYFASI
============================================================ */

.products-page-list {
    min-height: 700px;
}


/* ürün başlığı link */

.solar-product-content h3 a {
    color: var(--navy);

    transition: color .2s ease;
}


.solar-product-content h3 a:hover {
    color: var(--orange-dark);
}


/* resim link olduğu için */

a.solar-product-image {
    display: block;
}


/* ürün detay oku */

.product-view-icon {
    position: absolute;

    z-index: 4;

    right: 15px;
    bottom: 15px;

    width: 44px;
    height: 44px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #fff;

    color: var(--navy);

    font-size: 17px;

    opacity: 0;

    transform: translateY(10px);

    box-shadow:
        0 10px 30px rgba(7,28,59,.15);

    transition:
        opacity .25s ease,
        transform .25s ease,
        background .25s ease;
}


.solar-product-card:hover .product-view-icon {
    opacity: 1;

    transform: translateY(0);
}


.product-view-icon:hover {
    background: var(--orange);
}


/* form yüzünden buton bozulmasın */

.product-cart-form {
    margin: 0;
}



/* ============================================================
   RESPONSIVE
============================================================ */

@media(max-width:767px) {

    .products-page-hero {
        padding: 70px 0;
    }


    .products-page-hero-content h1 {
        font-size: clamp(42px,12vw,58px);
    }


    .products-page-hero-content > p {
        font-size: 16px;
    }


    .product-view-icon {
        opacity: 1;

        transform: none;
    }

}




/* ============================================================
   KURUMSAL HERO
============================================================ */

.corporate-hero {
    position: relative;
    overflow: hidden;

    padding: 100px 0 105px;

    background: var(--navy);
    color: #fff;
}


.corporate-hero-grid {
    position: absolute;
    inset: 0;

    opacity: .14;

    background-image:
        linear-gradient(
            rgba(255,255,255,.15) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.15) 1px,
            transparent 1px
        );

    background-size: 42px 42px;

    pointer-events: none;
}


.corporate-hero::after {
    content: "";

    position: absolute;

    width: 520px;
    height: 520px;

    right: -120px;
    top: -220px;

    border: 90px solid rgba(245,164,0,.06);
    border-radius: 50%;

    pointer-events: none;
}


.corporate-hero .site-container {
    position: relative;
    z-index: 2;
}


.corporate-hero-content {
    max-width: 930px;
}


.corporate-hero-content h1 {
    max-width: 930px;

    margin: 0;

    color: #fff;

    font-size: clamp(48px,6vw,78px);
    line-height: 1;

    letter-spacing: -.055em;

    font-weight: 800;
}


.corporate-hero-content h1 span {
    display: block;

    color: var(--orange);
}


.corporate-hero-content > p {
    max-width: 710px;

    margin: 24px 0 0;

    color: rgba(255,255,255,.68);

    font-size: 17px;
    line-height: 1.8;
}



/* ============================================================
   KURUMSAL HAKKIMIZDA
============================================================ */

.corporate-about {
    padding: 115px 0;

    background: #f8f5ef;
}


.corporate-about-grid {
    display: grid;

    grid-template-columns:
        minmax(0,1.05fr)
        minmax(0,.95fr);

    gap: 80px;

    align-items: center;
}



/* GÖRSEL */

.corporate-about-visual {
    position: relative;

    padding: 0 35px 40px 0;
}


.corporate-main-image {
    overflow: hidden;

    height: 610px;

    border-radius: 20px;

    background: #e8edf2;
}


.corporate-main-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}


.corporate-image-card {
    position: absolute;

    right: 0;
    bottom: 0;

    width: 310px;

    padding: 23px;

    border-radius: 15px;

    display: flex;
    align-items: center;

    gap: 15px;

    background: var(--orange);

    color: var(--navy);

    box-shadow:
        0 22px 55px rgba(7,28,59,.18);
}


.corporate-image-card > span {
    width: 52px;
    height: 52px;

    flex: 0 0 52px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--navy);

    color: var(--orange);

    font-size: 21px;
}


.corporate-image-card strong {
    display: block;

    font-size: 17px;
    line-height: 1.35;

    font-weight: 800;
}


.corporate-image-card small {
    display: block;

    margin-top: 3px;

    font-size: 13px;
    line-height: 1.5;

    opacity: .7;
}



/* YAZI */

.corporate-about-copy > p {
    max-width: 620px;

    margin: 16px 0 0;

    color: var(--muted);

    font-size: 15px;
    line-height: 1.8;
}


.corporate-about-copy .corporate-lead {
    margin-top: 23px;

    color: var(--navy);

    font-size: 18px;
    line-height: 1.75;

    font-weight: 600;
}


.corporate-check-list {
    margin-top: 30px;

    border-top: 1px solid var(--line);
}


.corporate-check-list > div {
    padding: 16px 0;

    border-bottom: 1px solid var(--line);

    display: flex;
    align-items: center;

    gap: 12px;

    color: var(--navy);

    font-size: 15px;

    font-weight: 700;
}


.corporate-check-list i {
    color: var(--orange-dark);

    font-size: 21px;
}



/* ============================================================
   SAYILAR
============================================================ */

.corporate-numbers {
    background: var(--orange);
}


.corporate-number-grid {
    display: grid;

    grid-template-columns: repeat(4,1fr);
}


.corporate-number-item {
    min-height: 220px;

    padding: 38px 32px;

    border-right:
        1px solid rgba(7,28,59,.16);

    display: flex;
    flex-direction: column;
    justify-content: center;
}


.corporate-number-item:last-child {
    border-right: 0;
}


.corporate-number-item strong {
    color: var(--navy);

    font-size: 48px;
    line-height: 1;

    font-weight: 800;

    letter-spacing: -.04em;
}


.corporate-number-item > span {
    display: block;

    margin-top: 12px;

    color: var(--navy);

    font-size: 16px;

    font-weight: 800;
}


.corporate-number-item p {
    margin: 8px 0 0;

    color: rgba(7,28,59,.68);

    font-size: 14px;
    line-height: 1.6;
}



/* ============================================================
   ÇALIŞMA YAKLAŞIMI
============================================================ */

.corporate-approach {
    padding: 110px 0;

    background: #fff;
}


.corporate-section-head {
    margin-bottom: 45px;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 60px;
}


.corporate-section-head > div {
    max-width: 700px;
}


.corporate-section-head > p {
    max-width: 480px;

    margin: 0;

    color: var(--muted);

    font-size: 16px;
    line-height: 1.75;
}


.corporate-approach-grid {
    display: grid;

    grid-template-columns: repeat(3,1fr);

    gap: 20px;
}


.corporate-approach-card {
    min-height: 330px;

    padding: 32px;

    border: 1px solid var(--line);
    border-radius: 18px;

    background: #f9fafb;

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        background .3s ease;
}


.corporate-approach-card:hover {
    transform: translateY(-7px);

    background: #fff;

    box-shadow:
        0 25px 60px rgba(7,28,59,.09);
}


.corporate-approach-top {
    margin-bottom: 60px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


.corporate-approach-number {
    color: #a16c03;

    font-size: 14px;

    font-weight: 800;

    letter-spacing: .08em;
}


.corporate-approach-icon {
    width: 58px;
    height: 58px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #fff0c8;

    color: var(--orange-dark);

    font-size: 22px;
}


.corporate-approach-card h3 {
    margin: 0;

    color: var(--navy);

    font-size: 21px;

    font-weight: 800;
}


.corporate-approach-card p {
    margin: 12px 0 0;

    color: var(--muted);

    font-size: 15px;
    line-height: 1.75;
}



/* ============================================================
   VİZYON
============================================================ */

.corporate-vision {
    position: relative;

    overflow: hidden;

    padding: 110px 0;

    background: var(--navy);

    color: #fff;
}


.corporate-vision-grid-bg {
    position: absolute;
    inset: 0;

    opacity: .1;

    background-image:
        linear-gradient(
            rgba(255,255,255,.13) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.13) 1px,
            transparent 1px
        );

    background-size: 42px 42px;
}


.corporate-vision .site-container {
    position: relative;

    z-index: 2;
}


.corporate-vision-layout {
    display: grid;

    grid-template-columns: .9fr 1.1fr;

    gap: 90px;
}


.corporate-vision-title h2 {
    max-width: 600px;

    margin: 0;

    color: #fff;

    font-size: clamp(42px,4.5vw,62px);
    line-height: 1.05;

    letter-spacing: -.045em;

    font-weight: 800;
}


.corporate-vision-title h2 span {
    display: block;

    color: var(--orange);
}


.corporate-vision-content {
    border-top:
        1px solid rgba(255,255,255,.15);
}


.corporate-vision-item {
    padding: 28px 0;

    border-bottom:
        1px solid rgba(255,255,255,.15);

    display: grid;

    grid-template-columns: 60px 1fr;

    gap: 20px;
}


.corporate-vision-item > span {
    width: 52px;
    height: 52px;

    border: 1px solid rgba(245,164,0,.3);

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(245,164,0,.08);

    color: var(--orange);

    font-size: 21px;
}


.corporate-vision-item h3 {
    margin: 0;

    color: #fff;

    font-size: 19px;

    font-weight: 800;
}


.corporate-vision-item p {
    max-width: 560px;

    margin: 7px 0 0;

    color: rgba(255,255,255,.6);

    font-size: 15px;
    line-height: 1.7;
}



/* ============================================================
   NEDEN MAKRO SOLAR
============================================================ */

.corporate-why {
    padding: 110px 0;

    background: #f8f5ef;
}


.corporate-why-grid {
    display: grid;

    grid-template-columns: .9fr 1.1fr;

    gap: 90px;

    align-items: start;
}


.corporate-why-copy {
    position: sticky;

    top: 125px;
}


.corporate-why-copy > p {
    max-width: 550px;

    margin: 22px 0 28px;

    color: var(--muted);

    font-size: 16px;
    line-height: 1.8;
}


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


.corporate-why-item {
    padding: 32px 0;

    border-bottom: 1px solid var(--line);

    display: grid;

    grid-template-columns: 65px 1fr;

    gap: 20px;
}


.corporate-why-item > span {
    color: var(--orange-dark);

    font-size: 14px;

    font-weight: 800;
}


.corporate-why-item h3 {
    margin: 0;

    color: var(--navy);

    font-size: 20px;

    font-weight: 800;
}


.corporate-why-item p {
    max-width: 600px;

    margin: 9px 0 0;

    color: var(--muted);

    font-size: 15px;
    line-height: 1.75;
}



/* ============================================================
   RESPONSIVE
============================================================ */

@media(max-width:991px) {

    .corporate-about-grid,
    .corporate-vision-layout,
    .corporate-why-grid {
        grid-template-columns: 1fr;

        gap: 55px;
    }


    .corporate-section-head {
        align-items: flex-start;

        flex-direction: column;

        gap: 20px;
    }


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


    .corporate-number-grid {
        grid-template-columns: repeat(2,1fr);
    }


    .corporate-number-item:nth-child(2) {
        border-right: 0;
    }


    .corporate-number-item:nth-child(1),
    .corporate-number-item:nth-child(2) {
        border-bottom:
            1px solid rgba(7,28,59,.16);
    }


    .corporate-why-copy {
        position: relative;

        top: auto;
    }

}


@media(max-width:767px) {

    .corporate-hero {
        padding: 70px 0;
    }


    .corporate-hero-content h1 {
        font-size: clamp(42px,12vw,58px);
    }


    .corporate-hero-content > p {
        font-size: 16px;
    }


    .corporate-about,
    .corporate-approach,
    .corporate-vision,
    .corporate-why {
        padding: 75px 0;
    }


    .corporate-about-visual {
        padding:
            0 0 70px 0;
    }


    .corporate-main-image {
        height: 430px;
    }


    .corporate-image-card {
        right: 15px;
        left: 15px;
        bottom: 0;

        width: auto;
    }


    .corporate-about-copy .corporate-lead {
        font-size: 17px;
    }


    .corporate-number-item {
        min-height: 180px;

        padding: 27px 20px;
    }


    .corporate-number-item strong {
        font-size: 38px;
    }


    .corporate-number-item > span {
        font-size: 15px;
    }


    .corporate-approach-card {
        min-height: auto;

        padding: 25px;
    }


    .corporate-approach-top {
        margin-bottom: 40px;
    }


    .corporate-vision-item {
        grid-template-columns: 52px 1fr;

        gap: 15px;
    }


    .corporate-why-item {
        grid-template-columns: 45px 1fr;
    }

}


@media(max-width:480px) {

    .corporate-number-grid {
        grid-template-columns: 1fr;
    }


    .corporate-number-item {
        border-right: 0 !important;

        border-bottom:
            1px solid rgba(7,28,59,.16);
    }


    .corporate-number-item:last-child {
        border-bottom: 0;
    }

}


/* ============================================================
   TEKLİF HERO
============================================================ */

.offer-hero {
    position: relative;
    overflow: hidden;

    padding: 100px 0 105px;

    background: var(--navy);
    color: #fff;
}


.offer-hero-grid {
    position: absolute;
    inset: 0;

    opacity: .14;

    background-image:
        linear-gradient(
            rgba(255,255,255,.15) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.15) 1px,
            transparent 1px
        );

    background-size: 42px 42px;
}


.offer-hero::after {
    content: "";

    position: absolute;

    width: 520px;
    height: 520px;

    right: -120px;
    top: -220px;

    border: 90px solid rgba(245,164,0,.06);
    border-radius: 50%;
}


.offer-hero .site-container {
    position: relative;
    z-index: 2;
}


.offer-hero-content {
    max-width: 950px;
}


.offer-hero-content h1 {
    margin: 0;

    font-size: clamp(48px,6vw,78px);
    line-height: 1;

    letter-spacing: -.055em;

    font-weight: 800;
}


.offer-hero-content h1 span {
    display: block;

    color: var(--orange);
}


.offer-hero-content > p {
    max-width: 720px;

    margin: 24px 0 0;

    color: rgba(255,255,255,.68);

    font-size: 17px;
    line-height: 1.8;
}



/* ============================================================
   TEKLİF PAGE
============================================================ */

.offer-page {
    padding: 105px 0 120px;

    background: #f8f5ef;
}


.offer-page-layout {
    display: grid;

    grid-template-columns:
        minmax(0,1fr)
        390px;

    gap: 35px;

    align-items: start;
}


.offer-form-intro {
    margin-bottom: 35px;
}


.offer-form-intro > p {
    max-width: 650px;

    margin: 18px 0 0;

    color: var(--muted);

    font-size: 16px;
    line-height: 1.75;
}



/* ============================================================
   FORM BOX
============================================================ */

.offer-form {
    padding: 38px;

    border: 1px solid #e0e5eb;
    border-radius: 20px;

    background: #fff;
}


.offer-form-section {
    padding: 0 0 38px;
    margin-bottom: 38px;

    border-bottom: 1px solid #e5e9ee;
}


.offer-section-title {
    margin-bottom: 24px;

    display: grid;

    grid-template-columns: 45px 1fr;

    gap: 15px;
}


.offer-section-title > span {
    padding-top: 4px;

    color: var(--orange-dark);

    font-size: 14px;

    font-weight: 800;

    letter-spacing: .08em;
}


.offer-section-title h3 {
    margin: 0;

    color: var(--navy);

    font-size: 21px;

    font-weight: 800;
}


.offer-section-title p {
    margin: 4px 0 0;

    color: var(--muted);

    font-size: 14px;
}



/* ============================================================
   INPUT
============================================================ */

.offer-form-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 18px;
}


.offer-field label {
    display: block;

    margin-bottom: 8px;

    color: var(--navy);

    font-size: 14px;

    font-weight: 800;
}


.offer-field input,
.offer-field select,
.offer-field textarea {
    width: 100%;

    border: 1px solid #dce3ea;
    border-radius: 10px;

    outline: none;

    background: #fafbfd;

    color: var(--navy);

    font-size: 15px;

    transition: .2s ease;
}


.offer-field input,
.offer-field select {
    height: 56px;

    padding: 0 16px;
}


.offer-field textarea {
    min-height: 155px;

    padding: 16px;

    resize: vertical;
}


.offer-field input:focus,
.offer-field select:focus,
.offer-field textarea:focus {
    border-color: var(--orange);

    background: #fff;

    box-shadow:
        0 0 0 4px rgba(245,164,0,.09);
}



/* ============================================================
   PROJE TÜRÜ
============================================================ */

.offer-choice-grid {
    display: grid;

    grid-template-columns: repeat(2,1fr);

    gap: 12px;
}


.offer-choice {
    cursor: pointer;
}


.offer-choice input {
    display: none;
}


.offer-choice-content {
    min-height: 145px;

    padding: 22px;

    border: 1px solid #e0e5eb;
    border-radius: 13px;

    display: flex;
    flex-direction: column;

    background: #fafbfd;

    transition: .25s ease;
}


.offer-choice-content > i {
    margin-bottom: 24px;

    color: var(--orange-dark);

    font-size: 25px;
}


.offer-choice-content strong {
    color: var(--navy);

    font-size: 16px;

    font-weight: 800;
}


.offer-choice-content small {
    margin-top: 4px;

    color: var(--muted);

    font-size: 13px;
}


.offer-choice input:checked + .offer-choice-content {
    border-color: var(--orange);

    background: #fff7e4;

    box-shadow:
        inset 0 0 0 1px var(--orange);
}



/* ============================================================
   ÇÖZÜMLER
============================================================ */

.offer-check-grid {
    display: grid;

    grid-template-columns: repeat(2,1fr);

    gap: 12px;
}


.offer-check-card {
    cursor: pointer;
}


.offer-check-card input {
    display: none;
}


.offer-check-card > span {
    min-height: 66px;

    padding: 0 16px;

    border: 1px solid #e0e5eb;
    border-radius: 11px;

    display: flex;
    align-items: center;

    gap: 12px;

    background: #fafbfd;

    color: var(--navy);

    transition: .2s ease;
}


.offer-check-card i {
    color: var(--orange-dark);

    font-size: 19px;
}


.offer-check-card strong {
    font-size: 14px;

    font-weight: 800;
}


.offer-check-card input:checked + span {
    border-color: var(--orange);

    background: #fff7e4;

    box-shadow:
        inset 0 0 0 1px var(--orange);
}



/* ============================================================
   INLINE OPTIONS
============================================================ */

.offer-inline-options {
    display: flex;

    gap: 10px;
}


.offer-inline-options label {
    flex: 1;

    cursor: pointer;
}


.offer-inline-options input {
    display: none;
}


.offer-inline-options span {
    min-height: 52px;

    padding: 0 15px;

    border: 1px solid #e0e5eb;
    border-radius: 10px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #fafbfd;

    color: var(--navy);

    font-size: 14px;
    font-weight: 800;
}


.offer-inline-options input:checked + span {
    border-color: var(--orange);

    background: var(--orange);

    color: var(--navy);
}



/* ============================================================
   PRIVACY
============================================================ */

.offer-privacy {
    display: flex;

    align-items: flex-start;

    gap: 11px;
}


.offer-privacy input {
    width: 18px;
    height: 18px;

    flex: 0 0 18px;

    margin-top: 3px;

    accent-color: var(--orange);
}


.offer-privacy span {
    color: var(--muted);

    font-size: 13px;
    line-height: 1.6;
}



/* ============================================================
   SUBMIT
============================================================ */

.offer-submit {
    width: 100%;

    min-height: 72px;

    margin-top: 22px;

    padding: 0 22px;

    border: 0;
    border-radius: 11px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background: var(--navy);

    color: #fff;

    text-align: left;

    transition: .25s ease;
}


.offer-submit small {
    display: block;

    margin-bottom: 2px;

    color: rgba(255,255,255,.58);

    font-size: 12px;
}


.offer-submit strong {
    display: block;

    font-size: 16px;

    font-weight: 800;
}


.offer-submit > i {
    width: 42px;
    height: 42px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--orange);

    color: var(--navy);

    font-size: 19px;
}


.offer-submit:hover {
    background: #0b2a55;

    transform: translateY(-2px);
}



/* ============================================================
   TEKLİF ÖZETİ
============================================================ */

.offer-summary {
    position: sticky;

    top: 115px;

    overflow: hidden;

    border-radius: 20px;

    background: var(--navy);

    color: #fff;

    box-shadow:
        0 30px 70px rgba(7,28,59,.14);
}


.offer-summary-top {
    padding: 30px;

    border-bottom:
        1px solid rgba(255,255,255,.12);
}


.offer-summary-top > span {
    display: block;

    margin-bottom: 6px;

    color: var(--orange);

    font-size: 13px;

    font-weight: 800;

    letter-spacing: .08em;

    text-transform: uppercase;
}


.offer-summary-top h2 {
    margin: 0;

    color: #fff;

    font-size: 26px;

    font-weight: 800;
}


.offer-summary-top p {
    margin: 8px 0 0;

    color: rgba(255,255,255,.55);

    font-size: 14px;
}


.offer-summary-items {
    padding: 14px 30px;
}


.offer-summary-item {
    padding: 15px 0;

    border-bottom:
        1px solid rgba(255,255,255,.1);
}


.offer-summary-item span {
    display: block;

    margin-bottom: 4px;

    color: rgba(255,255,255,.48);

    font-size: 12px;
}


.offer-summary-item strong {
    display: block;

    color: #fff;

    font-size: 14px;

    font-weight: 800;
}



/* INFO */

.offer-summary-info {
    margin: 15px;

    padding: 20px;

    border-radius: 13px;

    display: grid;

    grid-template-columns: 42px 1fr;

    gap: 13px;

    background: rgba(245,164,0,.1);
}


.offer-summary-info-icon {
    width: 42px;
    height: 42px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--orange);

    color: var(--navy);

    font-size: 17px;
}


.offer-summary-info strong {
    display: block;

    color: #fff;

    font-size: 14px;
}


.offer-summary-info p {
    margin: 5px 0 0;

    color: rgba(255,255,255,.57);

    font-size: 13px;
    line-height: 1.6;
}



/* STEPS */

.offer-summary-steps {
    padding: 22px 18px 27px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 5px;
}


.offer-summary-steps > div {
    flex: 1;

    text-align: center;
}


.offer-summary-steps span {
    width: 31px;
    height: 31px;

    margin: 0 auto 7px;

    border: 1px solid rgba(245,164,0,.35);
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--orange);

    font-size: 11px;

    font-weight: 800;
}


.offer-summary-steps p {
    margin: 0;

    color: rgba(255,255,255,.55);

    font-size: 11px;
    line-height: 1.4;
}


.offer-summary-steps > i {
    color: rgba(255,255,255,.2);

    font-size: 13px;
}



/* ============================================================
   RESPONSIVE
============================================================ */

@media(max-width:991px) {

    .offer-page-layout {
        grid-template-columns: 1fr;
    }


    .offer-summary {
        position: relative;

        top: auto;
    }

}


@media(max-width:767px) {

    .offer-hero {
        padding: 70px 0;
    }


    .offer-hero-content h1 {
        font-size: clamp(42px,12vw,58px);
    }


    .offer-hero-content > p {
        font-size: 16px;
    }


    .offer-page {
        padding: 75px 0;
    }


    .offer-form {
        padding: 24px 18px;
    }


    .offer-form-grid,
    .offer-choice-grid,
    .offer-check-grid {
        grid-template-columns: 1fr;
    }


    .offer-choice-content {
        min-height: 120px;
    }


    .offer-inline-options {
        flex-direction: column;
    }


    .offer-section-title {
        grid-template-columns: 35px 1fr;
    }

}


/* ============================================================
   CART HERO
============================================================ */

.cart-hero {
    position: relative;

    overflow: hidden;

    padding: 90px 0 95px;

    background: var(--navy);

    color: #fff;
}


.cart-hero-grid {
    position: absolute;
    inset: 0;

    opacity: .14;

    background-image:
        linear-gradient(
            rgba(255,255,255,.15) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.15) 1px,
            transparent 1px
        );

    background-size: 42px 42px;

    pointer-events: none;
}


.cart-hero::after {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    right: -120px;
    top: -230px;

    border: 90px solid rgba(245,164,0,.06);

    border-radius: 50%;

    pointer-events: none;
}


.cart-hero .site-container {
    position: relative;

    z-index: 2;
}


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


.cart-hero-content h1 {
    margin: 0;

    color: #fff;

    font-size: clamp(48px,6vw,76px);
    line-height: 1;

    letter-spacing: -.055em;

    font-weight: 800;
}


.cart-hero-content h1 span {
    color: var(--orange);
}


.cart-hero-content > p {
    max-width: 620px;

    margin: 22px 0 0;

    color: rgba(255,255,255,.67);

    font-size: 17px;
    line-height: 1.8;
}



/* ============================================================
   CART PAGE
============================================================ */

.cart-page {
    min-height: 650px;

    padding: 85px 0 110px;

    background: #f8f5ef;
}


.cart-layout {
    display: grid;

    grid-template-columns:
        minmax(0,1fr)
        390px;

    gap: 30px;

    align-items: start;
}



/* ============================================================
   CART PRODUCTS
============================================================ */

.cart-products-area {
    padding: 30px;

    border: 1px solid #e0e5eb;
    border-radius: 20px;

    background: #fff;
}


.cart-products-header {
    padding-bottom: 24px;

    border-bottom: 1px solid #e5e9ee;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;
}


.cart-products-header > div > span {
    display: block;

    margin-bottom: 3px;

    color: var(--orange-dark);

    font-size: 13px;

    font-weight: 800;

    letter-spacing: .07em;

    text-transform: uppercase;
}


.cart-products-header h2 {
    margin: 0;

    color: var(--navy);

    font-size: 25px;

    font-weight: 800;
}


.cart-clear-button {
    padding: 10px 13px;

    border: 1px solid #e1e5ea;
    border-radius: 8px;

    display: flex;
    align-items: center;

    gap: 7px;

    background: #fff;

    color: #a24a4a;

    font-size: 14px;

    font-weight: 700;

    transition: .2s ease;
}


.cart-clear-button:hover {
    border-color: #f1c7c7;

    background: #fff3f3;
}



/* ============================================================
   PRODUCT
============================================================ */

.cart-product-item {
    padding: 25px 0;

    border-bottom: 1px solid #e5e9ee;

    display: grid;

    grid-template-columns: 155px 1fr;

    gap: 23px;
}


.cart-product-image {
    width: 155px;
    height: 155px;

    overflow: hidden;

    border-radius: 14px;

    display: block;

    background: #eef1f4;
}


.cart-product-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .4s ease;
}


.cart-product-image:hover img {
    transform: scale(1.05);
}


.cart-product-info {
    min-width: 0;
}


.cart-product-top {
    display: flex;

    align-items: flex-start;
    justify-content: space-between;

    gap: 20px;
}


.cart-product-category {
    display: block;

    margin-bottom: 5px;

    color: var(--orange-dark);

    font-size: 13px;

    font-weight: 800;

    letter-spacing: .05em;

    text-transform: uppercase;
}


.cart-product-top h3 {
    margin: 0;

    font-size: 19px;
    line-height: 1.4;

    font-weight: 800;
}


.cart-product-top h3 a {
    color: var(--navy);
}


.cart-product-top h3 a:hover {
    color: var(--orange-dark);
}


.cart-product-top p {
    margin: 8px 0 0;

    color: var(--muted);

    font-size: 14px;
}


.cart-product-top p strong {
    color: var(--navy);
}


.cart-remove-button {
    width: 40px;
    height: 40px;

    padding: 0;

    border: 1px solid #e3e7eb;
    border-radius: 9px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #fff;

    color: #9e5353;

    font-size: 16px;

    transition: .2s ease;
}


.cart-remove-button:hover {
    border-color: #ecc5c5;

    background: #fff1f1;
}



/* ============================================================
   PRODUCT BOTTOM
============================================================ */

.cart-product-bottom {
    margin-top: 30px;

    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    gap: 20px;
}



/* ============================================================
   QUANTITY
============================================================ */

.cart-quantity-control {
    height: 46px;

    overflow: hidden;

    border: 1px solid #dce2e8;
    border-radius: 9px;

    display: flex;

    background: #fff;
}


.cart-quantity-control form {
    margin: 0;
}


.cart-quantity-control button {
    width: 45px;
    height: 44px;

    padding: 0;

    border: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #f5f7f9;

    color: var(--navy);

    font-size: 20px;

    transition: .2s ease;
}


.cart-quantity-control button:hover {
    background: var(--orange);
}


.cart-quantity-control > span {
    width: 50px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--navy);

    font-size: 15px;

    font-weight: 800;
}



/* ============================================================
   PRODUCT TOTAL
============================================================ */

.cart-product-total {
    text-align: right;
}


.cart-product-total small {
    display: block;

    margin-bottom: 4px;

    color: var(--muted);

    font-size: 12px;
}


.cart-product-total strong {
    display: block;

    color: var(--navy);

    font-size: 22px;
    line-height: 1;

    font-weight: 800;
}



/* ============================================================
   CONTINUE
============================================================ */

.cart-continue {
    margin-top: 25px;

    display: inline-flex;
    align-items: center;

    gap: 8px;

    color: var(--navy);

    font-size: 15px;

    font-weight: 800;
}


.cart-continue i {
    transition: transform .2s ease;
}


.cart-continue:hover {
    color: var(--orange-dark);
}


.cart-continue:hover i {
    transform: translateX(-4px);
}



/* ============================================================
   SUMMARY
============================================================ */

.cart-summary {
    position: sticky;

    top: 115px;

    overflow: hidden;

    border-radius: 20px;

    background: var(--navy);

    color: #fff;

    box-shadow:
        0 25px 65px rgba(7,28,59,.16);
}


.cart-summary-head {
    padding: 28px 28px 24px;

    border-bottom:
        1px solid rgba(255,255,255,.11);
}


.cart-summary-head > span {
    display: block;

    margin-bottom: 5px;

    color: var(--orange);

    font-size: 13px;

    font-weight: 800;

    letter-spacing: .07em;

    text-transform: uppercase;
}


.cart-summary-head h2 {
    margin: 0;

    color: #fff;

    font-size: 25px;

    font-weight: 800;
}



/* ============================================================
   SUMMARY LINES
============================================================ */

.cart-summary-lines {
    padding: 12px 28px;
}


.cart-summary-line {
    padding: 14px 0;

    border-bottom:
        1px solid rgba(255,255,255,.09);

    display: flex;
    justify-content: space-between;

    gap: 20px;

    font-size: 14px;
}


.cart-summary-line span {
    color: rgba(255,255,255,.58);
}


.cart-summary-line strong {
    color: #fff;

    font-weight: 700;
}


.cart-summary-line .cart-free {
    color: #75df91;
}



/* ============================================================
   GRAND TOTAL
============================================================ */

.cart-summary-total {
    margin: 0 28px;

    padding: 24px 0;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 15px;
}


.cart-summary-total span {
    display: block;

    color: #fff;

    font-size: 15px;

    font-weight: 800;
}


.cart-summary-total small {
    display: block;

    margin-top: 3px;

    color: rgba(255,255,255,.45);

    font-size: 12px;
}


.cart-summary-total > strong {
    white-space: nowrap;

    color: var(--orange);

    font-size: 27px;
    line-height: 1;

    font-weight: 800;
}



/* ============================================================
   CHECKOUT
============================================================ */

.cart-checkout {
    min-height: 70px;

    margin: 0 18px 18px;

    padding: 0 20px;

    border-radius: 11px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    background: var(--orange);

    color: var(--navy);

    transition: .25s ease;
}


.cart-checkout:hover {
    background: #ffb817;

    color: var(--navy);

    transform: translateY(-2px);
}


.cart-checkout span small {
    display: block;

    margin-bottom: 2px;

    color: rgba(7,28,59,.58);

    font-size: 11px;
}


.cart-checkout span strong {
    display: block;

    font-size: 15px;

    font-weight: 800;
}


.cart-checkout > i {
    width: 40px;
    height: 40px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--navy);

    color: #fff;

    font-size: 17px;
}



/* ============================================================
   SECURITY
============================================================ */

.cart-security {
    padding: 5px 28px 28px;

    display: grid;

    gap: 15px;
}


.cart-security > div {
    display: grid;

    grid-template-columns: 37px 1fr;

    align-items: center;

    gap: 11px;
}


.cart-security > div > i {
    width: 37px;
    height: 37px;

    border:
        1px solid rgba(255,255,255,.11);

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--orange);

    font-size: 15px;
}


.cart-security span strong {
    display: block;

    color: #fff;

    font-size: 12px;

    font-weight: 700;
}


.cart-security span small {
    display: block;

    margin-top: 2px;

    color: rgba(255,255,255,.43);

    font-size: 11px;
}



/* ============================================================
   EMPTY CART
============================================================ */

.cart-empty {
    max-width: 680px;

    margin: 0 auto;

    padding: 70px 40px;

    border: 1px solid #e0e5ea;
    border-radius: 22px;

    background: #fff;

    text-align: center;

    box-shadow:
        0 25px 60px rgba(7,28,59,.06);
}


.cart-empty-icon {
    width: 90px;
    height: 90px;

    margin: 0 auto 24px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #fff2cf;

    color: var(--orange-dark);

    font-size: 34px;
}


.cart-empty-label {
    display: block;

    margin-bottom: 8px;

    color: var(--orange-dark);

    font-size: 13px;

    font-weight: 800;

    letter-spacing: .07em;

    text-transform: uppercase;
}


.cart-empty h2 {
    margin: 0;

    color: var(--navy);

    font-size: clamp(31px,4vw,45px);
    line-height: 1.1;

    font-weight: 800;

    letter-spacing: -.035em;
}


.cart-empty h2 span {
    color: var(--orange-dark);
}


.cart-empty p {
    max-width: 510px;

    margin: 17px auto 27px;

    color: var(--muted);

    font-size: 16px;
    line-height: 1.75;
}



/* ============================================================
   RESPONSIVE
============================================================ */

@media(max-width: 991px) {

    .cart-layout {
        grid-template-columns: 1fr;
    }


    .cart-summary {
        position: relative;

        top: auto;
    }

}


@media(max-width: 767px) {

    .cart-hero {
        padding: 65px 0;
    }


    .cart-hero-content h1 {
        font-size: clamp(42px,12vw,58px);
    }


    .cart-hero-content > p {
        font-size: 16px;
    }


    .cart-page {
        padding: 55px 0 75px;
    }


    .cart-products-area {
        padding: 20px;

        border-radius: 16px;
    }


    .cart-products-header {
        align-items: flex-start;

        flex-direction: column;
    }


    .cart-product-item {
        grid-template-columns: 115px 1fr;

        gap: 15px;
    }


    .cart-product-image {
        width: 115px;
        height: 125px;
    }


    .cart-product-top h3 {
        font-size: 16px;
    }


    .cart-product-bottom {
        margin-top: 20px;

        align-items: flex-start;

        flex-direction: column;
    }


    .cart-product-total {
        text-align: left;
    }


    .cart-summary-total {
        align-items: flex-start;

        flex-direction: column;
    }

}


@media(max-width: 500px) {

    .cart-product-item {
        grid-template-columns: 1fr;
    }


    .cart-product-image {
        width: 100%;
        height: 280px;
    }


    .cart-product-bottom {
        flex-direction: row;

        align-items: flex-end;
        justify-content: space-between;
    }


    .cart-product-total {
        text-align: right;
    }


    .cart-empty {
        padding: 50px 20px;
    }

}


/* ============================================================
   CHECKOUT HERO
============================================================ */

.checkout-hero {
    position: relative;
    overflow: hidden;

    padding: 85px 0 80px;

    background: var(--navy);
    color: #fff;
}


.checkout-hero-grid {
    position: absolute;
    inset: 0;

    opacity: .14;

    background-image:
        linear-gradient(
            rgba(255,255,255,.15) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.15) 1px,
            transparent 1px
        );

    background-size: 42px 42px;
}


.checkout-hero::after {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    right: -110px;
    top: -250px;

    border: 90px solid rgba(245,164,0,.06);

    border-radius: 50%;
}


.checkout-hero .site-container {
    position: relative;

    z-index: 2;
}


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


.checkout-hero-content h1 {
    margin: 0;

    color: #fff;

    font-size: clamp(48px,6vw,74px);
    line-height: 1;

    letter-spacing: -.055em;

    font-weight: 800;
}


.checkout-hero-content h1 span {
    color: var(--orange);
}


.checkout-hero-content > p {
    max-width: 660px;

    margin: 21px 0 0;

    color: rgba(255,255,255,.65);

    font-size: 17px;
    line-height: 1.75;
}



/* ============================================================
   STEPS
============================================================ */

.checkout-steps {
    max-width: 500px;

    margin-top: 38px;

    display: flex;
    align-items: center;
}


.checkout-step {
    display: flex;
    align-items: center;

    gap: 8px;

    color: rgba(255,255,255,.45);
}


.checkout-step > span {
    width: 34px;
    height: 34px;

    border:
        1px solid rgba(255,255,255,.2);

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 13px;
    font-weight: 800;
}


.checkout-step strong {
    white-space: nowrap;

    font-size: 13px;
    font-weight: 700;
}


.checkout-step.active {
    color: #fff;
}


.checkout-step.active > span,
.checkout-step.completed > span {
    border-color: var(--orange);

    background: var(--orange);

    color: var(--navy);
}


.checkout-step.completed {
    color: rgba(255,255,255,.75);
}


.checkout-step-line {
    flex: 1;

    height: 1px;

    margin: 0 14px;

    background:
        rgba(255,255,255,.15);
}


.checkout-step-line.active {
    background: var(--orange);
}



/* ============================================================
   PAGE
============================================================ */

.checkout-page {
    min-height: 700px;

    padding: 80px 0 110px;

    background: #f8f5ef;
}


.checkout-layout {
    display: grid;

    grid-template-columns:
        minmax(0,1fr)
        405px;

    gap: 32px;

    align-items: start;
}



/* ============================================================
   ERROR
============================================================ */

.checkout-alert {
    margin-bottom: 25px;

    padding: 20px;

    border: 1px solid #f0c7c7;
    border-radius: 13px;

    display: flex;

    gap: 15px;

    background: #fff3f3;

    color: #7d3232;
}


.checkout-alert-icon {
    font-size: 24px;
}


.checkout-alert strong {
    font-size: 15px;
}


.checkout-alert ul {
    margin: 8px 0 0;
    padding-left: 18px;

    font-size: 14px;
}



/* ============================================================
   BOX
============================================================ */

.checkout-form {
    display: grid;

    gap: 20px;
}


.checkout-box {
    padding: 32px;

    border: 1px solid #e0e5eb;
    border-radius: 19px;

    background: #fff;
}


.checkout-box-head {
    margin-bottom: 27px;

    display: grid;

    grid-template-columns: 44px 1fr;

    gap: 14px;
}


.checkout-box-number {
    padding-top: 3px;

    color: var(--orange-dark);

    font-size: 14px;

    font-weight: 800;
    letter-spacing: .08em;
}


.checkout-box-head h2 {
    margin: 0;

    color: var(--navy);

    font-size: 21px;

    font-weight: 800;
}


.checkout-box-head p {
    margin: 4px 0 0;

    color: var(--muted);

    font-size: 14px;
}



/* ============================================================
   FORM
============================================================ */

.checkout-form-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 18px;
}


.checkout-field-full {
    grid-column: 1 / -1;
}


.checkout-field label {
    display: block;

    margin-bottom: 8px;

    color: var(--navy);

    font-size: 14px;
    font-weight: 800;
}


.checkout-field input,
.checkout-field select,
.checkout-field textarea {
    width: 100%;

    border: 1px solid #dce3e9;
    border-radius: 10px;

    outline: none;

    background: #fafbfd;

    color: var(--navy);

    font-size: 15px;

    transition: .2s ease;
}


.checkout-field input,
.checkout-field select {
    height: 55px;

    padding: 0 16px;
}


.checkout-field textarea {
    min-height: 125px;

    padding: 15px 16px;

    resize: vertical;
}


.checkout-field input:focus,
.checkout-field select:focus,
.checkout-field textarea:focus {
    border-color: var(--orange);

    background: #fff;

    box-shadow:
        0 0 0 4px rgba(245,164,0,.09);
}



/* ============================================================
   INVOICE TYPE
============================================================ */

.invoice-type {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 12px;

    margin-bottom: 22px;
}


.invoice-choice {
    cursor: pointer;
}


.invoice-choice input {
    display: none;
}


.invoice-choice > span {
    min-height: 105px;

    padding: 18px;

    border: 1px solid #e0e5eb;
    border-radius: 12px;

    display: flex;
    flex-direction: column;

    background: #fafbfd;

    transition: .2s ease;
}


.invoice-choice i {
    margin-bottom: 14px;

    color: var(--orange-dark);

    font-size: 21px;
}


.invoice-choice strong {
    color: var(--navy);

    font-size: 15px;
    font-weight: 800;
}


.invoice-choice small {
    margin-top: 3px;

    color: var(--muted);

    font-size: 12px;
}


.invoice-choice
input:checked + span {
    border-color: var(--orange);

    background: #fff7e5;

    box-shadow:
        inset 0 0 0 1px var(--orange);
}



/* ============================================================
   CORPORATE FIELDS
============================================================ */

.invoice-company-fields {
    display: none;
}


.invoice-company-fields.show {
    display: block;
}


.invoice-fields.hide {
    display: none;
}



/* ============================================================
   AGREEMENTS
============================================================ */

.checkout-agreements {
    padding: 23px 25px;

    border: 1px solid #e0e5eb;
    border-radius: 14px;

    display: grid;

    gap: 14px;

    background: #fff;
}


.checkout-agreements label {
    display: flex;
    align-items: flex-start;

    gap: 11px;
}


.checkout-agreements input {
    width: 18px;
    height: 18px;

    flex: 0 0 18px;

    margin-top: 2px;

    accent-color: var(--orange);
}


.checkout-agreements span {
    color: var(--muted);

    font-size: 13px;
    line-height: 1.65;
}


.checkout-agreements a {
    color: var(--navy);

    font-weight: 800;

    text-decoration: underline;
}



/* ============================================================
   SUMMARY
============================================================ */

.checkout-summary {
    position: sticky;

    top: 110px;

    overflow: hidden;

    border-radius: 20px;

    background: var(--navy);

    color: #fff;

    box-shadow:
        0 30px 70px rgba(7,28,59,.16);
}


.checkout-summary-head {
    padding: 28px;

    border-bottom:
        1px solid rgba(255,255,255,.1);
}


.checkout-summary-head > span {
    display: block;

    margin-bottom: 5px;

    color: var(--orange);

    font-size: 13px;

    font-weight: 800;

    letter-spacing: .07em;

    text-transform: uppercase;
}


.checkout-summary-head h2 {
    margin: 0;

    color: #fff;

    font-size: 25px;

    font-weight: 800;
}



/* ============================================================
   SUMMARY PRODUCTS
============================================================ */

.checkout-summary-products {
    max-height: 310px;

    overflow-y: auto;

    padding: 8px 28px;
}


.checkout-summary-product {
    padding: 16px 0;

    border-bottom:
        1px solid rgba(255,255,255,.09);

    display: grid;

    grid-template-columns:
        58px minmax(0,1fr) auto;

    gap: 12px;

    align-items: center;
}


.checkout-summary-image {
    position: relative;

    width: 58px;
    height: 58px;

    border-radius: 9px;

    background: #fff;

    overflow: visible;
}


.checkout-summary-image img {
    width: 100%;
    height: 100%;

    border-radius: 9px;

    object-fit: cover;
}


.checkout-summary-image > span {
    position: absolute;

    top: -7px;
    right: -7px;

    min-width: 22px;
    height: 22px;

    padding: 0 5px;

    border: 2px solid var(--navy);
    border-radius: 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--orange);

    color: var(--navy);

    font-size: 10px;
    font-weight: 800;
}


.checkout-summary-product-info {
    min-width: 0;
}


.checkout-summary-product-info strong {
    display: block;

    overflow: hidden;

    color: #fff;

    font-size: 13px;
    line-height: 1.4;

    font-weight: 700;

    text-overflow: ellipsis;
    white-space: nowrap;
}


.checkout-summary-product-info small {
    display: block;

    margin-top: 3px;

    color: rgba(255,255,255,.45);

    font-size: 11px;
}


.checkout-summary-product-price {
    white-space: nowrap;

    color: #fff;

    font-size: 12px;

    font-weight: 700;
}



/* ============================================================
   VALUES
============================================================ */

.checkout-summary-values {
    padding: 12px 28px;
}


.checkout-summary-values > div {
    padding: 11px 0;

    display: flex;
    justify-content: space-between;

    gap: 15px;

    font-size: 14px;
}


.checkout-summary-values span {
    color: rgba(255,255,255,.55);
}


.checkout-summary-values strong {
    color: #fff;

    font-weight: 700;
}


.checkout-summary-values
.checkout-free {
    color: #79e396;
}



/* ============================================================
   TOTAL
============================================================ */

.checkout-summary-total {
    margin: 0 28px;

    padding: 22px 0;

    border-top:
        1px solid rgba(255,255,255,.1);

    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    gap: 15px;
}


.checkout-summary-total span {
    display: block;

    color: #fff;

    font-size: 15px;

    font-weight: 800;
}


.checkout-summary-total small {
    display: block;

    margin-top: 3px;

    color: rgba(255,255,255,.4);

    font-size: 11px;
}


.checkout-summary-total > strong {
    white-space: nowrap;

    color: var(--orange);

    font-size: 26px;
    line-height: 1;

    font-weight: 800;
}



/* ============================================================
   PAYMENT BUTTON
============================================================ */

.checkout-payment-button {
    width: calc(100% - 36px);

    min-height: 70px;

    margin: 0 18px 20px;

    padding: 0 18px;

    border: 0;
    border-radius: 11px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background: var(--orange);

    color: var(--navy);

    text-align: left;

    transition: .25s ease;
}


.checkout-payment-button:hover {
    background: #ffb916;

    transform: translateY(-2px);
}


.checkout-payment-button small {
    display: block;

    margin-bottom: 2px;

    color: rgba(7,28,59,.55);

    font-size: 11px;
}


.checkout-payment-button strong {
    display: block;

    font-size: 15px;

    font-weight: 800;
}


.checkout-payment-button > i {
    width: 40px;
    height: 40px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--navy);

    color: #fff;

    font-size: 17px;
}



/* ============================================================
   SECURITY
============================================================ */

.checkout-secure {
    margin: 0 28px;

    padding: 18px 0;

    border-top:
        1px solid rgba(255,255,255,.09);

    display: grid;

    grid-template-columns: 40px 1fr;

    gap: 11px;

    align-items: center;
}


.checkout-secure > i {
    width: 40px;
    height: 40px;

    border:
        1px solid rgba(255,255,255,.12);

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--orange);

    font-size: 16px;
}


.checkout-secure strong {
    display: block;

    color: #fff;

    font-size: 12px;
}


.checkout-secure small {
    display: block;

    margin-top: 2px;

    color: rgba(255,255,255,.42);

    font-size: 11px;
    line-height: 1.5;
}


.checkout-back-cart {
    margin: 0 28px 27px;

    display: inline-flex;
    align-items: center;

    gap: 7px;

    color: rgba(255,255,255,.58);

    font-size: 13px;

    font-weight: 700;
}


.checkout-back-cart:hover {
    color: var(--orange);
}



/* ============================================================
   MOBILE BUTTON
============================================================ */

.checkout-mobile-submit {
    display: none;
}



/* ============================================================
   RESPONSIVE
============================================================ */

@media(max-width:991px) {

    .checkout-layout {
        grid-template-columns: 1fr;
    }


    .checkout-summary {
        position: relative;
        top: auto;
    }


    .checkout-payment-button {
        display: none;
    }


    .checkout-mobile-submit {
        min-height: 58px;

        padding: 0 20px;

        border: 0;
        border-radius: 10px;

        display: flex;
        align-items: center;
        justify-content: center;

        gap: 10px;

        background: var(--orange);

        color: var(--navy);

        font-size: 15px;
        font-weight: 800;
    }

}


@media(max-width:767px) {

    .checkout-hero {
        padding: 65px 0;
    }


    .checkout-hero-content h1 {
        font-size: clamp(42px,12vw,58px);
    }


    .checkout-hero-content > p {
        font-size: 16px;
    }


    .checkout-steps {
        margin-top: 30px;
    }


    .checkout-step strong {
        display: none;
    }


    .checkout-step-line {
        margin: 0 8px;
    }


    .checkout-page {
        padding: 55px 0 75px;
    }


    .checkout-box {
        padding: 23px 18px;

        border-radius: 15px;
    }


    .checkout-form-grid,
    .invoice-type {
        grid-template-columns: 1fr;
    }


    .checkout-field-full {
        grid-column: auto;
    }


    .checkout-box-head {
        grid-template-columns: 35px 1fr;
    }


    .checkout-summary-products {
        max-height: none;
    }

}


/* ============================================================
   ACTIVE MENU
============================================================ */

.desktop-menu a {
    position: relative;
}


.desktop-menu a::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: -9px;

    width: 0;
    height: 2px;

    border-radius: 10px;

    background: var(--orange);

    transform: translateX(-50%);

    transition: width .25s ease;
}


.desktop-menu a:hover::after,
.desktop-menu a.active::after {
    width: 100%;
}


.desktop-menu a.active {
    color: var(--navy);

    font-weight: 800;
}