:root {
    --brand-accent: #7BAA47;
    --brand-accent-strong: #5f922f;
    --brand-accent-soft: rgba(123, 170, 71, 0.14);
    --brand-dark: #111713;
    --brand-darker: #0c110e;
    --brand-text: #29312a;
    --brand-muted: #66706a;
    --brand-line: rgba(17, 23, 19, 0.08);
    --brand-shadow: 0 22px 60px rgba(15, 20, 16, 0.14);
    --brand-radius-xl: 30px;
    --brand-radius-lg: 24px;
    --brand-radius-md: 18px;
    --brand-radius-sm: 14px;
}

html {
    scroll-behavior: smooth;
}

body {
    color: var(--brand-text);
    background: #f6f7f3;
}

body.homepage {
    background: #ffffff;
}

#full-container {
    overflow-x: clip;
}

/* ------------------------------
   GLOBAL HEADER
------------------------------ */
#header.brand-header {
    position: fixed !important;
    top: 18px !important;
    left: 50% !important;
    right: auto !important;
    width: min(1240px, calc(100% - 24px)) !important;
    height: auto !important;
    background: transparent !important;
    box-shadow: none !important;
    transform: translateX(-50%);
    z-index: 1400 !important;
    transition: opacity 0.42s ease, transform 0.42s ease;
}

#header.brand-header .header-bar,
#header.brand-header .header-bar-wrap,
#header.brand-header .container,
#header.brand-header .row,
#header.brand-header .col-md-12,
#header.brand-header .hb-content {
    width: 100%;
    height: auto !important;
    min-height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    display: block !important;
}

.brand-header__frame {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    gap: 18px;
    padding: 16px 22px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 26px;
    box-shadow: 0 20px 55px rgba(12, 17, 14, 0.12);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.brand-logo {
    min-width: 0;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    line-height: 1;
}

.brand-logo__image {
    display: block;
    width: auto;
    height: 50px;
}


.brand-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    min-width: 0;
}

.brand-nav__link,
.brand-dropdown__toggle,
.brand-dropdown__anchor {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 2px;
    border: 0;
    background: transparent;
    color: rgba(17, 23, 19, 0.78);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.01em;
    text-decoration: none !important;
    cursor: pointer;
    transition: color 0.28s ease, transform 0.28s ease;
}

.brand-nav__link::after,
.brand-dropdown__anchor::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 4px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(123, 170, 71, 0), rgba(123, 170, 71, 1), rgba(123, 170, 71, 0));
    transform: scaleX(0.4);
    opacity: 0;
    transition: opacity 0.28s ease, transform 0.28s ease;
}

.brand-nav__link:hover,
.brand-nav__link.active,
.brand-dropdown__anchor:hover,
.brand-dropdown__anchor.active,
.brand-dropdown:hover .brand-dropdown__anchor,
.brand-dropdown.is-open .brand-dropdown__anchor,
.brand-dropdown:hover .brand-dropdown__toggle,
.brand-dropdown.is-open .brand-dropdown__toggle,
.brand-dropdown__toggle:hover {
    color: var(--brand-accent-strong) !important;
}

.brand-nav__link:hover::after,
.brand-nav__link.active::after,
.brand-dropdown__anchor:hover::after,
.brand-dropdown__anchor.active::after,
.brand-dropdown:hover .brand-dropdown__anchor::after,
.brand-dropdown.is-open .brand-dropdown__anchor::after {
    opacity: 1;
    transform: scaleX(1);
}

.brand-dropdown {
    position: relative;
    display: flex;
    align-items: center;
    gap: 4px;
}

.brand-dropdown__toggle {
    padding-inline: 0;
    color: rgba(17, 23, 19, 0.5);
}

