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

:root {
  --primary: #1f6b3f;
  --primary-dark: #14492a;
  --primary-light: #4a9c6e;
  --accent: #f4a342;
  --accent-dark: #e08420;
  --bg: #0a1a14;
  --bg-light: #f4f8f6;
  --surface: #ffffff;
  --surface-dark: #122820;
  --text: #1a2b24;
  --text-light: #4a5a54;
  --text-muted: #7a8a84;
  --text-on-dark: #e8f2ed;
  --border: rgba(31, 107, 63, 0.15);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
  --shadow-glow: 0 0 30px rgba(74, 156, 110, 0.35);
  --gradient-1: linear-gradient(135deg, #1f6b3f 0%, #4a9c6e 100%);
  --gradient-2: linear-gradient(135deg, #f4a342 0%, #e08420 100%);
  --gradient-accent: linear-gradient(135deg, #1f6b3f 0%, #4a9c6e 50%, #f4a342 100%);
  --glass: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.18);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg-light);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
}

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

a:hover { color: var(--primary-dark); }

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

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
  font-family: inherit;
}

.btn-primary {
  background: var(--gradient-1);
  color: white;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  color: white;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: white;
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  color: var(--text);
}

.glow-btn {
  position: relative;
  overflow: hidden;
}

.glow-btn::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.4) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.5s;
}

.glow-btn:hover::before {
  opacity: 1;
  animation: glowPulse 1.5s ease-in-out;
}

@keyframes glowPulse {
  0%, 100% { transform: scale(0.8); opacity: 0; }
  50% { transform: scale(1.2); opacity: 1; }
}

.full-btn { width: 100%; }

/* ============ NAVIGATION ============ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-md);
}

.nav-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--primary-dark);
  font-size: 1.1rem;
  line-height: 1.1;
}

.logo small {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.logo-icon {
  font-size: 1.6rem;
  filter: drop-shadow(0 2px 4px rgba(31, 107, 63, 0.3));
}

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

.nav-links a {
  color: var(--text);
  font-weight: 500;
  font-size: 0.92rem;
  position: relative;
}

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

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

.nav-cta {
  padding: 10px 20px;
  background: var(--gradient-1);
  color: white !important;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.88rem;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
  color: white !important;
}

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

.mobile-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: 140px 0 80px;
  background: linear-gradient(135deg, #e8f5ee 0%, #d4ecdf 50%, #fff6e4 100%);
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.6;
  z-index: 0;
  animation: float 12s ease-in-out infinite;
}

.blob-1 {
  width: 500px;
  height: 500px;
  background: #4a9c6e;
  top: -100px;
  right: -100px;
}

.blob-2 {
  width: 400px;
  height: 400px;
  background: #f4a342;
  bottom: 100px;
  left: -150px;
  animation-delay: -4s;
}

.blob-3 {
  width: 300px;
  height: 300px;
  background: #1f6b3f;
  top: 40%;
  left: 40%;
  animation-delay: -8s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -40px) scale(1.05); }
  66% { transform: translate(-20px, 30px) scale(0.95); }
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  flex: 1;
}

.hero-content h1 {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  margin: 20px 0;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 32px;
  max-width: 560px;
}

.animated-badge {
  display: inline-block;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-dark);
  animation: fadeInUp 0.8s ease-out;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-highlights {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.highlight {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 500;
}

.hl-icon { font-size: 1.2rem; }

/* Hero Visual */
.hero-visual {
  position: relative;
  min-height: 450px;
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  box-shadow: var(--shadow-lg);
  width: 220px;
  transition: var(--transition);
  animation: floatCard 6s ease-in-out infinite;
}

.floating-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 25px 70px rgba(0,0,0,0.18);
}

.fc-1 { top: 0; left: 0; animation-delay: 0s; }
.fc-2 { top: 140px; right: 0; animation-delay: -2s; }
.fc-3 { bottom: 0; left: 50px; animation-delay: -4s; }

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

.fc-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

.floating-card h4 {
  font-size: 1rem;
  margin-bottom: 4px;
  font-family: 'Inter', sans-serif;
}

.floating-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Stats Strip */
.stats-strip {
  position: relative;
  z-index: 2;
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 32px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

.stat { text-align: center; }

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--primary);
  display: inline-block;
  line-height: 1;
}

.stat span {
  color: var(--accent);
  font-weight: 700;
  font-size: 1.8rem;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 4px;
}

/* ============ SECTION COMMON ============ */
section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}

.section-tag {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(31, 107, 63, 0.1);
  color: var(--primary-dark);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.section-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 16px;
}

.section-header p {
  color: var(--text-light);
  font-size: 1.05rem;
}

