@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

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

:root {
  --green-900: #0B3D0B;
  --green-800: #145214;
  --green-700: #1A6B1A;
  --green-600: #228B22;
  --green-500: #2EA043;
  --green-400: #4CAF50;
  --green-300: #81C784;
  --green-200: #A5D6A7;
  --green-100: #C8E6C9;
  --green-50: #E8F5E9;
  --gold-600: #B8860B;
  --gold-500: #DAA520;
  --gold-400: #F0C75E;
  --gold-300: #FFD700;
  --gold-200: #FFE44D;
  --earth-900: #1B1408;
  --earth-800: #2C2010;
  --earth-700: #3E2D1A;
  --earth-600: #5D4E37;
  --cream: #FFF8F0;
  --cream-dark: #F5EDE0;
  --white: #FFFFFF;
  --text-dark: #1A1A1A;
  --text-body: #3D3D3D;
  --text-muted: #6B7280;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, .08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, .1);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, .15);
  --shadow-xl: 0 24px 60px rgba(0, 0, 0, .2);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-body);
  line-height: 1.7;
  background: var(--white);
  overflow-x: hidden;
}

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

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

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all .4s ease;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-md);
  padding: 10px 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar-logo .logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--green-600), var(--green-400));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.navbar-logo span {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  transition: color .3s;
}

.navbar.scrolled .navbar-logo span {
  color: var(--green-900);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, .85);
  transition: color .3s;
  letter-spacing: .3px;
}

.navbar.scrolled .nav-links a {
  color: var(--text-body);
}

.nav-links a:hover {
  color: var(--gold-400);
}

.navbar.scrolled .nav-links a:hover {
  color: var(--green-600);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: all .3s ease;
  letter-spacing: .3px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--green-600), var(--green-500));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(34, 139, 34, .35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(34, 139, 34, .45);
}

.btn-outline {
  border: 2px solid rgba(255, 255, 255, .4);
  color: var(--white);
  background: transparent;
}

.btn-outline:hover {
  background: var(--white);
  color: var(--green-800);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  color: var(--earth-900);
  box-shadow: 0 4px 20px rgba(218, 165, 32, .35);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(218, 165, 32, .45);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 16px;
}

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

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all .3s;
  border-radius: 2px;
}

.navbar.scrolled .hamburger span {
  background: var(--text-dark);
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  width: 100%;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11, 61, 11, .85) 0%, rgba(20, 82, 20, .7) 40%, rgba(30, 100, 30, .5) 100%);
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 680px;
  padding: 120px 0 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, .15);
  padding: 8px 20px;
  border-radius: 50px;
  color: var(--gold-300);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--gold-400);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: .4;
  }
}

.hero h1 {
  font-size: clamp(40px, 5vw, 64px);
  color: var(--white);
  font-weight: 800;
  margin-bottom: 24px;
}

.hero h1 .highlight {
  color: var(--gold-400);
  display: inline;
}

.hero p {
  font-size: 18px;
  color: rgba(255, 255, 255, .8);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 540px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, .15);
  #flex-wrap: wrap;
}

.hero-stat h3 {
  font-family: 'Inter', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--gold-400);
}

.hero-stat p {
  font-size: 13px;
  color: rgba(255, 255, 255, .6);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
  margin-top: 4px;
}

/* ── SECTION COMMON ── */
.section {
  padding: 100px 0;
  overflow: hidden;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green-600);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-label::before,
.section-label::after {
  content: '';
  width: 24px;
  height: 1.5px;
  background: var(--green-400);
}

.section-header h2 {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 16px;
}