.brand-dropdown__panel {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    width: min(340px, calc(100vw - 36px));
    padding: 12px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(17, 23, 19, 0.08);
    border-radius: 22px;
    box-shadow: 0 24px 50px rgba(12, 17, 14, 0.14);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transform: translate(-50%, 12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.26s ease, transform 0.26s ease, visibility 0.26s ease;
    max-height: min(72vh, 620px);
    overflow: auto;
}

.brand-dropdown:hover .brand-dropdown__panel,
.brand-dropdown.is-open .brand-dropdown__panel,
.brand-dropdown:focus-within .brand-dropdown__panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.brand-dropdown__grid {
    display: grid;
    gap: 8px;
}

.brand-dropdown__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 16px;
    color: var(--brand-text) !important;
    text-decoration: none !important;
    transition: background-color 0.24s ease, color 0.24s ease, transform 0.24s ease;
}

.brand-dropdown__item span {
    display: block;
    font-size: 13px;
    color: var(--brand-muted);
    line-height: 1.45;
}

.brand-dropdown__item strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 2px;
}

.brand-dropdown__item i {
    color: rgba(17, 23, 19, 0.35);
    transition: transform 0.24s ease, color 0.24s ease;
}

.brand-dropdown__item:hover,
.brand-dropdown__item.is-current {
    background: linear-gradient(135deg, rgba(123, 170, 71, 0.14), rgba(123, 170, 71, 0.05));
    transform: translateY(-1px);
}

.brand-dropdown__item:hover i,
.brand-dropdown__item.is-current i {
    transform: translateX(3px);
    color: var(--brand-accent-strong);
}

.brand-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 136px;
    min-height: 52px;
    padding: 12px 20px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--brand-accent) 0%, var(--brand-accent-strong) 100%);
    color: #ffffff !important;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none !important;
    box-shadow: 0 18px 34px rgba(123, 170, 71, 0.22);
    transition: transform 0.28s ease, box-shadow 0.28s ease, filter 0.28s ease;
}

.brand-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 42px rgba(123, 170, 71, 0.28);
    filter: saturate(1.02);
}

.brand-menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(17, 23, 19, 0.08);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.72);
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex-direction: column;
    cursor: pointer;
    transition: background-color 0.28s ease, border-color 0.28s ease;
}

.brand-menu-toggle span {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: var(--brand-dark);
    transition: transform 0.28s ease, opacity 0.28s ease;
}

.brand-header.nav-open .brand-menu-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.brand-header.nav-open .brand-menu-toggle span:nth-child(2) {
    opacity: 0;
}

.brand-header.nav-open .brand-menu-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* Home header visibility behavior */
body.homepage #header.brand-header {
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -18px);
}

body.homepage.home-nav-visible #header.brand-header {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

/* ------------------------------
   HOME HERO
------------------------------ */
#banner.brand-home-hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: stretch;
    justify-content: center;
    overflow: hidden;
    padding: 0 !important;
    margin: 0 !important;
}

.brand-home-hero__backdrop {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 22%, rgba(123, 170, 71, 0.18) 0%, rgba(123, 170, 71, 0) 28%),
        radial-gradient(circle at 84% 20%, rgba(123, 170, 71, 0.12) 0%, rgba(123, 170, 71, 0) 20%),
        linear-gradient(135deg, #0d110f 0%, #111713 48%, #16311c 100%);
}

.brand-home-hero__backdrop::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(13, 17, 15, 0.08) 0%, rgba(13, 17, 15, 0.04) 38%, rgba(13, 17, 15, 0.26) 100%);
}

.brand-home-hero__grid {
    position: absolute;
    inset: 0;
    opacity: 0.085;
    background-image:
        linear-gradient(rgba(123, 170, 71, 0.55) 1px, transparent 1px),
        linear-gradient(90deg, rgba(123, 170, 71, 0.55) 1px, transparent 1px);
    background-size: 68px 68px;
    mask-image: radial-gradient(circle at 50% 42%, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.76) 44%, rgba(0, 0, 0, 0.08) 100%);
    -webkit-mask-image: radial-gradient(circle at 50% 42%, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.76) 44%, rgba(0, 0, 0, 0.08) 100%);
}

.brand-home-hero__nav {
    position: absolute;
    top: 0;
    left: 50%;
    width: min(1240px, calc(100% - 42px));
    padding: 30px 0 0;
    transform: translateX(-50%);
    z-index: 3;
}

