/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:    #16a34a;
  --green-d:  #14532d;
  --green-l:  #f0fdf4;
  --green-m:  #dcfce7;
  --ink:      #0f172a;
  --body:     #334155;
  --muted:    #64748b;
  --border:   #e2e8f0;
  --border-l: #f1f5f9;
  --card:     #ffffff;
  --bg:       #f8fafc;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow:    0 4px 16px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.05);
  --shadow-md: 0 8px 32px rgba(0,0,0,.1), 0 4px 12px rgba(0,0,0,.06);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.14), 0 8px 24px rgba(0,0,0,.08);
  --radius-sm: 8px;
  --radius:    12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --ease: cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

/* offset for sticky ticker (34px) + navbar (~56px) */
#home, #tools, #about, #contact {
  scroll-margin-top: 90px;
}
#lkTabs {
  scroll-margin-top: 96px;
}

body {
  font-family: 'Nunito', sans-serif;
  background: var(--bg);
  color: var(--body);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(20, 83, 45, 0.88);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border-bottom: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 2px 20px rgba(0,0,0,.2);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: .65rem 1.4rem;
}
.nav-logo {
  font-family: 'Lora', serif; font-size: 1.25rem; font-weight: 700;
  color: #fff; text-decoration: none; display: flex; align-items: center; gap: .45rem;
  letter-spacing: -.01em;
}
.nav-logo span { color: #86efac; }
.nav-logo-icon { font-size: 1.35rem; }
.nav-links { list-style: none; display: flex; gap: .15rem; align-items: center; }
.nav-links a {
  color: rgba(255,255,255,.75); text-decoration: none; font-size: .78rem;
  font-weight: 700; padding: .38rem .72rem; border-radius: var(--radius-sm);
  transition: all .18s var(--ease); letter-spacing: .01em;
}
.nav-links a:hover { background: rgba(255,255,255,.14); color: #fff; }
.nav-link-active { background: rgba(255,255,255,.16) !important; color: #fff !important; }
.nav-menu-btn {
  display: none; background: none; border: none; color: #fff; cursor: pointer;
  padding: .35rem; border-radius: var(--radius-sm); transition: background .15s;
}
.nav-menu-btn:hover { background: rgba(255,255,255,.12); }
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-menu-btn { display: flex; }
}

/* ── MOBILE OVERLAY ── */
.nav-overlay {
  display: none; position: fixed; inset: 0; z-index: 200;
  background: rgba(5, 46, 22, 0.97);
  backdrop-filter: blur(20px);
  padding: 1.2rem 1.5rem;
  flex-direction: column;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.nav-overlay.open { display: flex; }
.nav-overlay-close {
  align-self: flex-end; background: rgba(255,255,255,.1); border: none;
  color: #fff; font-size: 1.1rem; border-radius: 50%; width: 38px; height: 38px;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem; transition: background .15s;
}
.nav-overlay-close:hover { background: rgba(255,255,255,.2); }
.nav-overlay-links { list-style: none; display: flex; flex-direction: column; gap: .25rem; }
.nav-overlay-links a {
  display: flex; align-items: center; gap: .75rem;
  color: rgba(255,255,255,.85); text-decoration: none;
  padding: .85rem 1rem; border-radius: var(--radius); font-weight: 700; font-size: .95rem;
  transition: background .15s var(--ease);
}
.nav-overlay-links a:hover { background: rgba(255,255,255,.1); color: #fff; }

/* ── HERO ── */
.hero {
  background: linear-gradient(145deg, #052e16 0%, #14532d 45%, #065f46 80%, #0f766e 100%);
  padding: 3.5rem 1.4rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(134,239,172,.08) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(52,211,153,.06) 0%, transparent 40%),
                    radial-gradient(circle at 60% 80%, rgba(16,185,129,.05) 0%, transparent 40%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2386efac' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-inner { max-width: 700px; margin: 0 auto; position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: .4rem;
  background: rgba(134,239,172,.12); color: rgba(255,255,255,.85);
  border: 1px solid rgba(134,239,172,.25); border-radius: 99px;
  padding: .32rem 1.1rem; font-size: .7rem; font-weight: 900;
  letter-spacing: .1em; text-transform: uppercase; margin-bottom: 1.1rem;
  backdrop-filter: blur(8px);
}
.hero-badge::before { content: '●'; font-size: .5rem; color: #86efac; animation: pulse-dot 2s infinite; }
@keyframes pulse-dot { 0%,100% { opacity:1 } 50% { opacity:.4 } }
.hero-title {
  font-family: 'Lora', serif;
  font-size: clamp(2.1rem, 7vw, 3.2rem); font-weight: 700;
  color: #fff; margin-bottom: .45rem; line-height: 1.1;
  text-shadow: 0 2px 20px rgba(0,0,0,.2);
}
.hero-sub {
  font-size: 1.1rem; font-weight: 800;
  background: linear-gradient(90deg, #86efac, #34d399);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; margin-bottom: .65rem;
}
.hero-desc {
  color: rgba(255,255,255,.68); font-size: .88rem; line-height: 1.8; margin-bottom: 1.75rem;
}
.hero-btns { display: flex; gap: .75rem; flex-wrap: wrap; justify-content: center; }
.btn-hero-primary {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff; text-decoration: none;
  padding: .75rem 1.8rem; border-radius: var(--radius); font-weight: 900; font-size: .9rem;
  transition: all .2s var(--ease); box-shadow: 0 4px 20px rgba(22,163,74,.4);
  border: 1px solid rgba(255,255,255,.15);
}
.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(22,163,74,.5);
  background: linear-gradient(135deg, #4ade80, #22c55e);
}
.btn-hero-secondary {
  background: rgba(255,255,255,.1); color: #fff; text-decoration: none;
  border: 1.5px solid rgba(255,255,255,.25); padding: .75rem 1.8rem;
  border-radius: var(--radius); font-weight: 900; font-size: .9rem;
  transition: all .2s var(--ease); backdrop-filter: blur(8px);
}
.btn-hero-secondary:hover {
  background: rgba(255,255,255,.18);
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.4);
}

/* ── CONTAINER ── */
.container {
  max-width: 960px; margin: 0 auto; padding: 1.75rem 1.2rem 3.5rem;
}

/* ── PORTAL CARDS ── */
.portal-strip {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: .75rem; margin: 1rem 0 1.75rem;
}
.portal-card {
  display: flex; flex-direction: column; gap: .3rem;
  border-radius: var(--radius-lg); padding: 1.15rem 1.05rem 1.05rem;
  text-decoration: none; position: relative; overflow: hidden;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  box-shadow: var(--shadow);
}
.portal-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.07) 0%, transparent 60%);
  border-top: 1px solid rgba(255,255,255,.15);
  border-radius: inherit; pointer-events: none;
}
.portal-card:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: var(--shadow-lg);
}
.pc-bhulekh { background: linear-gradient(145deg, #052e16, #16a34a); }
.pc-bhu     { background: linear-gradient(145deg, #0c1a4a, #1d4ed8); }
.pc-khasra  { background: linear-gradient(145deg, #3b1406, #b45309); }
.pc-vaad    { background: linear-gradient(145deg, #2e0a4a, #6d28d9); }
.pc-vaadsrch{ background: linear-gradient(145deg, #1a0a2e, #4c1d95); }
.pc-icon { font-size: 2rem; line-height: 1; margin-bottom: .15rem; filter: drop-shadow(0 2px 4px rgba(0,0,0,.25)); }
.pc-name { font-size: .88rem; font-weight: 900; color: #fff; line-height: 1.3; }
.pc-sub  { font-size: .67rem; color: rgba(255,255,255,.58); font-weight: 700; }
.pc-use  { font-size: .67rem; color: rgba(255,255,255,.48); font-weight: 600; margin-top: .2rem; }
.pc-btn  {
  margin-top: .6rem; display: inline-flex; align-items: center; gap: .3rem;
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.22);
  border-radius: 99px; padding: .3rem .85rem; font-size: .68rem; font-weight: 900;
  color: #fff; transition: background .2s; width: fit-content;
  backdrop-filter: blur(4px);
}
.portal-card:hover .pc-btn { background: rgba(255,255,255,.28); }
.portal-head {
  display: flex; align-items: center; gap: .5rem; margin-bottom: .6rem;
}
.portal-head-title {
  font-size: .7rem; font-weight: 900; color: var(--muted);
  letter-spacing: .1em; text-transform: uppercase;
}
.portal-head-badge {
  background: var(--green-l); color: var(--green-d); border: 1px solid #86efac;
  border-radius: 99px; font-size: .63rem; font-weight: 900; padding: .12rem .6rem;
}

/* ── TAB BUTTONS ── */
.lk-tabs {
  display: flex; gap: .4rem; flex-wrap: wrap; margin: 1.4rem 0 .75rem;
  padding: .5rem; background: var(--card); border-radius: var(--radius-xl);
  border: 1px solid var(--border); box-shadow: var(--shadow-sm);
}
.lk-btn {
  background: transparent; border: none; border-radius: var(--radius);
  padding: .55rem .85rem; font-family: 'Nunito', sans-serif; font-size: .78rem;
  font-weight: 800; cursor: pointer; color: var(--muted); line-height: 1.3;
  transition: all .2s var(--ease); text-align: center; flex: 1; min-width: 80px;
}
.lk-btn .tb-e { display: block; font-size: 1.2rem; margin-bottom: 2px; }
.lk-btn .tb-n { display: block; font-size: .82rem; color: var(--body); font-weight: 800; }
.lk-btn .tb-h { display: block; font-size: .58rem; opacity: .65; font-weight: 600; margin-top: 1px; }
.lk-btn:hover { background: var(--green-l); color: var(--green-d); }
.lk-btn:hover .tb-n { color: var(--green-d); }
.lk-btn.active {
  background: linear-gradient(135deg, var(--green), #15803d);
  color: #fff; box-shadow: 0 4px 14px rgba(22,163,74,.35);
}
.lk-btn.active .tb-n { color: #fff; }
.lk-btn.active .tb-h { opacity: .8; }
.lk-panel { display: none; animation: panelIn .2s var(--ease); }
.lk-panel.active { display: block; }
@keyframes panelIn { from { opacity:0; transform:translateY(6px) } to { opacity:1; transform:none } }

/* ── BADGES & SECTIONS ── */
.lk-badge {
  display: inline-flex; align-items: center; gap: .45rem;
  background: linear-gradient(135deg, var(--green-l), var(--green-m));
  color: var(--green-d); border: 1.5px solid #86efac;
  border-radius: 99px; padding: .35rem 1.1rem; font-size: .75rem; font-weight: 900;
  margin: .5rem 0 1rem; box-shadow: 0 2px 8px rgba(22,163,74,.12);
}
.lk-sec { display: flex; align-items: flex-start; gap: .65rem; margin: 1.5rem 0 .8rem; }
.lk-sec .si { font-size: 1.3rem; flex-shrink: 0; padding-top: 1px; filter: drop-shadow(0 1px 3px rgba(0,0,0,.1)); }
.lk-sec .st { font-size: .95rem; font-weight: 900; color: var(--ink); line-height: 1.3; }
.lk-sec .ss { font-size: .72rem; color: var(--muted); font-weight: 600; margin-top: .1rem; }

/* ── INFO BOXES ── */
.lk-info {
  background: linear-gradient(135deg, var(--green-l), #f0fdf4);
  border: 1.5px solid #86efac;
  border-radius: var(--radius); padding: .9rem 1.1rem; margin: .7rem 0;
  font-size: .83rem; line-height: 1.8;
  box-shadow: 0 2px 8px rgba(22,163,74,.08);
}
.lk-info strong { color: var(--green-d); }
.lk-warn {
  background: linear-gradient(135deg, #fffbeb, #fef9c3);
  border: 1.5px solid #fde68a;
  border-radius: var(--radius); padding: .9rem 1.1rem; margin: .7rem 0;
  font-size: .83rem; line-height: 1.8;
  box-shadow: 0 2px 8px rgba(234,179,8,.08);
}
.lk-warn strong { color: #92400e; }
.lk-note {
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  border: 1.5px solid #bfdbfe;
  border-radius: var(--radius); padding: .9rem 1.1rem; margin: .7rem 0;
  font-size: .83rem; line-height: 1.8;
  box-shadow: 0 2px 8px rgba(59,130,246,.08);
}
.lk-note strong { color: #1d4ed8; }

/* ── TABLES ── */
.lk-tbl { width: 100%; border-collapse: collapse; margin: .5rem 0 1.2rem; font-size: .83rem; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.lk-tbl th {
  background: linear-gradient(135deg, var(--green-d), #166534);
  color: #fff; padding: .6rem .85rem;
  text-align: left; font-weight: 800; font-size: .75rem; letter-spacing: .02em;
}
.lk-tbl th:first-child { border-radius: 0; }
.lk-tbl th:last-child  { border-radius: 0; }
.lk-tbl td { padding: .65rem .85rem; border-bottom: 1px solid var(--border-l); vertical-align: top; line-height: 1.6; }
.lk-tbl tr:nth-child(even) td { background: var(--green-l); }
.lk-tbl tr:last-child td { border-bottom: none; }
.lk-tbl td:first-child { font-weight: 700; color: var(--ink); }

/* ── STATE TABS ── */
.state-tabs { display: flex; gap: .4rem; flex-wrap: wrap; margin-bottom: 1rem; }
.state-btn {
  background: var(--card); border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  padding: .38rem .9rem; font-family: 'Nunito', sans-serif; font-size: .75rem;
  font-weight: 800; cursor: pointer; transition: all .18s var(--ease); color: var(--body);
  box-shadow: var(--shadow-sm);
}
.state-btn.active {
  background: linear-gradient(135deg, var(--green), #15803d);
  border-color: var(--green); color: #fff;
  box-shadow: 0 3px 10px rgba(22,163,74,.3);
}
.state-btn:hover:not(.active) { border-color: var(--green); color: var(--green-d); background: var(--green-l); }

/* ── CONVERTER ── */
.converter-box {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 1.6rem; margin: .8rem 0 1.2rem;
  box-shadow: var(--shadow);
}
.conv-row { display: grid; grid-template-columns: 1fr auto 1fr; gap: .85rem; align-items: end; margin-bottom: 1.1rem; }
.conv-field label {
  display: block; font-size: .7rem; font-weight: 900; color: var(--muted);
  letter-spacing: .07em; text-transform: uppercase; margin-bottom: .45rem;
}
.conv-field input, .conv-field select {
  width: 100%; padding: .75rem 1.05rem; border: 1.5px solid var(--border);
  border-radius: var(--radius); font-family: 'Nunito', sans-serif; font-size: .95rem;
  font-weight: 700; color: var(--ink); background: var(--bg);
  transition: all .2s var(--ease); outline: none;
  box-shadow: inset 0 1px 3px rgba(0,0,0,.04);
}
.conv-field input:focus, .conv-field select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(22,163,74,.12), inset 0 1px 3px rgba(0,0,0,.04);
  background: #fff;
}
.conv-arrow {
  font-size: 1.5rem; text-align: center; padding-bottom: .65rem;
  color: var(--green); font-weight: 900;
}
.conv-result {
  background: linear-gradient(145deg, var(--green-d), #16a34a, #0f766e);
  border-radius: var(--radius-lg); padding: 1.4rem; text-align: center;
  color: #fff; margin-top: .6rem; position: relative; overflow: hidden;
  box-shadow: 0 8px 24px rgba(22,163,74,.35);
}
.conv-result::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255,255,255,.08) 0%, transparent 60%);
  border-top: 1px solid rgba(255,255,255,.15); border-radius: inherit; pointer-events: none;
}
.conv-result .cr-num {
  font-size: 2.2rem; font-weight: 900; font-family: 'Nunito', sans-serif;
  line-height: 1; text-shadow: 0 2px 8px rgba(0,0,0,.2);
}
.conv-result .cr-unit { font-size: .85rem; opacity: .82; font-weight: 700; margin-top: .35rem; }
.conv-btn {
  width: 100%; background: linear-gradient(135deg, var(--green), var(--green-d));
  color: #fff; border: none; border-radius: var(--radius); padding: .8rem;
  font-family: 'Nunito', sans-serif; font-size: .9rem; font-weight: 900;
  cursor: pointer; transition: all .2s var(--ease); margin-top: .7rem;
  box-shadow: 0 4px 14px rgba(22,163,74,.35); letter-spacing: .01em;
}
.conv-btn:hover {
  opacity: .92; transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(22,163,74,.45);
}
.conv-btn:active { transform: translateY(0); }
.quick-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: .65rem; margin: .5rem 0 1rem; }
.qc-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: .9rem 1.05rem; font-size: .82rem;
  box-shadow: var(--shadow-sm); transition: all .2s var(--ease);
}
.qc-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); border-color: #86efac; }
.qc-from { font-weight: 900; color: var(--ink); font-size: .88rem; }
.qc-eq   { color: var(--green); font-weight: 800; font-size: .8rem; margin-top: .25rem; line-height: 1.75; }

/* ── AREA CALCULATOR ── */
.area-box {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 1.6rem; margin: .8rem 0 1.2rem;
  box-shadow: var(--shadow);
}
.shape-btns { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 1.2rem; }
.shape-btn {
  background: var(--bg); border: 1.5px solid var(--border); border-radius: var(--radius);
  padding: .6rem 1.15rem; font-family: 'Nunito', sans-serif; font-size: .82rem;
  font-weight: 800; color: var(--body); cursor: pointer; transition: all .2s var(--ease);
  display: flex; align-items: center; gap: .4rem; box-shadow: var(--shadow-sm);
}
.shape-btn.active {
  background: linear-gradient(135deg, var(--green), #15803d);
  border-color: var(--green); color: #fff;
  box-shadow: 0 4px 12px rgba(22,163,74,.3);
}
.shape-btn:hover:not(.active) { border-color: var(--green); color: var(--green-d); background: var(--green-l); }
.area-inputs { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: .8rem; margin-bottom: 1rem; }
.area-field label {
  display: block; font-size: .7rem; font-weight: 900; color: var(--muted);
  letter-spacing: .06em; text-transform: uppercase; margin-bottom: .45rem;
}
.area-field input, .area-field select {
  width: 100%; padding: .7rem .95rem; border: 1.5px solid var(--border);
  border-radius: var(--radius); font-family: 'Nunito', sans-serif; font-size: .92rem;
  font-weight: 700; color: var(--ink); background: var(--bg); outline: none;
  transition: all .2s var(--ease); box-shadow: inset 0 1px 3px rgba(0,0,0,.04);
}
.area-field input:focus, .area-field select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(22,163,74,.12);
  background: #fff;
}
.area-results { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: .55rem; margin-top: 1rem; }
.ar-card {
  background: var(--bg); border: 1.5px solid var(--border); border-radius: var(--radius);
  padding: .75rem 1rem; text-align: center; transition: all .2s var(--ease);
  box-shadow: var(--shadow-sm);
}
.ar-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.ar-card.primary {
  background: linear-gradient(145deg, var(--green-d), #166534);
  border-color: transparent;
  box-shadow: 0 6px 18px rgba(22,163,74,.3);
}
.ar-card.primary .ar-val { color: #fff; font-size: 1.2rem; }
.ar-card.primary .ar-lbl { color: rgba(255,255,255,.7); }
.ar-val { font-size: 1.05rem; font-weight: 900; color: var(--green); font-family: 'Nunito', sans-serif; }
.ar-lbl { font-size: .68rem; color: var(--muted); font-weight: 700; margin-top: 2px; }
.shape-diagram {
  background: linear-gradient(135deg, var(--bg), var(--green-l));
  border: 1.5px solid #d1fae5; border-radius: var(--radius); padding: 1.1rem;
  text-align: center; font-size: .8rem; color: var(--muted); margin-bottom: 1rem;
}
.shape-diagram .formula { font-size: .88rem; font-weight: 900; color: var(--green); margin-top: .35rem; }

/* ── CROP CALENDAR ── */
.season-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1rem; margin: .6rem 0 1.4rem; }
.season-card {
  border-radius: var(--radius-xl); padding: 1.3rem 1.4rem;
  box-shadow: var(--shadow-md); position: relative; overflow: hidden;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.season-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.08) 0%, transparent 50%);
  border-top: 1px solid rgba(255,255,255,.15); border-radius: inherit; pointer-events: none;
}
.season-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.sc-kharif { background: linear-gradient(145deg, #065f46, #047857, #059669); }
.sc-rabi    { background: linear-gradient(145deg, #1e3a5f, #1d4ed8, #2563eb); }
.sc-zaid    { background: linear-gradient(145deg, #92400e, #b45309, #d97706); }
.sc-season  { font-size: .63rem; font-weight: 900; color: rgba(255,255,255,.55); letter-spacing: .12em; text-transform: uppercase; margin-bottom: .35rem; }
.sc-name    { font-size: 1.2rem; font-weight: 900; color: #fff; margin-bottom: .25rem; text-shadow: 0 2px 8px rgba(0,0,0,.2); }
.sc-months  { font-size: .76rem; color: rgba(255,255,255,.72); font-weight: 700; margin-bottom: .9rem; }
.sc-crops   { display: flex; flex-wrap: wrap; gap: .35rem; position: relative; z-index: 1; }
.sc-crop    {
  background: rgba(255,255,255,.16); color: #fff; font-size: .7rem; font-weight: 800;
  padding: .22rem .7rem; border-radius: 99px; border: 1px solid rgba(255,255,255,.15);
  backdrop-filter: blur(4px);
}

/* ── GLOSSARY ── */
.gloss-search {
  width: 100%; padding: .8rem 1.1rem .8rem 2.75rem; border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); font-family: 'Nunito', sans-serif; font-size: .92rem;
  font-weight: 600; color: var(--ink); background: var(--card) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cpath d='m21 21-4.35-4.35'/%3E%3C/svg%3E") no-repeat .9rem center;
  background-size: 16px;
  outline: none; margin: .5rem 0 .9rem;
  transition: all .2s var(--ease); box-shadow: var(--shadow-sm);
}
.gloss-search:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(22,163,74,.12), var(--shadow-sm);
  background-color: #fff;
}
.gloss-count { font-size: .78rem; color: var(--muted); font-weight: 700; margin-bottom: .5rem; }

/* ── MUTATION STEPS ── */
.mut-steps { display: flex; flex-direction: column; gap: .65rem; margin: .6rem 0 1rem; }
.mut-step {
  display: flex; gap: 1rem; align-items: flex-start;
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.1rem 1.2rem;
  box-shadow: var(--shadow-sm); transition: all .2s var(--ease);
}
.mut-step:hover { box-shadow: var(--shadow); transform: translateX(3px); border-color: #d1fae5; }
.mut-num {
  width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, #22c55e, var(--green-d));
  color: #fff; font-size: .85rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 3px 10px rgba(22,163,74,.35);
}
.mut-title { font-size: .9rem; font-weight: 900; color: var(--ink); margin-bottom: .25rem; }
.mut-desc  { font-size: .8rem; color: var(--body); line-height: 1.65; }
.mut-docs  { display: flex; flex-wrap: wrap; gap: .3rem; margin-top: .5rem; }
.mut-doc   {
  background: var(--green-l); border: 1px solid #86efac; color: var(--green-d);
  font-size: .7rem; font-weight: 800; padding: .18rem .65rem; border-radius: 99px;
}

/* ── PROBLEM ACCORDION ── */
.prob-grid { display: flex; flex-direction: column; gap: .5rem; margin: .6rem 0 1rem; }
.prob-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: box-shadow .2s var(--ease);
}
.prob-card:hover { box-shadow: var(--shadow); }
.prob-head {
  display: flex; align-items: center; gap: .8rem; padding: .9rem 1.1rem;
  cursor: pointer; user-select: none; transition: background .15s var(--ease);
}
.prob-head:hover { background: rgba(22,163,74,.04); }
.prob-icon { font-size: 1.3rem; flex-shrink: 0; filter: drop-shadow(0 1px 3px rgba(0,0,0,.12)); }
.prob-title-wrap { flex: 1; }
.prob-title { font-size: .88rem; font-weight: 900; color: var(--ink); }
.prob-sub   { font-size: .67rem; color: var(--muted); font-weight: 600; margin-top: .1rem; }
.prob-arr   {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--bg); border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: .6rem; color: var(--muted); transition: all .25s var(--ease); flex-shrink: 0;
}
.prob-card.open .prob-arr { transform: rotate(90deg); color: var(--green); background: var(--green-l); border-color: #86efac; }
.prob-body  { display: none; padding: 1rem 1.1rem 1.1rem; border-top: 1px solid var(--border-l); background: var(--bg); }
.prob-card.open .prob-body { display: block; }
.prob-card.open .prob-head { background: linear-gradient(135deg, var(--green-l), #f0fdf4); }
.prob-step { display: flex; gap: .7rem; margin: .45rem 0; font-size: .82rem; line-height: 1.7; }
.prob-step-num {
  width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--green), #15803d);
  color: #fff; font-size: .63rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center; margin-top: 2px;
  box-shadow: 0 2px 6px rgba(22,163,74,.3);
}
.prob-tags { display: flex; flex-wrap: wrap; gap: .3rem; margin: .7rem 0 .2rem; }
.prob-tag  { background: var(--green-l); border: 1px solid #86efac; color: var(--green-d); font-size: .68rem; font-weight: 800; padding: .18rem .7rem; border-radius: 99px; }
.prob-tag.orange { background: #fffbeb; border-color: #fde68a; color: #92400e; }
.prob-tag.blue   { background: #eff6ff; border-color: #bfdbfe; color: #1d4ed8; }

/* ── FORMAT BOXES ── */
.fmt-grid { display: flex; flex-direction: column; gap: .6rem; margin: .6rem 0; }
.fmt-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: box-shadow .2s var(--ease);
}
.fmt-card:hover { box-shadow: var(--shadow); }
.fmt-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: .5rem; padding: .85rem 1.1rem; cursor: pointer; user-select: none;
  transition: background .15s;
}
.fmt-head:hover { background: rgba(22,163,74,.04); }
.fmt-head-left { display: flex; align-items: center; gap: .65rem; }
.fmt-head-icon { font-size: 1.15rem; filter: drop-shadow(0 1px 2px rgba(0,0,0,.1)); }
.fmt-head-name { font-size: .88rem; font-weight: 900; color: var(--ink); }
.fmt-head-sub  { font-size: .67rem; color: var(--muted); font-weight: 600; }
.fmt-card.open .fmt-head { background: linear-gradient(135deg, var(--green-l), #f0fdf4); border-bottom: 1px solid #d1fae5; }
.fmt-body  { display: none; }
.fmt-card.open .fmt-body { display: block; }
.fmt-pre-wrap { position: relative; }
.fmt-pre  {
  font-family: 'Courier New', Courier, monospace; font-size: .75rem; color: #e2e8f0;
  line-height: 2; white-space: pre-wrap; word-break: break-word;
  background: #0f172a; padding: 1.2rem 1.1rem 1.1rem; margin: 0;
}
.fmt-copy {
  position: absolute; top: .6rem; right: .6rem;
  background: var(--green); color: #fff; border: none; border-radius: var(--radius-sm);
  padding: .3rem .8rem; font-size: .68rem; font-weight: 900; cursor: pointer;
  transition: all .15s var(--ease); box-shadow: 0 2px 8px rgba(0,0,0,.3);
}
.fmt-copy:hover { background: #15803d; transform: translateY(-1px); }
.fmt-copy.copied { background: #f59e0b; }
.fmt-arr {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--bg); border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: .6rem; color: var(--muted); transition: all .25s var(--ease);
}
.fmt-card.open .fmt-arr { transform: rotate(90deg); color: var(--green); background: var(--green-l); border-color: #86efac; }

/* ── LAW CARDS ── */
.law-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: .75rem; margin: .6rem 0 1.2rem; }
.law-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.1rem 1.2rem;
  box-shadow: var(--shadow-sm); transition: all .2s var(--ease);
}
.law-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); border-color: #d1fae5; }
.law-sec  {
  font-size: .63rem; font-weight: 900; color: var(--green);
  letter-spacing: .1em; text-transform: uppercase; margin-bottom: .3rem;
  display: flex; align-items: center; gap: .3rem;
}
.law-sec::before { content: ''; width: 3px; height: 3px; border-radius: 50%; background: var(--green); }
.law-title { font-size: .9rem; font-weight: 900; color: var(--ink); margin-bottom: .45rem; line-height: 1.35; }
.law-body  { font-size: .8rem; color: var(--body); line-height: 1.8; }
.law-body strong { color: var(--green-d); }

/* ── AI CHAT ── */
.lk-ai-wrap {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-xl); overflow: hidden; margin: .7rem 0;
  box-shadow: var(--shadow-md);
}
.lk-ai-head {
  background: linear-gradient(145deg, var(--green-d), #16a34a, #0f766e);
  padding: 1.1rem 1.3rem; display: flex; align-items: center; gap: .8rem;
  position: relative; overflow: hidden;
}
.lk-ai-head::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(255,255,255,.1) 0%, transparent 60%);
  border-top: 1px solid rgba(255,255,255,.15); pointer-events: none;
}
.lk-ai-av   {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.2); display: flex; align-items: center;
  justify-content: center; font-size: 1.35rem; flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,.2); border: 1.5px solid rgba(255,255,255,.25);
}
.lk-ai-name { font-size: .97rem; font-weight: 900; color: #fff; }
.lk-ai-sub  { font-size: .68rem; color: rgba(255,255,255,.72); font-weight: 700; margin-top: .1rem; }
.lk-ai-msgs {
  overflow-y: auto; max-height: 360px; min-height: 130px;
  padding: 1rem; display: flex; flex-direction: column; gap: .65rem;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}
.lk-ai-msg  { display: flex; align-items: flex-end; gap: .5rem; }
.lk-ai-msg.user { flex-direction: row-reverse; }
.lk-ai-bub  {
  padding: .7rem 1rem; border-radius: var(--radius-lg); font-size: .82rem;
  line-height: 1.7; max-width: 84%; word-break: break-word; white-space: pre-wrap;
  box-shadow: var(--shadow-sm);
}
.lk-ai-msg.bot  .lk-ai-bub {
  background: #fff; border: 1px solid var(--border); color: var(--body);
  border-bottom-left-radius: 4px;
}
.lk-ai-msg.user .lk-ai-bub {
  background: linear-gradient(135deg, var(--green), #15803d);
  color: #fff; border-bottom-right-radius: 4px;
  box-shadow: 0 4px 12px rgba(22,163,74,.3);
}
.lk-ai-av2  {
  width: 26px; height: 26px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green-l), var(--green-m));
  border: 1.5px solid #86efac; font-size: .72rem;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.lk-ai-dots .lk-ai-d {
  width: 7px; height: 7px; border-radius: 50%; background: #94a3b8;
  display: inline-block; animation: lk-dot .9s infinite; margin: 0 2px;
}
.lk-ai-dots .lk-ai-d:nth-child(2) { animation-delay: .15s; }
.lk-ai-dots .lk-ai-d:nth-child(3) { animation-delay: .3s; }
@keyframes lk-dot { 0%,80%,100% { transform: translateY(0); } 40% { transform: translateY(-5px); } }
.lk-ai-sugs {
  padding: .6rem 1rem; display: flex; flex-wrap: wrap; gap: .4rem;
  border-top: 1px solid var(--border-l); background: var(--card);
}
.lk-ai-sug  {
  font-size: .7rem; font-weight: 800; background: var(--green-l);
  color: var(--green-d); border: 1px solid #86efac; border-radius: 99px;
  padding: .32rem .85rem; cursor: pointer; transition: all .15s var(--ease); white-space: nowrap;
}
.lk-ai-sug:hover { background: #dcfce7; transform: translateY(-1px); box-shadow: 0 2px 8px rgba(22,163,74,.2); }
.lk-ai-form {
  display: flex; gap: .5rem; padding: .8rem; border-top: 1px solid var(--border-l);
  background: var(--card);
}
.lk-ai-inp  {
  flex: 1; border: 1.5px solid var(--border); border-radius: var(--radius);
  padding: .7rem 1rem; font-family: 'Nunito', sans-serif; font-size: .83rem;
  outline: none; color: var(--ink); background: var(--bg);
  transition: all .2s var(--ease);
}
.lk-ai-inp:focus {
  border-color: var(--green); background: #fff;
  box-shadow: 0 0 0 3px rgba(22,163,74,.1);
}
.lk-ai-send {
  background: linear-gradient(135deg, var(--green), #15803d);
  color: #fff; border: none; border-radius: var(--radius);
  padding: .7rem 1.2rem; font-weight: 900; font-size: .85rem;
  cursor: pointer; transition: all .2s var(--ease); flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(22,163,74,.35);
}
.lk-ai-send:hover { opacity: .92; transform: translateY(-1px); box-shadow: 0 5px 14px rgba(22,163,74,.45); }
.lk-ai-send:disabled { background: #94a3b8; cursor: not-allowed; box-shadow: none; transform: none; }

/* ── SHARE BOX ── */
.share-box {
  background: linear-gradient(145deg, #25D366, #128C7E);
  border-radius: var(--radius-xl); padding: 1.4rem; text-align: center;
  margin: 2.2rem 0 1.2rem; box-shadow: 0 8px 28px rgba(18,140,126,.3);
  position: relative; overflow: hidden;
}
.share-box::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(255,255,255,.1) 0%, transparent 60%);
  border-top: 1px solid rgba(255,255,255,.15); pointer-events: none;
}
.share-box p { color: #fff; font-size: .88rem; margin-bottom: .9rem; font-weight: 700; }
.share-btn {
  display: inline-block; background: #fff; color: #128C7E; font-weight: 900; font-size: .85rem;
  padding: .7rem 1.8rem; border-radius: 99px; text-decoration: none;
  transition: all .2s var(--ease); box-shadow: 0 4px 14px rgba(0,0,0,.2);
}
.share-btn:hover { opacity: .95; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.25); }

/* ── SCROLL TOP ── */
#scrollTop {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 90;
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(145deg, var(--green), var(--green-d));
  color: #fff; border: none;
  font-size: 1.1rem; font-weight: 900; cursor: pointer;
  box-shadow: 0 6px 20px rgba(22,163,74,.45); transition: all .2s var(--ease);
}
#scrollTop:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(22,163,74,.55); }

/* ── FOOTER ── */
.footer {
  background: linear-gradient(180deg, var(--green-d) 0%, #0a2e18 100%);
  padding: 2.2rem 1.4rem 1.6rem;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-inner { max-width: 960px; margin: 0 auto; text-align: center; }
.footer-brand { font-family: 'Lora', serif; font-size: 1.3rem; font-weight: 700; color: #fff; margin-bottom: .45rem; }
.footer-brand span { color: #86efac; }
.footer-desc { color: rgba(255,255,255,.55); font-size: .82rem; margin-bottom: 1.1rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: .4rem; justify-content: center; margin-bottom: 1.1rem; }
.footer-links a {
  color: rgba(255,255,255,.65); text-decoration: none; font-size: .78rem; font-weight: 700;
  padding: .28rem .65rem; border-radius: var(--radius-sm); transition: all .15s var(--ease);
}
.footer-links a:hover { background: rgba(255,255,255,.1); color: #fff; }
.footer-copy { color: rgba(255,255,255,.3); font-size: .72rem; }

/* ── TOP TICKER BAR ── */
.ticker-bar {
  background: linear-gradient(90deg, #052e16 0%, #0f4d25 40%, #052e16 100%);
  border-bottom: 1px solid rgba(134,239,172,.2);
  display: flex; align-items: center; height: 34px; overflow: hidden;
  position: relative; z-index: 110;
}
.ticker-label {
  flex-shrink: 0; display: flex; align-items: center; gap: .45rem;
  padding: 0 .9rem 0 .85rem; font-size: .68rem; font-weight: 900;
  color: #86efac; text-transform: uppercase; letter-spacing: .08em;
  background: rgba(0,0,0,.25); height: 100%;
  border-right: 1px solid rgba(134,239,172,.2); white-space: nowrap;
}
.ticker-blink {
  width: 7px; height: 7px; border-radius: 50%; background: #4ade80;
  flex-shrink: 0; box-shadow: 0 0 6px #4ade80;
  animation: ticker-blink .9s ease-in-out infinite;
}
@keyframes ticker-blink { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:.3; transform:scale(.7); } }
.ticker-track {
  flex: 1; overflow: hidden; height: 100%;
  display: flex; align-items: center; mask-image: linear-gradient(90deg, transparent 0%, black 3%, black 97%, transparent 100%);
}
.ticker-inner {
  display: flex; align-items: center; gap: 0; white-space: nowrap;
  animation: ticker-scroll 45s linear infinite;
}
.ticker-inner:hover { animation-play-state: paused; }
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.tick-item {
  font-size: .72rem; font-weight: 700; color: rgba(255,255,255,.88);
  padding: 0 .5rem; line-height: 1;
}
.tick-sep {
  font-size: .6rem; color: #4ade80; opacity: .7; padding: 0 .75rem; flex-shrink: 0;
}
.ticker-date {
  flex-shrink: 0; padding: 0 .85rem; font-size: .65rem; font-weight: 900;
  color: #86efac; border-left: 1px solid rgba(134,239,172,.2); white-space: nowrap;
  background: rgba(0,0,0,.2); height: 100%; display: flex; align-items: center;
}

/* ── NAV AI BUTTON ── */
.nav-ai-btn {
  background: linear-gradient(135deg, #22c55e, #16a34a) !important;
  color: #fff !important; border-radius: var(--radius-sm) !important;
  padding: .38rem .85rem !important; font-weight: 900 !important;
  box-shadow: 0 3px 10px rgba(22,163,74,.35);
  transition: all .2s var(--ease) !important;
  border: 1px solid rgba(255,255,255,.2) !important;
}
.nav-ai-btn:hover { transform: translateY(-1px); box-shadow: 0 5px 14px rgba(22,163,74,.45) !important; background: none !important; background: linear-gradient(135deg, #4ade80, #22c55e) !important; }

/* ── MOBILE OVERLAY HEADER ── */
.nav-overlay-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1.4rem;
}
.nav-overlay-logo {
  font-family: 'Lora', serif; font-size: 1.2rem; font-weight: 700; color: #fff;
}
.nav-overlay-logo span { color: #86efac; }
.nav-overlay-divider {
  font-size: .62rem; font-weight: 900; color: rgba(255,255,255,.35);
  letter-spacing: .12em; text-transform: uppercase;
  padding: .5rem 1rem .2rem; list-style: none;
}

/* ── ABOUT SECTION ── */
.about-section {
  background: linear-gradient(180deg, #f0fdf4 0%, #f8fafc 100%);
  padding: 3.5rem 1.4rem; border-top: 1px solid #d1fae5;
}
.about-inner { max-width: 960px; margin: 0 auto; text-align: center; }
.about-badge {
  display: inline-flex; align-items: center; gap: .4rem;
  background: var(--green-l); color: var(--green-d); border: 1.5px solid #86efac;
  border-radius: 99px; padding: .32rem 1.1rem; font-size: .72rem; font-weight: 900;
  letter-spacing: .06em; margin-bottom: 1rem;
}
.about-title {
  font-family: 'Lora', serif; font-size: clamp(1.5rem, 4vw, 2.1rem); font-weight: 700;
  color: var(--ink); margin-bottom: .8rem; line-height: 1.2;
}
.about-desc {
  color: var(--body); font-size: .92rem; line-height: 1.85; max-width: 680px;
  margin: 0 auto 2.2rem;
}
.about-cards {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem; margin-bottom: 2.2rem; text-align: left;
}
.about-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 1.4rem 1.2rem;
  box-shadow: var(--shadow-sm); transition: all .25s var(--ease);
}
.about-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #86efac; }
.about-card-icon { font-size: 2rem; margin-bottom: .6rem; filter: drop-shadow(0 2px 4px rgba(0,0,0,.1)); }
.about-card-title { font-size: .9rem; font-weight: 900; color: var(--ink); margin-bottom: .4rem; }
.about-card-desc { font-size: .78rem; color: var(--body); line-height: 1.7; }
.about-stats {
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center;
  background: linear-gradient(135deg, var(--green-d), #166534);
  border-radius: var(--radius-xl); padding: 1.5rem 2rem;
  box-shadow: 0 8px 28px rgba(22,163,74,.3);
}
.about-stat { display: flex; flex-direction: column; align-items: center; gap: .2rem; padding: 0 1rem; }
.as-num {
  font-size: 1.8rem; font-weight: 900; color: #86efac; line-height: 1;
  font-family: 'Nunito', sans-serif;
}
.as-lbl { font-size: .72rem; color: rgba(255,255,255,.7); font-weight: 700; }

/* ── CONTACT SECTION ── */
.contact-section {
  background: linear-gradient(145deg, #052e16 0%, #14532d 50%, #065f46 100%);
  padding: 3.5rem 1.4rem; position: relative; overflow: hidden;
}
.contact-section::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 80% 20%, rgba(134,239,172,.07) 0%, transparent 50%),
                    radial-gradient(circle at 20% 80%, rgba(52,211,153,.05) 0%, transparent 40%);
  pointer-events: none;
}
.contact-inner { max-width: 960px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.contact-title {
  font-family: 'Lora', serif; font-size: clamp(1.5rem, 4vw, 2.1rem); font-weight: 700;
  color: #fff; margin-bottom: .75rem; line-height: 1.2;
}
.contact-desc { color: rgba(255,255,255,.68); font-size: .9rem; line-height: 1.8; max-width: 560px; margin: 0 auto 2rem; }
.contact-cards {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem; margin-bottom: 2.2rem; text-align: left;
}
.contact-card {
  border-radius: var(--radius-xl); padding: 1.4rem 1.3rem;
  text-decoration: none; display: flex; flex-direction: column; gap: .35rem;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-md);
}
.contact-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.07) 0%, transparent 60%);
  border-top: 1px solid rgba(255,255,255,.15); border-radius: inherit; pointer-events: none;
}
.contact-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.cc-wa   { background: linear-gradient(145deg, #075e54, #25d366); }
.cc-mail { background: linear-gradient(145deg, #0c1a4a, #1d4ed8); }
.cc-update { background: linear-gradient(145deg, #3b1406, #b45309); }
.contact-card-icon { font-size: 2rem; filter: drop-shadow(0 2px 4px rgba(0,0,0,.25)); }
.contact-card-title { font-size: .95rem; font-weight: 900; color: #fff; margin-top: .2rem; }
.contact-card-desc { font-size: .76rem; color: rgba(255,255,255,.72); font-weight: 600; line-height: 1.55; }
.contact-card-btn {
  margin-top: .5rem; display: inline-flex; align-items: center; gap: .3rem;
  background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.22);
  border-radius: 99px; padding: .3rem .9rem; font-size: .7rem; font-weight: 900;
  color: #fff; width: fit-content; backdrop-filter: blur(4px);
}
.contact-emergency {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-xl); padding: 1.4rem 1.6rem;
  backdrop-filter: blur(8px); text-align: left;
}
.ce-title {
  font-size: .8rem; font-weight: 900; color: #86efac; margin-bottom: 1rem;
  letter-spacing: .04em;
}
.ce-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: .75rem; }
.ce-item {
  display: flex; flex-direction: column; gap: .15rem;
  background: rgba(255,255,255,.06); border-radius: var(--radius);
  padding: .65rem .9rem; border: 1px solid rgba(255,255,255,.1);
}
.ce-label { font-size: .68rem; color: rgba(255,255,255,.55); font-weight: 700; }
.ce-num   { font-size: .95rem; font-weight: 900; color: #fff; font-family: 'Nunito', sans-serif; }

/* ── RESPONSIVE ── */
@media (max-width: 560px) {
  .portal-strip { grid-template-columns: 1fr 1fr; }
  .conv-row { grid-template-columns: 1fr; }
  .conv-arrow { display: none; }
  .law-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 1.85rem; }
  .season-grid { grid-template-columns: 1fr; }
  .lk-tabs { padding: .35rem; gap: .3rem; }
  .lk-btn { min-width: 70px; padding: .5rem .6rem; }
  .ticker-date { display: none; }
  .about-cards { grid-template-columns: 1fr 1fr; }
  .contact-cards { grid-template-columns: 1fr; }
  .about-stats { gap: .6rem; padding: 1.1rem; }
  .as-num { font-size: 1.4rem; }
}
@media (min-width: 561px) and (max-width: 720px) {
  .portal-strip { grid-template-columns: repeat(3, 1fr); }
  .about-cards { grid-template-columns: 1fr 1fr; }
}
