:root {
  --navy:       #080c14;
  --navy-2:     #0d1220;
  --navy-3:     #111827;
  --navy-4:     #1a2236;
  --gold:       #00e5ff;
  --gold-light: #60f2ff;
  --gold-dim:   rgba(0, 229, 255, 0.15);
  --gold-line:  rgba(0, 229, 255, 0.25);
  --white:      #f4f5f7;
  --silver:     #a8b0c0;
  --silver-dim: rgba(168,176,192,0.12);
  --display:    'Cormorant Garamond', serif;
  --sans:       'DM Sans', sans-serif;
  --mono:       'DM Mono', monospace;
  --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

html { 
    scroll-behavior: smooth; 
}

body {
    background: var(--navy);
    color: var(--white);
    font-family: var(--sans);
    font-size: 16px;
    overflow-x: hidden;
    cursor: none;
    line-height: 1.6;
}

/* ── CUSTOM CURSOR ── */
.cursor {
    width: 8px; height: 8px;
    background: var(--gold);
    border-radius: 50%;
    position: fixed; pointer-events: none;
    z-index: 9999;
    transform: translate(-50%,-50%);
    transition: transform 0.1s, width 0.3s, height 0.3s, background 0.3s;
}
.cursor-ring {
    width: 32px; height: 32px;
    border: 1px solid rgba(0, 229, 255, 0.5);
    border-radius: 50%;
    position: fixed; pointer-events: none;
    z-index: 9998;
    transform: translate(-50%,-50%);
    transition: transform 0.18s ease, width 0.3s, height 0.3s;
}

/* ── SCROLL PROGRESS ── */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--gold);
    z-index: 1000;
}

/* ── NAV ── */
nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 900;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 6%;
    height: 80px;
    transition: var(--transition);
}
nav.scrolled {
    background: rgba(8,12,20,0.9);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--gold-line);
    height: 72px;
}

.logo {
    display: flex; align-items: center; gap: 10px;
    text-decoration: none;
}
.logo-img {
    height: 48px;
    width: auto;
    display: block;
}
.logo-name {
    font-family: var(--display);
    font-size: 1.25rem; font-weight: 600;
    letter-spacing: 3px; color: var(--white);
    text-transform: uppercase;
}
.logo-name span { color: var(--gold); }

.nav-links {
    display: flex; gap: 36px; list-style: none;
}
.nav-links a {
    font-family: var(--mono); font-size: 0.72rem;
    letter-spacing: 1.5px; text-transform: uppercase;
    color: var(--silver); text-decoration: none;
    transition: color 0.25s;
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute; bottom: -4px; left: 0;
    width: 0; height: 1px; background: var(--gold);
    transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav-contact {
    font-family: var(--mono); font-size: 0.72rem;
    letter-spacing: 2px; text-transform: uppercase;
    color: var(--gold); background: transparent;
    border: 1px solid var(--gold-line);
    padding: 10px 24px; cursor: none;
    transition: all 0.3s;
    text-decoration: none;
}
.nav-contact:hover {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}

/* ── HERO ── */
.hero {
    min-height: 100vh;
    display: flex; flex-direction: column;
    justify-content: center;
    padding: 120px 6% 80px;
    position: relative; overflow: hidden;
}

/* Background grid */
.hero-bg {
    position: absolute; inset: 0; z-index: 0;
    background-image:
    linear-gradient(rgba(8,12,20,0.85), rgba(8,12,20,0.85)),
    url('../assets/hero_bg.png'),
    linear-gradient(rgba(0, 229, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 229, 255, 0.03) 1px, transparent 1px);
    background-size: cover, cover, 80px 80px, 80px 80px;
    background-position: center;
    opacity: 0.6;
}

/* Glowing orbs */
.orb {
    position: absolute; border-radius: 50%;
    filter: blur(120px); pointer-events: none; z-index: 0;
}
.orb-1 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.07) 0%, transparent 70%);
    top: -100px; right: -100px;
}
.orb-2 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(20,50,100,0.4) 0%, transparent 70%);
    bottom: 0; left: 10%;
}