.section-header p {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

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

.bg-dark {
  background: linear-gradient(135deg, var(--green-900), var(--earth-900));
  color: var(--white);
}

.bg-dark h2,
.bg-dark h3,
.bg-dark h4 {
  color: var(--white);
}

.bg-dark p {
  color: rgba(255, 255, 255, .7);
}

.bg-dark .section-label {
  color: var(--gold-400);
}

.bg-dark .section-label::before,
.bg-dark .section-label::after {
  background: var(--gold-500);
}

/* ── ABOUT ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.about-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.about-image-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(10px);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.about-image-badge h4 {
  font-family: 'Inter', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--green-700);
}

.about-image-badge p {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-text .section-label {
  justify-content: flex-start;
}

.about-text h2 {
  font-size: 40px;
  margin-bottom: 20px;
  text-align: left;
}

.about-text>p {
  margin-bottom: 16px;
  font-size: 16px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--green-50);
  border-radius: var(--radius-sm);
}

.about-feature .icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--green-600), var(--green-400));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
}

.about-feature h4 {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
}

.about-feature p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ── SERVICES CARDS ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, .06);
  transition: all .4s ease;
  position: relative;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.service-card-img {
  height: 200px;
  overflow: hidden;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.service-card:hover .service-card-img img {
  transform: scale(1.08);
}

.service-card-body {
  padding: 28px;
}

.service-card-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--green-50), var(--green-100));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
  margin-top: -46px;
  position: relative;
  z-index: 2;
  border: 3px solid var(--white);
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

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

.service-card .learn-more {
  color: var(--green-600);
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap .3s;
}

.service-card .learn-more:hover {
  gap: 12px;
}

/* ── STATS BAR ── */
.stats-bar {
  padding: 64px 0;
  overflow: hidden;
}

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

.stat-item {
  text-align: center;
}

.stat-item h3 {
  font-family: 'Inter', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--gold-400);
  margin-bottom: 8px;
}

.stat-item p {
  font-size: 14px;
  color: rgba(255, 255, 255, .6);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  background: rgba(255, 255, 255, .15);
}

/* ── HOW IT WORKS ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  counter-reset: step;
}

.step-card {
  text-align: center;
  position: relative;
  padding: 40px 24px;
}

.step-card::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: 'Playfair Display', serif;
  font-size: 64px;
  font-weight: 800;
  color: var(--green-100);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1;
}

.step-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--green-600), var(--green-400));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 32px auto 24px;
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 24px rgba(34, 139, 34, .25);
}

.step-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.step-card p {
  font-size: 14px;
  color: var(--text-muted);
}

/* ── INVESTMENT PLANS ── */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.plan-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  border: 2px solid rgba(0, 0, 0, .06);
  transition: all .4s ease;
  position: relative;
  overflow: hidden;
  word-wrap: break-word;
}

.plan-card.featured {
  border-color: var(--green-500);
  transform: scale(1.04);
}

.plan-card.featured::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: 20px;
  right: -32px;
  background: linear-gradient(135deg, var(--green-600), var(--green-400));
  color: var(--white);
  padding: 6px 40px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  transform: rotate(45deg);
}

.plan-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
}

.plan-card.featured:hover {
  transform: scale(1.04) translateY(-4px);
}

.plan-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--green-600);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.plan-card h3 {
  font-size: 28px;
  margin-bottom: 4px;
}

.plan-price {
  font-family: 'Inter', sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: var(--green-700);
  margin: 20px 0;
}

.plan-price span {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-muted);
}

.plan-features {
  list-style: none;
  margin: 24px 0 32px;
}

.plan-features li {
  padding: 10px 0;
  font-size: 14px;
  color: var(--text-body);
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, .05);
}

.plan-features li::before {
  content: '✓';
  color: var(--green-500);
  font-weight: 700;
  font-size: 16px;
}

.plan-card .btn {
  width: 100%;
}

/* ── TESTIMONIALS ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, .06);
  transition: all .3s;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
}

.testimonial-stars {
  color: var(--gold-500);
  font-size: 16px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-card blockquote {
  font-size: 15px;
  font-style: italic;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 24px;
}

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

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-400), var(--green-600));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 16px;
}

.testimonial-author h4 {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
}

.testimonial-author p {
  font-size: 12px;
  color: var(--text-muted);
}

/* ── CTA SECTION ── */
.cta-section {
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(218, 165, 32, .15), transparent 70%);
  border-radius: 50%;
}

.cta-section h2 {
  font-size: clamp(36px, 4vw, 52px);
  color: var(--white);
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 18px;
  color: rgba(255, 255, 255, .7);
  max-width: 560px;
  margin: 0 auto 40px;
}

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

/* ── FOOTER ── */
.footer {
  background: var(--earth-900);
  padding: 80px 0 0;
  color: rgba(255, 255, 255, .6);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-about .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.footer-about .logo .logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--green-600), var(--green-400));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.footer-about .logo span {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
}

.footer-about p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 20px;
}

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

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s;
  font-size: 14px;
}

.footer-social a:hover {
  background: var(--green-600);
  border-color: var(--green-600);
  color: var(--white);
}

.footer h4 {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
}

.footer ul {
  list-style: none;
}

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

.footer ul a {
  font-size: 14px;
  transition: color .3s;
}