/* ============ SERVICES ============ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.service-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

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

.card-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
  box-shadow: var(--shadow-md);
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  font-family: 'Inter', sans-serif;
}

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

.card-features {
  list-style: none;
  margin-bottom: 24px;
}

.card-features li {
  padding: 6px 0;
  font-size: 0.88rem;
  color: var(--text-light);
  border-bottom: 1px dashed var(--border);
}

.card-features li:last-child { border: none; }

.card-cta {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--primary);
  display: inline-block;
}

.card-cta:hover {
  color: var(--primary-dark);
  transform: translateX(4px);
}

/* ============ PROCESS TIMELINE ============ */
.process {
  background: linear-gradient(135deg, #122820 0%, #1f6b3f 100%);
  color: white;
}

.process .section-header h2,
.process .section-header p,
.process .section-tag { color: white; }
.process .section-tag { background: rgba(255,255,255,0.15); }

.timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 35px;
  left: 5%;
  right: 5%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  z-index: 0;
}

.timeline-item {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  transition: var(--transition);
}

.timeline-item:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.14);
  border-color: var(--accent);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.tl-num {
  width: 50px;
  height: 50px;
  background: var(--gradient-2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0 auto 20px;
  color: white;
  box-shadow: 0 6px 20px rgba(244, 163, 66, 0.4);
}

.timeline-item h3 {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 10px;
  font-family: 'Inter', sans-serif;
}

.timeline-item p {
  font-size: 0.88rem;
  color: var(--text-on-dark);
  opacity: 0.85;
}

/* ============ PORTFOLIO ============ */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.portfolio-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.portfolio-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.placeholder-img {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.placeholder-1 {
  background: 
    radial-gradient(circle at 30% 40%, #4a9c6e 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, #1f6b3f 0%, transparent 50%),
    linear-gradient(135deg, #d4ecdf, #e8f5ee);
}

.placeholder-2 {
  background: 
    conic-gradient(from 45deg, #1f6b3f, #4a9c6e, #f4a342, #1f6b3f);
}

.placeholder-3 {
  background: 
    repeating-linear-gradient(45deg, #1f6b3f 0 20px, #4a9c6e 20px 40px, #e8f5ee 40px 60px);
}

.placeholder-4 {
  background:
    radial-gradient(circle at 50% 50%, #f4a342 0%, transparent 40%),
    linear-gradient(135deg, #122820, #1f6b3f);
}

.placeholder-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(255,255,255,0.4) 0%, transparent 30%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.3) 0%, transparent 30%);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10, 26, 20, 0.9) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: white;
  opacity: 0;
  transition: var(--transition);
}

.portfolio-card:hover .portfolio-overlay { opacity: 1; }

.portfolio-overlay h4 {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 6px;
  font-family: 'Inter', sans-serif;
}

.portfolio-overlay p {
  font-size: 0.88rem;
  opacity: 0.85;
}

/* ============ ARTICLE SECTION ============ */
.article-section {
  background: linear-gradient(180deg, #f4f8f6 0%, #ffffff 100%);
  padding: 100px 0;
}

.article-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px;
}

.article-tag {
  display: inline-block;
  padding: 6px 16px;
  background: var(--gradient-2);
  color: white;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.article-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 20px;
}

.article-meta {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 500;
}

.article-body {
  max-width: 780px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-light);
}

.article-body .lead {
  font-size: 1.18rem;
  color: var(--text);
  font-weight: 500;
  padding: 24px 28px;
  background: linear-gradient(135deg, rgba(31,107,63,0.08), rgba(244,163,66,0.08));
  border-left: 4px solid var(--primary);
  border-radius: var(--radius-md);
  margin-bottom: 40px;
}

.article-body h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  margin: 50px 0 20px;
  color: var(--primary-dark);
  padding-top: 10px;
  position: relative;
}

.article-body h2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--gradient-accent);
  border-radius: 2px;
}

.article-body h3 {
  font-size: 1.2rem;
  margin: 30px 0 14px;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}

.article-body p { margin-bottom: 18px; }

/* Article Boxes */
.callout-box, .tip-box, .warning-box, .cta-box {
  padding: 20px 24px;
  border-radius: var(--radius-md);
  margin: 30px 0;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.callout-box {
  background: rgba(74, 156, 110, 0.1);
  border-left: 4px solid var(--primary);
}

.tip-box {
  background: rgba(244, 163, 66, 0.12);
  border-left: 4px solid var(--accent);
  display: block;
}

.warning-box {
  background: rgba(220, 53, 69, 0.08);
  border-left: 4px solid #dc3545;
  display: block;
}

.callout-icon { font-size: 1.6rem; flex-shrink: 0; }

.cta-box {
  background: var(--gradient-1);
  color: white;
  text-align: center;
  flex-direction: column;
  padding: 40px 28px;
}

.cta-box h3 { color: white; font-size: 1.6rem; margin-bottom: 10px; }
.cta-box p { color: rgba(255,255,255,0.9); margin-bottom: 20px; }
.cta-box .btn-primary {
  background: white;
  color: var(--primary-dark);
}
.cta-box .btn-primary:hover {
  color: var(--primary-dark);
}

/* Checklist */
.checklist {
  list-style: none;
  background: rgba(255,255,255,0.8);
  padding: 20px 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  margin: 20px 0;
}

.checklist li {
  padding: 8px 0;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}

.checklist li:last-child { border: none; }

/* Feature cards */
.feature-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin: 24px 0;
}