/* Diagonal accent bar */
.hero-accent-bar {
    position: absolute;
    top: 0; right: 28%;
    width: 1px; height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(0, 229, 255, 0.2) 30%, rgba(0, 229, 255, 0.2) 70%, transparent);
    z-index: 0;
}

.hero-inner {
    position: relative; z-index: 2;
    max-width: 900px;
}

.hero-eyebrow {
    display: flex; align-items: center; gap: 16px;
    margin-bottom: 40px;
    animation: fadeUp 1s ease both;
}
.eyebrow-line {
    width: 48px; height: 1px; background: var(--gold);
}
.eyebrow-text {
    font-family: var(--mono); font-size: 0.7rem;
    color: var(--gold); letter-spacing: 3px; text-transform: uppercase;
}

.hero-title {
    font-family: var(--display);
    font-size: clamp(3.8rem, 8vw, 8rem);
    font-weight: 300;
    line-height: 1.0;
    letter-spacing: -1px;
    margin-bottom: 12px;
    animation: fadeUp 1s 0.15s ease both;
}
.hero-title em {
    font-style: italic;
    color: var(--gold);
}
.hero-title .bold { font-weight: 700; }

.hero-tagline {
    font-family: var(--display);
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 300;
    color: var(--silver);
    margin-bottom: 48px;
    letter-spacing: 1px;
    animation: fadeUp 1s 0.3s ease both;
}

.hero-desc {
    font-size: 1.05rem; line-height: 1.8;
    color: var(--silver);
    max-width: 560px;
    margin-bottom: 56px;
    animation: fadeUp 1s 0.45s ease both;
}

.hero-actions {
    display: flex; align-items: center; gap: 28px;
    animation: fadeUp 1s 0.6s ease both;
}
.btn-gold {
    background: var(--gold); color: var(--navy);
    font-family: var(--mono); font-size: 0.75rem;
    letter-spacing: 2px; text-transform: uppercase;
    padding: 16px 36px; border: none; cursor: none;
    transition: all 0.3s;
    text-decoration: none; display: inline-block;
    font-weight: 500;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }

.btn-ghost {
    font-family: var(--mono); font-size: 0.75rem;
    letter-spacing: 2px; text-transform: uppercase;
    color: var(--silver); background: transparent; border: none;
    cursor: none; transition: color 0.25s;
    text-decoration: none;
    display: inline-flex; align-items: center; gap: 10px;
}
.btn-ghost:hover { color: var(--white); }
.text-white { color: var(--white); }
.flex-center { display: flex; justify-content: center; }
.sub-margin { margin-bottom: 48px; }
.agri-margin { margin-top: 16px; max-width: 520px; }
.why-margin { margin-bottom: 40px; }
.process-title { max-width: 600px; }
.contact-title { margin-bottom: 80px; }
.btn-enquiry { width: 100%; font-size: 0.8rem; padding: 18px; letter-spacing: 3px; }

/* AgriTekno Specifics */
.agri-eyebrow { justify-content: center; }
.agri-card-margin { max-width: 100%; margin-bottom: 30px; }
.agri-demo-btn { margin-top: 40px; }
.agri-footer { margin-top: 0; }

.about-vision-img {
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    border: 1px solid var(--gold-line); 
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}
.btn-ghost .arrow {
    width: 28px; height: 1px; background: var(--silver);
    position: relative; transition: width 0.3s;
}
.btn-ghost:hover .arrow { width: 44px; background: var(--white); }
.btn-ghost .arrow::after {
    content: '';
    position: absolute; right: 0; top: -3px;
    width: 7px; height: 7px;
    border-top: 1px solid; border-right: 1px solid;
    transform: rotate(45deg);
}

