/* ============================================
   Agriguardian Pvt Ltd — Professional Website
   Color Palette: Gold & Green
   ============================================ */

:root {
  --gold: #C9A227;
  --gold-light: #E8C547;
  --gold-dark: #9A7B0A;
  --gold-gradient: linear-gradient(135deg, #E8C547 0%, #C9A227 50%, #9A7B0A 100%);

  --green: #2E7D32;
  --green-light: #4CAF50;
  --green-bright: #66BB6A;
  --green-dark: #1B5E20;

  --brown: #5D4037;

  --dark: #0D0D0D;
  --dark-2: #1A1A1A;
  --dark-3: #262626;

  --cream: #FAF8F3;
  --cream-dark: #F0EBE0;
  --white: #FFFFFF;

  --text: #333333;
  --text-light: #666666;
  --text-muted: #999999;

  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.16);
  --shadow-gold: 0 4px 20px rgba(201, 162, 39, 0.25);

  --radius: 8px;
  --radius-lg: 16px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-gold {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: 0.02em;
}

.btn--primary {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}

.btn--primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(46, 125, 50, 0.35);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: var(--gold);
}

.btn--outline:hover {
  background: var(--gold);
  color: var(--dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn--full {
  width: 100%;
}

.btn--outline-dark {
  background: transparent;
  color: var(--dark);
  border-color: var(--green);
}

.btn--outline-dark:hover {
  background: var(--green);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(46, 125, 50, 0.35);
}

/* Section Styles */
.section {
  padding: 100px 0;
}

.section--dark {
  background: var(--dark);
  color: var(--white);
}

.section--cream {
  background: var(--cream);
}

.section__header {
  text-align: center;
  margin-bottom: 60px;
}

.section__header--left {
  text-align: left;
}

.section__tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--green);
  margin-bottom: 12px;
}

.section--dark .section__tag {
  color: var(--gold-light);
}

.section__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
}

.section--dark .section__title {
  color: var(--white);
}

.section__divider {
  width: 60px;
  height: 3px;
  background: var(--gold-gradient);
  margin: 0 auto 20px;
  border-radius: 2px;
}

.section__header--left .section__divider {
  margin-left: 0;
}

.section__desc {
  max-width: 600px;
  margin: 0 auto;
  color: var(--text-light);
  font-size: 1.05rem;
}

.section__header--left .section__desc {
  margin-left: 0;
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all var(--transition);
  background: transparent;
}

.header.scrolled {
  background: rgba(13, 13, 13, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav__logo-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.nav__logo-text {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1.2;
}

.nav__logo-text small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--green-bright);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav__link {
  padding: 8px 18px;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.nav__link:hover,
.nav__link.active {
  color: var(--gold-light);
}

.nav__link--cta {
  background: var(--green);
  color: var(--white) !important;
  margin-left: 8px;
}

.nav__link--cta:hover {
  background: var(--green-light);
  color: var(--white) !important;
}

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

.nav__toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--gold-light);
  transition: all var(--transition);
  border-radius: 2px;
}

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

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

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

.nav__dropdown {
  position: relative;
}

.nav__dropdown-toggle {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.nav__dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 220px;
  padding: 8px;
  background: var(--dark-2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition);
  z-index: 100;
}

.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown.open .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(4px);
}

.nav__dropdown-menu a {
  display: block;
  padding: 10px 14px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.8);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.nav__dropdown-menu a:hover {
  background: rgba(201, 162, 39, 0.12);
  color: var(--gold-light);
}

.nav__back {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gold-light);
  padding: 8px 16px;
  border: 1px solid rgba(201, 162, 39, 0.3);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.nav__back:hover {
  background: rgba(201, 162, 39, 0.12);
  color: var(--white);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(46, 125, 50, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(201, 162, 39, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 60% 80%, rgba(46, 125, 50, 0.08) 0%, transparent 50%);
  z-index: 1;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: 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='%23C9A227' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 120px 24px 80px;
}

.hero__badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(201, 162, 39, 0.12);
  border: 1px solid rgba(201, 162, 39, 0.3);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gold-light);
  letter-spacing: 0.05em;
  margin-bottom: 28px;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255, 255, 255, 0.7);
  max-width: 620px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s infinite;
}