.footer ul a:hover {
  color: var(--green-400);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

/* ── NAV AUTH ── */
.nav-auth-group {
  display: flex;
  gap: 10px;
  align-items: center;
}

.btn-outline-nav {
  border: 2px solid rgba(255, 255, 255, .4) !important;
  color: var(--white) !important;
  background: transparent;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  transition: all .3s;
}

.btn-outline-nav:hover {
  background: var(--white) !important;
  color: var(--green-800) !important;
}

.navbar.scrolled .btn-outline-nav {
  border-color: var(--green-600) !important;
  color: var(--green-700) !important;
}

.navbar.scrolled .btn-outline-nav:hover {
  background: var(--green-50) !important;
}

/* ── AUTH SECTIONS (inline) ── */
.auth-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.auth-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0, 0, 0, .06);
  transition: all .4s ease;
}

.auth-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
}

.auth-header {
  text-align: center;
  margin-bottom: 28px;
}

.auth-logo {
  font-size: 40px;
  margin-bottom: 12px;
}

.auth-header h3 {
  font-size: 26px;
  margin-bottom: 6px;
}

.auth-header p {
  font-size: 14px;
  color: var(--text-muted);
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

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

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

.form-group input {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid rgba(0, 0, 0, .1);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text-dark);
  transition: border-color .3s;
  background: var(--white);
}

.form-group input:focus {
  outline: none;
  border-color: var(--green-500);
  box-shadow: 0 0 0 3px rgba(34, 139, 34, .1);
}

.form-group input::placeholder {
  color: var(--text-muted);
}

.password-field {
  position: relative;
}

.password-field input {
  padding-right: 48px;
}

.toggle-pass {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  padding: 4px 8px;
}

.form-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 8px;
}

.form-row-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-body);
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--green-600);
  cursor: pointer;
  flex-shrink: 0;
}

.form-link {
  color: var(--green-600);
  font-size: 13px;
  font-weight: 500;
}

.form-link:hover {
  text-decoration: underline;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 24px 0;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(0, 0, 0, .1);
}

.auth-divider span {
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-social {
  width: 100%;
  padding: 12px;
  border: 2px solid rgba(0, 0, 0, .1);
  border-radius: 50px;
  background: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-body);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all .3s;
}

.btn-social:hover {
  border-color: rgba(0, 0, 0, .2);
  background: var(--cream);
}

