/* ============================================================
   0066 — GREEN/BAMBOO FRESH — Customer Service Theme
   ============================================================ */

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

:root {
  /* === Green/Bamboo Palette === */
  --green-50:  #f0fdf4;
  --green-100: #dcfce7;
  --green-200: #bbf7d0;
  --green-300: #86efac;
  --green-400: #4ade80;
  --green-500: #22c55e;
  --green-600: #16a34a;
  --green-700: #15803d;
  --green-800: #166534;
  --green-900: #14532d;

  --bamboo-50:  #f7fee7;
  --bamboo-100: #ecfccb;
  --bamboo-200: #d9f99d;
  --bamboo-300: #bef264;
  --bamboo-400: #a3e635;
  --bamboo-500: #84cc16;

  --white:     #ffffff;
  --gray-50:   #f8fafc;
  --gray-100:  #f1f5f9;
  --gray-200:  #e2e8f0;
  --gray-300:  #cbd5e1;
  --gray-400:  #94a3b8;
  --gray-500:  #64748b;
  --gray-600:  #475569;
  --gray-700:  #334155;
  --gray-800:  #1e293b;
  --gray-900:  #0f172a;

  --primary:       var(--green-600);
  --primary-hover: var(--green-700);
  --primary-light: var(--green-100);
  --primary-dark:  var(--green-800);
  --accent:        var(--bamboo-400);
  --accent-hover:  var(--bamboo-500);

  --bg-body:       var(--green-50);
  --bg-card:       var(--white);
  --bg-section:    var(--gray-50);
  --text-primary:  var(--gray-900);
  --text-secondary:var(--gray-600);
  --text-muted:    var(--gray-400);
  --border:        rgba(22, 163, 74, 0.12);
  --border-hover:  rgba(22, 163, 74, 0.30);
  --shadow-sm:     0 1px 2px rgba(0,0,0,0.05);
  --shadow-md:     0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
  --shadow-lg:     0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.04);
  --shadow-xl:     0 20px 25px -5px rgba(0,0,0,0.10), 0 8px 10px -6px rgba(0,0,0,0.06);
  --shadow-green:  0 8px 30px rgba(22, 163, 74, 0.15);

  --radius-sm:     8px;
  --radius-md:     12px;
  --radius-lg:     20px;
  --radius-xl:     28px;

  --transition:    0.3s 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: 'Noto Sans SC', 'Inter', system-ui, -apple-system, sans-serif;
  background-color: var(--bg-body);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; font-family: inherit; }
input, textarea { font-family: inherit; }

/* === TYPOGRAPHY === */
.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.25;
  letter-spacing: -0.02em;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-500);
  font-weight: 400;
  max-width: 640px;
  margin: 0 auto;
}
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 9999px;
  font-size: 0.825rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 0.75rem;
}

/* === NAVBAR === */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0.875rem 0;
  transition: all var(--transition);
  background: rgba(240, 253, 244, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  padding: 0.625rem 0;
}
.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary-dark);
  letter-spacing: -0.01em;
}
.nav-logo i { font-size: 1.5rem; color: var(--primary); }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--gray-700);
  position: relative;
  transition: color var(--transition);
  padding: 0.25rem 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 1px;
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--primary); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--primary); font-weight: 600; }
.nav-links a.active::after { width: 100%; }
.nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.5rem;
  background: var(--primary);
  color: #fff;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition);
  box-shadow: 0 4px 14px rgba(22, 163, 74, 0.28);
}
.nav-btn:hover { background: var(--primary-hover); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(22, 163, 74, 0.35); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; z-index: 1001; }
.nav-toggle span { display: block; width: 26px; height: 2.5px; background: var(--gray-700); border-radius: 2px; transition: all var(--transition); }
.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); }

