@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

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

:root {
    --verde: #7DC832;
    --verde-dark: #5a9a22;
    --verde-glow: rgba(125, 200, 50, 0.25);
    --verde-glow-strong: rgba(125, 200, 50, 0.45);
    --nero: #080c08;
    --nero-soft: #0f160f;
    --grigio-scuro: #1a1f1a;
    --grigio-medio: #252d25;
    --grigio-card: #1e261e;
    --bianco: #f4f6f2;
    --bianco-soft: #dce8d0;
    --testo-corpo: #b8c8b0;
    --sezione-chiara-bg: #f0f5ec;
    --sezione-chiara-testo: #0f160f;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--nero);
    color: var(--bianco);
    overflow-x: hidden;
}

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 6vw;
    height: 72px;
    background: rgb(172 237 201 / 32%);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(125, 200, 50, 0.15);
}

.nav-logo img {
    height: 84px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
}

.nav-links a {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #000000;
    text-decoration: none;
    transition: color 0.25s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--verde);
    transition: width 0.25s;
}

.nav-links a:hover {
    color: #11140f;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #caff9c;
    background: #060606;
    border: none;
    padding: 10px 24px;
    cursor: pointer;
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
    text-decoration: none;
    display: inline-block;
    transition: background 0.25s, box-shadow 0.25s;
}

.nav-cta:hover {
    background: #96e040;
    box-shadow: 0 0 20px var(--verde-glow-strong);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--verde);
    transition: all 0.3s;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: #f0f5ec;
    padding-top: 72px;
}

.hero-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(125, 200, 50, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(125, 200, 50, 0.06) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
}

.hero-gradient-bl {
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(125, 200, 50, 0.18) 0%, transparent 70%);
    pointer-events: none;
}

.hero-gradient-tr {
    position: absolute;
    top: -80px;
    right: -80px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(90, 154, 34, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 80px 6vw;
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.hero-eyebrow {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--verde-dark);
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-eyebrow::before {
    content: '';
    display: inline-block;
    width: 32px;
    height: 2px;
    background: var(--verde-dark);
}

.hero-h1 {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: clamp(2.4rem, 4.5vw, 4rem);
    line-height: 1.05;
    color: var(--sezione-chiara-testo);
    letter-spacing: -0.01em;
}

.hero-h1 .accent {
    color: var(--verde-dark);
    display: block;
}

.hero-sub {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #3a4a3a;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
}

.btn-primary {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--nero);
    background: var(--verde);
    border: none;
    padding: 14px 32px;
    cursor: pointer;
    clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
    text-decoration: none;
    display: inline-block;
    transition: background 0.25s, box-shadow 0.25s, transform 0.2s;
}

.btn-primary:hover {
    background: #96e040;
    box-shadow: 0 6px 30px rgba(125, 200, 50, 0.4);
    transform: translateY(-2px);
}

.btn-secondary {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--verde-dark);
    background: transparent;
    border: 2px solid var(--verde-dark);
    padding: 12px 30px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background 0.25s, color 0.25s, transform 0.2s;
}

.btn-secondary:hover {
    background: var(--verde-dark);
    color: var(--nero);
    transform: translateY(-2px);
}

.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-logo-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-logo-wrap::before {
    content: '';
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(125, 200, 50, 0.12) 0%, transparent 65%);
    pointer-events: none;
}

.hero-logo-wrap::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border: 1px solid rgba(125, 200, 50, 0.2);
    border-radius: 50%;
    animation: rotatering 18s linear infinite;
    pointer-events: none;
}

@keyframes rotatering {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-logo-wrap img {
    width: 280px;
    height: auto;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 8px 40px rgba(125, 200, 50, 0.25));
}

.hero-stats {
    display: flex;
    gap: 32px;
    padding-top: 8px;
    border-top: 1px solid rgba(90, 154, 34, 0.2);
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.stat-num {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--verde-dark);
    line-height: 1;
}

.stat-label {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #5a6e5a;
}

.section-dark {
    background: var(--nero);
    position: relative;
}

.section-medium {
    background: var(--grigio-scuro);
    position: relative;
}

