﻿:root {
    --primary: #5b7e3c;
    --primary-deep: #3f5d28;
    --primary-soft: #a2cb8b;
    --accent: #c44545;
    --accent-soft: #e8f5bd;
    --ink: #182014;
    --muted: #5f6659;
    --surface: rgba(255, 255, 255, 0.82);
    --surface-strong: #ffffff;
    --surface-soft: #f6f8ef;
    --border: rgba(91, 126, 60, 0.14);
    --shadow-lg: 0 32px 70px rgba(24, 32, 20, 0.14);
    --shadow-md: 0 18px 42px rgba(24, 32, 20, 0.1);
    --shadow-sm: 0 12px 24px rgba(24, 32, 20, 0.08);
    --radius-xl: 36px;
    --radius-lg: 26px;
    --radius-md: 18px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    overflow-x: hidden;
}

body {
    margin: 0;
    color: var(--ink);
    font-family: 'Source Sans 3', sans-serif;
    background:
        radial-gradient(circle at top left, rgba(162, 203, 139, 0.3), transparent 30%),
        radial-gradient(circle at 86% 18%, rgba(196, 69, 69, 0.14), transparent 22%),
        linear-gradient(180deg, #fafcf5 0%, #eef4e6 46%, #f8faf2 100%);
    padding-top: 108px;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(91, 126, 60, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(91, 126, 60, 0.045) 1px, transparent 1px);
    background-size: 52px 52px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent 84%);
    z-index: -1;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
}

a:hover {
    color: var(--accent);
}

h1,
h2,
h3,
h4,
h5,
h6,
.navbar-brand,
.btn,
.section-title,
.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: -0.03em;
}

p {
    color: var(--muted);
    line-height: 1.8;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 14px;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.78rem;
    font-weight: 700;
}

.eyebrow::before {
    content: '';
    width: 34px;
    height: 1px;
    background: linear-gradient(90deg, var(--accent), var(--primary-soft));
}

.section-title {
    font-size: clamp(2rem, 4.2vw, 3.4rem);
    line-height: 1.04;
    margin: 0;
}

.section-subtitle {
    margin-top: 18px;
    max-width: 760px;
    font-size: 1.05rem;
}

.site-nav {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1030;
    padding: 14px 0 !important;
    background: rgba(248, 250, 242, 0.82) !important;
    backdrop-filter: blur(18px) saturate(160%);
    border-bottom: 1px solid rgba(91, 126, 60, 0.08);
    box-shadow: 0 12px 28px rgba(24, 32, 20, 0.06);
}

.navbar-brand.brand-lockup {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 0;
}

.brand-logo-wrap {
    width: 88px;
    height: 88px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 28px;
    background:
        linear-gradient(145deg, rgba(162, 203, 139, 0.44), rgba(232, 245, 189, 0.95)),
        radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.85), transparent 54%);
    box-shadow: 0 18px 38px rgba(91, 126, 60, 0.16);
}

.brand-logo {
    width: 64px;
    height: 64px;
    object-fit: contain;
}

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

.brand-title {
    color: var(--ink);
    font-size: 1.08rem;
    font-weight: 700;
}

.brand-sub {
    color: var(--muted);
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--ink);
    position: relative;
    padding: 0.75rem 0.8rem;
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.navbar-light .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    left: 0.8rem;
    right: 0.8rem;
    bottom: 0.45rem;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.2s ease;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar-light .navbar-nav .nav-link:hover::after,
.navbar-light .navbar-nav .nav-link.active::after {
    transform: scaleX(1);
}

.navbar-toggler {
    border: 0;
    box-shadow: none !important;
}

.navbar-toggler:focus {
    box-shadow: none !important;
}

.navbar-collapse {
    gap: 16px;
}

.nav-cta {
    min-width: 160px;
}

.btn {
    border: 0;
    border-radius: 999px;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deep) 100%);
    box-shadow: 0 14px 32px rgba(91, 126, 60, 0.22);
}

.btn-primary:hover {
    box-shadow: 0 18px 38px rgba(91, 126, 60, 0.3);
}

.btn-outline-dark {
    border-color: rgba(24, 32, 20, 0.14);
}

.btn-soft {
    background: rgba(255, 255, 255, 0.74);
    color: var(--ink);
    box-shadow: var(--shadow-sm);
}

.btn-soft:hover {
    color: var(--ink);
    background: #fff;
}

.site-section {
    padding: clamp(72px, 7vw, 92px) 0;
}