/* === MOBILE NAV === */
@media (max-width: 768px) {
  .nav-links { position: fixed; top: 0; right: -100%; width: 280px; height: 100vh; background: #fff; flex-direction: column; justify-content: center; gap: 2rem; transition: right var(--transition); box-shadow: var(--shadow-xl); }
  .nav-links.open { right: 0; }
  .nav-toggle { display: flex; }
  .section-title { font-size: 1.85rem; }
}

/* === HERO === */
.hero-section {
  padding: 8rem 1.5rem 5rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(170deg, #f0fdf4 0%, #dcfce7 40%, #ecfdf5 70%, #f8fafc 100%);
  min-height: 85vh;
  display: flex;
  align-items: center;
}
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 15% 30%, rgba(22,163,74,0.06) 0%, transparent 50%),
                    radial-gradient(circle at 85% 60%, rgba(132,204,22,0.08) 0%, transparent 50%),
                    radial-gradient(circle at 50% 80%, rgba(22,163,74,0.04) 0%, transparent 40%);
  pointer-events: none;
}
.hero-bg-dot {
  position: absolute;
  border-radius: 50%;
  background: rgba(22,163,74,0.07);
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-content h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.18;
  color: var(--gray-900);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}
.hero-content h1 .highlight {
  background: linear-gradient(135deg, var(--green-600), var(--green-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-content p {
  font-size: 1.1rem;
  color: var(--gray-600);
  margin-bottom: 2rem;
  max-width: 520px;
  line-height: 1.75;
}
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: var(--primary);
  color: #fff;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 1rem;
  transition: all var(--transition);
  box-shadow: 0 6px 24px rgba(22, 163, 74, 0.3);
}
.btn-primary:hover { background: var(--primary-hover); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(22, 163, 74, 0.4); }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border: 2px solid var(--primary);
  color: var(--primary);
  border-radius: 9999px;
  font-weight: 600;
  font-size: 1rem;
  transition: all var(--transition);
  background: transparent;
}
.btn-outline:hover { background: var(--primary); color: #fff; }
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-visual img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-green);
}
.hero-floating-card {
  position: absolute;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 0.875rem 1.25rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-800);
}
.hero-floating-card .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--green-500); animation: pulse-dot 2s infinite; }
@keyframes pulse-dot { 0%,100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.5); } 50% { box-shadow: 0 0 0 12px rgba(34,197,94,0); } }
@media (max-width: 768px) {
  .hero-section { padding: 7rem 1.25rem 3rem; min-height: auto; }
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; text-align: center; }
  .hero-content p { margin: 0 auto 2rem; }
  .hero-buttons { justify-content: center; }
  .hero-visual { order: -1; }
}

/* === FEATURES === */
.features-section {
  padding: 5rem 1.5rem;
  background: var(--white);
}
.features-section .section-header { text-align: center; margin-bottom: 3.5rem; }
.features-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.feature-card {
  background: var(--bg-body);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  transition: all 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(--green-500), var(--bamboo-400));
  opacity: 0;
  transition: opacity var(--transition);
}
.feature-card:hover { border-color: var(--border-hover); box-shadow: var(--shadow-green); transform: translateY(-4px); }
.feature-card:hover::before { opacity: 1; }
.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
  background: linear-gradient(135deg, var(--green-100), var(--bamboo-100));
  color: var(--primary);
}
.feature-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.625rem; color: var(--gray-900); }
.feature-card p { font-size: 0.9375rem; color: var(--gray-500); line-height: 1.65; }
@media (max-width: 768px) { .features-grid { grid-template-columns: 1fr; } }

/* === STATS === */
.stats-section {
  padding: 4.5rem 1.5rem;
  background: linear-gradient(135deg, var(--green-50), var(--bamboo-50), var(--green-50));
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 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='%2316a34a' fill-opacity='0.04'%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");
  pointer-events: none;
}
.stats-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 1;
}
.stat-item { text-align: center; }
.stat-number { font-size: 2.8rem; font-weight: 900; color: var(--primary); line-height: 1.1; }
.stat-suffix { font-size: 1.5rem; font-weight: 700; color: var(--primary); }
.stat-label { font-size: 0.9375rem; color: var(--gray-500); margin-top: 0.375rem; font-weight: 500; }
@media (max-width: 768px) { .stats-grid { grid-template-columns: repeat(2,1fr); gap: 2.5rem; } }

