/* ============================================================
   BHIMAVAANI ENTERPRISES — PREMIUM LIGHT THEME
   ============================================================ */

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

:root {
    --bg:         #FFFEF9;
    --bg-alt:     #F6F9F5;
    --bg-dark:    #0C2218;
    --primary:    #166534;
    --primary-m:  #15803D;
    --primary-l:  #DCFCE7;
    --amber:      #D97706;
    --amber-l:    #FEF3C7;
    --sky:        #0369A1;
    --sky-l:      #E0F2FE;
    --purple:     #7C3AED;
    --purple-l:   #EDE9FE;
    --text:       #111827;
    --text-mid:   #374151;
    --text-muted: #6B7280;
    --border:     #E5E7EB;
    --shadow-s:   0 1px 3px rgba(0,0,0,0.05), 0 4px 12px rgba(0,0,0,0.05);
    --shadow-m:   0 4px 8px rgba(0,0,0,0.04), 0 16px 40px rgba(0,0,0,0.08);
    --shadow-l:   0 8px 20px rgba(0,0,0,0.06), 0 32px 64px rgba(0,0,0,0.1);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #D1D5DB; border-radius: 3px; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 28px; }

/* Animate in */
[data-animate] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-animate].visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   SHARED TYPOGRAPHY
   ============================================================ */
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 14px;
}
.section-eyebrow::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
}
.section-eyebrow.amber  { color: var(--amber); }
.section-eyebrow.amber::before  { background: var(--amber); }
.section-eyebrow.green  { color: var(--primary); }
.section-eyebrow.green::before  { background: var(--primary); }