.hero__scroll a {
  color: var(--gold);
  opacity: 0.6;
  transition: opacity var(--transition);
}

.hero__scroll a:hover {
  opacity: 1;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

/* ============================================
   ABOUT
   ============================================ */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

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

.about__logo {
  width: 280px;
  max-width: 100%;
  background: transparent;
}

.about__lead {
  font-size: 1.15rem;
  color: var(--dark);
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 1.8;
}

.about__content p {
  color: var(--text-light);
  margin-bottom: 16px;
}

.about__values {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about__value {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.about__value-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(46, 125, 50, 0.08);
  border-radius: var(--radius);
  color: var(--green);
}

.about__value-icon svg {
  width: 24px;
  height: 24px;
}

.about__value h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 4px;
}

.about__value p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

.about__story {
  margin: 28px 0;
  padding: 24px;
  background: var(--cream);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--green);
}

.about__story-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 12px;
}

.about__story p {
  margin-bottom: 12px;
}

.about__story p:last-child {
  margin-bottom: 0;
}

.about__meta {
  margin-top: 28px;
  padding: 20px 24px;
  background: var(--cream);
  border-radius: var(--radius);
  border: 1px solid var(--cream-dark);
}

.about__meta-list li {
  font-size: 0.92rem;
  color: var(--text-light);
  padding: 6px 0;
  border-bottom: 1px solid var(--cream-dark);
}

.about__meta-list li:last-child {
  border-bottom: none;
}

.about__meta-list strong {
  color: var(--dark);
}

/* ============================================
   PROCESS / HOW IT WORKS
   ============================================ */
.process {
  background: var(--white);
}

.process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: stretch;
}

.process__step {
  padding: 32px 28px;
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.process__step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold-gradient);
  opacity: 0.9;
}

.process__step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(201, 162, 39, 0.25);
}

.process__step--featured {
  background: linear-gradient(135deg, rgba(46, 125, 50, 0.08) 0%, var(--cream) 100%);
  border-color: rgba(46, 125, 50, 0.25);
}

.process__pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-dark);
  background: rgba(46, 125, 50, 0.1);
  border: 1px solid rgba(46, 125, 50, 0.18);
  margin-bottom: 16px;
}

.process__step h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.2;
}

.process__step p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.75;
}

.process__grid--three {
  grid-template-columns: repeat(3, 1fr);
}

/* ============================================
   MISSION
   ============================================ */
.mission__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.mission__card {
  padding: 40px 32px;
  background: var(--dark-2);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all var(--transition);
}

.mission__card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 162, 39, 0.2);
  box-shadow: var(--shadow-gold);
}

.mission__card--featured {
  background: linear-gradient(135deg, rgba(46, 125, 50, 0.15) 0%, var(--dark-2) 100%);
  border-color: rgba(46, 125, 50, 0.3);
}

.mission__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 162, 39, 0.1);
  border-radius: 50%;
  color: var(--gold-light);
  margin-bottom: 24px;
}

.mission__icon svg {
  width: 28px;
  height: 28px;
}

.mission__card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 16px;
}

.mission__card p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* ============================================
   SERVICES
   ============================================ */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  padding: 36px 28px;
  background: var(--white);
  border: 1px solid #eee;
  border-radius: var(--radius-lg);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(46, 125, 50, 0.08);
  border-radius: var(--radius);
  color: var(--green);
  margin-bottom: 24px;
  transition: all var(--transition);
}

.service-card:hover .service-card__icon {
  background: var(--green);
  color: var(--white);
}

.service-card__icon svg {
  width: 28px;
  height: 28px;
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 12px;
}

.service-card p {
  color: var(--text-light);
  font-size: 0.92rem;
  margin-bottom: 20px;
  line-height: 1.7;
}

.service-card__link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--green);
  transition: color var(--transition);
}

