:root {
    --primary-green: #2f6f34;
    --deep-green: #123719;
    --forest-green: #1e5527;
    --soft-green: #d8f4d2;
    --mint-green: #e8f8e3;
    --cream: #f8f4df;
    --cream-strong: #fffbea;
    --gold-soft: #d9c86c;
    --text-dark: #172414;
    --text-muted: #5f6f5a;
    --white-soft: rgba(255, 255, 255, 0.78);
    --white-card: rgba(255, 255, 255, 0.86);
    --radius-xl: 36px;
    --radius-lg: 28px;
    --radius-md: 18px;
    --radius-sm: 12px;
    --shadow-soft: 0 18px 45px rgba(22, 59, 31, 0.12);
    --shadow-card: 0 12px 34px rgba(22, 59, 31, 0.10);
    --shadow-hover: 0 22px 56px rgba(22, 59, 31, 0.18);
    --border-soft: 1px solid rgba(47, 95, 45, 0.13);
    --transition: all 0.28s ease;
    --container-width: 1180px;
    --nav-height: 76px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 110px;
}

body {
    font-family: 'Inter', 'Poppins', 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.5;
    background:
        radial-gradient(circle at 12% 4%, rgba(217, 200, 108, 0.18), transparent 32%),
        radial-gradient(circle at 88% 0%, rgba(78, 152, 68, 0.24), transparent 34%),
        radial-gradient(circle at 58% 18%, rgba(170, 225, 150, 0.30), transparent 36%),
        linear-gradient(180deg, #e3f6dd 0%, #eef8e3 45%, #dff3d8 100%);
    overflow-x: hidden;
}

body::before,
body::after {
    content: "";
    position: fixed;
    left: 0;
    right: 0;
    pointer-events: none;
    z-index: -2;
}

body::before {
    top: 130px;
    height: 520px;
    background:
        radial-gradient(70% 55% at 12% 78%, rgba(47, 95, 45, 0.12), transparent 58%),
        radial-gradient(70% 56% at 88% 55%, rgba(217, 200, 108, 0.12), transparent 60%);
}

body::after {
    bottom: -120px;
    height: 420px;
    background:
        linear-gradient(8deg, rgba(47, 95, 45, 0.13) 0 32%, transparent 32.3%),
        linear-gradient(-8deg, rgba(93, 141, 62, 0.10) 0 40%, transparent 40.3%);
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Inter', 'Poppins', 'Manrope', sans-serif;
    color: var(--deep-green);
    letter-spacing: -0.024em;
    line-height: 1.08;
}

p {
    color: var(--text-muted);
}

.label,
.ccnap-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--primary-green);
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-bottom: 14px;
}

.label::before,
.ccnap-eyebrow::before {
    content: "";
    width: 28px;
    height: 2px;
    border-radius: 999px;
    background: var(--gold-soft);
}

.section-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 42px;
}

.section-center .label {
    justify-content: center;
}

.section-center h2 {
    font-size: clamp(2rem, 5vw, 3.45rem);
}

/* =============================
   Navbar
============================= */
.navbar {
    position: fixed;
    top: 16px;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    padding: 0;
    transition: var(--transition);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    padding: 12px 16px 12px 20px;
    background: rgba(255, 251, 234, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.82);
    border-radius: 999px;
    box-shadow: 0 18px 48px rgba(22, 59, 31, 0.12);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.navbar.scrolled .container {
    background: rgba(255, 251, 234, 0.92);
    box-shadow: 0 18px 55px rgba(22, 59, 31, 0.18);
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 230px;
    max-width: 300px;
}

.logo {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
}

.logo-img {
    width: auto;
    height: 48px;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 5px 10px rgba(22, 59, 31, 0.08));
}

.logo-subtitle {
    font-size: 0.68rem;
    color: var(--text-muted);
    font-weight: 650;
    line-height: 1.22;
    max-width: 180px;
}

.nav-menu {
    flex: 1;
    min-width: 0;
}

.nav-menu > ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 12px;
    color: var(--text-dark);
    font-size: 0.88rem;
    font-weight: 750;
    border-radius: 999px;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active,
.dropdown.active > .nav-link {
    color: var(--deep-green);
    background: rgba(47, 95, 45, 0.09);
}

.nav-link.dropdown-toggle i {
    font-size: 0.66rem;
    transition: transform 0.25s ease;
}

.dropdown:hover .dropdown-toggle i,
.dropdown.active .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 13px);
    left: 0;
    width: max-content;
    min-width: 230px;
    max-width: 300px;
    padding: 10px;
    border-radius: 20px;
    background: rgba(255, 251, 234, 0.96);
    border: var(--border-soft);
    box-shadow: var(--shadow-soft);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px) scale(0.98);
    transform-origin: top left;
    transition: var(--transition);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.dropdown:hover .dropdown-menu,
.dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 13px;
    color: var(--text-dark);
    font-size: 0.88rem;
    font-weight: 650;
    border-radius: 12px;
}

.dropdown-item:hover {
    color: var(--deep-green);
    background: rgba(47, 95, 45, 0.10);
    transform: translateX(2px);
}

.dropdown-item i {
    min-width: 16px;
    color: var(--primary-green);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
}

.btn-cta,
.btn-primary,
.ccnap-cta {
    border: 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 44px;
    padding: 12px 24px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary-green), var(--deep-green));
    color: #fffbea;
    font-size: 0.92rem;
    font-weight: 800;
    box-shadow: 0 12px 28px rgba(47, 95, 45, 0.22);
    transition: var(--transition);
}

.btn-cta:hover,
.btn-primary:hover,
.ccnap-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(47, 95, 45, 0.28);
    background: linear-gradient(135deg, #3c7338, var(--deep-green));
}

.hamburger {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(47, 95, 45, 0.10);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.hamburger span {
    width: 20px;
    height: 2px;
    background: var(--deep-green);
    border-radius: 99px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* =============================
   Hero
============================= */
.hero {
    position: relative;
    min-height: calc(100vh - 34px);
    display: flex;
    align-items: center;
    margin: 18px;
    padding: 140px 0 86px;
    overflow: hidden;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.72);
    background:
        linear-gradient(145deg, rgba(255, 251, 234, 0.92), rgba(223, 243, 216, 0.72)),
        var(--soft-green);
    box-shadow: var(--shadow-soft);
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    pointer-events: none;
    z-index: 1;
}

.hero::before {
    inset: 0;
    background:
        radial-gradient(52% 48% at 18% 18%, rgba(255, 255, 255, 0.55), transparent 58%),
        linear-gradient(172deg, transparent 0 56%, rgba(217, 200, 108, 0.26) 56.4% 64%, transparent 64.4%),
        linear-gradient(170deg, transparent 0 62%, rgba(93, 141, 62, 0.18) 62.4% 72%, transparent 72.4%);
}

.hero::after {
    left: -3%;
    right: -3%;
    bottom: -9%;
    height: 38%;
    background:
        linear-gradient(7deg, rgba(22, 59, 31, 0.28) 0 38%, transparent 38.4%),
        linear-gradient(-6deg, rgba(47, 95, 45, 0.20) 0 46%, transparent 46.5%),
        linear-gradient(3deg, rgba(217, 200, 108, 0.15) 0 58%, transparent 58.4%);
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scaleX(-1) scale(1.03);
    transform-origin: center;
    z-index: 0;
    opacity: 0.66;
    filter: saturate(1.08) contrast(1.02) brightness(1.01);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(95deg, rgba(246, 250, 229, 0.76) 0%, rgba(226, 246, 218, 0.64) 48%, rgba(190, 231, 177, 0.32) 100%),
        radial-gradient(circle at 85% 22%, rgba(77, 143, 70, 0.18), transparent 32%);
}

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

.grid-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: center;
    gap: clamp(18px, 4vw, 44px);
}

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

.hero-content h1 {
    max-width: 780px;
    margin-bottom: 22px;
    color: #102712;
    font-size: clamp(2.45rem, 6.4vw, 5.15rem);
    font-weight: 900;
    line-height: 0.98;
}

.hero-content .highlight {
    color: var(--primary-green);
}

.hero-content p {
    max-width: 610px;
    margin-bottom: 30px;
    color: #41503d;
    font-size: clamp(1rem, 1.65vw, 1.18rem);
    line-height: 1.58;
}

.hero-visual {
    display: none;
}

.hero-shape {
    width: clamp(230px, 28vw, 390px);
    aspect-ratio: 1;
    border-radius: 58% 42% 62% 38%;
    background:
        radial-gradient(circle at 55% 44%, rgba(255, 251, 234, 0.66), transparent 34%),
        radial-gradient(circle at 38% 65%, rgba(217, 200, 108, 0.35), transparent 34%),
        linear-gradient(135deg, rgba(47, 95, 45, 0.22), rgba(223, 243, 216, 0.62));
    border: 1px solid rgba(255, 255, 255, 0.62);
    box-shadow: inset 0 0 44px rgba(255, 255, 255, 0.35), var(--shadow-card);
    animation: organic-float 7s ease-in-out infinite;
}

.hero-shape::before,
.hero-shape::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    background: rgba(47, 95, 45, 0.32);
    box-shadow: 0 0 0 10px rgba(47, 95, 45, 0.06);
}

.hero-shape::before {
    width: 76px;
    height: 76px;
    right: 16%;
    top: 22%;
}

.hero-shape::after {
    width: 44px;
    height: 44px;
    left: 18%;
    bottom: 20%;
    background: rgba(217, 200, 108, 0.45);
}

