/* ===== CSS VARIABLES ===== */
:root {
  --saffron: #FF9933;
  --saffron-light: #FFB366;
  --saffron-pale: #FFF3E6;
  --sky: #4A90D9;
  --sky-light: #7BB3E8;
  --sky-pale: #EBF4FF;
  --mint: #4CAF7D;
  --mint-pale: #E8F5EE;
  --cream: #FFFBF5;
  --warm-white: #FFF8F0;
  --dark: #1A1A2E;
  --dark-mid: #2D2D44;
  --text: #3D3D5C;
  --text-light: #7A7A9A;
  --border: #E8E0D5;
  --shadow-sm: 0 2px 12px rgba(255,153,51,0.10);
  --shadow-md: 0 8px 32px rgba(255,153,51,0.15);
  --shadow-lg: 0 20px 60px rgba(26,26,46,0.12);
  --radius: 20px;
  --radius-sm: 12px;
  --radius-lg: 32px;
  --font-display: 'Bricolage Grotesque', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== FLOATING BUBBLES ===== */
.bubbles-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.bubble {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
  animation: floatBubble linear infinite;
}

.bubble:nth-child(1) { width: 80px; height: 80px; background: var(--saffron); left: 5%; animation-duration: 18s; animation-delay: 0s; }
.bubble:nth-child(2) { width: 120px; height: 120px; background: var(--sky); left: 15%; animation-duration: 22s; animation-delay: -4s; }
.bubble:nth-child(3) { width: 60px; height: 60px; background: var(--mint); left: 30%; animation-duration: 16s; animation-delay: -8s; }
.bubble:nth-child(4) { width: 100px; height: 100px; background: var(--saffron); left: 50%; animation-duration: 20s; animation-delay: -2s; }
.bubble:nth-child(5) { width: 70px; height: 70px; background: var(--sky); left: 65%; animation-duration: 24s; animation-delay: -6s; }
.bubble:nth-child(6) { width: 90px; height: 90px; background: var(--mint); left: 75%; animation-duration: 19s; animation-delay: -10s; }
.bubble:nth-child(7) { width: 50px; height: 50px; background: var(--saffron); left: 85%; animation-duration: 15s; animation-delay: -3s; }
.bubble:nth-child(8) { width: 110px; height: 110px; background: var(--sky); left: 92%; animation-duration: 21s; animation-delay: -7s; }

@keyframes floatBubble {
  0% { transform: translateY(110vh) scale(0.8); opacity: 0; }
  10% { opacity: 0.06; }
  90% { opacity: 0.06; }
  100% { transform: translateY(-20vh) scale(1.1); opacity: 0; }
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 2rem;
  background: rgba(255, 251, 245, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,153,51,0.12);
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 4px 24px rgba(255,153,51,0.12);
  background: rgba(255, 251, 245, 0.97);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark);
}

.logo-icon { font-size: 1.8rem; }
.logo-accent { color: var(--saffron); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

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

.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--saffron);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-links a:not(.nav-cta):hover::after { width: 100%; }
.nav-links a:not(.nav-cta):hover { color: var(--saffron); }

.nav-cta {
  background: var(--saffron);
  color: white !important;
  padding: 0.55rem 1.4rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(255,153,51,0.35);
}

.nav-cta:hover {
  background: #e8851a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,153,51,0.45);
}

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

.hamburger span {
  display: block;
  width: 24px; height: 2.5px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 2rem 80px;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--saffron-pale);
  border: 1px solid rgba(255,153,51,0.25);
  color: var(--saffron);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  animation: fadeInDown 0.8s ease both;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 1.2rem;
  animation: fadeInUp 0.9s ease 0.1s both;
}

.hero-accent {
  color: var(--saffron);
  position: relative;
  display: inline-block;
}

.hero-accent::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 0; right: 0;
  height: 8px;
  background: rgba(255,153,51,0.2);
  border-radius: 4px;
  z-index: -1;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 480px;
  animation: fadeInUp 0.9s ease 0.2s both;
}

.hero-subtitle strong { color: var(--saffron); font-weight: 700; }

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.9s ease 0.3s both;
}