.service-card__link:hover {
  color: var(--gold-dark);
}

.service-card__features {
  margin-bottom: 20px;
}

.service-card__features li {
  position: relative;
  padding-left: 20px;
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 8px;
}

.service-card__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  opacity: 0.6;
}

.services__grid--solutions {
  grid-template-columns: repeat(3, 1fr);
}

/* Value Props */
.value-props {
  padding: 60px 0;
  margin-top: -40px;
  position: relative;
  z-index: 3;
}

.value-props__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.value-prop {
  padding: 32px 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--cream-dark);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: all var(--transition);
}

.value-prop:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(201, 162, 39, 0.25);
}

.value-prop__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(46, 125, 50, 0.08);
  border-radius: 50%;
  color: var(--green);
}

.value-prop__icon svg {
  width: 28px;
  height: 28px;
}

.value-prop h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
}

.value-prop p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* Offerings / Services */
.offerings__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.offering-card {
  padding: 36px 32px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--cream-dark);
  transition: all var(--transition);
}

.offering-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(46, 125, 50, 0.2);
}

.offering-card__num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--green);
  opacity: 0.3;
  display: block;
  margin-bottom: 12px;
}

.offering-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 12px;
}

.offering-card p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* Testimonials & Partners */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 60px;
}

.testimonial {
  padding: 32px 28px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--cream-dark);
  position: relative;
}

.testimonial::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  left: 20px;
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
}

.testimonial p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial footer strong {
  display: block;
  font-size: 0.95rem;
  color: var(--dark);
  margin-bottom: 4px;
}

.testimonial footer span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.partners__label {
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.partners__logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.partners__logo {
  padding: 12px 24px;
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-light);
}

/* Portals Banner */
.portals-banner__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 800px;
  margin: 0 auto;
}

.portal-card {
  display: block;
  padding: 36px 32px;
  background: var(--dark-2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
  text-align: center;
}

.portal-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 162, 39, 0.3);
  box-shadow: var(--shadow-gold);
}

.portal-card--featured {
  background: linear-gradient(135deg, rgba(46, 125, 50, 0.15) 0%, var(--dark-2) 100%);
  border-color: rgba(46, 125, 50, 0.3);
}

.portal-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 162, 39, 0.12);
  border-radius: 50%;
  color: var(--gold-light);
}

.portal-card__icon svg {
  width: 32px;
  height: 32px;
}

.portal-card h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 12px;
}

.portal-card p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 20px;
  line-height: 1.7;
}

.portal-card__link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--green-bright);
}

/* Resources */
.resources__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

.section__divider--left {
  margin-left: 0;
}

.resources__content p {
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.75;
}

.resources__badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(201, 162, 39, 0.12);
  border: 1px solid rgba(201, 162, 39, 0.3);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-dark);
  letter-spacing: 0.05em;
}

.resources__preview {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.resources__card {
  padding: 24px 28px;
  background: var(--cream);
  border-radius: var(--radius-lg);
  border: 1px solid var(--cream-dark);
}

.resources__card--placeholder {
  opacity: 0.65;
  position: relative;
}

.resources__card--placeholder::after {
  content: 'Coming Soon';
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-dark);
  background: rgba(201, 162, 39, 0.15);
  padding: 4px 10px;
  border-radius: 50px;
}

.resources__card-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green);
  margin-bottom: 8px;
}

.resources__card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}

.resources__card p {
  font-size: 0.88rem;
  color: var(--text-light);
}

/* CTA Banner */
.cta-banner {
  background: var(--gold-gradient);
  padding: 60px 0;
}

.cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-banner__text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.cta-banner__text p {
  font-size: 1rem;
  color: rgba(13, 13, 13, 0.75);
  max-width: 520px;
  line-height: 1.7;
}

.cta-banner__actions {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
}

/* Social Links */
.contact__social {
  margin-top: 32px;
}

.contact__social h4 {
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 12px;
  font-size: 0.95rem;
}

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

.social-links__item {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(46, 125, 50, 0.08);
  border-radius: var(--radius);
  color: var(--green);
  transition: all var(--transition);
}