/* Hero stats strip */
.hero-stats {
    position: absolute; bottom: 0; left: 0; right: 0;
    display: flex;
    border-top: 1px solid var(--gold-line);
    z-index: 2;
    animation: fadeUp 1s 0.8s ease both;
}
.hero-stat {
    flex: 1; padding: 28px 6%;
    border-right: 1px solid var(--gold-line);
    display: flex; align-items: center; gap: 20px;
}
.hero-stat:last-child { border-right: none; }
.stat-num {
    font-family: var(--display);
    font-size: 2.8rem; font-weight: 600;
    color: var(--gold); line-height: 1;
}
.stat-label {
    font-family: var(--mono); font-size: 0.65rem;
    color: var(--silver); letter-spacing: 1.5px;
    text-transform: uppercase; line-height: 1.5;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── MARQUEE ── */
.marquee-strip {
    background: var(--navy-2);
    border-top: 1px solid var(--gold-line);
    border-bottom: 1px solid var(--gold-line);
    overflow: hidden; white-space: nowrap;
    padding: 14px 0;
}
.marquee-track {
    display: inline-block;
    animation: marquee 35s linear infinite;
    font-family: var(--mono); font-size: 0.7rem;
    color: var(--silver); letter-spacing: 3px; text-transform: uppercase;
}
@keyframes marquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.marquee-sep { color: var(--gold); margin: 0 24px; }

/* ── SECTION COMMON ── */
section { padding: 120px 6%; }

.s-eyebrow {
    display: flex; align-items: center; gap: 14px;
    margin-bottom: 20px;
}
.s-eyebrow-line { width: 32px; height: 1px; background: var(--gold); }
.s-eyebrow-text {
    font-family: var(--mono); font-size: 0.68rem;
    color: var(--gold); letter-spacing: 3px; text-transform: uppercase;
}

.s-title {
    font-family: var(--display);
    font-size: clamp(2.4rem, 4.5vw, 4rem);
    font-weight: 300; line-height: 1.1;
    margin-bottom: 20px;
}
.s-title em { font-style: italic; color: var(--gold); }
.s-title strong { font-weight: 700; }

.s-sub {
    font-size: 1rem; line-height: 1.8;
    color: var(--silver); max-width: 560px;
}

/* ── ABOUT ── */
#about {
    background: var(--navy-2);
    position: relative; overflow: hidden;
}
#about::before {
    content: '';
    position: absolute; top: 0; right: 0;
    width: 50%; height: 100%;
    background: linear-gradient(135deg, transparent 60%, rgba(0, 229, 255, 0.03) 100%);
}

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

.about-right { position: relative; }

.about-card-stack { position: relative; height: 420px; }

.about-card {
    position: absolute;
    background: rgba(17, 24, 39, 0.85);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid var(--gold-line);
    padding: 36px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    z-index: 2;
}
.about-card-1 {
    top: 0; left: 0; right: 60px;
    animation: cardFloat1 8s ease-in-out infinite;
}
.about-card-2 {
    bottom: 0; right: 0; left: 60px;
    animation: cardFloat2 8s ease-in-out infinite;
}
@keyframes cardFloat1 {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}
@keyframes cardFloat2 {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(15px); }
}

.about-card-label {
    font-family: var(--mono); font-size: 0.65rem;
    color: var(--gold); letter-spacing: 2px;
    margin-bottom: 20px;
}
.about-card-title {
    font-family: var(--display); font-size: 1.6rem;
    font-weight: 600; margin-bottom: 12px;
}
.about-card-text {
    font-size: 0.9rem; line-height: 1.7;
    color: var(--silver);
}

.about-pillar-list {
    margin-top: 48px;
    display: flex; flex-direction: column; gap: 0;
}
.about-pillar {
    display: flex; align-items: flex-start; gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(0, 229, 255, 0.1);
    transition: var(--transition);
}
.about-pillar:hover {
    padding-left: 10px;
}
.pillar-num {
    font-family: var(--display); font-size: 2rem;
    font-weight: 700; color: var(--gold-line);
    line-height: 1; min-width: 48px;
    transition: color 0.3s;
}
.about-pillar:hover .pillar-num { color: var(--gold); }
.pillar-content h4 {
    font-family: var(--sans); font-size: 1rem;
    font-weight: 600; margin-bottom: 6px;
}
.pillar-content p { font-size: 0.88rem; color: var(--silver); line-height: 1.6; }