.hero-minimal-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.hero-minimal-nav__logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    line-height: 1;
    padding: 8px 12px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(11, 18, 13, 0.26), rgba(255, 255, 255, 0.04));
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0 10px 30px rgba(4, 10, 7, 0.14);
    backdrop-filter: blur(10px) saturate(115%);
    -webkit-backdrop-filter: blur(10px) saturate(115%);
}

.hero-minimal-nav__logo-image {
    display: block;
    width: auto;
    height: 42px;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.12));
}


.hero-minimal-nav__links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.hero-minimal-nav__links a {
    color: rgba(255, 255, 255, 0.72) !important;
    text-decoration: none !important;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.28s ease;
}

.hero-minimal-nav__links a:hover {
    color: #ffffff !important;
}

.hero-minimal-nav__links .hero-minimal-nav__cta {
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
}

.brand-home-hero__content {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 24px 80px;
}

.brand-home-hero__content-inner {
    max-width: 1080px;
    text-align: center;
}

.brand-home-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.82);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.brand-home-hero__eyebrow i {
    color: var(--brand-accent);
}

.brand-home-hero__title {
    margin: 24px 0 0;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: clamp(4.2rem, 11vw, 9.2rem);
    line-height: 0.96;
    letter-spacing: -0.06em;
    text-transform: lowercase;
    font-weight: 800;
}

.brand-home-hero__subtitle {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.76);
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.35rem, 3.5vw, 2.7rem);
    line-height: 1.2;
    font-weight: 700;
}

.brand-home-hero__subtitle .static-part {
    color: rgba(255, 255, 255, 0.74);
}

.hero-typewriter-wrap {
    display: inline-flex;
    align-items: center;
    min-width: 5ch;
    color: var(--brand-accent);
}

.hero-typewriter {
    display: inline-block;
    min-width: 0;
}

.hero-typewriter__cursor {
    width: 0.07em;
    height: 0.95em;
    margin-left: 0.08em;
    background: var(--brand-accent);
    display: inline-block;
    animation: brandBlink 1s step-end infinite;
}

.brand-home-hero__description {
    max-width: 760px;
    margin: 30px auto 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 18px;
    line-height: 1.9;
}

.brand-home-hero__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 34px;
}

.brand-home-hero__actions .btn {
    min-width: 206px;
}

.brand-home-hero__actions .btn-white-alt {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: #ffffff !important;
}

.brand-home-hero__actions .btn-white-alt:hover {
    background: #ffffff;
    color: var(--brand-dark) !important;
}

.brand-home-hero__meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    max-width: 1040px;
    margin: 42px auto 0;
}

.brand-home-hero__meta-card {
    padding: 22px 22px 20px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
    text-align: left;
    backdrop-filter: blur(8px);
}

.brand-home-hero__meta-card strong {
    display: block;
    color: #ffffff;
    font-size: 17px;
    margin-bottom: 10px;
    font-weight: 700;
}

.brand-home-hero__meta-card span {
    display: block;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.78;
    font-size: 14px;
}

.brand-home-hero__scroll {
    position: absolute;
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.45);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.22em;
}

.brand-home-hero__scroll-line {
    width: 1px;
    height: 44px;
    background: rgba(255, 255, 255, 0.16);
    position: relative;
    overflow: hidden;
}

.brand-home-hero__scroll-line::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 55%;
    background: linear-gradient(to bottom, rgba(123, 170, 71, 0), rgba(123, 170, 71, 1), rgba(123, 170, 71, 0));
    animation: scrollPulse 1.7s ease-in-out infinite;
}

/* ------------------------------
   INTERNAL HERO & READABILITY
------------------------------ */
.page-hero {
    position: relative; /* İçindeki görseli tam tutabilmesi için eklendi */
    min-height: clamp(520px, 72vh, 760px);
    margin-top: 0 !important; 
    overflow: hidden; /* Dışan taşan fotoğrafı keser */
}

.page-hero > img {
    position: absolute !important; /* Fotoğrafı her şeyin arkasına, en tepeye sabitler */
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important; /* Bozulmadan tam ekranı kaplamasını sağlar */
    z-index: -2 !important; /* Yazıların arkasında kalması için */
    
    /* GÖRÜNÜRLÜK AYARI BURADA: 0.26 yerine 0.6 yapıyoruz */
    opacity: 0.6 !important; 
    filter: grayscale(0.04) contrast(1.06) brightness(1); /* Brightness'ı 1'e çektim, daha canlı olacak */
}