.social-links__item svg {
  width: 20px;
  height: 20px;
}

.social-links__item:hover {
  background: var(--green);
  color: var(--white);
}

/* Footer enhancements */
.footer__social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer__social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.5);
  transition: all var(--transition);
}

.footer__social a:hover {
  background: rgba(201, 162, 39, 0.15);
  color: var(--gold-light);
}

.footer__newsletter p {
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.newsletter-form {
  display: flex;
  gap: 8px;
}

.newsletter-form input {
  flex: 1;
  padding: 10px 14px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  color: var(--white);
  outline: none;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.newsletter-form input:focus {
  border-color: var(--gold);
}

.newsletter-form .btn {
  padding: 10px 20px;
  font-size: 0.85rem;
  white-space: nowrap;
}

.newsletter-form__success {
  display: none;
  margin-top: 12px;
  font-size: 0.85rem;
  color: var(--green-bright);
}

.newsletter-form__success.show {
  display: block;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__legal {
  display: flex;
  gap: 20px;
}

.footer__legal a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
  transition: color var(--transition);
}

.footer__legal a:hover {
  color: var(--gold-light);
}

.footer--minimal {
  padding: 0;
}

.footer--minimal .footer__bottom {
  justify-content: center;
}

/* Portal Login Pages */
.portal-page {
  background: var(--cream);
  min-height: 100vh;
}

.header--portal {
  background: rgba(13, 13, 13, 0.97);
}

.portal-login {
  padding: 120px 24px 80px;
  min-height: calc(100vh - 140px);
  display: flex;
  align-items: center;
}

.portal-login__grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.portal-login__badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(46, 125, 50, 0.1);
  border: 1px solid rgba(46, 125, 50, 0.2);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green);
  margin-bottom: 20px;
}

.portal-login__badge--client {
  background: rgba(201, 162, 39, 0.12);
  border-color: rgba(201, 162, 39, 0.3);
  color: var(--gold-dark);
}

.portal-login__info h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
}

.portal-login__info > p {
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 24px;
}

.portal-login__features {
  margin-bottom: 24px;
}

.portal-login__features li {
  position: relative;
  padding-left: 24px;
  font-size: 0.92rem;
  color: var(--text-light);
  margin-bottom: 10px;
}

.portal-login__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 10px;
  background: var(--green);
  border-radius: 50%;
  opacity: 0.5;
}

.portal-login__note {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.portal-login__note a {
  color: var(--green);
  font-weight: 500;
}

.portal-login__note a:hover {
  color: var(--gold-dark);
}

.portal-login__card {
  background: var(--white);
  padding: 40px 36px;
  border-radius: var(--radius-lg);
  border: 1px solid #eee;
  box-shadow: var(--shadow-md);
}

.portal-login__card--featured {
  border-color: rgba(46, 125, 50, 0.25);
  box-shadow: var(--shadow-lg);
}

.portal-login__card-header {
  text-align: center;
  margin-bottom: 32px;
}

.portal-login__card-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(46, 125, 50, 0.08);
  border-radius: 50%;
  color: var(--green);
}

.portal-login__card-icon svg {
  width: 32px;
  height: 32px;
}

.portal-login__card-header h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.portal-login__card-header p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.portal-login__options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  font-size: 0.85rem;
}

.portal-login__remember {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-light);
  cursor: pointer;
}

.portal-login__forgot {
  color: var(--green);
  font-weight: 500;
}

.portal-login__forgot:hover {
  color: var(--gold-dark);
}

.portal-login__switch {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #eee;
  text-align: center;
  font-size: 0.88rem;
  color: var(--text-light);
}

.portal-login__switch a {
  color: var(--green);
  font-weight: 600;
}

.portal-login__switch a:hover {
  color: var(--gold-dark);
}

.portal-login--dashboard {
  display: block;
}

.portal-login__grid--dashboard {
  margin-bottom: 48px;
}

.portal-login__panel[hidden],
.portal-dashboard[hidden] {
  display: none !important;
}