.btn-primary {
  background: var(--saffron);
  color: white;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
  box-shadow: 0 6px 24px rgba(255,153,51,0.4);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary:hover {
  background: #e8851a;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(255,153,51,0.5);
}

.btn-secondary {
  background: white;
  color: var(--dark);
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid var(--border);
  transition: var(--transition);
}

.btn-secondary:hover {
  border-color: var(--saffron);
  color: var(--saffron);
  transform: translateY(-3px);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  animation: fadeInUp 0.9s ease 0.4s both;
}

.stat { text-align: center; }
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--dark);
}
.stat-label {
  font-size: 0.78rem;
  color: var(--text-light);
  font-weight: 500;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInRight 1s ease 0.2s both;
}

.hero-blob {
  position: absolute;
  width: 480px; height: 480px;
  background: radial-gradient(ellipse at 40% 40%, rgba(255,153,51,0.18) 0%, rgba(74,144,217,0.12) 60%, transparent 100%);
  border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
  animation: blobMorph 8s ease-in-out infinite;
  z-index: 0;
}

@keyframes blobMorph {
  0%, 100% { border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%; }
  33% { border-radius: 40% 60% 30% 70% / 60% 40% 60% 40%; }
  66% { border-radius: 70% 30% 50% 50% / 40% 70% 30% 60%; }
}

.hero-image-wrap {
  position: relative;
  z-index: 1;
  width: 380px; height: 420px;
}

.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.hero-badge-float {
  position: absolute;
  background: white;
  border-radius: 50px;
  padding: 0.5rem 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  white-space: nowrap;
  animation: floatBadge 3s ease-in-out infinite;
}

.badge-1 { top: 20px; left: -30px; animation-delay: 0s; }
.badge-2 { top: 50%; right: -30px; transform: translateY(-50%); animation-delay: 1s; }
.badge-3 { bottom: 30px; left: -20px; animation-delay: 2s; }

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

.badge-2 {
  animation: floatBadge2 3s ease-in-out infinite;
}
@keyframes floatBadge2 {
  0%, 100% { transform: translateY(-50%); }
  50% { transform: translateY(calc(-50% - 8px)); }
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--dark);
  padding: 1rem 2rem;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.trust-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
  font-weight: 500;
}

.trust-item span { font-size: 1.1rem; }

/* ===== SECTION COMMONS ===== */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 2rem;
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-tag {
  display: inline-block;
  background: var(--saffron-pale);
  color: var(--saffron);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
  border: 1px solid rgba(255,153,51,0.2);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== PRODUCTS ===== */
.products { background: var(--warm-white); }

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.product-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: rgba(255,153,51,0.3);
}

.product-badge-tag {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--saffron);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  z-index: 2;
}

.product-badge-tag.new { background: var(--sky); }
.product-badge-tag.eco { background: var(--mint); }

.product-img-wrap {
  height: 200px;
  overflow: hidden;
  background: var(--saffron-pale);
}

.product-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-img-wrap img { transform: scale(1.06); }

.product-info { padding: 1.5rem; }

.product-stage {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--sky);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: block;
  margin-bottom: 0.5rem;
}

.product-info h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.6rem;
}

.product-info p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.product-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.2rem;
}

.product-features span {
  background: var(--sky-pale);
  color: var(--sky);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.65rem;
  border-radius: 50px;
}

.product-pricing {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 1.2rem;
}

.price {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--saffron);
}

.price-unit {
  font-size: 0.85rem;
  color: var(--text-light);
}

.btn-card {
  display: block;
  text-align: center;
  background: var(--saffron-pale);
  color: var(--saffron);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.7rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  border: 2px solid transparent;
}

.btn-card:hover {
  background: var(--saffron);
  color: white;
  transform: translateY(-2px);
}

/* ===== WHY US ===== */
.why-us { background: var(--cream); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: white;
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--saffron), var(--sky));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

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

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

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.6rem;
}

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

/* ===== PRICING ===== */
.pricing {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-mid) 100%);
  position: relative;
  overflow: hidden;
}

.pricing::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,153,51,0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.pricing .section-tag {
  background: rgba(255,153,51,0.15);
  border-color: rgba(255,153,51,0.3);
}

.pricing .section-title { color: white; }
.pricing .section-desc { color: rgba(255,255,255,0.65); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: start;
}

.pricing-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  transition: var(--transition);
  position: relative;
}

.pricing-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-6px);
}

.pricing-card.popular {
  background: white;
  border-color: var(--saffron);
  transform: scale(1.04);
  box-shadow: 0 24px 64px rgba(255,153,51,0.3);
}

.pricing-card.popular:hover { transform: scale(1.04) translateY(-6px); }

.popular-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--saffron);
  color: white;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.3rem 1.2rem;
  border-radius: 50px;
  white-space: nowrap;
}