.page-hero .overlay-colored {
    position: absolute !important;
    inset: 0 !important;
    z-index: -1 !important; /* Fotoğrafın üstünde, yazıların arkasında kalması için */
    background:
        radial-gradient(circle at 85% 24%, rgba(123, 170, 71, 0.18) 0%, rgba(123, 170, 71, 0) 22%),
        linear-gradient(120deg, rgba(11, 14, 12, 0.92) 0%, rgba(15, 18, 16, 0.84) 44%, rgba(26, 40, 24, 0.78) 100%) !important;
}

.page-about .page-hero > img {
    opacity: 0.22 !important;
}

.page-about .page-hero .overlay-colored {
    background:
        radial-gradient(circle at 85% 24%, rgba(123, 170, 71, 0.2) 0%, rgba(123, 170, 71, 0) 24%),
        linear-gradient(120deg, rgba(10, 13, 11, 0.78) 0%, rgba(14, 17, 15, 0.68) 48%, rgba(28, 44, 26, 0.62) 100%) !important;

    
}

.page-about .page-hero h1,
.page-services-hub .page-hero h1,
.page-service .page-hero h1 {
    color: #ffffff !important;
    text-shadow: 0 16px 38px rgba(0, 0, 0, 0.28);
}

.page-about .page-hero p,
.page-about .page-hero .hero-meta-item span,
.page-about .breadcrumbs,
.page-about .breadcrumbs a,
.page-about #section-why p,
.page-about #section-why .description,
.page-about #section-why .list-info li,
.page-about #section-cta-1 p,
.page-services-hub .page-hero p,
.page-services-hub .hero-meta-item span,
.page-service .page-hero p,
.page-service .hero-meta-item span {
    color: rgba(255, 255, 255, 0.9) !important;
}

.page-about #section-why .why-feature p {
    color: rgba(255, 255, 255, 0.82) !important;
}

.page-about .hero-badge,
.page-services-hub .hero-badge,
.page-service .hero-badge {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.16);
}

.page-about .hero-actions .btn.dark {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: #ffffff !important;
}

.page-about .hero-actions .btn.dark:hover {
    background: #ffffff;
    color: var(--brand-dark) !important;
}

/* ------------------------------
   COMMON CARD ALIGNMENT
------------------------------ */
.row-eq-height {
    display: flex;
    flex-wrap: wrap;
}

.row-eq-height > [class*="col-"] {
    display: flex;
    flex-direction: column;
}

.about-visual,
.mission-card,
.value-card,
.process-step,
.catalog-card,
.feature-card,
.application-card,
.preview-card,
.related-card,
.info-card,
.catalog-side-card,
.cta-panel,
.why-panel,
.client-single,
.mini-stat,
.hero-meta-item,
.home-proof-card,
.capability-card,
.process-card-home,
.solution-card,
.home-intro-panel,
.home-note-card,
.box-info {
    height: 100%;
}

.catalog-card,
.feature-card,
.application-card,
.preview-card,
.related-card,
.mission-card,
.value-card,
.process-step,
.client-single,
.info-card,
.catalog-side-card,
.cta-panel,
.why-panel,
.about-visual {
    display: flex;
    flex-direction: column;
}

.catalog-card .catalog-body,
.preview-card .preview-body,
.related-card .related-card__body {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
}

.catalog-card .link-arrow {
    margin-top: auto;
}

.catalog-grid,
.feature-grid,
.application-grid,
.preview-grid,
.related-grid {
    align-items: stretch;
}

.catalog-grid {
    row-gap: 26px;
}

.catalog-card,
.feature-card,
.application-card,
.preview-card,
.related-card,
.mission-card,
.value-card,
.process-step,
.info-card,
.catalog-side-card,
.why-panel,
.about-visual,
.cta-panel {
    border-radius: 24px !important;
}