/* ── SERVICES ── */
#services { background: var(--navy); }

.services-header {
    display: flex; justify-content: space-between;
    align-items: flex-end; margin-bottom: 80px;
    gap: 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--gold-line);
    border: 1px solid var(--gold-line);
}

.service-card {
    background: var(--navy);
    padding: 44px 36px;
    position: relative; overflow: hidden;
    transition: background 0.35s;
    cursor: none;
}
.service-card:hover { background: var(--navy-3); }

.service-card::after {
    content: '';
    position: absolute; bottom: 0; left: 0;
    width: 0; height: 2px;
    background: var(--gold);
    transition: width 0.4s ease;
}
.service-card:hover::after { width: 100%; }

.service-index {
    font-family: var(--mono); font-size: 0.65rem;
    color: var(--gold-line); letter-spacing: 2px;
    margin-bottom: 32px;
    transition: color 0.3s;
}
.service-card:hover .service-index { color: var(--gold); }

.service-icon {
    font-size: 2rem; margin-bottom: 20px;
    display: block;
    transition: transform 0.3s;
}
.service-card:hover .service-icon {
    transform: scale(1.1) rotate(-5deg);
}

.service-name {
    font-family: var(--display); font-size: 1.6rem;
    font-weight: 600; margin-bottom: 16px;
    line-height: 1.2;
}

.service-desc {
    font-size: 0.88rem; line-height: 1.75;
    color: var(--silver); margin-bottom: 28px;
}

.service-tags {
    display: flex; flex-wrap: wrap; gap: 8px;
}
.stag {
    font-family: var(--mono); font-size: 0.6rem;
    letter-spacing: 1px; text-transform: uppercase;
    color: var(--silver);
    border: 1px solid rgba(168,176,192,0.2);
    padding: 4px 10px;
}

/* ── AGRITEKNO CALLOUT ── */
.agri-callout {
    background: linear-gradient(rgba(26, 34, 54, 0.8), rgba(26, 34, 54, 0.8)), url('../assets/agritekno.png');
    background-size: cover;
    background-position: center;
    margin: 0 6%;
    border: 1px solid var(--gold-line);
    padding: 72px 80px;
    display: grid; grid-template-columns: 1fr auto;
    gap: 60px; align-items: center;
    position: relative; overflow: hidden;
}
.agri-callout::before {
    content: 'AGRITEKNO';
    position: absolute; right: -20px; top: 50%;
    transform: translateY(-50%) rotate(90deg);
    font-family: var(--display); font-size: 8rem;
    font-weight: 700; color: rgba(0, 229, 255, 0.04);
    letter-spacing: 8px; white-space: nowrap;
    pointer-events: none;
}
.callout-badge {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--gold-dim);
    border: 1px solid var(--gold-line);
    padding: 6px 16px; margin-bottom: 24px;
}
.callout-badge-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--gold);
    animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }
.callout-badge-text {
    font-family: var(--mono); font-size: 0.65rem;
    color: var(--gold); letter-spacing: 2px;
}
.callout-title {
    font-family: var(--display); font-size: 2.6rem;
    font-weight: 300; line-height: 1.2; margin-bottom: 16px;
}
.callout-title strong { font-weight: 700; }
.callout-desc { font-size: 0.95rem; line-height: 1.8; color: var(--silver); }

/* ── WHY RAMTECHNO ── */
#why { background: var(--navy-2); }

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

.why-right {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 1px; background: var(--gold-line);
    border: 1px solid var(--gold-line);
}
.why-item {
    background: var(--navy-2);
    padding: 36px 28px;
    transition: background 0.3s;
}
.why-item:hover { background: var(--navy-3); }
.why-item-icon { font-size: 1.6rem; margin-bottom: 16px; }
.why-item-title {
    font-family: var(--display); font-size: 1.3rem;
    font-weight: 600; margin-bottom: 10px;
}
.why-item-desc { font-size: 0.85rem; color: var(--silver); line-height: 1.7; }