.plan-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1.2rem;
}

.pricing-card.popular .plan-name { color: var(--dark); }

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 0.5rem;
}

.currency {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--saffron);
}

.amount {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: white;
  line-height: 1;
}

.pricing-card.popular .amount { color: var(--dark); }

.period {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
}

.pricing-card.popular .period { color: var(--text-light); }

.plan-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.8rem;
  padding-bottom: 1.8rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.pricing-card.popular .plan-desc {
  color: var(--text-light);
  border-bottom-color: var(--border);
}

.plan-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.plan-features li {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
}

.pricing-card.popular .plan-features li { color: var(--text); }
.plan-features li.disabled { opacity: 0.4; }

.btn-plan {
  display: block;
  text-align: center;
  padding: 0.85rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  background: rgba(255,255,255,0.1);
  color: white;
  border: 1px solid rgba(255,255,255,0.2);
  transition: var(--transition);
}

.btn-plan:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

.popular-btn {
  background: var(--saffron) !important;
  color: white !important;
  border-color: var(--saffron) !important;
  box-shadow: 0 8px 24px rgba(255,153,51,0.4);
}

.popular-btn:hover {
  background: #e8851a !important;
  box-shadow: 0 12px 32px rgba(255,153,51,0.5);
}

.pricing-note {
  text-align: center;
  margin-top: 2.5rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
}

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--warm-white); }

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

.testi-card {
  background: white;
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
}

.testi-card::before {
  content: '"';
  position: absolute;
  top: 1rem; right: 1.5rem;
  font-size: 5rem;
  font-family: var(--font-display);
  color: var(--saffron-pale);
  line-height: 1;
  font-weight: 800;
}

.testi-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(255,153,51,0.25);
}

.testi-stars {
  color: var(--saffron);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.testi-text {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  font-style: italic;
}

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

.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--saffron), var(--sky));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.testi-author strong {
  display: block;
  font-size: 0.92rem;
  color: var(--dark);
  font-weight: 700;
}

.testi-author span {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* ===== CONTACT ===== */
.contact { background: var(--cream); }

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}

.contact-info .section-tag { margin-bottom: 1rem; }

.contact-info h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.contact-info > p {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  font-size: 1.4rem;
  width: 44px; height: 44px;
  background: var(--saffron-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item strong {
  display: block;
  font-size: 0.82rem;
  color: var(--text-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

.contact-item span {
  font-size: 0.95rem;
  color: var(--dark);
  font-weight: 500;
}

/* Contact Form */
.contact-form {
  background: white;
  border-radius: var(--radius);
  padding: 2.5rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.contact-form h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1.8rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.2rem;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--dark);
  background: var(--cream);
  transition: var(--transition);
  outline: none;
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--saffron);
  background: white;
  box-shadow: 0 0 0 3px rgba(255,153,51,0.12);
}

.btn-submit {
  width: 100%;
  padding: 1rem;
  background: var(--saffron);
  color: white;
  border: none;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 6px 24px rgba(255,153,51,0.4);
  margin-bottom: 0.8rem;
}

.btn-submit:hover {
  background: #e8851a;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255,153,51,0.5);
}

.form-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-light);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
  position: relative;
  z-index: 1;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem 3rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand .nav-logo { margin-bottom: 1rem; }
.footer-brand .logo-text { color: white; }

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

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

.footer-social a:hover {
  background: var(--saffron);
  transform: translateY(-3px);
}

.footer-links h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.2rem;
}

.footer-links a {
  display: block;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.65rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--saffron);
  transform: translateX(4px);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

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

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  transition: var(--transition);
}

.footer-legal a:hover { color: var(--saffron); }

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

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

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-16px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; text-align: center; padding-top: 100px; }
  .hero-subtitle { margin: 0 auto 2rem; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { display: none; }
  .contact-wrap { grid-template-columns: 1fr; }
  .footer-container { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { 
    display: none; 
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: white;
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
  }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .trust-container { justify-content: center; }
  .form-row { grid-template-columns: 1fr; }
  .footer-container { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .pricing-card.popular { transform: scale(1); }
  .pricing-card.popular:hover { transform: translateY(-6px); }
}

@media (max-width: 480px) {
  .section-container { padding: 70px 1.2rem; }
  .hero { padding: 100px 1.2rem 60px; }
  .contact-form { padding: 1.5rem; }
  .hero-title { font-size: 2.4rem; }
}