/* =============================
   Why CCNaP
============================= */
.ccnap-why {
    position: relative;
    isolation: isolate;
    overflow: -moz-hidden-unscrollable;
    padding: clamp(64px, 8vw, 105px) 0;
    background:
        radial-gradient(circle at 10% 10%, rgba(255, 255, 255, 0.52), transparent 28%),
        radial-gradient(circle at 92% 18%, rgba(70, 145, 66, 0.18), transparent 30%),
        linear-gradient(180deg, rgba(222, 245, 214, 0.78), rgba(232, 246, 215, 0.86));
}

.ccnap-why::before,
.ccnap-why::after {
    content: "";
    position: absolute;
    left: -5%;
    right: -5%;
    pointer-events: none;
    z-index: -1;
}

.ccnap-why::before {
    top: 0;
    height: 48%;
    background:
        linear-gradient(172deg, transparent 0 58%, rgba(137, 184, 91, 0.15) 58.5% 67%, transparent 67.5%),
        linear-gradient(168deg, transparent 0 67%, rgba(217, 200, 108, 0.12) 67.5% 76%, transparent 76.5%);
}

.ccnap-why::after {
    bottom: 0;
    height: 44%;
    background:
        linear-gradient(7deg, rgba(47, 95, 45, 0.13) 0 34%, transparent 34.4%),
        linear-gradient(-6deg, rgba(22, 59, 31, 0.08) 0 44%, transparent 44.4%);
}

.ccnap-noise {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.05;
    mix-blend-mode: multiply;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
}

.ccnap-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(280px, 0.74fr) minmax(560px, 1fr);
    grid-template-rows: auto auto;
    align-items: center;
    gap: 28px clamp(36px, 5vw, 78px);
}

.ccnap-intro {
    grid-column: 1;
    grid-row: 1;
    max-width: 520px;
    padding: clamp(24px, 3vw, 36px);
    border-radius: var(--radius-lg);
    background: rgba(255, 251, 234, 0.72);
    border: var(--border-soft);
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.ccnap-heading {
    margin-bottom: 16px;
    color: var(--deep-green);
    font-size: clamp(1.95rem, 3.6vw, 3.1rem);
    font-weight: 900;
}

.ccnap-sub {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.52;
}

.ccnap-diagram {
    grid-column: 2;
    grid-row: 1 / span 2;
    justify-self: end;
    position: relative;
    width: min(100%, 690px);
    min-height: 640px;
    aspect-ratio: 1;
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.24);
    border: 1px solid rgba(47, 111, 52, 0.15);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    isolation: isolate;
    overflow: hidden;
}

.ccnap-diagram::before {
    content: none;
}

.ccnap-diagram::after {
    content: "";
    position: absolute;
    inset: 180px;
    border-radius: calc(var(--radius-xl) - 12px);
    border: 1px solid rgba(47, 111, 52, 0.10);
    pointer-events: none;
    z-index: 0;
}

.ccnap-diagram > * {
    z-index: 1;
}

.ccnap-lines {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.ccnap-line {
    stroke: rgba(47, 95, 45, 0.22);
    stroke-width: 1.5;
    stroke-dasharray: 5 9;
    transition: var(--transition);
}

.ccnap-line.is-active {
    stroke: var(--primary-green);
    stroke-width: 2.5;
    stroke-dasharray: 0;
}

.ccnap-ring {
    position: absolute;
    left: 50%;
    top: 50%;
    border: 1px solid rgba(47, 95, 45, 0.19);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.ccnap-ring--outer {
    width: 77%;
    aspect-ratio: 1;
}

.ccnap-ring--inner {
    width: 42%;
    aspect-ratio: 1;
    border-style: dashed;
}

.ccnap-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 142px;
    height: 142px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 16px;
    text-align: center;
    border-radius: 50%;
    color: #fffbea;
    background: radial-gradient(circle at 28% 20%, #4f8d46, var(--primary-green) 55%, var(--deep-green));
    box-shadow: 0 20px 44px rgba(22, 59, 31, 0.25);
    animation: ccnap-pop-in 0.72s cubic-bezier(.22,.9,.32,1) 0.2s both;
}

.ccnap-center-mark {
    font-size: 1.28rem;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.ccnap-center-tag {
    font-size: 0.55rem;
    font-weight: 750;
    line-height: 1.18;
    opacity: 0.92;
}

.ccnap-center-divider {
    width: 34px;
    height: 1px;
    margin: 3px 0;
    background: rgba(255, 251, 234, 0.62);
}

.ccnap-center-sub {
    font-size: 0.55rem;
    line-height: 1.22;
    opacity: 0.82;
}

.ccnap-node {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 138px;
    min-height: 116px;
    padding: 13px;
    border-radius: 20px;
    background: rgba(250, 255, 238, 0.88);
    border: 1px solid rgba(47, 111, 52, 0.18);
    box-shadow: 0 10px 30px rgba(22, 59, 31, 0.10);
    transform: translate(-50%, -50%);
    transition: var(--transition);
    opacity: 0;
    animation: ccnap-fade-up 0.62s cubic-bezier(.22,.9,.32,1) var(--delay, 0s) forwards;
    overflow: hidden;
    isolation: isolate;
}

.ccnap-node::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1.5px;
    background: conic-gradient(from 0deg, rgba(47, 111, 52, 0.20), rgba(47, 111, 52, 0.95), rgba(217, 200, 108, 0.64), rgba(47, 111, 52, 0.20));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    animation: ccnap-border-rotate 7s linear infinite;
    z-index: 0;
}

.ccnap-node > * {
    position: relative;
    z-index: 1;
}

.ccnap-node:hover,
.ccnap-node:focus {
    outline: none;
    transform: translate(-50%, -53%) scale(1.025);
    box-shadow: var(--shadow-hover);
    border-color: rgba(47, 95, 45, 0.30);
}

.ccnap-node-icon {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    color: var(--primary-green);
    border-radius: 50%;
    background: rgba(47, 95, 45, 0.10);
}

.ccnap-node-title {
    margin-bottom: 6px;
    color: var(--deep-green);
    font-size: 0.78rem;
    line-height: 1.12;
    letter-spacing: -0.03em;
}

.ccnap-node-copy {
    color: var(--text-muted);
    font-size: 0.67rem;
    line-height: 1.26;
}

.ccnap-footer-bar {
    grid-column: 1;
    grid-row: 2;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: start;
    gap: 14px;
    padding: 22px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(47, 95, 45, 0.94), rgba(22, 59, 31, 0.94));
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: var(--shadow-soft);
    transform: translateY(18px);
    opacity: 0;
    transition: 0.72s ease;
}

.ccnap-footer-bar.in-view {
    opacity: 1;
    transform: translateY(0);
}

.ccnap-footer-icon {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--cream);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.14);
    grid-row: span 2;
}