/* ── PROCESS ── */
#process { background: var(--navy); }

.process-steps {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 0; margin-top: 80px;
    border: 1px solid var(--gold-line);
}
.process-step {
    padding: 44px 32px;
    border-right: 1px solid var(--gold-line);
    position: relative;
}
.process-step:last-child { border-right: none; }
.process-step::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 2px; background: transparent;
    transition: background 0.3s;
}
.process-step:hover::before { background: var(--gold); }

.step-num {
    font-family: var(--display); font-size: 4rem;
    font-weight: 700; color: rgba(0, 229, 255, 0.1);
    line-height: 1; margin-bottom: 20px;
    transition: color 0.3s;
}
.process-step:hover .step-num { color: rgba(0, 229, 255, 0.25); }
.step-title {
    font-family: var(--sans); font-size: 1rem;
    font-weight: 600; margin-bottom: 12px;
}
.step-desc { font-size: 0.85rem; color: var(--silver); line-height: 1.7; }

/* ── INDUSTRIES ── */
#industries { background: var(--navy-2); }

.industries-header {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; margin-bottom: 80px; align-items: end;
}
.industry-tags {
    display: flex; flex-wrap: wrap; gap: 10px;
    align-self: flex-end;
}
.industry-tag {
    font-family: var(--mono); font-size: 0.68rem;
    letter-spacing: 1.5px; text-transform: uppercase;
    padding: 10px 20px;
    border: 1px solid var(--gold-line);
    color: var(--silver);
    cursor: none; transition: all 0.25s;
}
.industry-tag:hover, .industry-tag.active {
    background: var(--gold-dim);
    border-color: var(--gold);
    color: var(--gold);
}

.industries-strip {
    display: grid; grid-template-columns: repeat(6, 1fr);
    gap: 1px; background: var(--gold-line);
    border: 1px solid var(--gold-line);
}
.industry-cell {
    background: var(--navy-2);
    padding: 32px 24px;
    text-align: center;
    transition: background 0.3s;
    cursor: none;
}
.industry-cell:hover { background: var(--navy-3); }
.industry-cell-icon { font-size: 1.8rem; margin-bottom: 12px; }
.industry-cell-name {
    font-family: var(--mono); font-size: 0.65rem;
    letter-spacing: 1.5px; text-transform: uppercase;
    color: var(--silver);
}
.industry-cell:hover .industry-cell-name { color: var(--gold); }

/* ── CONTACT ── */
#contact { background: var(--navy); }

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

/* contact-left removed as it is empty */
.contact-detail-row {
    display: flex; align-items: flex-start; gap: 20px;
    padding: 28px 0;
    border-bottom: 1px solid rgba(0, 229, 255, 0.1);
}
.cd-label {
    font-family: var(--mono); font-size: 0.62rem;
    color: var(--gold); letter-spacing: 2px;
    text-transform: uppercase; min-width: 100px;
    padding-top: 3px;
}
.cd-value { font-size: 0.95rem; color: var(--silver); line-height: 1.6; }
.cd-value a { color: var(--white); text-decoration: none; transition: color 0.2s; }
.cd-value a:hover { color: var(--gold); }

.sa-badge {
    margin-top: 48px;
    background: var(--navy-3);
    border: 1px solid var(--gold-line);
    padding: 24px 28px;
    display: flex; align-items: center; gap: 16px;
}
.sa-flag { font-size: 2rem; }
.sa-text { font-family: var(--mono); font-size: 0.7rem; color: var(--silver); letter-spacing: 1.5px; line-height: 1.6; }
.sa-text strong { color: var(--gold); display: block; margin-bottom: 4px; }

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.fg { display: flex; flex-direction: column; gap: 8px; }
.fg label {
    font-family: var(--mono); font-size: 0.62rem;
    color: var(--gold); letter-spacing: 2px; text-transform: uppercase;
}
.fg input, .fg select, .fg textarea {
    background: var(--navy-3);
    border: 1px solid rgba(0, 229, 255, 0.18);
    color: var(--white);
    font-family: var(--sans); font-size: 0.95rem;
    padding: 14px 18px; outline: none;
    transition: border-color 0.25s;
    cursor: none;
}
.fg input::placeholder, .fg textarea::placeholder { color: rgba(168,176,192,0.4); }
.fg input:focus, .fg select:focus, .fg textarea:focus {
    border-color: var(--gold);
}
.fg select option { background: var(--navy-3); }
.fg textarea { min-height: 130px; resize: vertical; }