.mini-card {
  background: white;
  padding: 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  text-align: center;
  transition: var(--transition);
}

.mini-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
}

.mini-icon { font-size: 1.8rem; display: block; margin-bottom: 8px; }
.mini-card h4 { font-size: 0.95rem; margin-bottom: 4px; font-family: 'Inter', sans-serif; }
.mini-card p { font-size: 0.82rem; color: var(--text-muted); }

/* Comparison Table */
.comparison-table-wrap {
  margin: 30px 0;
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.comparison-table th {
  background: var(--gradient-1);
  color: white;
  padding: 14px 18px;
  text-align: left;
  font-weight: 600;
  font-size: 0.92rem;
}

.comparison-table td {
  padding: 14px 18px;
  border-top: 1px solid var(--border);
  font-size: 0.92rem;
  color: var(--text-light);
}

.comparison-table tr:nth-child(even) td { background: rgba(31, 107, 63, 0.03); }
.comparison-table tr:hover td { background: rgba(244, 163, 66, 0.06); }

/* FAQ */
.faq-list {
  margin: 30px 0;
}

.faq-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item[open] {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.faq-item summary {
  padding: 18px 24px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 0.98rem;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--primary);
  font-weight: 300;
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  content: '−';
  transform: rotate(180deg);
}

.faq-item p {
  padding: 0 24px 18px;
  color: var(--text-light);
  font-size: 0.95rem;
}

/* ============ TESTIMONIALS ============ */
.testimonials {
  background: linear-gradient(135deg, #f4f8f6 0%, #fff6e4 100%);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: white;
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 12px;
  right: 24px;
  font-size: 5rem;
  color: var(--primary-light);
  opacity: 0.2;
  font-family: 'Playfair Display', serif;
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.rating {
  color: var(--accent);
  font-size: 1.1rem;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.review {
  color: var(--text);
  margin-bottom: 24px;
  font-size: 0.95rem;
  line-height: 1.6;
  font-style: italic;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.reviewer-initials {
  width: 44px;
  height: 44px;
  background: var(--gradient-1);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.reviewer strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text);
}

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

/* ============ CONTACT ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 30px;
  margin-bottom: 40px;
}

.glass-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-md);
}

.glass-card h3 {
  font-size: 1.4rem;
  margin-bottom: 24px;
  font-family: 'Inter', sans-serif;
}

.info-item {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.info-item:last-of-type { border: none; }

.info-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.info-item strong {
  display: block;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.info-item a, .info-item p {
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
}

.info-item a:hover { color: var(--primary); }

.contact-info-card .btn { margin-top: 20px; }

/* Form */
.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  background: white;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(31, 107, 63, 0.1);
}

.link-cta-strip {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 24px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.link-pill {
  padding: 10px 20px;
  background: var(--gradient-1);
  color: white;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}

.link-pill:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
  color: white;
}

/* ============ FOOTER ============ */
.footer {
  background: linear-gradient(180deg, #122820 0%, #0a1a14 100%);
  color: var(--text-on-dark);
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 16px;
  color: white;
}

.footer-logo small {
  font-size: 0.7rem;
  color: var(--primary-light);
  letter-spacing: 1px;
  text-transform: uppercase;
  display: block;
}

.footer-col p {
  color: var(--text-on-dark);
  opacity: 0.8;
  font-size: 0.92rem;
  margin-bottom: 20px;
}

.footer-col h4 {
  color: white;
  margin-bottom: 20px;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}

.footer-col ul { list-style: none; }

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col a {
  color: var(--text-on-dark);
  opacity: 0.8;
  font-size: 0.92rem;
}

.footer-col a:hover {
  opacity: 1;
  color: var(--accent);
}

.footer-contact li {
  font-size: 0.88rem;
  color: var(--text-on-dark);
  opacity: 0.8;
}

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

.social-icons a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition);
}

.social-icons a:hover {
  background: var(--primary);
  transform: translateY(-3px);
  border-color: var(--primary);
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--text-on-dark);
  opacity: 0.7;
}

/* ============ ANIMATIONS ============ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { min-height: 400px; }
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .timeline::before { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    padding: 24px;
    gap: 16px;
    transform: translateY(-120%);
    transition: transform 0.4s;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
  }
  .nav-links.active { transform: translateY(0); }
  .nav-cta { display: none; }
  .mobile-toggle { display: flex; }
  
  section { padding: 70px 0; }
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .timeline { grid-template-columns: 1fr; }
  .hero { padding-top: 120px; min-height: auto; }
  .hero-highlights { justify-content: flex-start; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  
  .floating-card { width: 180px; padding: 16px; }
  .fc-icon { font-size: 1.6rem; }
}

@media (max-width: 480px) {
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
  .stats-strip { padding: 24px 16px; }
  .stat-num { font-size: 2rem; }
  .article-body { font-size: 1rem; }
  .glass-card { padding: 24px 20px; }
}

/* ============ REDUCED MOTION ============ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}