.ccnap-footer-copy strong {
    display: block;
    margin-bottom: 5px;
    color: #fffbea;
    font-size: 1.02rem;
    line-height: 1.35;
}

.ccnap-footer-copy span {
    display: block;
    color: rgba(255, 251, 234, 0.72);
    font-size: 0.88rem;
    line-height: 1.42;
}

.ccnap-cta {
    grid-column: 2;
    width: fit-content;
    margin-top: 12px;
    min-height: 40px;
    padding: 11px 18px;
    color: var(--deep-green);
    background: var(--cream);
    box-shadow: none;
}

.ccnap-cta:hover {
    color: var(--deep-green);
    background: #fff;
}

.ccnap-cta svg {
    width: 18px;
    height: 18px;
}

/* =============================
   News / Research
============================= */
.news {
    position: relative;
    padding: clamp(64px, 8vw, 105px) 0;
    background: rgba(238, 249, 233, 0.58);
}

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

.news-card {
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--white-card);
    border: var(--border-soft);
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    isolation: isolate;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.news-img {
    position: relative;
    height: 210px;
    overflow: hidden;
    background: var(--soft-green);
}

.news-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 35%, rgba(22, 59, 31, 0.22));
}

.news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(0.9) contrast(0.95);
    transition: transform 0.5s ease;
}

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

.news-content {
    padding: 24px;
}

.news-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 14px;
    color: var(--text-muted);
    font-size: 0.79rem;
    font-weight: 650;
}

.news-meta i {
    color: var(--primary-green);
    margin-right: 5px;
}

.news-content h3 {
    min-height: 56px;
    margin-bottom: 13px;
    font-size: 1.22rem;
    line-height: 1.25;
    font-weight: 850;
}

.news-content p {
    margin-bottom: 18px;
    font-size: 0.93rem;
    line-height: 1.65;
}

.btn-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-green);
    font-size: 0.92rem;
    font-weight: 800;
}

.btn-link:hover {
    gap: 12px;
    color: var(--deep-green);
}

/* =============================
   Careers
============================= */
.career {
    padding: clamp(42px, 6vw, 84px) 0 clamp(74px, 8vw, 110px);
    background:
        linear-gradient(180deg, rgba(238, 249, 233, 0.48), rgba(248, 244, 223, 0.88));
}

.career-banner {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    padding: clamp(36px, 6vw, 72px);
    background:
        radial-gradient(circle at 84% 18%, rgba(217, 200, 108, 0.32), transparent 28%),
        linear-gradient(135deg, rgba(47, 95, 45, 0.96), rgba(22, 59, 31, 0.96));
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: var(--shadow-soft);
}

.career-banner::before,
.career-banner::after {
    content: "";
    position: absolute;
    pointer-events: none;
    border-radius: 999px;
}

.career-banner::before {
    right: -70px;
    bottom: -120px;
    width: 380px;
    height: 380px;
    background: rgba(255, 251, 234, 0.10);
}