.portal-dashboard {
  max-width: 1100px;
  margin: 0 auto;
}

.portal-dashboard__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.portal-dashboard__header h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--dark);
  margin-bottom: 8px;
}

.portal-dashboard__header p {
  color: var(--text-light);
}

.portal-dashboard__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 24px;
}

.portal-widget {
  background: var(--white);
  border: 1px solid #eee;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 28px;
}

.portal-widget--full {
  width: 100%;
}

.portal-widget h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--dark);
  margin-bottom: 18px;
}

.portal-task-list li {
  padding: 16px 0;
  border-bottom: 1px solid #eee;
}

.portal-task-list li:first-child {
  padding-top: 0;
}

.portal-task-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.portal-task-list strong {
  display: block;
  color: var(--dark);
  margin-bottom: 6px;
}

.portal-task-list span {
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.7;
}

.portal-metrics {
  display: grid;
  gap: 16px;
}

.portal-metric {
  padding: 16px 18px;
  background: var(--cream);
  border-radius: var(--radius);
  border: 1px solid var(--cream-dark);
}

.portal-metric__label {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.portal-metric strong {
  color: var(--dark);
}

.portal-submit-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.portal-submit-form .btn {
  margin-top: 8px;
}

.portal-attendance-list {
  display: grid;
  gap: 14px;
}

.portal-attendance-item {
  padding: 16px 18px;
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
}

.portal-attendance-item strong {
  display: block;
  color: var(--dark);
  margin-bottom: 6px;
}

.portal-attendance-item span {
  color: var(--text-light);
  font-size: 0.92rem;
}

/* ============================================
   STATS
   ============================================ */
.stats {
  background: var(--green-dark);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold-gradient);
  opacity: 0.05;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
  z-index: 1;
}

.stats__item {
  text-align: center;
  color: var(--white);
}

.stats__number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}

.stats__suffix {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--gold-light);
}

.stats__label {
  display: block;
  margin-top: 8px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.03em;
}

/* ============================================
   WHY US
   ============================================ */
.why-us__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.why-us__item {
  padding: 36px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--cream-dark);
  transition: all var(--transition);
  position: relative;
}

.why-us__item:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(201, 162, 39, 0.2);
}

.why-us__number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 16px;
  display: block;
}

.why-us__item h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 12px;
}

.why-us__item p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* ============================================
   TEAM / LEADERSHIP
   ============================================ */
.team {
  background: var(--white);
}

.team__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.team-card {
  background: var(--white);
  border: 1px solid #eee;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  text-align: center;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(201, 162, 39, 0.25);
}

.team-card--featured {
  border-color: rgba(46, 125, 50, 0.25);
  box-shadow: var(--shadow-sm);
}

.team-card--featured .team-card__photo {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
}

.team-card__photo {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--dark-2) 0%, var(--dark-3) 100%);
  position: relative;
}

.team-card__photo::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gold-gradient);
}

.team-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  transform: scale(1.03);
}

.team-card__initials {
  width: 96px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-light);
  background: rgba(201, 162, 39, 0.15);
  border: 2px solid rgba(201, 162, 39, 0.35);
}

.team-card__body {
  padding: 28px 24px 32px;
}

.team-card__name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
  line-height: 1.3;
}

.team-card__role {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green);
  margin-bottom: 14px;
}

.team-card__bio {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ============================================
   CONTACT
   ============================================ */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: start;
}

.contact__details {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact__detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact__detail-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(46, 125, 50, 0.08);
  border-radius: var(--radius);
  color: var(--green);
}

.contact__detail-icon svg {
  width: 22px;
  height: 22px;
}

.contact__detail h4 {
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 4px;
  font-size: 0.95rem;
}

.contact__detail p {
  color: var(--text-light);
  font-size: 0.92rem;
}

.contact__detail a {
  color: var(--green);
}

.contact__detail a:hover {
  color: var(--gold-dark);
}

.contact__form {
  background: var(--cream);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--cream-dark);
}

.form__group {
  margin-bottom: 20px;
}

.form__group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}