/* ------------------------------
   ABOUT PAGE ADDITIONS
------------------------------ */
.about-signal-strip {
    position: relative;
    z-index: 5;
    margin-top: -52px;
    padding-bottom: 24px;
}

.about-signal-panel {
    padding: 18px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(17, 23, 19, 0.06);
    box-shadow: var(--brand-shadow);
}

.about-signal-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.about-signal-card {
    padding: 22px 20px;
    border-radius: 22px;
    background: linear-gradient(180deg, #ffffff 0%, #f5f7f1 100%);
    border: 1px solid rgba(123, 170, 71, 0.12);
}

.about-signal-card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    margin-bottom: 16px;
    background: rgba(123, 170, 71, 0.14);
    color: var(--brand-accent-strong);
    font-size: 18px;
}

.about-signal-card h3 {
    margin: 0 0 10px;
    color: var(--brand-dark);
    font-size: 18px;
    font-weight: 700;
}

.about-signal-card p {
    margin: 0;
    color: var(--brand-muted);
    line-height: 1.78;
    font-size: 14px;
}

.about-commitment {
    padding: 18px 0 96px;
    background: linear-gradient(180deg, rgba(247, 248, 244, 0) 0%, #f6f7f3 100%);
}

.about-commitment__head {
    max-width: 720px;
    margin: 0 auto 32px;
    text-align: center;
}

.about-commitment__head .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(123, 170, 71, 0.1);
    color: var(--brand-accent-strong);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.about-commitment__head h2 {
    margin: 18px 0 14px;
    color: var(--brand-dark);
    font-size: clamp(32px, 4vw, 46px);
    line-height: 1.18;
}

.about-commitment__head p {
    margin: 0;
    color: var(--brand-muted);
    line-height: 1.85;
    font-size: 16px;
}

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

.about-commitment__card {
    height: 100%;
    padding: 28px 24px;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid rgba(17, 23, 19, 0.07);
    box-shadow: 0 18px 40px rgba(12, 17, 14, 0.07);
}

.about-commitment__card .step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    min-height: 32px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(123, 170, 71, 0.12);
    color: var(--brand-accent-strong);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.about-commitment__card h3 {
    margin: 18px 0 10px;
    color: var(--brand-dark);
    font-size: 20px;
    line-height: 1.3;
}

.about-commitment__card p {
    margin: 0;
    color: var(--brand-muted);
    font-size: 15px;
    line-height: 1.82;
}

/* ------------------------------
   SERVICES PAGE ADDITIONS
------------------------------ */
.services-paths {
    padding: 24px 0 22px;
}

.services-paths__panel {
    padding: 34px;
    border-radius: 32px;
    background: linear-gradient(135deg, #111713 0%, #16221a 100%);
    color: #ffffff;
    box-shadow: 0 26px 62px rgba(12, 17, 14, 0.14);
    overflow: hidden;
    position: relative;
}

.services-paths__panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 86% 20%, rgba(123, 170, 71, 0.18) 0%, rgba(123, 170, 71, 0) 24%),
        linear-gradient(rgba(123, 170, 71, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(123, 170, 71, 0.08) 1px, transparent 1px);
    background-size: auto, 44px 44px, 44px 44px;
    opacity: 0.55;
    mask-image: linear-gradient(135deg, rgba(0,0,0,1) 35%, rgba(0,0,0,0.5) 100%);
    -webkit-mask-image: linear-gradient(135deg, rgba(0,0,0,1) 35%, rgba(0,0,0,0.5) 100%);
}

.services-paths__panel > * {
    position: relative;
    z-index: 1;
}

.services-paths__head {
    max-width: 760px;
}

.services-paths__head .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.84);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.services-paths__head h2 {
    margin: 18px 0 12px;
    font-size: clamp(30px, 4.2vw, 44px);
    line-height: 1.18;
    color: #ffffff;
}

.services-paths__head p {
    margin: 0;
    font-size: 16px;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.74);
}

.services-paths__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-top: 26px;
}

.services-paths__card {
    position: relative;
    display: block;
    width: 100%;
    padding: 24px 22px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    text-align: left;
    cursor: pointer;
    text-decoration: none !important;
    transition: transform 0.28s ease, background-color 0.28s ease, border-color 0.28s ease;
}