.section-hd { text-align: center; margin-bottom: 56px; }
.section-title {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(2rem, 4vw, 2.9rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--text);
    margin-bottom: 14px;
}
.section-title em {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    color: var(--primary);
    font-weight: 700;
}
.section-sub { color: var(--text-muted); font-size: 1.05rem; max-width: 520px; margin: 0 auto; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 26px;
    border-radius: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.94rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.22s ease;
}
.btn-dark {
    background: var(--text);
    color: #fff;
}
.btn-dark:hover { background: #1F2937; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,0,0,0.2); }

.btn-primary {
    background: var(--primary);
    color: #fff;
}
.btn-primary:hover { background: #14532D; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(22,101,52,0.3); }

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 1.5px solid var(--border);
}
.btn-outline:hover { border-color: #9CA3AF; background: #F9FAFB; }

.fw-btn { width: 100%; justify-content: center; }

/* Live pip */
.live-pip {
    display: inline-block;
    width: 7px; height: 7px;
    background: var(--primary);
    border-radius: 50%;
    animation: pip 2s ease-in-out infinite;
}
.live-pip.green-pip { background: var(--primary); }
@keyframes pip {
    0%,100% { opacity: 1; box-shadow: 0 0 0 0 rgba(22,101,52,0.4); }
    50%      { opacity: 0.7; box-shadow: 0 0 0 5px rgba(22,101,52,0); }
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 0;
    transition: all 0.3s ease;
}
.navbar.scrolled {
    background: rgba(255,254,249,0.94);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 1px 16px rgba(0,0,0,0.06);
}
.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}
.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.brand-mark {
    width: 36px; height: 36px;
    background: var(--primary);
    color: #fff;
    border-radius: 9px;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.brand-mark.light { background: rgba(255,255,255,0.15); }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-main { font-size: 1.05rem; font-weight: 700; color: var(--text); }
.brand-sub  { font-size: 0.58rem; font-weight: 500; letter-spacing: 0.12em; color: var(--text-muted); text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: 1.8rem; }
.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active-nav { color: var(--text); }
.nav-btn {
    background: var(--text) !important;
    color: #fff !important;
    padding: 9px 20px;
    border-radius: 8px;
    font-size: 0.87rem !important;
}
.nav-btn:hover { background: #1F2937 !important; transform: translateY(-1px); }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.3s; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
    background: var(--bg);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 100px 0 0;
}
.hero-blob-1 {
    position: absolute;
    top: -10%; right: -8%;
    width: 640px; height: 640px;
    background: radial-gradient(circle, rgba(22,101,52,0.07) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
    animation: blob-float 20s ease-in-out infinite;
}
.hero-blob-2 {
    position: absolute;
    bottom: 5%; left: -10%;
    width: 560px; height: 560px;
    background: radial-gradient(circle, rgba(217,119,6,0.06) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
    animation: blob-float 26s ease-in-out infinite reverse;
}
@keyframes blob-float {
    0%,100% { transform: translate(0,0) scale(1); }
    33%      { transform: translate(20px,-20px) scale(1.03); }
    66%      { transform: translate(-15px, 15px) scale(0.97); }
}
.hero-dots {
    position: absolute; inset: 0;
    background-image: radial-gradient(circle, rgba(22,101,52,0.09) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    padding-bottom: 40px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-muted);
    background: #fff;
    border: 1.5px solid var(--border);
    padding: 7px 14px;
    border-radius: 40px;
    margin-bottom: 28px;
    box-shadow: var(--shadow-s);
}

.hero-title {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(3rem, 6.5vw, 5.5rem);
    font-weight: 800;
    line-height: 1.0;
    color: var(--text);
    margin-bottom: 24px;
    animation: fadeUp 0.7s ease both;
}
.hero-title em {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--primary);
    display: block;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.75;
    max-width: 460px;
    margin-bottom: 36px;
    animation: fadeUp 0.7s ease 0.1s both;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; animation: fadeUp 0.7s ease 0.2s both; }

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

/* Floating cards */
.float-cards {
    position: relative;
    height: 380px;
    animation: fadeUp 0.7s ease 0.3s both;
}
.float-card {
    position: absolute;
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 14px;
    padding: 16px 18px;
    box-shadow: var(--shadow-m);
    display: flex;
    align-items: center;
    gap: 14px;
    width: 270px;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}
.fc-1 { top: 10px;  left: 0;   transform: rotate(-2deg);  animation: float-1 5s  ease-in-out infinite alternate; }
.fc-2 { top: 145px; right: 0;  transform: rotate(2.5deg); animation: float-2 6s  ease-in-out infinite alternate; }
.fc-3 { bottom: 20px; left: 20px; transform: rotate(-1deg); animation: float-3 4.5s ease-in-out infinite alternate; }
@keyframes float-1 { from { transform: rotate(-2deg) translateY(0); } to { transform: rotate(-2deg) translateY(-10px); } }
@keyframes float-2 { from { transform: rotate(2.5deg) translateY(0); } to { transform: rotate(2.5deg) translateY(8px); } }
@keyframes float-3 { from { transform: rotate(-1deg) translateY(0); } to { transform: rotate(-1deg) translateY(-6px); } }

.fc-icon {
    width: 36px; height: 36px; flex-shrink: 0;
    border-radius: 9px;
    display: flex; align-items: center; justify-content: center;
}
.fc-icon.green  { background: var(--primary-l);  color: var(--primary); }
.fc-icon.amber  { background: var(--amber-l);    color: var(--amber); }
.fc-icon.sky    { background: var(--sky-l);      color: var(--sky); }
.fc-content { flex: 1; }
.fc-val { display: block; font-family: 'JetBrains Mono', monospace; font-size: 1.1rem; font-weight: 600; color: var(--text); line-height: 1.2; }
.fc-lbl { display: block; font-size: 0.72rem; color: var(--text-muted); margin-top: 2px; }
.fc-tag {
    font-size: 0.65rem;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 40px;
    white-space: nowrap;
    align-self: flex-start;
}
.fc-tag.green  { background: var(--primary-l);  color: var(--primary-m); }
.fc-tag.amber  { background: var(--amber-l);    color: var(--amber); }
.fc-tag.sky    { background: var(--sky-l);      color: var(--sky); }

/* Hero stats strip */
.hero-stats {
    background: var(--text);
    padding: 28px 0;
    position: relative;
    z-index: 1;
}
.stats-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; align-items: center; padding: 0 40px; }
.stat-n {
    font-family: 'JetBrains Mono', monospace;
    font-size: 2rem;
    font-weight: 600;
    color: #fff;
    display: inline;
    line-height: 1;
}
.stat-plus { font-size: 1.4rem; font-weight: 600; color: rgba(255,255,255,0.6); display: inline; }
.stat-l    { font-size: 0.73rem; color: rgba(255,255,255,0.5); margin-top: 5px; letter-spacing: 0.04em; }
.stat-sep  { width: 1px; height: 36px; background: rgba(255,255,255,0.12); }

/* ============================================================
   TICKER
   ============================================================ */
.ticker-strip {
    display: flex;
    align-items: center;
    background: #F0FDF4;
    border-top: 1px solid #BBFFD4;
    border-bottom: 1px solid #BBFFD4;
    height: 44px;
    overflow: hidden;
}
.ticker-lbl {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    padding: 0 16px;
    height: 100%;
    white-space: nowrap;
}
.ticker-scroll { flex: 1; overflow: hidden; }
.ticker-inner {
    display: inline-flex;
    align-items: center;
    gap: 28px;
    white-space: nowrap;
    animation: ticker 48s linear infinite;
    font-size: 0.82rem;
    color: var(--primary);
    padding: 0 28px;
    font-weight: 500;
}
.ticker-inner .tsep { color: var(--primary); opacity: 0.3; }
@keyframes ticker {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================================
   INITIATIVES
   ============================================================ */
.initiatives { background: var(--bg); padding: 100px 0; }
.init-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
}
.init-card {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 14px;
    padding: 26px;
    position: relative;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.init-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-m); }
.featured-card { border-color: #A7F3D0; background: #FAFFFE; }

.init-accent {
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 4px;
    border-radius: 14px 0 0 14px;
}
.green-accent  { background: linear-gradient(to bottom, var(--primary), #86EFAC); }
.sky-accent    { background: linear-gradient(to bottom, var(--sky), #7DD3FC); }
.amber-accent  { background: linear-gradient(to bottom, var(--amber), #FCD34D); }
.purple-accent { background: linear-gradient(to bottom, var(--purple), #C4B5FD); }

.init-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.init-ico {
    width: 44px; height: 44px;
    border-radius: 11px;
    display: flex; align-items: center; justify-content: center;
}
.green-ico  { background: var(--primary-l);  color: var(--primary); }
.sky-ico    { background: var(--sky-l);      color: var(--sky); }
.amber-ico  { background: var(--amber-l);    color: var(--amber); }
.purple-ico { background: var(--purple-l);   color: var(--purple); }

.badge-active, .badge-launch, .badge-pilot {
    font-size: 0.65rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 40px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.badge-active { background: var(--primary-l);  color: var(--primary); }
.badge-launch { background: var(--sky-l);      color: var(--sky); }
.badge-pilot  { background: var(--amber-l);    color: var(--amber); }

.init-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.init-card p  { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 16px; }
.init-stat { margin-bottom: 14px; }
.is-num { font-family: 'JetBrains Mono', monospace; font-size: 1.45rem; font-weight: 600; color: var(--text); display: block; line-height: 1; }
.is-lbl { font-size: 0.7rem; color: var(--text-muted); margin-top: 2px; display: block; }

.prog-wrap { background: #F3F4F6; height: 5px; border-radius: 5px; overflow: hidden; margin-bottom: 6px; }
.prog-fill  { height: 100%; border-radius: 5px; width: 0; transition: width 1.2s cubic-bezier(0.4,0,0.2,1); }
.green-fill  { background: linear-gradient(90deg, var(--primary), #4ADE80); }
.sky-fill    { background: linear-gradient(90deg, var(--sky), #38BDF8); }
.amber-fill  { background: linear-gradient(90deg, var(--amber), #FBBF24); }
.purple-fill { background: linear-gradient(90deg, var(--purple), #A78BFA); }

.prog-lbl { font-size: 0.68rem; color: var(--text-muted); }

/* ============================================================
   AGRITECH
   ============================================================ */
.agritech { background: var(--bg-alt); padding: 100px 0; }
.agri-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.agri-left .section-eyebrow { display: block; }
.agri-left .section-title { text-align: left; font-size: clamp(1.9rem, 3.5vw, 2.7rem); margin-bottom: 14px; }
.agri-left .section-sub { text-align: left; margin: 0 0 32px; }

.feat-list { display: flex; flex-direction: column; gap: 18px; margin-bottom: 36px; }
.feat-row { display: flex; gap: 14px; align-items: flex-start; }
.feat-check {
    width: 26px; height: 26px; flex-shrink: 0;
    background: var(--primary-l);
    color: var(--primary);
    border-radius: 7px;
    display: flex; align-items: center; justify-content: center;
    margin-top: 2px;
}
.feat-row strong { display: block; font-size: 0.92rem; font-weight: 600; color: var(--text); margin-bottom: 2px; }
.feat-row p { font-size: 0.82rem; color: var(--text-muted); }

/* Dashboard */
.dash-shell {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-l);
}
.dash-top {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border-bottom: 1px solid var(--border);
    background: #FAFAFA;
}
.dash-dots { display: flex; gap: 5px; }
.dash-dots span { width: 10px; height: 10px; border-radius: 50%; }
.dash-dots span:nth-child(1) { background: #FF5F57; }
.dash-dots span:nth-child(2) { background: #FEBC2E; }
.dash-dots span:nth-child(3) { background: #28C840; }
.dash-heading { flex: 1; font-size: 0.8rem; font-weight: 600; color: var(--text-muted); }
.dash-live-badge {
    display: flex; align-items: center; gap: 5px;
    font-size: 0.68rem; font-weight: 700;
    color: var(--primary);
    background: var(--primary-l);
    padding: 3px 10px; border-radius: 40px;
}

.dash-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 0;
    border-bottom: 1px solid var(--border);
}
.dm {
    display: flex; flex-direction: column; align-items: center;
    padding: 16px 8px;
    border-right: 1px solid var(--border);
    gap: 8px;
}
.dm:last-child { border-right: none; }
.dm-ring {
    width: 52px; height: 52px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    position: relative;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    font-weight: 600;
}
.green-ring-l  { background: conic-gradient(var(--primary) 87%, #E5E7EB 87%); color: var(--primary); }
.amber-ring-l  { background: conic-gradient(var(--amber) 72%, #E5E7EB 72%);   color: var(--amber); }
.sky-ring-l    { background: conic-gradient(var(--sky) 60%, #E5E7EB 60%);     color: var(--sky); }
.purple-ring-l { background: conic-gradient(var(--purple) 20%, #E5E7EB 20%);  color: var(--purple); }
.dm-ring::after { content: ''; position: absolute; inset: 6px; background: #fff; border-radius: 50%; z-index: 1; }
.dm-ring span { position: relative; z-index: 2; }
.dm-lbl { font-size: 0.62rem; color: var(--text-muted); text-align: center; }

.dash-chart-area { padding: 16px 18px; border-bottom: 1px solid var(--border); }
.dca-header { display: flex; justify-content: space-between; font-size: 0.72rem; color: var(--text-muted); margin-bottom: 12px; }
.dca-period { color: #9CA3AF; }
.dca-bars { display: flex; align-items: flex-end; gap: 6px; height: 72px; }
.db { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: flex-end; gap: 5px; }
.dbf {
    width: 100%;
    background: #E5E7EB;
    border-radius: 3px 3px 0 0;
    height: 0;
    transition: height 1s cubic-bezier(0.4,0,0.2,1);
}
.peak-bar .dbf { background: linear-gradient(to top, var(--primary), #4ADE80); }
.db:not(.peak-bar) .dbf { background: #D1FAE5; }
.db span { font-size: 0.58rem; color: var(--text-muted); }

.dash-advisory {
    display: flex; align-items: center; gap: 10px;
    padding: 12px 18px;
    background: #FFFBEB;
    font-size: 0.8rem;
    color: var(--text-mid);
}
.adv-icon { font-size: 1rem; }
.dash-advisory strong { color: var(--amber); }

/* ============================================================
   POLICY NEWS
   ============================================================ */
.policy { background: #fff; padding: 100px 0; }
.policy-top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 48px;
    gap: 24px;
    flex-wrap: wrap;
}
.policy-top .section-title { text-align: left; margin-bottom: 8px; }
.policy-top .section-sub { text-align: left; margin: 0; }
.policy-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 18px;
}
.policy-card {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 14px;
    padding: 26px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.policy-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-m); border-color: #D1D5DB; }
.big-policy { border-color: #FDE68A; background: #FFFEF0; }

.pc-ribbon {
    font-size: 0.65rem; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--primary);
    background: var(--primary-l);
    padding: 4px 10px; border-radius: 40px;
    display: inline-block; align-self: flex-start;
}
.sky-ribbon    { color: var(--sky);    background: var(--sky-l); }
.amber-ribbon  { color: var(--amber);  background: var(--amber-l); }
.green-ribbon  { color: var(--primary); background: var(--primary-l); }

.pc-meta { display: flex; gap: 6px; font-size: 0.75rem; color: var(--text-muted); }
.policy-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--text); }
.policy-card p  { font-size: 0.84rem; color: var(--text-muted); line-height: 1.65; flex: 1; }
.pc-amount {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: 9px;
    padding: 12px 14px;
    display: flex; flex-direction: column;
}
.pc-amount span { font-size: 0.7rem; color: var(--text-muted); }
.pc-amount strong { font-family: 'JetBrains Mono', monospace; font-size: 1.1rem; color: var(--primary); margin-top: 2px; }
.pc-footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; flex-wrap: wrap; gap: 8px; }
.ps-open {
    font-size: 0.68rem; font-weight: 700;
    padding: 4px 10px; border-radius: 40px;
    background: var(--primary-l); color: var(--primary);
}
.ps-deadline {
    font-size: 0.68rem; font-weight: 700;
    padding: 4px 10px; border-radius: 40px;
    background: #FEF3C7; color: var(--amber);
}
.pc-link { font-size: 0.82rem; color: var(--sky); text-decoration: none; font-weight: 600; transition: opacity 0.2s; }
.pc-link:hover { opacity: 0.7; }

/* ============================================================
   IMPACT (dark band)
   ============================================================ */
.impact {
    background: var(--bg-dark);
    padding: 80px 0;
}
.impact-eyebrow {
    text-align: center;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    margin-bottom: 48px;
}
.impact-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
}
.impct {
    display: flex; flex-direction: column; align-items: center;
    padding: 16px 24px;
    border-right: 1px solid rgba(255,255,255,0.08);
    text-align: center;
}
.impct:last-child { border-right: none; }
.imp-n {
    font-family: 'JetBrains Mono', monospace;
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    font-weight: 600;
    color: #fff;
    display: inline;
    line-height: 1;
}
.imp-p { font-family: 'JetBrains Mono', monospace; font-size: 1.8rem; color: rgba(255,255,255,0.4); display: inline; }
.imp-l { font-size: 0.75rem; color: rgba(255,255,255,0.4); margin-top: 10px; letter-spacing: 0.05em; display: block; }

/* ============================================================
   VERTICALS
   ============================================================ */
.verticals { background: var(--bg-alt); padding: 100px 0; }
.vert-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 18px;
}
.vert-card {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 14px;
    padding: 28px 22px;
    position: relative;
    overflow: hidden;
    transition: transform 0.25s, box-shadow 0.25s;
}
.vert-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-m); }
.vert-featured { border-color: #A7F3D0; }
.vert-num { font-family: 'JetBrains Mono', monospace; font-size: 0.68rem; color: var(--text-muted); opacity: 0.5; margin-bottom: 14px; letter-spacing: 0.08em; }
.vert-ico {
    width: 50px; height: 50px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 18px;
}
.v-green  { background: var(--primary-l); color: var(--primary); }
.v-sky    { background: var(--sky-l);     color: var(--sky); }
.v-amber  { background: var(--amber-l);   color: var(--amber); }
.vert-card h3 { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.vert-card p  { font-size: 0.83rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 14px; }
.vert-card ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.vert-card li {
    font-size: 0.8rem; color: var(--text-muted);
    padding-left: 16px; position: relative;
}
.vert-card li::before { content: '→'; position: absolute; left: 0; color: var(--primary); font-size: 0.75rem; }
.vert-badge {
    position: absolute; top: 16px; right: 16px;
    font-size: 0.62rem; font-weight: 700;
    background: var(--primary); color: #fff;
    padding: 3px 9px; border-radius: 40px;
    letter-spacing: 0.08em;
}

/* ============================================================
   LEADERSHIP
   ============================================================ */
.leadership { background: #fff; padding: 100px 0; }
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.team-card {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 16px;
    padding: 30px 26px;
    display: flex; flex-direction: column; gap: 18px;
    transition: transform 0.25s, box-shadow 0.25s;
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-m); }
.team-featured { border-color: #A7F3D0; background: #FAFFFC; }
.team-avatar {
    width: 64px; height: 64px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; font-weight: 800;
}
.default-av { background: var(--bg-alt);     color: var(--text); }
.green-av   { background: var(--primary-l);  color: var(--primary); }
.sky-av     { background: var(--sky-l);      color: var(--sky); }
.team-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--text); }
.team-role { font-size: 0.82rem; font-weight: 600; color: var(--primary); display: block; }
.team-org  { font-size: 0.77rem; color: var(--text-muted); font-style: italic; display: block; margin-top: 2px; }
.team-nums { display: flex; gap: 24px; }
.team-nums div { display: flex; flex-direction: column; }
.team-nums strong { font-size: 1.3rem; font-family: 'JetBrains Mono', monospace; font-weight: 600; color: var(--text); }
.team-nums span { font-size: 0.68rem; color: var(--text-muted); }
.team-skills { display: flex; flex-wrap: wrap; gap: 6px; }
.team-skills span {
    font-size: 0.7rem; padding: 3px 10px;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: 40px;
    color: var(--text-muted);
}
.team-social { display: flex; gap: 8px; }
.team-social a {
    width: 32px; height: 32px; border-radius: 8px;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    color: var(--text-muted); text-decoration: none;
    transition: all 0.2s;
}
.team-social a:hover { background: var(--primary-l); color: var(--primary); border-color: #A7F3D0; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--bg-alt); padding: 100px 0; }
.contact-wrap { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: start; }
.contact-left .section-title { text-align: left; font-size: clamp(2rem, 3.5vw, 3rem); line-height: 1.05; margin-bottom: 14px; }
.contact-left p { color: var(--text-muted); margin-bottom: 24px; font-size: 0.97rem; }
.contact-email {
    display: inline-flex; align-items: center; gap: 10px;
    color: var(--text); text-decoration: none;
    font-size: 0.95rem; font-weight: 600;
    padding: 12px 18px;
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    transition: all 0.2s;
    margin-bottom: 24px;
}
.contact-email:hover { border-color: var(--primary); color: var(--primary); box-shadow: 0 4px 14px rgba(22,101,52,0.1); }
.contact-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.contact-tags span {
    font-size: 0.78rem;
    padding: 7px 13px;
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 40px;
    color: var(--text-muted);
}
.contact-form-wrap {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 16px;
    padding: 36px;
    box-shadow: var(--shadow-s);
}
form { display: flex; flex-direction: column; gap: 18px; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fgroup { display: flex; flex-direction: column; gap: 7px; }
.fgroup label { font-size: 0.82rem; font-weight: 600; color: var(--text-mid); }
.fgroup input, .fgroup select, .fgroup textarea {
    background: var(--bg-alt);
    border: 1.5px solid var(--border);
    border-radius: 9px;
    padding: 11px 14px;
    color: var(--text);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    -webkit-appearance: none;
}
.fgroup input::placeholder, .fgroup textarea::placeholder { color: #9CA3AF; }
.fgroup input:focus, .fgroup select:focus, .fgroup textarea:focus {
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(22,101,52,0.08);
}
.fgroup select option { background: #fff; }
.fgroup textarea { resize: vertical; min-height: 100px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--bg-dark); padding: 64px 0 28px; }
.footer-top { display: flex; gap: 64px; margin-bottom: 48px; }
.footer-brand { max-width: 240px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo .brand-main, .footer-logo .brand-sub { color: #fff; }
.footer-logo .brand-sub { color: rgba(255,255,255,0.45); }
.footer-brand p { font-size: 0.84rem; color: rgba(255,255,255,0.45); line-height: 1.7; margin-bottom: 22px; }
.footer-social { display: flex; gap: 8px; }
.footer-social a {
    width: 32px; height: 32px; border-radius: 8px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.75rem; font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
}
.footer-social a:hover { background: rgba(255,255,255,0.14); color: #fff; }
.footer-links { display: flex; gap: 48px; flex: 1; }
.fl-col { display: flex; flex-direction: column; gap: 12px; }
.fl-col h4 { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 4px; }
.fl-col a { font-size: 0.83rem; color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
.fl-col a:hover { color: #fff; }
.footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.07);
    font-size: 0.74rem;
    color: rgba(255,255,255,0.25);
    gap: 16px; flex-wrap: wrap;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
    .init-grid   { grid-template-columns: repeat(2,1fr); }
    .vert-grid   { grid-template-columns: repeat(2,1fr); }
    .impact-grid { grid-template-columns: repeat(2,1fr); }
    .impct       { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding: 24px; }
    .impct:last-child  { border-bottom: none; }
    .agri-layout { grid-template-columns: 1fr; }
    .agri-right  { display: none; }
    .policy-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 768px) {
    section { padding: 72px 0; }
    .hamburger { display: flex; }
    .nav-links {
        display: none;
        position: fixed;
        top: 70px; left: 0; right: 0;
        background: rgba(255,254,249,0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--border);
        padding: 16px 28px;
        flex-direction: column;
        gap: 0;
        box-shadow: 0 16px 40px rgba(0,0,0,0.1);
    }
    .nav-links.open { display: flex; }
    .nav-links a { padding: 13px 0; border-bottom: 1px solid var(--border); color: var(--text); }
    .nav-links a:last-child { border-bottom: none; }
    .nav-btn { background: transparent !important; color: var(--text) !important; border: none; border-radius: 0 !important; padding: 13px 0 !important; }

    .hero { padding: 90px 0 0; }
    .hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .hero-right { display: none; }
    .hero-title { font-size: clamp(2.8rem, 9vw, 4rem); }
    .hero-ctas { flex-direction: column; }
    .hero-ctas .btn { text-align: center; justify-content: center; }
    .stats-row { gap: 0; }
    .stat { padding: 14px 20px; }

    .init-grid   { grid-template-columns: 1fr; }
    .policy-grid { grid-template-columns: 1fr; }
    .vert-grid   { grid-template-columns: 1fr; }
    .team-grid   { grid-template-columns: 1fr; }
    .contact-wrap { grid-template-columns: 1fr; }
    .frow { grid-template-columns: 1fr; }
    .policy-top { flex-direction: column; align-items: flex-start; }
    .footer-top { flex-direction: column; gap: 36px; }
    .footer-links { flex-wrap: wrap; gap: 32px; }
    .impact-grid { grid-template-columns: 1fr 1fr; }
    .impct { border-right: 1px solid rgba(255,255,255,0.08); border-bottom: none; }
    .impct:nth-child(2n) { border-right: none; }
    .section-hd .section-sub { max-width: 100%; }
}

@media (max-width: 480px) {
    .impact-grid { grid-template-columns: 1fr; }
    .impct { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
    .stats-row { flex-direction: column; }
    .stat-sep { width: 40px; height: 1px; }
}

/* ============================================================
   APPROACH SECTION
   ============================================================ */
.approach { background: var(--bg-alt); padding: 100px 0; }
.approach-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.approach-card {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 16px;
    padding: 32px 28px;
    display: flex; flex-direction: column; gap: 16px;
    transition: transform 0.25s, box-shadow 0.25s;
}
.approach-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-m); }
.appr-featured { border-color: #FDE68A; background: #FFFEF0; }
.appr-ico {
    width: 56px; height: 56px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
}
.appr-ico.green-ico  { background: var(--primary-l); color: var(--primary); }
.appr-ico.amber-ico  { background: var(--amber-l);   color: var(--amber); }
.appr-ico.sky-ico    { background: var(--sky-l);     color: var(--sky); }
.approach-card h3 { font-size: 1.5rem; font-weight: 700; color: var(--text); }
.appr-lead { font-size: 0.95rem; color: var(--text-mid); font-weight: 500; line-height: 1.55; }
.appr-list { list-style: none; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.appr-list li {
    font-size: 0.84rem;
    color: var(--text-muted);
    padding-left: 18px;
    position: relative;
    line-height: 1.5;
}
.appr-list li::before { content: '→'; position: absolute; left: 0; color: var(--primary); font-size: 0.78rem; }
.appr-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    transition: opacity 0.2s;
    margin-top: auto;
    padding-top: 8px;
}
.appr-link:hover { opacity: 0.7; }

/* ============================================================
   VERTICALS — 2-COL RICH CARDS
   ============================================================ */
.vert-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.vert-card-2 {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
    transition: transform 0.25s, box-shadow 0.25s;
}
.vert-card-2:hover { transform: translateY(-4px); box-shadow: var(--shadow-l); }

.vc2-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 28px;
    border-bottom: 1.5px solid var(--border);
}
.green-header { background: linear-gradient(135deg, #F0FDF4, #DCFCE7); }
.sky-header   { background: linear-gradient(135deg, #F0F9FF, #E0F2FE); }
.vc2-icon {
    width: 52px; height: 52px; flex-shrink: 0;
    border-radius: 13px;
    display: flex; align-items: center; justify-content: center;
    background: #fff;
    box-shadow: var(--shadow-s);
    color: var(--primary);
}
.sky-header .vc2-icon { color: var(--sky); }
.vc2-tag {
    font-size: 0.62rem; font-weight: 700; letter-spacing: 0.14em;
    text-transform: uppercase; color: var(--primary); display: block; margin-bottom: 4px;
}
.sky-header .vc2-tag { color: var(--sky); }
.vc2-header h3 { font-size: 1.3rem; font-weight: 700; color: var(--text); margin: 0; }

.vc2-body { padding: 28px; display: flex; flex-direction: column; gap: 20px; }
.vc2-tagline { font-size: 1rem; font-weight: 600; color: var(--text-mid); line-height: 1.5; }
.vc2-desc { font-size: 0.87rem; color: var(--text-muted); line-height: 1.7; }
.vc2-who strong { font-size: 0.78rem; font-weight: 700; color: var(--text-mid); display: block; margin-bottom: 8px; }
.vc2-pills { display: flex; flex-wrap: wrap; gap: 6px; }
.vc2-pills span {
    font-size: 0.73rem; padding: 4px 10px;
    background: var(--primary-l); color: var(--primary);
    border-radius: 40px; font-weight: 500;
}
.sky-pills span { background: var(--sky-l); color: var(--sky); }

.vc2-features { display: flex; flex-direction: column; gap: 10px; }
.vc2-feat { display: flex; gap: 12px; align-items: flex-start; font-size: 0.85rem; color: var(--text-mid); line-height: 1.5; }
.vc2-feat strong { color: var(--text); }
.vcf-check {
    width: 22px; height: 22px; flex-shrink: 0;
    background: var(--primary-l); color: var(--primary);
    border-radius: 6px; display: flex; align-items: center; justify-content: center;
    font-size: 0.72rem; font-weight: 700; margin-top: 1px;
}
.sky-check { background: var(--sky-l); color: var(--sky); }

.sky-btn { background: var(--sky) !important; }
.sky-btn:hover { background: #075985 !important; box-shadow: 0 6px 20px rgba(3,105,161,0.3) !important; }

/* ============================================================
   PRODUCTS SECTION
   ============================================================ */
.products-section { background: var(--bg); padding: 100px 0; }
.products-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-bottom: 28px; }

.product-card {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.25s, box-shadow 0.25s;
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-m); }

.prod-preview {
    height: 140px;
    display: flex; align-items: center; justify-content: center;
    position: relative;
}
.agrigenie-preview  { background: linear-gradient(135deg, #F0FDF4, #DCFCE7); }
.workout-preview    { background: linear-gradient(135deg, #FFF7ED, #FEE2E2); }
.valuecraft-preview { background: linear-gradient(135deg, #FAF5FF, #EDE9FE); }

.prod-preview-icon { font-size: 3.2rem; }

.prod-status-badge {
    position: absolute; top: 12px; right: 12px;
    font-size: 0.62rem; font-weight: 700;
    padding: 4px 10px; border-radius: 40px;
    letter-spacing: 0.08em; text-transform: uppercase;
}
.prod-status-badge.beta      { background: var(--amber-l);   color: var(--amber); }
.prod-status-badge.prototype { background: #FEE2E2; color: #DC2626; }
.prod-status-badge.live      { background: var(--primary-l); color: var(--primary); }

.prod-body { padding: 22px; }
.prod-by { font-size: 0.68rem; font-weight: 600; color: var(--text-muted); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 6px; }
.product-card h3 { font-size: 1.15rem; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.product-card p  { font-size: 0.84rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 14px; }
.prod-tags { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 14px; }
.prod-tags span {
    font-size: 0.68rem; padding: 3px 9px;
    background: var(--bg-alt); border: 1px solid var(--border);
    border-radius: 40px; color: var(--text-muted);
}
.prod-cta { font-size: 0.84rem; font-weight: 600; color: var(--primary); text-decoration: none; transition: opacity 0.2s; }
.prod-cta:hover { opacity: 0.7; }

.products-note {
    display: flex; align-items: flex-start; gap: 14px;
    background: linear-gradient(135deg, #F0FDF4, #FFFEF0);
    border: 1.5px solid #BBF7D0;
    border-radius: 14px;
    padding: 20px 24px;
    font-size: 0.88rem;
    color: var(--text-mid);
    line-height: 1.65;
}
.pn-icon { font-size: 1.4rem; flex-shrink: 0; }
.products-note strong { color: var(--text); font-weight: 700; }
.products-note a { color: var(--primary); font-weight: 600; text-decoration: none; }
.products-note a:hover { opacity: 0.7; }

/* Team bio */
.team-bio { font-size: 0.83rem; color: var(--text-muted); line-height: 1.7; }

/* ============================================================
   HEALTH SECTION
   ============================================================ */
.health-section {
    padding: 96px 0;
    background: #F0FDFA;
    position: relative;
    overflow: hidden;
}
.health-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(13,148,136,0.08) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}

.health-ey { color: #0D9488 !important; }
.health-ey::before { background: #0D9488 !important; }

.kims-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    border: 1.5px solid rgba(13,148,136,0.25);
    border-radius: 100px;
    padding: 8px 20px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #0F766E;
    margin-bottom: 48px;
}

/* Doctor cards */
.doctors-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 52px;
}

.doctor-card {
    background: white;
    border: 1.5px solid var(--border);
    border-radius: 20px;
    padding: 32px;
    box-shadow: var(--shadow-m);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    position: relative;
    overflow: hidden;
}
.doctor-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0D9488, #34D399);
    border-radius: 20px 20px 0 0;
}
.doctor-card:last-child::before {
    background: linear-gradient(90deg, #4F46E5, #818CF8);
}
.doctor-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-l); }

.dc-availability {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    font-weight: 700;
    color: #0F766E;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.health-pip { background: #0D9488 !important; box-shadow: 0 0 0 3px rgba(13,148,136,0.25) !important; }
.indigo-pip { background: #4F46E5 !important; box-shadow: 0 0 0 3px rgba(79,70,229,0.25) !important; }
.dc-avail-indigo { color: #4338CA !important; }

.dc-avatar {
    width: 72px; height: 72px;
    border-radius: 18px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.25rem; font-weight: 700; letter-spacing: 0.03em;
    margin-bottom: 14px;
}
.teal-av { background: linear-gradient(135deg, #0D9488, #34D399); color: white; }
.indigo-av { background: linear-gradient(135deg, #4F46E5, #818CF8); color: white; }

.dc-spec-badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: #F0FDFA; color: #0F766E;
    border: 1px solid rgba(13,148,136,0.25); border-radius: 100px;
    padding: 4px 14px; font-size: 0.75rem; font-weight: 600; margin-bottom: 14px;
}
.indigo-badge { background: #EEF2FF; color: #4338CA; border-color: rgba(79,70,229,0.25); }

.doctor-card h3 { font-size: 1.2rem; font-weight: 700; color: var(--text); margin-bottom: 3px; }
.dc-title { font-size: 0.84rem; color: var(--text-muted); font-weight: 500; margin-bottom: 12px; }
.dc-bio { font-size: 0.87rem; color: var(--text-mid); line-height: 1.65; margin-bottom: 16px; }

.dc-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 22px; }
.dc-tags span {
    background: #F9FAFB; border: 1px solid var(--border);
    border-radius: 6px; padding: 3px 10px;
    font-size: 0.75rem; color: var(--text-mid); font-weight: 500;
}

.dc-book-btn {
    width: 100%; padding: 12px;
    background: #F0FDFA; border: 1.5px solid rgba(13,148,136,0.3);
    border-radius: 10px; color: #0D9488;
    font-size: 0.88rem; font-weight: 600;
    cursor: pointer; transition: all 0.2s; font-family: inherit;
}
.dc-book-btn:hover { background: #0D9488; color: white; border-color: #0D9488; }
.indigo-book-btn { background: #EEF2FF; border-color: rgba(79,70,229,0.3); color: #4F46E5; }
.indigo-book-btn:hover { background: #4F46E5; color: white; border-color: #4F46E5; }

/* Booking card */
.booking-card {
    background: white;
    border: 1.5px solid var(--border);
    border-radius: 20px;
    padding: 44px;
    box-shadow: var(--shadow-l);
    position: relative;
}
.booking-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, #0D9488, #4F46E5);
    border-radius: 20px 20px 0 0;
}

.booking-top {
    display: flex; align-items: flex-start; gap: 16px;
    margin-bottom: 32px; padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}
.booking-top-icon {
    width: 48px; height: 48px; border-radius: 12px;
    background: #F0FDFA; color: #0D9488;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.booking-top h3 { font-size: 1.3rem; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.booking-top p { font-size: 0.88rem; color: var(--text-muted); }

/* Doctor radio selector */
.doc-radio-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.doc-radio-card {
    border: 1.5px solid var(--border); border-radius: 12px;
    padding: 14px 16px; cursor: pointer; transition: all 0.2s;
    display: block;
}
.doc-radio-card input[type="radio"] { display: none; }
.doc-radio-card.selected { border-color: #0D9488; background: #F0FDFA; }

.drc-inner { display: flex; align-items: center; gap: 12px; }
.drc-av {
    width: 40px; height: 40px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.8rem; font-weight: 700; flex-shrink: 0;
}
.teal-av-sm { background: linear-gradient(135deg, #0D9488, #34D399); color: white; }
.indigo-av-sm { background: linear-gradient(135deg, #4F46E5, #818CF8); color: white; }
.drc-inner strong { display: block; font-size: 0.88rem; font-weight: 600; color: var(--text); }
.drc-inner span { font-size: 0.78rem; color: var(--text-muted); }

/* Calendar + time two-column layout */
.cal-time-wrap {
    display: grid; grid-template-columns: 1.2fr 1fr;
    gap: 24px; margin: 8px 0 24px;
    align-items: start;
}

/* Calendar widget */
.cal-widget { border: 1.5px solid var(--border); border-radius: 14px; overflow: hidden; user-select: none; }
.cal-nav {
    display: flex; align-items: center; justify-content: space-between;
    padding: 13px 16px; background: #0D9488; color: white;
}
.cal-nav-month { font-size: 0.9rem; font-weight: 600; }
.cal-nav button {
    background: rgba(255,255,255,0.2); border: none; border-radius: 6px;
    width: 28px; height: 28px; color: white; cursor: pointer;
    font-size: 1rem; display: flex; align-items: center; justify-content: center;
    transition: background 0.15s; line-height: 1;
}
.cal-nav button:hover { background: rgba(255,255,255,0.38); }
.cal-days-hdr {
    display: grid; grid-template-columns: repeat(7, 1fr);
    background: #F9FAFB; border-bottom: 1px solid var(--border);
}
.cal-days-hdr span {
    text-align: center; padding: 7px 0;
    font-size: 0.68rem; font-weight: 700; color: var(--text-muted);
    text-transform: uppercase; letter-spacing: 0.05em;
}
.cal-grid {
    display: grid; grid-template-columns: repeat(7, 1fr);
    gap: 1px; background: var(--border);
}
.cal-day {
    background: white; aspect-ratio: 1;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    font-size: 0.8rem; cursor: pointer; position: relative;
    transition: all 0.12s; gap: 2px;
}
.cal-day.empty { background: #FAFAFA; cursor: default; }
.cal-day.past, .cal-day.sunday { color: #D1D5DB; cursor: not-allowed; background: #FAFAFA; }
.cal-day.available { color: var(--text); font-weight: 500; }
.cal-day.available::after {
    content: ''; width: 4px; height: 4px; border-radius: 50%;
    background: #0D9488; position: absolute; bottom: 4px;
}
.cal-day.full { color: #D1D5DB; text-decoration: line-through; cursor: not-allowed; font-size: 0.72rem; }
.cal-day.today { outline: 2px solid #0D9488; outline-offset: -2px; border-radius: 6px; font-weight: 700; }
.cal-day.selected { background: #0D9488; color: white; border-radius: 6px; font-weight: 700; }
.cal-day.selected::after { background: rgba(255,255,255,0.7); }
.cal-day.available:hover:not(.selected) { background: #F0FDFA; border-radius: 6px; }

/* Time slots */
.time-group { display: flex; flex-direction: column; gap: 0; }
.cal-hint { font-size: 0.83rem; color: var(--text-muted); font-style: italic; margin-top: 6px; }
.slots-session { margin-bottom: 18px; }
.slots-session-lbl {
    font-size: 0.68rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.12em; color: var(--text-muted); margin-bottom: 8px;
    display: flex; align-items: center; gap: 6px;
}
.slots-session-lbl::before {
    content: ''; height: 1px; flex: 1; background: var(--border);
}
.slots-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
.time-chip {
    padding: 9px 4px; border: 1.5px solid var(--border);
    border-radius: 8px; font-size: 0.75rem; font-weight: 500;
    text-align: center; cursor: pointer; color: var(--text);
    background: white; transition: all 0.15s;
    font-family: 'JetBrains Mono', monospace;
}
.time-chip:hover:not(.booked) { border-color: #0D9488; color: #0D9488; background: #F0FDFA; }
.time-chip.selected { background: #0D9488; border-color: #0D9488; color: white; }
.time-chip.booked { background: #F9FAFB; color: #D1D5DB; cursor: not-allowed; font-size: 0.68rem; }

/* Health disclaimer */
.health-note {
    display: flex; align-items: flex-start; gap: 10px;
    background: #F0FDFA; border: 1px solid rgba(13,148,136,0.2);
    border-radius: 10px; padding: 14px 16px;
    font-size: 0.82rem; color: #0F766E; line-height: 1.55;
    margin: 20px 0;
}
.health-note svg { flex-shrink: 0; margin-top: 1px; }
.health-note strong { color: #0D9488; }

.health-submit-btn {
    width: 100%; padding: 15px 28px;
    background: #0D9488; color: white; border: none;
    border-radius: 10px; font-size: 0.95rem; font-weight: 600;
    cursor: pointer; display: flex; align-items: center;
    justify-content: center; gap: 8px;
    transition: all 0.2s; font-family: inherit;
}
.health-submit-btn:hover { background: #0F766E; transform: translateY(-2px); }

/* ============================================================
   RESPONSIVE ADDITIONS
   ============================================================ */
@media (max-width: 1100px) {
    .approach-grid { grid-template-columns: 1fr 1fr; }
    .vert-grid-2   { grid-template-columns: 1fr; }
    .products-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .approach-grid  { grid-template-columns: 1fr; }
    .vert-grid-2    { grid-template-columns: 1fr; }
    .products-grid  { grid-template-columns: 1fr; }
    .doctors-grid   { grid-template-columns: 1fr; }
    .doc-radio-wrap { grid-template-columns: 1fr; }
    .cal-time-wrap  { grid-template-columns: 1fr; }
    .footer-links   { flex-wrap: wrap; gap: 28px; }
    .booking-card   { padding: 28px 20px; }
}