.form__group input,
.form__group select,
.form__group textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  border: 1px solid #ddd;
  border-radius: var(--radius);
  transition: border-color var(--transition);
  outline: none;
}

.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
}

.form__group textarea {
  resize: vertical;
  min-height: 100px;
}

.form__success {
  display: none;
  margin-top: 16px;
  padding: 12px 16px;
  background: rgba(46, 125, 50, 0.1);
  color: var(--green-dark);
  border-radius: var(--radius);
  font-size: 0.9rem;
  text-align: center;
}

.form__success.show {
  display: block;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.6);
  padding: 60px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__logo {
  width: 80px;
  margin-bottom: 16px;
}

.footer__tagline {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer__links h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 20px;
}

.footer__links li {
  margin-bottom: 10px;
}

.footer__links a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--gold-light);
}

.footer__bottom {
  padding: 24px 0;
  text-align: center;
}

.footer__bottom p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

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

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

  .testimonials__grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .resources__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .portal-login__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .portal-dashboard__grid,
  .portal-submit-form__grid {
    grid-template-columns: 1fr;
  }

  .portal-dashboard__header {
    flex-direction: column;
    align-items: stretch;
  }

  .mission__grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

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

@media (max-width: 768px) {
  .section {
    padding: 70px 0;
  }

  .nav__toggle {
    display: flex;
  }

  .nav__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--dark);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 32px 32px;
    gap: 4px;
    transition: right var(--transition);
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
  }

  .nav__menu.open {
    right: 0;
  }

  .nav__link {
    width: 100%;
    padding: 12px 16px;
  }

  .nav__link--cta {
    margin-left: 0;
    margin-top: 12px;
    text-align: center;
  }

  .nav__dropdown {
    width: 100%;
  }

  .nav__dropdown-toggle {
    width: 100%;
    text-align: left;
    padding: 12px 16px;
  }

  .nav__dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0 0 0 16px;
    display: none;
  }

  .nav__dropdown.open .nav__dropdown-menu {
    display: block;
  }

  .value-props__grid {
    grid-template-columns: 1fr;
  }

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

  .portals-banner__grid {
    grid-template-columns: 1fr;
  }

  .cta-banner__inner {
    flex-direction: column;
    text-align: center;
  }

  .cta-banner__actions {
    flex-direction: column;
    width: 100%;
    max-width: 280px;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .about__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about__logo {
    width: 220px;
  }

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

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

  .process__grid--three {
    grid-template-columns: 1fr;
  }

  .team__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .why-us__grid {
    grid-template-columns: 1fr;
  }

  .contact__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 280px;
  }

  .contact__form {
    padding: 28px 20px;
  }

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

/* ============================================
   PORTALS HUB PAGE
   ============================================ */
.portals-hub {
  padding: 120px 0 80px;
  min-height: calc(100vh - 140px);
  background: var(--cream);
}

.portals-hub__header {
  text-align: center;
  margin-bottom: 56px;
}

.portals-hub__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}

.portals-hub__card {
  display: block;
  padding: 36px 32px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(46, 125, 50, 0.12);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

.portals-hub__card--active:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
  border-color: rgba(201, 162, 39, 0.3);
}

.portals-hub__card--future {
  opacity: 0.75;
  cursor: default;
}

.portals-hub__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(46, 125, 50, 0.1);
  border-radius: 50%;
  color: var(--green);
}

.portals-hub__card--future .portals-hub__icon {
  background: rgba(201, 162, 39, 0.12);
  color: var(--gold-dark);
}

.portals-hub__icon svg {
  width: 32px;
  height: 32px;
}

.portals-hub__card h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 12px;
}

.portals-hub__card p {
  font-size: 0.92rem;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.7;
}

.portals-hub__link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--green);
}

.portals-hub__badge {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(201, 162, 39, 0.15);
  color: var(--gold-dark);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.portals-hub__note {
  text-align: center;
  margin-top: 40px;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.portals-hub__note code {
  background: rgba(46, 125, 50, 0.08);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.85rem;
}

.portals-banner__grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