.site-shell {
    margin: 18px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.hero-section {
    padding: 18px 0 0;
}

.hero-shell,
.section-shell,
.manifesto-shell,
.contact-shell,
.footer-shell {
    margin: 18px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.hero-shell {
    padding: 20px;
    background:
        radial-gradient(circle at top left, rgba(162, 203, 139, 0.24), transparent 32%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(245, 248, 237, 0.92));
    border: 1px solid rgba(91, 126, 60, 0.08);
}

.hero-copy {
    padding: clamp(20px, 3vw, 42px);
    border-radius: 30px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(247, 250, 241, 0.82));
    border: 1px solid rgba(91, 126, 60, 0.12);
    height: 100%;
}

.hero-title {
    font-size: clamp(2.7rem, 6vw, 5rem);
    line-height: 0.95;
    color: var(--ink);
    margin-bottom: 18px;
}

.hero-text {
    max-width: 620px;
    font-size: 1.08rem;
    margin-bottom: 24px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 22px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(91, 126, 60, 0.08);
    color: var(--primary-deep);
    border: 1px solid rgba(91, 126, 60, 0.14);
    font-weight: 700;
    font-size: 0.92rem;
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.metric-card {
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(91, 126, 60, 0.12);
    box-shadow: var(--shadow-sm);
}

.metric-card strong {
    display: block;
    color: var(--ink);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.18rem;
}

.metric-card span {
    display: block;
    margin-top: 6px;
    color: var(--muted);
    font-size: 0.95rem;
}

.hero-visual {
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: 100%;
}

.hero-visual-head {
    padding: 18px 18px 10px;
    margin-left: 0;
    padding-left: 0;
    border-left: 0;
    border-bottom: 1px solid rgba(91, 126, 60, 0.12);
    margin-bottom: 4px;
}

.hero-visual-head h2 {
    margin: 0;
    max-width: 560px;
    font-size: clamp(1.85rem, 3.4vw, 2.7rem);
    line-height: 0.96;
}

.hero-visual-head p {
    margin: 12px 0 0;
    max-width: 560px;
    color: var(--muted);
}

.hero-carousel-frame {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    min-height: 590px;
    padding: 18px;
    background:
        radial-gradient(circle at top right, rgba(196, 69, 69, 0.12), transparent 24%),
        radial-gradient(circle at bottom left, rgba(232, 245, 189, 0.08), transparent 28%),
        linear-gradient(145deg, rgba(14, 20, 8, 0.995), rgba(36, 56, 22, 0.995));
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-carousel-frame .carousel-inner {
    height: 100%;
}

.hero-carousel-frame .carousel-item {
    min-height: 590px;
    height: 100%;
}

.slide-panel {
    position: relative;
    z-index: 0;
    min-height: 100%;
    padding: clamp(24px, 3vw, 34px);
    border-radius: 26px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: space-between;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 248, 239, 0.98));
    border: 1px solid rgba(91, 126, 60, 0.12);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.14);
    color: var(--ink);
}

.slide-panel::after {
    content: '';
    position: absolute;
    inset: auto -8% -18% auto;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(91, 126, 60, 0.12), transparent 68%);
    pointer-events: none;
}

.slide-panel::before {
    content: attr(data-step);
    position: absolute;
    top: 12px;
    right: 18px;
    z-index: 0;
    color: rgba(91, 126, 60, 0.14);
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(4.5rem, 10vw, 8.4rem);
    font-weight: 700;
    letter-spacing: -0.08em;
    line-height: 1;
}

.slide-panel-a {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(242, 246, 233, 0.98));
}

.slide-panel-b {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(244, 248, 237, 0.98));
}

.slide-panel-c {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(242, 247, 231, 0.98));
}

.slide-topline,
.slide-body {
    position: relative;
    z-index: 1;
}

.slide-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.slide-step {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(91, 126, 60, 0.1);
    color: var(--primary-deep);
    border: 1px solid rgba(91, 126, 60, 0.14);
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.slide-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(91, 126, 60, 0.12);
    color: var(--primary-deep);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0;
}

.slide-body {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(220px, 0.8fr);
    gap: 18px;
    align-items: end;
}

.slide-copy h3 {
    margin: 0 0 12px;
    font-size: clamp(2.25rem, 4.2vw, 3.5rem);
    line-height: 0.94;
    max-width: 560px;
    color: var(--ink);
}

.slide-copy p {
    margin: 0;
    max-width: 560px;
    color: var(--muted);
    font-size: 1.04rem;
    line-height: 1.65;
}