/* === TESTIMONIALS === */
.testimonials-section {
  padding: 5rem 1.5rem;
  background: var(--white);
}
.testimonials-section .section-header { text-align: center; margin-bottom: 3.5rem; }
.testimonials-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.testimonial-card {
  background: var(--bg-body);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
}
.testimonial-card:hover { border-color: var(--border-hover); box-shadow: var(--shadow-md); }
.testimonial-stars { color: #f59e0b; font-size: 0.875rem; margin-bottom: 1rem; display: flex; gap: 2px; }
.testimonial-text { font-size: 0.9375rem; color: var(--gray-600); line-height: 1.7; margin-bottom: 1.25rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-author img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 2px solid var(--green-200); }
.testimonial-author h4 { font-size: 0.9375rem; font-weight: 600; color: var(--gray-900); }
.testimonial-author span { font-size: 0.8rem; color: var(--gray-400); }
@media (max-width: 768px) { .testimonials-grid { grid-template-columns: 1fr; } }

/* === FAQ === */
.faq-section {
  padding: 5rem 1.5rem;
  background: var(--bg-body);
}
.faq-section .section-header { text-align: center; margin-bottom: 3rem; }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: all var(--transition);
}
.faq-item:hover { border-color: var(--border-hover); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: none;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-800);
  text-align: left;
  gap: 1rem;
}
.faq-question i { color: var(--primary); transition: transform var(--transition); font-size: 0.875rem; }
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-item.active .faq-answer { max-height: 300px; }
.faq-answer p { padding: 0 1.5rem 1.25rem; font-size: 0.9375rem; color: var(--gray-500); line-height: 1.7; }

/* === CTA === */
.cta-section {
  padding: 4.5rem 1.5rem;
  background: linear-gradient(135deg, var(--green-600), var(--green-700));
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.08) 0%, transparent 60%),
              radial-gradient(circle at 70% 30%, rgba(163,230,53,0.1) 0%, transparent 50%);
  pointer-events: none;
}
.cta-inner { max-width: 700px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.cta-inner h2 { font-size: 2.2rem; font-weight: 800; color: #fff; margin-bottom: 1rem; }
.cta-inner p { font-size: 1.05rem; color: rgba(255,255,255,0.85); margin-bottom: 2rem; line-height: 1.65; }
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.95rem 2.5rem;
  background: #fff;
  color: var(--green-700);
  border-radius: 9999px;
  font-weight: 700;
  font-size: 1rem;
  transition: all var(--transition);
  box-shadow: 0 8px 28px rgba(0,0,0,0.18);
}
.btn-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(0,0,0,0.25); }

/* === FOOTER === */
.site-footer {
  background: var(--gray-900);
  color: var(--gray-400);
  padding: 3rem 1.5rem 1.5rem;
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto 2rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
}
.footer-col h4 { color: #fff; font-size: 1rem; font-weight: 700; margin-bottom: 1.25rem; }
.footer-col p, .footer-col a { font-size: 0.9rem; color: var(--gray-400); line-height: 1.8; transition: color var(--transition); display: block; }
.footer-col a:hover { color: var(--green-400); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  font-size: 0.85rem;
  color: var(--gray-500);
}
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr; gap: 2rem; } }

/* === BACK TO TOP === */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 6px 20px rgba(22,163,74,0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition);
  z-index: 999;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--primary-hover); transform: translateY(-3px); }

/* === ABOUT PAGE === */
.about-hero { padding: 7rem 1.5rem 4rem; background: linear-gradient(170deg, #f0fdf4 0%, #dcfce7 50%, #f8fafc 100%); text-align: center; }
.about-hero h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; color: var(--gray-900); }
.about-hero p { color: var(--gray-500); margin-top: 0.75rem; font-size: 1.05rem; }
.about-story { max-width: 900px; margin: 0 auto; padding: 4rem 1.5rem; }
.about-story h2 { font-size: 1.75rem; font-weight: 800; margin-bottom: 1rem; color: var(--gray-900); }
.about-story p { color: var(--gray-600); line-height: 1.85; margin-bottom: 1.25rem; font-size: 1rem; }
.about-values { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem 4rem; display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.about-value-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; text-align: center; transition: all var(--transition); }
.about-value-card:hover { border-color: var(--border-hover); box-shadow: var(--shadow-green); transform: translateY(-3px); }
.about-value-card i { font-size: 2rem; color: var(--primary); margin-bottom: 1rem; }
.about-value-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 0.5rem; }
.about-value-card p { font-size: 0.9rem; color: var(--gray-500); line-height: 1.6; }
@media (max-width:768px) { .about-values { grid-template-columns: 1fr; } }