.section-light {
    background: var(--sezione-chiara-bg);
    position: relative;
}

.section-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 100px 6vw;
}

.section-header {
    text-align: center;
    margin-bottom: 72px;
}

.section-eyebrow {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 0.78rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--verde);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.section-eyebrow::before,
.section-eyebrow::after {
    content: '';
    display: inline-block;
    width: 28px;
    height: 1px;
    background: var(--verde);
}

.section-eyebrow-dark {
    color: var(--verde-dark);
}

.section-eyebrow-dark::before,
.section-eyebrow-dark::after {
    background: var(--verde-dark);
}

.section-title {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: clamp(1.9rem, 3.2vw, 2.8rem);
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: var(--bianco);
}

.section-title-dark-bg {
    color: var(--sezione-chiara-testo);
}

.section-desc {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--testo-corpo);
    max-width: 560px;
    margin: 16px auto 0;
}

.section-desc-dark {
    color: #4a5e4a;
}

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

.service-card {
    background: var(--grigio-card);
    border: 1px solid rgba(125, 200, 50, 0.1);
    padding: 36px 30px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
    clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--verde), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.service-card:hover {
    border-color: rgba(125, 200, 50, 0.4);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 30px var(--verde-glow);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 22px;
    position: relative;
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-num {
    position: absolute;
    top: 20px;
    right: 20px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: rgba(125, 200, 50, 0.06);
    line-height: 1;
    pointer-events: none;
}

.service-card h3 {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 0.04em;
    color: var(--bianco);
    margin-bottom: 12px;
    text-transform: uppercase;
}

.service-card p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--testo-corpo);
}

.process-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.process-text h2 {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    line-height: 1.1;
    color: var(--sezione-chiara-testo);
    margin-bottom: 20px;
}