.slide-note {
    margin-top: 18px;
    padding: 14px 16px;
    border-left: 3px solid rgba(91, 126, 60, 0.7);
    border-radius: 0 16px 16px 0;
    background: rgba(91, 126, 60, 0.1);
    color: var(--primary-deep);
    font-size: 0.98rem;
}

.slide-stack {
    display: grid;
    gap: 12px;
}

.slide-metric {
    min-height: 90px;
    padding: 16px 18px;
    border-radius: 20px;
    background: rgba(91, 126, 60, 0.06);
    border: 1px solid rgba(91, 126, 60, 0.12);
    backdrop-filter: blur(8px);
}

.slide-metric strong {
    display: block;
    color: var(--ink);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.18rem;
    line-height: 1;
    margin-bottom: 8px;
}

.slide-metric span {
    color: var(--muted);
    font-size: 0.95rem;
}

.hero-carousel-frame .carousel-control-prev,
.hero-carousel-frame .carousel-control-next {
    width: 4rem;
    opacity: 1;
}

.hero-carousel-frame .carousel-control-prev-icon,
.hero-carousel-frame .carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 999px;
    background-color: rgba(255, 255, 255, 0.2);
    background-size: 55% 55%;
    box-shadow: 0 12px 24px rgba(24, 32, 20, 0.14);
    backdrop-filter: blur(8px);
}

.section-head {
    margin-bottom: 24px;
    max-width: 760px;
}

.section-head.center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-panel {
    padding: clamp(72px, 7vw, 92px) 0;
}

.about-section .section-shell {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(246, 248, 239, 0.95)),
        linear-gradient(135deg, rgba(162, 203, 139, 0.08), rgba(196, 69, 69, 0.03));
    border: 1px solid rgba(91, 126, 60, 0.08);
    padding: clamp(30px, 3.8vw, 56px);
}

.about-media {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    min-height: 100%;
    box-shadow: var(--shadow-md);
}

.about-media img {
    min-height: 100%;
    object-fit: cover;
}

.about-media::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(24, 32, 20, 0.08), rgba(24, 32, 20, 0.38));
    z-index: 1;
}

.about-float {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 2;
    padding: 18px 20px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: var(--shadow-sm);
}

.about-float strong {
    display: block;
    color: var(--ink);
    font-family: 'Space Grotesk', sans-serif;
}

.about-float span {
    display: block;
    color: var(--muted);
    margin-top: 6px;
}

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

.about-grid .pillar-card {
    padding: 24px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(91, 126, 60, 0.12);
    box-shadow: var(--shadow-sm);
    min-height: 100%;
}
.pillar-card .pillar-index {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(91, 126, 60, 0.1);
    color: var(--primary-deep);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    margin-bottom: 14px;
}

.pillar-card h3 {
    margin: 0 0 10px;
    font-size: 1.26rem;
}

.pillar-card p {
    margin: 0;
}

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

.note-card {
    padding: 18px;
    border-radius: 20px;
    background: rgba(232, 245, 189, 0.54);
    border: 1px solid rgba(91, 126, 60, 0.12);
    color: var(--primary-deep);
    font-weight: 600;
}

.services-section .section-shell {
    background:
        radial-gradient(circle at top left, rgba(232, 245, 189, 0.72), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(247, 249, 240, 0.96));
    border: 1px solid rgba(91, 126, 60, 0.08);
    padding: clamp(28px, 3.4vw, 52px);
}

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

.service-card {
    position: relative;
    padding: 26px;
    border-radius: 26px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 250, 243, 0.96));
    border: 1px solid rgba(91, 126, 60, 0.12);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    min-height: 100%;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary), var(--primary-soft), var(--accent));
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.service-card .service-icon {
    width: 70px;
    height: 70px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(91, 126, 60, 0.12), rgba(232, 245, 189, 0.86));
    color: var(--primary-deep);
    margin-bottom: 16px;
    box-shadow: inset 0 0 0 1px rgba(91, 126, 60, 0.08);
}

.service-card .service-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    border-radius: 14px;
    background: rgba(196, 69, 69, 0.08);
    color: var(--accent);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    margin-bottom: 14px;
}

.service-card h3 {
    margin: 0 0 10px;
    font-size: 1.22rem;
}

.service-card p {
    margin: 0;
}