.services-paths__card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.16);
}

.services-paths__card .icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    margin-bottom: 16px;
    background: rgba(123, 170, 71, 0.18);
    color: #d4f1b4;
    font-size: 20px;
}

.services-paths__card strong {
    display: block;
    font-size: 18px;
    line-height: 1.32;
    color: #ffffff;
    margin-bottom: 8px;
}

.services-paths__card span {
    display: block;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    line-height: 1.72;
}

.services-filter {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin: 0 0 30px;
}

.services-filter__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 16px;
    border-radius: 999px;
    border: 1px solid rgba(17, 23, 19, 0.08);
    background: #ffffff;
    color: var(--brand-text);
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.26s ease, border-color 0.26s ease, background-color 0.26s ease, color 0.26s ease, box-shadow 0.26s ease;
}

.services-filter__button:hover,
.services-filter__button.is-active {
    color: #ffffff;
    background: linear-gradient(135deg, var(--brand-accent), var(--brand-accent-strong));
    border-color: transparent;
    box-shadow: 0 18px 36px rgba(123, 170, 71, 0.2);
    transform: translateY(-1px);
}

.catalog-card.is-filtering {
    transition: opacity 0.28s ease, transform 0.28s ease;
}

.catalog-card.is-filtered-out {
    opacity: 0;
    transform: translateY(16px) scale(0.98);
}

/* ------------------------------
   CONTACT PAGE
------------------------------ */
.contact-page {
    background: #f6f7f3;
}

.contact-hero {
    position: relative;
    min-height: 62vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 150px 0 110px;
    background:
        radial-gradient(circle at 18% 22%, rgba(123, 170, 71, 0.18) 0%, rgba(123, 170, 71, 0) 26%),
        radial-gradient(circle at 84% 18%, rgba(123, 170, 71, 0.12) 0%, rgba(123, 170, 71, 0) 18%),
        linear-gradient(135deg, #0d110f 0%, #111713 52%, #16311c 100%);
}

.contact-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(123, 170, 71, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(123, 170, 71, 0.08) 1px, transparent 1px);
    background-size: 56px 56px;
    opacity: 0.5;
    mask-image: radial-gradient(circle at 50% 40%, rgba(0,0,0,1) 0%, rgba(0,0,0,0.65) 50%, rgba(0,0,0,0.12) 100%);
    -webkit-mask-image: radial-gradient(circle at 50% 40%, rgba(0,0,0,1) 0%, rgba(0,0,0,0.65) 50%, rgba(0,0,0,0.12) 100%);
}

.contact-hero .container {
    position: relative;
    z-index: 1;
}

.contact-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.82);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.contact-hero__eyebrow i {
    color: var(--brand-accent);
}

.contact-hero h1 {
    max-width: 760px;
    margin: 22px 0 18px;
    color: #ffffff;
    font-size: clamp(38px, 6vw, 72px);
    line-height: 1.04;
    letter-spacing: -0.05em;
}

.contact-hero p {
    max-width: 760px;
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 18px;
    line-height: 1.9;
}

.contact-overlap {
    position: relative;
    z-index: 5;
    margin-top: -56px;
}

.contact-overlap__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.contact-overlap__card {
    padding: 22px 20px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(17, 23, 19, 0.06);
    box-shadow: 0 22px 50px rgba(12, 17, 14, 0.1);
}

.contact-overlap__card .icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    background: rgba(123, 170, 71, 0.14);
    color: var(--brand-accent-strong);
    font-size: 18px;
}

.contact-overlap__card h3 {
    margin: 0 0 8px;
    color: var(--brand-dark);
    font-size: 18px;
}

.contact-overlap__card p,
.contact-overlap__card a {
    margin: 0;
    color: var(--brand-muted) !important;
    font-size: 14px;
    line-height: 1.8;
    text-decoration: none !important;
}

.contact-overlap__card a:hover {
    color: var(--brand-accent-strong) !important;
}

.contact-shell {
    padding: 34px 0 92px;
}