.career-banner::after {
    right: 120px;
    top: 50px;
    width: 115px;
    height: 115px;
    background: rgba(217, 200, 108, 0.14);
}

.career-content {
    position: relative;
    z-index: 1;
    max-width: 690px;
}

.career-content .label {
    color: var(--cream);
}

.career-content h2 {
    margin-bottom: 16px;
    color: #fffbea;
    font-size: clamp(2.1rem, 5vw, 3.65rem);
    font-weight: 900;
}

.career-content p {
    margin-bottom: 26px;
    color: rgba(255, 251, 234, 0.76);
    font-size: 1.04rem;
    line-height: 1.75;
}

.career-content .btn-primary {
    background: var(--cream);
    color: var(--deep-green);
    box-shadow: none;
}

.career-content .btn-primary:hover {
    background: #fff;
}

/* =============================
   Footer
============================= */
.footer {
    padding: 62px 0 28px;
    background:
        linear-gradient(180deg, rgba(22, 59, 31, 0.96), rgba(10, 31, 16, 0.98));
    color: #fffbea;
}

.footer .logo-img {
    height: 62px;
    background: rgba(255, 255, 255, 0.92);
    padding: 8px 12px;
    border-radius: 16px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 36px;
    padding-bottom: 34px;
}

.footer-about p,
.footer-info p,
.footer-bottom p {
    color: rgba(255, 251, 234, 0.72);
}

.footer-about p {
    max-width: 470px;
    margin-top: 16px;
    font-weight: 650;
}

.footer-info h4 {
    margin-bottom: 12px;
    color: #fffbea;
    font-size: 1.2rem;
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}

.social-links a {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fffbea;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.social-links a:hover {
    transform: translateY(-3px);
    background: rgba(217, 200, 108, 0.24);
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    text-align: center;
}

.scroll-top {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 999;
    width: 48px;
    height: 48px;
    display: none;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    background: var(--primary-green);
    color: #fffbea;
    box-shadow: var(--shadow-soft);
    cursor: pointer;
    transition: var(--transition);
}

.scroll-top:hover {
    transform: translateY(-4px);
    background: var(--deep-green);
}

/* =============================
   Reveal animation
============================= */
.reveal-up {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.72s ease, transform 0.72s ease;
}

.reveal-up.in-view {
    opacity: 1;
    transform: translateY(0);
}

@keyframes ccnap-fade-up {
    from {
        opacity: 0;
        transform: translate(-50%, calc(-50% + 16px));
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

@keyframes ccnap-pop-in {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.88);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

@keyframes organic-float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(4deg); }
}

@keyframes ccnap-border-rotate {
    to { transform: rotate(360deg); }
}

.ccnap-contact-section {
  padding: 70px 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(88, 166, 75, 0.13), transparent 28%),
    linear-gradient(135deg, #f5f9f6, #ffffff);
}

.ccnap-contact-wrap {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 42px;
  align-items: stretch;
  background: linear-gradient(135deg, #052d26, #021b17);
  border-radius: 24px;
  padding: 48px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.14);
}

.ccnap-contact-wrap::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -120px;
  top: -130px;
  border-radius: 50%;
  background: rgba(88, 166, 75, 0.18);
}

.social-link.whatsapp {
  color: #25D366;
}

.social-link.whatsapp:hover {
  background: #25D366;
  color: #ffffff;
  transform: translateY(-3px);
}

.ccnap-contact-content,
.ccnap-contact-form {
  position: relative;
  z-index: 2;
}

.ccnap-contact-kicker {
  display: inline-block;
  color: #58a64b;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 16px;
  padding-bottom: 12px;
  position: relative;
}

.ccnap-contact-kicker::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 58px;
  height: 3px;
  background: #58a64b;
  border-radius: 10px;
}

.ccnap-contact-content h2 {
  color: #ffffff;
  font-size: clamp(30px, 3vw, 50px);
  line-height: 1.12;
  font-weight: 760;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  max-width: 720px;
}

.ccnap-contact-content p {
  color: rgba(255,255,255,0.86);
  font-size: 17px;
  line-height: 1.8;
  max-width: 720px;
  margin-bottom: 34px;
}

.ccnap-contact-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.ccnap-contact-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: flex-start;
  padding: 18px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  background: rgba(255,255,255,0.05);
}

.ccnap-contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(88,166,75,0.16);
  color: #9be18b;
}

.ccnap-contact-icon svg {
  width: 25px;
  height: 25px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ccnap-contact-item strong {
  display: block;
  color: #ffffff;
  font-size: 15px;
  margin-bottom: 4px;
}

.ccnap-contact-item span {
  display: block;
  color: rgba(255,255,255,0.78);
  font-size: 14px;
  line-height: 1.55;
}

.ccnap-contact-form {
  background: rgba(255,255,255,0.96);
  border-radius: 22px;
  padding: 34px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.16);
}