/* === DOWNLOAD PAGE === */
.download-hero { padding: 7rem 1.5rem 3rem; background: linear-gradient(170deg, #f0fdf4 0%, #dcfce7 50%, #f8fafc 100%); text-align: center; }
.download-hero h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; color: var(--gray-900); }
.download-hero p { color: var(--gray-500); margin-top: 0.75rem; font-size: 1.05rem; }
.download-cards { max-width: 1000px; margin: 0 auto; padding: 0 1.5rem 2rem; display: grid; grid-template-columns: repeat(2,1fr); gap: 2rem; }
.download-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all var(--transition);
}
.download-card:hover { border-color: var(--primary); box-shadow: var(--shadow-green); transform: translateY(-4px); }
.download-card.featured { border-color: var(--primary); background: linear-gradient(180deg, #f0fdf4 0%, #fff 40%); }
.download-card i { font-size: 3rem; color: var(--primary); margin-bottom: 1rem; }
.download-card h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 0.5rem; }
.download-card p { font-size: 0.875rem; color: var(--gray-500); margin-bottom: 1.5rem; }
.download-install { max-width: 800px; margin: 0 auto; padding: 2rem 1.5rem 4rem; }
.download-install h2 { font-size: 1.75rem; font-weight: 800; margin-bottom: 1.5rem; text-align: center; }
.download-steps { display: grid; gap: 1.25rem; }
.download-step { display: flex; gap: 1.25rem; align-items: flex-start; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 1.25rem; }
.download-step .step-num { width: 40px; height: 40px; border-radius: 50%; background: var(--primary); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.1rem; flex-shrink: 0; }
.download-step h4 { font-size: 1rem; font-weight: 700; margin-bottom: 0.25rem; }
.download-step p { font-size: 0.875rem; color: var(--gray-500); }
@media (max-width:768px) { .download-cards { grid-template-columns: 1fr; } }

/* === CONTACT PAGE === */
.contact-hero { padding: 7rem 1.5rem 3rem; background: linear-gradient(170deg, #f0fdf4 0%, #dcfce7 50%, #f8fafc 100%); text-align: center; }
.contact-hero h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; color: var(--gray-900); }
.contact-hero p { color: var(--gray-500); margin-top: 0.75rem; font-size: 1.05rem; }
.contact-content { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem 4rem; display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.contact-form-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 2.5rem; }
.contact-form-card h2 { font-size: 1.5rem; font-weight: 700; margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.875rem; font-weight: 600; color: var(--gray-700); margin-bottom: 0.4rem; }
.form-group input, .form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  transition: all var(--transition);
  background: var(--gray-50);
  color: var(--gray-800);
}
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(22,163,74,0.1); background: #fff; }
.form-group textarea { min-height: 130px; resize: vertical; }
.form-success { display: none; padding: 1rem; background: var(--green-100); border: 1px solid var(--green-300); border-radius: var(--radius-sm); color: var(--green-800); font-weight: 500; margin-top: 1rem; }
.form-success.show { display: block; }
.contact-info-card { background: var(--bg-body); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 2.5rem; height: fit-content; }
.contact-info-card h2 { font-size: 1.5rem; font-weight: 700; margin-bottom: 1.5rem; }
.contact-info-item { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.5rem; }
.contact-info-item i { width: 40px; height: 40px; border-radius: 50%; background: var(--primary-light); color: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.contact-info-item h4 { font-size: 0.9375rem; font-weight: 600; color: var(--gray-900); margin-bottom: 0.15rem; }
.contact-info-item span { font-size: 0.875rem; color: var(--gray-500); }
@media (max-width:768px) { .contact-content { grid-template-columns: 1fr; } }

/* === SCROLL REVEAL === */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