.why-section .section-shell {
    background:
        radial-gradient(circle at top right, rgba(232, 245, 189, 0.12), transparent 28%),
        linear-gradient(135deg, #274018 0%, #3f5d28 52%, #5b7e3c 100%);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: clamp(30px, 4vw, 56px);
}

.why-section .eyebrow,
.why-section .section-title,
.why-section p,
.why-section h3,
.why-section a {
    color: #fff;
}

.why-section .eyebrow::before {
    background: linear-gradient(90deg, #fff, rgba(232, 245, 189, 0.75));
}

.why-list {
    display: grid;
    gap: 14px;
    margin-top: 28px;
}

.why-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
}

.why-item i {
    color: var(--accent-soft);
    font-size: 1.15rem;
    flex: 0 0 auto;
    line-height: 1.4;
}

.why-proof {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 28px;
}

.proof-card {
    padding: 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.why-visual {
    height: 100%;
    padding: 28px;
    border-radius: 28px;
    overflow: hidden;
    background:
        radial-gradient(circle at top right, rgba(232, 245, 189, 0.16), transparent 26%),
        linear-gradient(145deg, rgba(19, 32, 12, 0.96), rgba(47, 77, 27, 0.96));
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 22px 42px rgba(0, 0, 0, 0.18);
}

.why-visual-body {
    position: relative;
    z-index: 1;
}

.why-visual-body h3 {
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    margin: 0 0 12px;
    color: #ffffff;
}

.why-visual-body p {
    color: rgba(255, 255, 255, 0.84);
}

.why-data-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 18px;
}

.why-data {
    padding: 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.why-data strong {
    display: block;
    color: #ffffff;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.45rem;
    line-height: 1;
    margin-bottom: 6px;
}

.why-data span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.94rem;
}

.manifesto-shell {
    background:
        radial-gradient(circle at 20% 20%, rgba(232, 245, 189, 0.7), transparent 30%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(246, 248, 239, 0.98));
    border: 1px solid rgba(91, 126, 60, 0.08);
}

.manifesto-card {
    padding: 72px 24px;
    text-align: center;
    max-width: 1020px;
    margin: 0 auto;
}

.manifesto-card h2 {
    margin: 0 auto 16px;
    max-width: 860px;
    font-size: clamp(2rem, 5vw, 3.6rem);
    line-height: 1.02;
}

.manifesto-card p {
    margin: 0 auto;
    max-width: 900px;
    font-size: 1.06rem;
}

.manifesto-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
}

.manifesto-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(91, 126, 60, 0.09);
    color: var(--primary-deep);
    font-weight: 700;
}

.contact-section .section-shell {
    background:
        radial-gradient(circle at top left, rgba(162, 203, 139, 0.18), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(238, 244, 230, 0.96));
    border: 1px solid rgba(91, 126, 60, 0.08);
    padding: clamp(30px, 4vw, 56px);
}

.contact-panel,
.reach-panel {
    padding: clamp(24px, 2.6vw, 32px);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(91, 126, 60, 0.12);
    box-shadow: var(--shadow-sm);
    height: 100%;
}

.contact-panel p,
.reach-panel p {
    margin-bottom: 0;
}

.contact-panel .section-title,
.reach-panel .section-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.form-floating > .form-control,
.form-floating > .form-select {
    border-radius: 18px;
    border-color: rgba(91, 126, 60, 0.14);
}

.form-floating > .form-control {
    height: 58px;
}

.form-floating > .form-control,
.form-floating > .form-select,
.form-floating > textarea.form-control {
    padding-top: 1.4rem;
}

.form-floating > label {
    color: var(--muted);
}

.form-control:focus {
    border-color: var(--primary-soft);
    box-shadow: 0 0 0 0.2rem rgba(162, 203, 139, 0.22);
}

.form-check-input {
    border-color: rgba(91, 126, 60, 0.26);
}

.form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

#contact-feedback.alert {
    border: 0;
    border-radius: 18px;
    box-shadow: var(--shadow-sm);
}

#contact-feedback.alert-success {
    background: rgba(91, 126, 60, 0.12);
    color: var(--primary-deep);
}

#contact-feedback.alert-danger {
    background: rgba(196, 69, 69, 0.12);
    color: #8b2f2f;
}

#contact-feedback.alert-info {
    background: rgba(162, 203, 139, 0.2);
    color: var(--primary-deep);
}

.reach-panel a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--ink);
    font-weight: 600;
}

.reach-panel a:hover {
    color: var(--primary);
}

.reach-list {
    display: grid;
    gap: 12px;
    margin-top: 18px;
}

.reach-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(91, 126, 60, 0.06);
    border: 1px solid rgba(91, 126, 60, 0.08);
}

.reach-link i {
    color: var(--primary);
    font-size: 1.1rem;
}

.site-footer {
    padding: 0 0 24px;
}