.ccnap-contact-form h3 {
  font-size: 28px;
  line-height: 1.2;
  font-weight: 760;
  margin-bottom: 24px;
  color: #052d26;
}

.ccnap-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.ccnap-contact-form input,
.ccnap-contact-form select,
.ccnap-contact-form textarea {
  width: 100%;
  border: 1px solid #dce5e2;
  border-radius: 12px;
  padding: 15px 16px;
  font: inherit;
  font-size: 15px;
  color: #101b18;
  background: #ffffff;
  outline: none;
  transition: 0.2s ease;
}

.ccnap-contact-form textarea {
  min-height: 135px;
  resize: vertical;
  margin-bottom: 16px;
}

.ccnap-contact-form input:focus,
.ccnap-contact-form select:focus,
.ccnap-contact-form textarea:focus {
  border-color: #2f7d38;
  box-shadow: 0 0 0 4px rgba(47,125,56,0.09);
}

.ccnap-contact-form button {
  width: 100%;
  min-height: 58px;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, #083f32, #031d18);
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  transition: 0.25s ease;
}

.ccnap-contact-form button:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #0c513f, #031d18);
}

.ccnap-contact-form button span {
  font-size: 24px;
}

@media (max-width: 1100px) {
  .ccnap-contact-wrap {
    grid-template-columns: 1fr;
    padding: 34px;
  }

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

@media (max-width: 650px) {
  .ccnap-contact-section {
    padding: 45px 0;
  }

  .ccnap-contact-wrap {
    padding: 24px;
    border-radius: 18px;
  }

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

  .ccnap-contact-form {
    padding: 24px;
  }
}

/* =============================
   Responsive
============================= */
@media (max-width: 1120px) {
    .navbar .container {
        border-radius: 28px;
    }

    .logo-area {
        min-width: 190px;
    }

    .logo-subtitle {
        display: none;
    }

    .nav-link {
        padding: 9px 9px;
        font-size: 0.82rem;
    }

    .btn-cta {
        padding-inline: 18px;
    }

    .ccnap-container {
        grid-template-columns: minmax(280px, 0.72fr) minmax(480px, 1fr);
        gap: 24px 34px;
    }

    .ccnap-diagram {
        width: min(100%, 620px);
        min-height: 600px;
    }

    .ccnap-node {
        width: 132px;
        min-height: 112px;
        padding: 12px;
    }
}

@media (max-width: 960px) {
    .container,
    .ccnap-container {
        width: min(100% - 28px, var(--container-width));
    }

    .navbar {
        top: 10px;
    }

    .navbar .container {
        width: calc(100% - 22px);
        padding: 10px 12px;
        border-radius: 24px;
    }

    .nav-menu {
        position: absolute;
        top: calc(100% + 10px);
        left: 11px;
        right: 11px;
        max-height: calc(100vh - 112px);
        overflow-y: auto;
        padding: 12px;
        border-radius: 24px;
        background: rgba(255, 251, 234, 0.96);
        border: var(--border-soft);
        box-shadow: var(--shadow-soft);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        transition: var(--transition);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
    }

    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-menu > ul {
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
    }

    .nav-link {
        width: 100%;
        justify-content: space-between;
        padding: 13px 14px;
        font-size: 0.95rem;
        border-radius: 14px;
    }

    .dropdown-menu {
        position: static;
        width: 100%;
        max-width: none;
        min-width: 0;
        display: none;
        margin-top: 6px;
        padding: 6px;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(47, 95, 45, 0.06);
        border-radius: 16px;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-item {
        padding: 11px 12px;
    }

    .hamburger {
        display: inline-flex;
    }

    .btn-cta {
        display: none;
    }

    .hero {
        margin: 12px;
        padding: 125px 0 70px;
        min-height: auto;
    }

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

    .hero-content {
        max-width: 740px;
        text-align: center;
        margin-inline: auto;
    }

    .hero-content p {
        margin-inline: auto;
    }

    .hero-visual {
        display: none;
    }

    .ccnap-container {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 24px;
    }

    .ccnap-intro,
    .ccnap-footer-bar {
        max-width: none;
    }

    .ccnap-diagram {
        align-self: center;
        width: min(100%, 680px);
        min-height: auto;
        aspect-ratio: auto;
        padding: 20px;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .ccnap-lines,
    .ccnap-ring {
        display: none;
    }

    .ccnap-center {
        position: static;
        grid-column: 1 / -1;
        transform: none;
        width: 100%;
        height: auto;
        min-height: 108px;
        border-radius: 24px;
        animation: none;
        opacity: 1;
    }

    .ccnap-node {
        position: static;
        width: auto;
        min-height: auto;
        transform: none;
        opacity: 1;
        animation: none;
    }

    .ccnap-node:hover,
    .ccnap-node:focus {
        transform: translateY(-4px);
    }

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

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

@media (max-width: 640px) {
    .container,
    .ccnap-container {
        width: min(100% - 22px, var(--container-width));
    }

    .logo-img {
        height: 42px;
    }

    .nav-actions {
        gap: 8px;
    }

    .hero {
        margin: 8px;
        border-radius: 26px;
        padding: 110px 0 54px;
    }

    .hero-content h1 {
        font-size: clamp(2.1rem, 11vw, 3.2rem);
    }

    .hero-content p {
        font-size: 0.98rem;
    }

    .ccnap-why,
    .news {
        padding: 56px 0;
    }

    .ccnap-intro,
    .career-banner {
        padding: 24px;
        border-radius: 24px;
    }

    .ccnap-heading {
        font-size: clamp(1.75rem, 9vw, 2.35rem);
    }

    .ccnap-diagram {
        grid-template-columns: 1fr;
        padding: 14px;
        border-radius: 24px;
    }

    .ccnap-node-title {
        font-size: 0.94rem;
    }

    .ccnap-node-copy {
        font-size: 0.82rem;
    }

    .ccnap-footer-bar {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .ccnap-footer-icon {
        grid-row: auto;
    }

    .ccnap-cta {
        grid-column: auto;
        width: 100%;
    }

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

    .news-img {
        height: 190px;
    }

    .news-content h3 {
        min-height: 0;
    }

    .footer {
        padding-top: 46px;
    }

    .scroll-top {
        right: 14px;
        bottom: 14px;
        width: 44px;
        height: 44px;
    }
}

@media (max-width: 390px) {
    .navbar .container {
        width: calc(100% - 14px);
    }

    .logo-img {
        height: 38px;
    }

    .hamburger {
        width: 40px;
        height: 40px;
    }

    .btn-primary,
    .btn-cta,
    .ccnap-cta {
        width: 100%;
    }
}

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

/* ==============================
   CCNAP FINAL STABILITY OVERRIDES
   Fixes: CSS path confusion, Why CCNaP overlap, card borders, responsiveness
============================== */

/* Stronger video visibility + smoother eco overlay */
.hero-video {
    opacity: 0.74;
    transform: scaleX(-1);
    filter: saturate(1.12) contrast(1.03) brightness(0.96);
}

.hero-overlay {
    background:
        linear-gradient(90deg, rgba(232, 248, 227, 0.78), rgba(248, 244, 223, 0.46), rgba(216, 244, 210, 0.64)),
        radial-gradient(circle at 22% 24%, rgba(47, 111, 52, 0.18), transparent 38%),
        radial-gradient(circle at 88% 18%, rgba(217, 200, 108, 0.16), transparent 34%);
}

.hero-shape {
    display: none !important;
}

.ccnap-why {
    background:
        radial-gradient(circle at 18% 14%, rgba(98, 172, 83, 0.20), transparent 32%),
        radial-gradient(circle at 86% 18%, rgba(217, 200, 108, 0.13), transparent 36%),
        linear-gradient(180deg, rgba(223, 243, 216, 0.84), rgba(234, 249, 229, 0.78));
}

.ccnap-container {
    grid-template-columns: minmax(280px, 0.68fr) minmax(620px, 1fr);
    gap: 28px clamp(34px, 4vw, 64px);
}

.ccnap-diagram {
    grid-column: 2;
    grid-row: 1 / span 2;
    justify-self: end;
    position: relative;
    width: min(150%, 720px);
    min-height: 680px;
    aspect-ratio: 1 / 0.94;
    padding: 0;
    border-radius: var(--radius-xl, 36px);
    background:
        radial-gradient(circle at 50% 50%, rgba(218, 246, 206, 0.55), transparent 57%),
        radial-gradient(circle at 25% 15%, rgba(143, 207, 106, 0.18), transparent 35%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.36), rgba(211, 239, 198, 0.30));
    border: 1px solid rgba(47, 111, 52, 0.16);
    box-shadow: var(--shadow-soft, 0 18px 45px rgba(22, 59, 31, 0.12));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    isolation: isolate;
    overflow: visible;
}

.ccnap-diagram::before {
    content: "";
    position: absolute;
    inset: 18px;
    border-radius: calc(var(--radius-xl, 36px) - 10px);
    border: 1px solid rgba(47, 111, 52, 0.14);
    background: transparent;
    pointer-events: none;
    z-index: 0;
}

.ccnap-diagram::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background:
        linear-gradient(9deg, rgba(47, 111, 52, 0.08) 0 24%, transparent 24.4%),
        linear-gradient(-8deg, rgba(143, 207, 106, 0.08) 0 37%, transparent 37.4%);
    pointer-events: none;
    z-index: -1;
}

.ccnap-lines {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.ccnap-line {
    stroke: rgba(47, 95, 45, 0.17);
    stroke-width: 1.25;
    stroke-dasharray: 5 8;
    transition: var(--transition, all 0.28s ease);
}

.ccnap-line.is-active {
    stroke: var(--primary-green, #2f6f34);
    stroke-width: 2;
    stroke-dasharray: 0;
}

.ccnap-ring {
    position: absolute;
    left: 50%;
    top: 50%;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;
}

.ccnap-ring--outer {
    width: 54%;
    aspect-ratio: 1 / 1;
    border: 1px solid rgba(47, 95, 45, 0.15);
}

.ccnap-ring--inner {
    width: 33%;
    aspect-ratio: 1 / 1;
    border: 1px dashed rgba(47, 95, 45, 0.22);
}

.ccnap-center {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 122px;
    height: 122px;
    padding: 14px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle at 30% 22%, #4f8d46, var(--primary-green, #2f6f34) 58%, var(--deep-green, #123719));
    color: #fffbea;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    text-align: center;
    box-shadow: 0 18px 38px rgba(22, 59, 31, 0.28);
    animation: ccnap-pop-in 0.72s cubic-bezier(.22,.9,.32,1) 0.2s both;
    z-index: 5;
}

.ccnap-center-mark {
    font-size: 1.2rem;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.ccnap-center-tag {
    max-width: 88px;
    font-size: 0.48rem;
    line-height: 1.08;
    font-weight: 750;
    opacity: 0.94;
}

.ccnap-center-divider {
    width: 28px;
    height: 1px;
    margin: 1px 0;
    background: rgba(255, 251, 234, 0.58);
}

.ccnap-center-sub {
    max-width: 88px;
    font-size: 0.45rem;
    line-height: 1.08;
    font-weight: 650;
    opacity: 0.84;
}

.ccnap-node {
    background:
        linear-gradient(rgba(250, 255, 238, 0.98), rgba(250, 255, 238, 0.98)) padding-box,
        linear-gradient(
            120deg,
            rgba(47, 111, 52, 0.35),
            rgba(47, 125, 50, 0.95),
            rgba(143, 207, 106, 0.75),
            rgba(47, 111, 52, 0.35)
        ) border-box;
}

.ccnap-node::before {
    content: none !important;
}

.ccnap-node > * {
    position: relative;
    z-index: 1;
}

.ccnap-node:hover,
.ccnap-node:focus {
    outline: none;
    transform: translate(-50%, -54%) scale(1.025);
    box-shadow: 0 18px 44px rgba(22, 59, 31, 0.16);
    border-color: transparent;
}

.ccnap-node-icon {
    width: 30px;
    height: 30px;
    margin-bottom: 7px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green, #2f6f34);
    border-radius: 50%;
    background: rgba(47, 95, 45, 0.10);
}

.ccnap-node-title {
    margin: 0 0 6px;
    color: var(--deep-green, #123719);
    font-size: 0.72rem;
    line-height: 1.10;
    font-weight: 850;
    letter-spacing: -0.035em;
}

.ccnap-node-copy {
    margin: 0;
    color: var(--text-muted, #5f6f5a);
    font-size: 0.62rem;
    line-height: 1.24;
    font-weight: 500;
}

@keyframes ccnapCardBorderMove {
    0% { background-position: 0 0, 0% 50%; }
    100% { background-position: 0 0, 260% 50%; }
}

@media (max-width: 1120px) {
    .ccnap-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .ccnap-intro,
    .ccnap-footer-bar {
        grid-column: 1;
        grid-row: auto;
    }

    .ccnap-diagram {
        grid-column: 1;
        grid-row: auto;
        justify-self: center;
        width: min(100%, 700px);
        min-height: 660px;
    }
}

@media (max-width: 960px) {
    .ccnap-container {
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }

    .ccnap-diagram {
        align-self: center;
        width: min(100%, 680px);
        min-height: auto;
        aspect-ratio: auto;
        padding: 20px;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
        overflow: visible;
    }

    .ccnap-lines,
    .ccnap-ring {
        display: none;
    }

    .ccnap-center {
        position: static;
        grid-column: 1 / -1;
        transform: none;
        width: 100%;
        height: auto;
        min-height: 108px;
        border-radius: 24px;
        animation: none;
        opacity: 1;
    }

    .ccnap-node {
        position: static;
        width: auto;
        min-height: auto;
        transform: none;
        opacity: 1;
        animation: ccnapCardBorderMove 5.5s linear infinite;
    }

    .ccnap-node:hover,
    .ccnap-node:focus {
        transform: translateY(-4px);
    }
}

@media (max-width: 640px) {
    .ccnap-diagram {
        grid-template-columns: 1fr;
        padding: 14px;
        border-radius: 24px;
    }

    .ccnap-node-title {
        font-size: 0.94rem;
    }

    .ccnap-node-copy {
        font-size: 0.82rem;
        line-height: 1.34;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ccnap-node {
        animation: none !important;
        opacity: 1 !important;
    }
}