.process-text p {
    font-size: 0.98rem;
    line-height: 1.78;
    color: #3a4a3a;
    margin-bottom: 32px;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.process-step {
    display: flex;
    gap: 22px;
    align-items: flex-start;
    padding: 24px 0;
    border-bottom: 1px solid rgba(90, 154, 34, 0.15);
    position: relative;
}

.process-step:last-child {
    border-bottom: none;
}

.step-marker {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: var(--verde);
    clip-path: polygon(6px 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-marker span {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--nero);
}

.step-body h4 {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 0.06em;
    color: var(--sezione-chiara-testo);
    text-transform: uppercase;
    margin-bottom: 6px;
}

.step-body p {
    font-size: 0.88rem;
    line-height: 1.65;
    color: #4a5e4a;
    margin-bottom: 0;
}

.process-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-diagram {
    width: 100%;
    max-width: 420px;
}

.automation-section {
    position: relative;
    overflow: hidden;
}

.automation-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(125, 200, 50, 0.04) 0%, transparent 50%),
        linear-gradient(315deg, rgba(125, 200, 50, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.automation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.automation-visual {
    position: relative;
}

.code-terminal {
    background: #0d130d;
    border: 1px solid rgba(125, 200, 50, 0.2);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(125, 200, 50, 0.08);
}

.terminal-bar {
    background: #161e16;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid rgba(125, 200, 50, 0.1);
}

.terminal-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.td-red { background: #ff5f57; }
.td-yellow { background: #febc2e; }
.td-green { background: var(--verde); }

.terminal-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    color: rgba(125, 200, 50, 0.5);
    margin-left: 8px;
}

.terminal-body {
    padding: 24px;
    font-family: 'Courier New', monospace;
    font-size: 0.82rem;
    line-height: 1.8;
}

.t-comment { color: rgba(125, 200, 50, 0.4); }
.t-keyword { color: #ff79c6; }
.t-func { color: #8be9fd; }
.t-string { color: #f1fa8c; }
.t-var { color: var(--bianco); }
.t-num { color: #bd93f9; }
.t-verde { color: var(--verde); }
.t-line { display: block; }

.automation-text .section-eyebrow {
    justify-content: flex-start;
}

.automation-text .section-eyebrow::after {
    display: none;
}

.automation-text h2 {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: clamp(1.8rem, 2.8vw, 2.5rem);
    line-height: 1.1;
    color: var(--bianco);
    margin-bottom: 18px;
}

.automation-text p {
    font-size: 0.97rem;
    line-height: 1.78;
    color: var(--testo-corpo);
    margin-bottom: 28px;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 36px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 0.9rem;
    color: var(--testo-corpo);
    line-height: 1.6;
}

.feature-check {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    background: rgba(125, 200, 50, 0.15);
    border: 1px solid rgba(125, 200, 50, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.feature-check svg {
    width: 12px;
    height: 12px;
    stroke: var(--verde);
}

.logo-section {
    background: var(--sezione-chiara-bg);
    position: relative;
    overflow: hidden;
}

.logo-section::before {
    content: '';
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 200px;
    background: radial-gradient(ellipse, rgba(125, 200, 50, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.logo-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.logo-text h2 {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: clamp(1.8rem, 2.8vw, 2.5rem);
    line-height: 1.1;
    color: var(--sezione-chiara-testo);
    margin-bottom: 18px;
}

.logo-text p {
    font-size: 0.97rem;
    line-height: 1.78;
    color: #3a4a3a;
    margin-bottom: 28px;
}

.logo-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    align-items: start;
}

.logo-sample {
    overflow: hidden;
    border: 1px solid rgba(90, 154, 34, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
    aspect-ratio: 352 / 384;
}

.logo-sample:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 36px rgba(0,0,0,0.35);
}

.logo-sample.dark-bg { background: #0a0f0a; }
.logo-sample.light-bg { background: #f0f5ec; }
.logo-sample.grad-bg { background: linear-gradient(135deg, #1a2a1a, #0a1a0a); }
.logo-sample.white-bg { background: #ffffff; }

.logo-sample img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    object-position: center;
}

.tech-strip {
    background: var(--grigio-scuro);
    border-top: 1px solid rgba(125, 200, 50, 0.08);
    border-bottom: 1px solid rgba(125, 200, 50, 0.08);
    padding: 40px 6vw;
    overflow: hidden;
}

.tech-track {
    display: flex;
    gap: 64px;
    align-items: center;
    animation: scrolltrack 28s linear infinite;
    width: max-content;
}

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

@keyframes scrolltrack {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.tech-badge {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(125, 200, 50, 0.55);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s;
}

.tech-badge::before {
    content: '//';
    color: rgba(125, 200, 50, 0.25);
    font-weight: 400;
}

.tech-badge:hover {
    color: var(--verde);
}

.why-us {
    position: relative;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(125, 200, 50, 0.1);
    border: 1px solid rgba(125, 200, 50, 0.1);
}

.why-item {
    background: var(--grigio-card);
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: background 0.3s;
}

.why-item:hover {
    background: #222e22;
}

.why-icon {
    width: 40px;
    height: 40px;
    color: var(--verde);
}

.why-item h3 {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--bianco);
}

.why-item p {
    font-size: 0.87rem;
    line-height: 1.68;
    color: var(--testo-corpo);
}

.contact-section {
    background: var(--nero-soft);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(125, 200, 50, 0.07) 0%, transparent 65%);
    pointer-events: none;
}

.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-left h2 {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: clamp(1.8rem, 2.8vw, 2.5rem);
    line-height: 1.1;
    color: var(--bianco);
    margin-bottom: 18px;
}

.contact-left p {
    font-size: 0.97rem;
    line-height: 1.78;
    color: var(--testo-corpo);
    margin-bottom: 36px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-row {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 0.92rem;
    color: var(--testo-corpo);
}

.contact-row-icon {
    width: 36px;
    height: 36px;
    background: rgba(125, 200, 50, 0.1);
    border: 1px solid rgba(125, 200, 50, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-row-icon svg {
    width: 16px;
    height: 16px;
    stroke: var(--verde);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.form-group label {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(125, 200, 50, 0.7);
}

.form-group input,
.form-group textarea,
.form-group select {
    background: #111811;
    border: 1px solid rgba(125, 200, 50, 0.15);
    color: var(--bianco);
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    padding: 12px 16px;
    outline: none;
    transition: border-color 0.25s, box-shadow 0.25s;
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(180, 200, 170, 0.3);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: rgba(125, 200, 50, 0.5);
    box-shadow: 0 0 0 3px rgba(125, 200, 50, 0.08);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select option {
    background: #111811;
}

.btn-submit {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--nero);
    background: var(--verde);
    border: none;
    padding: 16px 36px;
    cursor: pointer;
    clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
    transition: background 0.25s, box-shadow 0.25s, transform 0.2s;
    align-self: flex-start;
    width: 100%;
}

.btn-submit:hover {
    background: #96e040;
    box-shadow: 0 6px 30px rgba(125, 200, 50, 0.35);
    transform: translateY(-2px);
}

.footer {
    background: #050905;
    border-top: 1px solid rgba(125, 200, 50, 0.12);
    padding: 60px 6vw 32px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 56px;
}

.footer-brand img {
    height: 140px;
    width: auto;
    margin-bottom: 18px;
    background-color: #dfeed0;
    border-radius: 5em;
}

.footer-brand p {
    font-size: 0.88rem;
    line-height: 1.72;
    color: rgba(184, 200, 176, 0.6);
    max-width: 260px;
}

.footer-col h4 {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--verde);
    margin-bottom: 18px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul li a {
    font-size: 0.88rem;
    color: rgba(184, 200, 176, 0.55);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: var(--verde);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 28px;
    border-top: 1px solid rgba(125, 200, 50, 0.07);
}

.footer-copy {
    font-size: 0.8rem;
    color: rgba(184, 200, 176, 0.35);
}

.footer-copy a {
    color: rgba(125, 200, 50, 0.5);
    text-decoration: none;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-btn {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(125, 200, 50, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s, border-color 0.25s;
    text-decoration: none;
}

.social-btn:hover {
    background: rgba(125, 200, 50, 0.1);
    border-color: rgba(125, 200, 50, 0.5);
}

.social-btn svg {
    width: 16px;
    height: 16px;
    stroke: rgba(125, 200, 50, 0.6);
    transition: stroke 0.25s;
}

.social-btn:hover svg {
    stroke: var(--verde);
}

.divider-clip {
    width: 100%;
    height: 60px;
    background: inherit;
    clip-path: polygon(0 0, 100% 0, 100% 40%, 0 100%);
    position: relative;
    z-index: 1;
    margin-bottom: -2px;
}

.scroll-indicator {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    opacity: 0.6;
    animation: bounce 2.4s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

.scroll-indicator span {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--verde-dark);
}

.scroll-line {
    width: 1px;
    height: 36px;
    background: linear-gradient(to bottom, var(--verde-dark), transparent);
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

@media (max-width: 860px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgb(216 228 216);
        flex-direction: column;
        padding: 24px 6vw 32px;
        gap: 0;
        border-bottom: 1px solid rgba(125, 200, 50, 0.15);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links li {
        border-bottom: 1px solid rgba(125, 200, 50, 0.07);
    }

    .nav-links a {
        display: block;
        padding: 14px 0;
        font-size: 1rem;
    }

    .nav-links a::after {
        display: none;
    }

    .nav-cta-desktop {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
        padding-top: 60px;
    }

    .hero-eyebrow {
        justify-content: center;
    }

    .hero-sub {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        order: -1;
    }

    .hero-logo-wrap img {
        width: 200px;
    }

    .hero-logo-wrap::before {
        width: 260px;
        height: 260px;
    }

    .hero-logo-wrap::after {
        width: 220px;
        height: 220px;
    }

    .process-wrap,
    .automation-grid,
    .logo-split,
    .contact-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

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

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

    .footer-bottom {
        flex-direction: column;
        gap: 18px;
        text-align: center;
    }

    .section-inner {
        padding: 72px 6vw;
    }
}

@media (max-width: 520px) {
    .why-grid {
        grid-template-columns: 1fr;
    }

    .logo-showcase {
        grid-template-columns: 1fr 1fr;
    }

    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-logo-wrap::after,
    .tech-track,
    .scroll-indicator {
        animation: none;
    }
}