.contact-shell__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
    gap: 24px;
    align-items: start;
}

.contact-panel,
.contact-side {
    background: #ffffff;
    border: 1px solid rgba(17, 23, 19, 0.06);
    border-radius: 30px;
    box-shadow: 0 20px 52px rgba(12, 17, 14, 0.08);
}

.contact-panel {
    padding: 30px;
}

.contact-panel h2,
.contact-side h3 {
    margin: 0 0 12px;
    color: var(--brand-dark);
}

.contact-panel p,
.contact-side p {
    margin: 0;
    color: var(--brand-muted);
    line-height: 1.84;
}

.contact-form {
    margin-top: 26px;
}

.contact-form__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.contact-form__field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-form__field.full {
    grid-column: 1 / -1;
}

.contact-form__field label {
    color: var(--brand-dark);
    font-size: 13px;
    font-weight: 700;
}

.contact-form__field input,
.contact-form__field textarea,
.contact-form__field select {
    width: 100%;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid rgba(17, 23, 19, 0.08);
    background: #f7f8f4;
    color: var(--brand-text);
    font-size: 14px;
    line-height: 1.6;
    transition: border-color 0.24s ease, box-shadow 0.24s ease, background-color 0.24s ease;
}

.contact-form__field textarea {
    min-height: 154px;
    resize: vertical;
}

.contact-form__field input:focus,
.contact-form__field textarea:focus,
.contact-form__field select:focus {
    outline: none;
    border-color: rgba(123, 170, 71, 0.5);
    background: #ffffff;
    box-shadow: 0 0 0 5px rgba(123, 170, 71, 0.12);
}

.contact-form__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.contact-form__note {
    color: var(--brand-muted);
    font-size: 13px;
}

.contact-form__status {
    display: none;
    margin-top: 14px;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(123, 170, 71, 0.1);
    color: var(--brand-accent-strong);
    font-size: 13px;
    font-weight: 600;
}

.contact-form__status.is-visible {
    display: block;
}

.contact-side {
    padding: 28px 24px;
    display: grid;
    gap: 18px;
}

.contact-side__card {
    padding: 22px;
    border-radius: 22px;
    background: linear-gradient(180deg, #ffffff 0%, #f7f8f4 100%);
    border: 1px solid rgba(17, 23, 19, 0.05);
}

.contact-side__card h4 {
    margin: 0 0 10px;
    color: var(--brand-dark);
    font-size: 18px;
}

.contact-side__card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-side__card li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 12px;
    color: var(--brand-muted);
    line-height: 1.72;
}

.contact-side__card li:last-child {
    margin-bottom: 0;
}

.contact-side__card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--brand-accent);
    box-shadow: 0 0 0 6px rgba(123, 170, 71, 0.12);
}

.contact-hours {
    display: grid;
    gap: 12px;
}

.contact-hours__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(17, 23, 19, 0.06);
    color: var(--brand-muted);
}

.contact-hours__row:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.contact-hours__row strong {
    color: var(--brand-dark);
}

.contact-service-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.contact-service-links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 999px;
    background: rgba(123, 170, 71, 0.1);
    color: var(--brand-accent-strong) !important;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none !important;
    transition: transform 0.24s ease, background-color 0.24s ease;
}

.contact-service-links a:hover {
    transform: translateY(-1px);
    background: rgba(123, 170, 71, 0.16);
}