.btn-social span {
  font-weight: 700;
  font-size: 18px;
  background: linear-gradient(135deg, #4285f4, #34a853, #fbbc05, #ea4335);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


/* ── ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all .7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: all .7s ease;
}

.fade-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-right {
  opacity: 0;
  transform: translateX(30px);
  transition: all .7s ease;
}

.fade-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ── MOBILE NAV CLOSE ── */
.nav-close {
  display: none;
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: 2px solid rgba(255, 255, 255, .3);
  color: var(--white);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: all .3s;
}

.nav-close:hover {
  background: rgba(255, 255, 255, .15);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .container {
    padding: 0 20px;
  }

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

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

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

  .plan-card.featured {
    transform: none;
  }

  .plan-card.featured:hover {
    transform: translateY(-4px);
  }

  .about-grid {
    gap: 40px;
  }

  .about-text h2 {
    font-size: 32px;
  }

  .about-image img {
    height: 400px;
  }

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

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

  /* Mobile Nav Overlay */
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(11, 61, 11, .98), rgba(27, 20, 8, .98));
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    z-index: 9999;
    list-style: none;
    padding: 0;
    margin: 0;
    animation: fadeInNav .3s ease;
  }

  @keyframes fadeInNav {
    from {
      opacity: 0;
    }

    to {
      opacity: 1;
    }
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links.active .nav-close {
    display: flex;
  }

  .nav-links a {
    color: var(--white) !important;
    font-size: 20px;
    padding: 12px 24px;
    border-radius: 8px;
    transition: background .3s;
  }

  .nav-links a:hover {
    background: rgba(255, 255, 255, .1);
  }

  .nav-links .btn {
    margin-top: 12px;
    padding: 14px 40px;
    font-size: 16px;
  }

  .hamburger {
    display: flex;
    padding: 8px;
  }

  .hamburger span {
    width: 22px;
  }

  /* Hero */
  .hero {
    min-height: 100svh;
  }

  .hero-content {
    padding: 90px 0 40px;
  }

  .hero h1 {
    font-size: clamp(28px, 7vw, 40px);
    margin-bottom: 16px;
  }

  .hero p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 28px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }

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

  .btn-lg {
    padding: 14px 28px;
    font-size: 15px;
  }

  .hero-stats {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0;
    margin-top: 36px;
    padding-top: 28px;
  }

  .hero-stat {
    flex: 1 1 50%;
    text-align: center;
    padding: 12px 0;
  }

  .hero-stat h3 {
    font-size: 28px;
  }

  .hero-stat p {
    font-size: 11px;
    letter-spacing: .5px;
  }

  /* Sections */
  .section {
    padding: 56px 0;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .section-header h2 {
    font-size: clamp(24px, 6vw, 34px);
  }

  .section-header p {
    font-size: 15px;
  }

  .section-label {
    font-size: 11px;
    letter-spacing: 1.5px;
  }

  .section-label::before,
  .section-label::after {
    width: 16px;
  }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-image img {
    height: 280px;
  }

  .about-image-badge {
    bottom: 16px;
    left: 16px;
    padding: 12px 18px;
  }

  .about-image-badge h4 {
    font-size: 22px;
  }

  .about-text h2 {
    font-size: 28px;
  }

  .about-text>p {
    font-size: 14px;
  }

  .about-features {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 24px;
  }

  .about-feature {
    padding: 14px;
  }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-card-img {
    height: 180px;
  }

  .service-card-body {
    padding: 20px;
  }

  .service-card h3 {
    font-size: 20px;
  }

  /* Stats */
  .stats-bar {
    padding: 48px 0;
  }

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

  .stat-item h3 {
    font-size: 36px;
  }

  .stat-item p {
    font-size: 11px;
    letter-spacing: 1px;
  }

  /* Steps */
  .steps-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .step-card {
    padding: 32px 16px;
  }

  .step-card::before {
    font-size: 48px;
  }

  .step-icon {
    width: 56px;
    height: 56px;
    font-size: 22px;
    margin: 24px auto 16px;
  }

  .step-card h3 {
    font-size: 17px;
  }

  .step-card p {
    font-size: 13px;
  }

  /* Plans */
  .plans-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .plan-card {
    padding: 28px 24px;
  }

  .plan-price {
    font-size: 32px;
  }

  .plan-card.featured::before {
    top: 16px;
    right: -36px;
    font-size: 10px;
  }

  /* Testimonials */
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .testimonial-card {
    padding: 24px;
  }

  .testimonial-card blockquote {
    font-size: 14px;
  }

  /* CTA */
  .cta-section {
    padding: 64px 0;
  }

  .cta-section h2 {
    font-size: clamp(26px, 6vw, 36px);
  }

  .cta-section p {
    font-size: 15px;
    margin-bottom: 28px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons .btn {
    width: 100%;
    max-width: 320px;
  }

  /* Footer */
  .footer {
    padding: 48px 0 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-about p {
    font-size: 13px;
  }

  .footer h4 {
    margin-bottom: 16px;
    font-size: 13px;
  }

  .footer ul a {
    font-size: 13px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    padding: 20px 0;
    font-size: 12px;
  }

  /* Auth sections mobile */
  .auth-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .auth-card {
    padding: 28px 20px;
  }

  .auth-header h3 {
    font-size: 22px;
  }

  .form-row-2col {
    grid-template-columns: 1fr;
  }

  .nav-auth-group {
    flex-direction: column;
    gap: 8px;
    width: 100%;
  }

  .nav-auth-group .btn {
    width: 100%;
    max-width: 240px;
    text-align: center;
    justify-content: center;
  }
}

/* ── Extra small (phones under 480px) ── */
@media (max-width: 480px) {
  .container {
    padding: 0 14px;
  }

  .hero h1 {
    font-size: 26px;
  }

  .hero p {
    font-size: 14px;
  }

  .hero-badge {
    font-size: 11px;
    padding: 6px 14px;
  }

  .hero-stat {
    flex: 1 1 50%;
  }

  .hero-stat h3 {
    font-size: 24px;
  }

  .about-image img {
    height: 220px;
  }

  .about-text h2 {
    font-size: 24px;
  }

  .stat-item h3 {
    font-size: 28px;
  }

  .plan-price {
    font-size: 28px;
  }

  .plan-price span {
    font-size: 13px;
  }

  .plan-card h3 {
    font-size: 22px;
  }

  .step-card::before {
    font-size: 40px;
  }

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

  .cta-section h2 {
    font-size: 24px;
  }

  .navbar-logo span {
    font-size: 18px;
  }

  .navbar-logo .logo-icon {
    width: 36px;
    height: 36px;
    font-size: 17px;
  }
}