.footer-shell {
    padding: 30px;
    background:
        radial-gradient(circle at top left, rgba(162, 203, 139, 0.14), transparent 24%),
        linear-gradient(135deg, #13200c 0%, #1f3012 54%, #2a4019 100%);
    color: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.footer-brand .brand-title {
    color: #fff;
}

.footer-brand .brand-sub {
    color: rgba(255, 255, 255, 0.68);
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.84);
}

.footer-links a:hover {
    color: #fff;
}

.footer-note {
    margin-top: 28px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.95rem;
}

/* Shared page-shell helpers for support pages */
.legal-page {
    padding-top: 0;
    background:
        radial-gradient(circle at top left, rgba(162, 203, 139, 0.22), transparent 30%),
        linear-gradient(180deg, #fafcf5 0%, #eef4e6 46%, #f8faf2 100%);
}

.legal-header {
    padding: 22px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.legal-header .brand-lockup {
    text-decoration: none;
}

.legal-main {
    max-width: 1060px;
    margin: 0 auto;
    padding: 24px 18px 10px;
}

.legal-card {
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(91, 126, 60, 0.1);
    border-radius: 28px;
    box-shadow: var(--shadow-md);
    padding: clamp(28px, 3vw, 36px);
}

.legal-card h1,
.legal-card h2,
.legal-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    color: var(--ink);
}

.legal-card h1 {
    margin-bottom: 10px;
    font-size: clamp(2rem, 4vw, 3rem);
}

.legal-card .meta,
.legal-card p,
.legal-card li,
.legal-card span {
    color: var(--muted);
}

.legal-card a {
    color: var(--primary);
}

.legal-footer {
    padding: 24px 18px 32px;
    text-align: center;
    color: var(--muted);
}

.legal-scroll-box {
    max-height: min(72vh, 980px);
    overflow: auto;
    padding-right: 8px;
}

.language-selector {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}

.language-selector label {
    color: var(--ink);
    font-weight: 600;
}

.language-selector select {
    padding: 10px 12px;
    border-radius: 14px;
    border: 1px solid rgba(91, 126, 60, 0.16);
    background: #fff;
    color: var(--ink);
}

@media (max-width: 1199.98px) {
    body {
        padding-top: 100px;
    }

    .hero-carousel-frame,
    .hero-carousel-frame .carousel-item {
        min-height: 560px;
    }

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

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

@media (max-width: 991.98px) {
    .hero-shell,
    .section-shell,
    .manifesto-shell,
    .contact-shell,
    .footer-shell {
        margin-left: 12px;
        margin-right: 12px;
        border-radius: 30px;
    }

    .navbar-collapse {
        padding-top: 12px;
    }

    .nav-cta {
        width: 100%;
    }

    .hero-copy {
        padding: 24px;
    }

    .hero-title {
        font-size: clamp(2.4rem, 10vw, 4.2rem);
    }

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

    .hero-carousel-frame,
    .hero-carousel-frame .carousel-item {
        min-height: 520px;
    }

    .about-grid,
    .services-grid,
    .why-proof,
    .about-notes {
        grid-template-columns: 1fr;
    }

    .manifesto-card {
        padding: 54px 18px;
    }

    .legal-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 767.98px) {
    body {
        padding-top: 92px;
    }

    .brand-logo-wrap {
        width: 72px;
        height: 72px;
    }

    .brand-logo {
        width: 50px;
        height: 50px;
    }

    .brand-title {
        font-size: 0.98rem;
    }

    .brand-sub {
        font-size: 0.64rem;
        letter-spacing: 0.1em;
    }

    .hero-shell,
    .section-shell,
    .manifesto-shell,
    .contact-shell,
    .footer-shell {
        margin-left: 10px;
        margin-right: 10px;
        border-radius: 26px;
    }

    .hero-copy,
    .contact-panel,
    .reach-panel,
    .legal-card {
        padding: 20px;
    }

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

    .hero-carousel-frame,
    .hero-carousel-frame .carousel-item {
        min-height: 440px;
    }

    .section-title {
        font-size: clamp(1.8rem, 8vw, 2.6rem);
    }

    .site-section {
        padding: 68px 0;
    }

    .footer-shell {
        padding: 24px 18px;
    }

    .legal-main {
        padding-left: 12px;
        padding-right: 12px;
    }
}

@media (max-width: 1199.98px) {
    .slide-body,
    .why-data-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .slide-panel {
        padding: 20px;
    }

    .slide-topline {
        flex-direction: column;
        align-items: flex-start;
    }

    .slide-body,
    .why-data-grid {
        grid-template-columns: 1fr;
    }

    .hero-carousel-frame,
    .hero-carousel-frame .carousel-item {
        min-height: 460px;
    }
}