/* ------------------------------
   Smoother section transitions
------------------------------ */
body.js-ready .reveal-up {
    transform: translate3d(0, 22px, 0) scale(0.992);
    transition: opacity 0.82s ease, transform 0.82s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal-delay-1 { transition-delay: 0.06s; }
.reveal-delay-2 { transition-delay: 0.12s; }
.reveal-delay-3 { transition-delay: 0.18s; }

/* ------------------------------
   Responsive
------------------------------ */
@media (max-width: 1199px) {
    .brand-header__frame {
        grid-template-columns: auto 1fr auto;
    }

    .brand-menu-toggle {
        display: inline-flex;
        margin-left: auto;
    }

    .brand-nav {
        position: absolute;
        top: calc(100% + 12px);
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        padding: 18px;
        background: rgba(255, 255, 255, 0.96);
        border: 1px solid rgba(17, 23, 19, 0.08);
        border-radius: 24px;
        box-shadow: 0 24px 50px rgba(12, 17, 14, 0.14);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
    }

    .brand-header.nav-open .brand-nav {
        display: flex;
    }

    .brand-nav__link,
    .brand-dropdown__anchor,
    .brand-dropdown__toggle {
        width: 100%;
        justify-content: space-between;
        padding: 12px 8px;
    }

    .brand-dropdown {
        display: grid;
        grid-template-columns: 1fr auto;
        align-items: center;
        gap: 0;
        width: 100%;
    }

    .brand-dropdown__anchor {
        grid-column: 1 / 2;
        width: auto;
    }

    .brand-dropdown__toggle {
        grid-column: 2 / 3;
        width: auto;
        justify-content: center;
        padding: 12px 8px;
    }

    .brand-dropdown__panel {
        grid-column: 1 / -1;
        position: static;
        width: 100%;
        margin-top: 8px;
        transform: none !important;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        display: none;
        box-shadow: none;
        background: #f7f8f4;
        border-radius: 18px;
        border: 1px solid rgba(17, 23, 19, 0.06);
        padding: 10px;
    }

    .brand-dropdown.is-open .brand-dropdown__panel {
        display: block;
    }

    .brand-cta {
        min-width: 122px;
    }

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

    .about-signal-grid,
    .services-paths__grid,
    .contact-overlap__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

@media (max-width: 991px) {
    #header.brand-header {
        top: 12px !important;
        width: min(100%, calc(100% - 18px)) !important;
    }

    .brand-header__frame {
        padding: 14px 16px;
        gap: 14px;
    }

    .brand-cta {
        display: none;
    }

    .hero-minimal-nav__links {
        gap: 14px;
    }

    .brand-home-hero__content {
        padding: 134px 20px 72px;
    }

    .brand-home-hero__description,
    .contact-hero p,
    .page-hero p {
        font-size: 17px;
    }

    .services-paths__panel,
    .contact-panel,
    .contact-side {
        padding: 24px;
    }

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

@media (max-width: 767px) {
    .brand-logo__image {
        height: 42px;
    }

    .hero-minimal-nav__logo {
        padding: 10px 14px;
    }

    .hero-minimal-nav__logo-image {
        height: 46px;
    }

    .hero-minimal-nav {
        align-items: flex-start;
    }

    .hero-minimal-nav__links a:not(.hero-minimal-nav__cta) {
        display: none;
    }

    .brand-home-hero__title {
        font-size: clamp(3.4rem, 16vw, 5.2rem);
    }

    .brand-home-hero__subtitle {
        gap: 8px;
    }

    .brand-home-hero__description {
        font-size: 16px;
        line-height: 1.8;
    }

    .brand-home-hero__meta,
    .about-signal-grid,
    .about-commitment__grid,
    .services-paths__grid,
    .contact-overlap__grid,
    .contact-form__grid {
        grid-template-columns: 1fr;
    }

    .brand-home-hero__meta-card,
    .about-signal-card,
    .about-commitment__card,
    .services-paths__card,
    .contact-overlap__card {
        padding: 20px 18px;
    }

    .services-filter {
        justify-content: flex-start;
    }

    .page-hero .section-content,
    .contact-hero {
        padding-top: 138px;
    }

    .about-signal-strip,
    .contact-overlap {
        margin-top: -38px;
    }

    .contact-panel,
    .contact-side,
    .services-paths__panel {
        border-radius: 24px;
    }

    .contact-form__footer {
        align-items: stretch;
    }

    .contact-form__footer .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    #header.brand-header,
    .brand-dropdown__panel,
    .brand-nav,
    .brand-home-hero__scroll-line::after,
    body.js-ready .reveal-up,
    .catalog-card.is-filtering {
        transition: none !important;
        animation: none !important;
    }
}

@keyframes brandBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

@keyframes scrollPulse {
    0%, 100% { transform: translateY(-100%); }
    55% { transform: translateY(180%); }
}