.form-feedback {
    min-height: 20px;
    font-family: var(--mono);
    font-size: 0.75rem;
    margin-top: 10px;
}
.form-feedback.success { color: #4ade80; }
.form-feedback.error { color: #f87171; }

/* ── FOOTER ── */
footer {
    background: var(--navy-2);
    border-top: 1px solid var(--gold-line);
}

.footer-main {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 70px; padding: 80px 6% 60px;
}

/* footer-brand removed as it is empty */
.fb-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    font-family: var(--display);
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
}
.footer-logo-img {
    height: 40px;
    width: auto;
}
.fb-logo span { color: var(--gold); }
.fb-tagline {
    font-family: var(--display); font-style: italic;
    font-size: 1rem; color: var(--silver);
    margin-bottom: 24px; line-height: 1.6;
}
.fb-desc {
    font-size: 0.85rem; color: var(--silver);
    line-height: 1.7; max-width: 280px; margin-bottom: 28px;
}
.footer-socials { display: flex; gap: 10px; }
.fsoc {
    width: 36px; height: 36px;
    border: 1px solid var(--gold-line);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--mono); font-size: 0.7rem;
    color: var(--silver); text-decoration: none;
    transition: all 0.25s; cursor: none;
}
.fsoc:hover { border-color: var(--gold); color: var(--gold); }

.footer-col h5 {
    font-family: var(--mono); font-size: 0.65rem;
    letter-spacing: 2px; text-transform: uppercase;
    color: var(--gold); margin-bottom: 24px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col ul li a {
    font-size: 0.88rem; color: var(--silver);
    text-decoration: none; transition: color 0.2s;
    cursor: none;
}
.footer-col ul li a:hover { color: var(--white); }

.footer-bottom {
    padding: 24px 6%;
    border-top: 1px solid rgba(0, 229, 255, 0.08);
    display: flex; justify-content: space-between; align-items: center;
    font-family: var(--mono); font-size: 0.62rem;
    color: rgba(168,176,192,0.4); letter-spacing: 1px;
}

/* ── SCROLL REVEAL ── */
.reveal {
    opacity: 0; transform: translateY(30px);
    transition: opacity 1.2s cubic-bezier(0.165, 0.84, 0.44, 1), transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
    .about-grid, .why-grid, .contact-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .industries-header { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: 1fr 1fr; }
    .footer-main { grid-template-columns: 1fr 1fr; gap: 40px; }
    .industries-strip { grid-template-columns: repeat(3, 1fr); }
    .agri-callout { grid-template-columns: 1fr; padding: 48px 40px; }
    .hero-stats { position: static; margin-top: 60px; flex-wrap: wrap; }
    .hero-stat { flex: 1 1 50%; border: none; border-top: 1px solid var(--gold-line); padding: 20px 0; }
}

@media (max-width: 720px) {
    nav { padding: 0 5%; }
    .nav-links { display: none; }
    section { padding: 80px 5%; }
    .services-grid { grid-template-columns: 1fr; }
    .why-right { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: 1fr; }
    .footer-main { grid-template-columns: 1fr; }
    .industries-strip { grid-template-columns: repeat(2, 1fr); }
    .agri-callout { margin: 0 5%; padding: 40px 28px; }
    .contact-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .hero-stats { display: none; }
    body { cursor: auto; }
    .cursor, .cursor-ring { display: none; }
}
