/* ===== PitchStudio — Creative Upwork Cover Letter Tips ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --warm-light: #fffbeb;
  --coral: #e11d48;
  --coral-dark: #be123c;
  --coral-light: #fb7185;
  --violet: #8b5cf6;
  --violet-dark: #7c3aed;
  --violet-light: #a78bfa;
  --cream: #fef9c3;
  --amber: #f59e0b;
  --charcoal: #1f2937;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --radius: 1rem;
  --radius-sm: 0.5rem;
  --radius-xl: 1.5rem;
  --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--warm-light);
  color: var(--charcoal);
  line-height: 1.7;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== Navigation ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 251, 235, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(225, 29, 72, 0.08);
  transition: var(--transition);
}

.nav.scrolled { box-shadow: var(--shadow); }

.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--charcoal);
  text-decoration: none;
  letter-spacing: -0.5px;
}

.nav-logo span { background: linear-gradient(135deg, var(--coral), var(--violet)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.nav-logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--coral), var(--violet));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 900;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--gray-600);
  font-size: 0.925rem;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--coral), var(--violet));
  transition: var(--transition);
}

.nav-links a:hover { color: var(--charcoal); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--coral); }
.nav-links a.active::after { width: 100%; }

.nav-cta {
  background: linear-gradient(135deg, var(--coral), var(--violet));
  color: #fff !important;
  padding: 0.5rem 1.25rem;
  border-radius: 999px;
  font-weight: 600 !important;
  transition: var(--transition);
}

.nav-cta::after { display: none !important; }
.nav-cta:hover { transform: scale(1.05); box-shadow: 0 4px 14px rgba(225, 29, 72, 0.35); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }

.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== Hero ===== */
.hero {
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-bg-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.12;
}

.hero-bg-circle:nth-child(1) {
  width: 400px;
  height: 400px;
  background: var(--coral);
  top: -100px;
  right: -100px;
  animation: float 8s ease-in-out infinite;
}

.hero-bg-circle:nth-child(2) {
  width: 300px;
  height: 300px;
  background: var(--violet);
  bottom: -50px;
  left: -80px;
  animation: float 10s ease-in-out infinite reverse;
}

.hero-bg-circle:nth-child(3) {
  width: 200px;
  height: 200px;
  background: var(--amber);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: float 12s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -30px) scale(1.05); }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(139, 92, 246, 0.1);
  color: var(--violet);
  padding: 0.35rem 1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(139, 92, 246, 0.15);
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -1.5px;
  margin-bottom: 1.25rem;
}

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--coral), var(--violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.15rem;
  color: var(--gray-600);
  max-width: 520px;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.btn-primary {
  background: linear-gradient(135deg, var(--coral), var(--violet));
  color: #fff;
  box-shadow: 0 4px 14px rgba(225, 29, 72, 0.3);
}

.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(225, 29, 72, 0.4); }

.btn-secondary {
  background: rgba(139, 92, 246, 0.08);
  color: var(--violet-dark);
  border: 1.5px solid rgba(139, 92, 246, 0.2);
}

.btn-secondary:hover { background: rgba(139, 92, 246, 0.15); transform: translateY(-2px); }

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-xl);
  max-width: 420px;
  width: 100%;
  position: relative;
  border: 1px solid rgba(225, 29, 72, 0.06);
}

.hero-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.hero-card-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--coral);
}

.hero-card-dot:nth-child(2) { background: var(--amber); }
.hero-card-dot:nth-child(3) { background: #22c55e; }

.hero-card-dots { display: flex; gap: 6px; }

.hero-card h3 { font-size: 1.1rem; margin-bottom: 0.75rem; color: var(--gray-700); }

.hero-card-line {
  height: 8px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--coral), var(--violet), var(--cream));
  margin-bottom: 1rem;
  width: 80%;
}

.hero-card-line:nth-child(3) { width: 60%; }
.hero-card-line:nth-child(4) { width: 70%; }

.hero-card-tag {
  display: inline-flex;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(139, 92, 246, 0.1);
  color: var(--violet);
  margin-top: 0.5rem;
}

.hero-card-floating {
  position: absolute;
  background: #fff;
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(225, 29, 72, 0.06);
  animation: float 6s ease-in-out infinite;
}

.hero-card-floating:nth-child(2) { top: -30px; right: -30px; animation-delay: -2s; }
.hero-card-floating:nth-child(3) { bottom: -20px; left: -30px; animation-delay: -4s; }

.floating-icon { font-size: 1.5rem; margin-bottom: 0.25rem; }
.floating-label { font-size: 0.75rem; font-weight: 600; color: var(--gray-500); }

/* ===== Section Shared ===== */
.section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(139, 92, 246, 0.1);
  color: var(--violet);
  padding: 0.3rem 1rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-header h2 .highlight {
  background: linear-gradient(135deg, var(--coral), var(--violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header p {
  color: var(--gray-500);
  font-size: 1.1rem;
  line-height: 1.7;
}

/* ===== How It Works ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.step-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  border: 1px solid rgba(225, 29, 72, 0.04);
}

.step-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin: 0 auto 1.25rem;
  background: linear-gradient(135deg, var(--coral), var(--violet));
}

.step-card h3 { font-size: 1.25rem; margin-bottom: 0.75rem; }
.step-card p { color: var(--gray-500); font-size: 0.95rem; line-height: 1.7; }

.step-arrow {
  position: absolute;
  right: -1.25rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--violet-light);
  font-size: 1.5rem;
  font-weight: 300;
}

.steps-grid .step-card:last-child .step-arrow { display: none; }

/* ===== Features ===== */
.features-bg {
  background: linear-gradient(135deg, rgba(225, 29, 72, 0.03), rgba(139, 92, 246, 0.05));
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.feature-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(225, 29, 72, 0.04);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--coral), var(--violet));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.feature-card:hover::before { transform: scaleX(1); }
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.feature-icon.coral { background: rgba(225, 29, 72, 0.1); color: var(--coral); }
.feature-icon.violet { background: rgba(139, 92, 246, 0.1); color: var(--violet); }
.feature-icon.amber { background: rgba(245, 158, 11, 0.1); color: var(--amber); }
.feature-icon.green { background: rgba(34, 197, 94, 0.1); color: #22c55e; }

.feature-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.feature-card p { color: var(--gray-500); font-size: 0.9rem; line-height: 1.7; }

/* ===== Stats ===== */
.stats {
  background: linear-gradient(135deg, var(--coral), var(--violet));
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%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");
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.stat-item h3 {
  font-size: 2.75rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -1px;
}

.stat-item p {
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
  margin-top: 0.25rem;
}

/* ===== Testimonials ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(225, 29, 72, 0.04);
  transition: var(--transition);
}

.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.testimonial-stars {
  color: var(--amber);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.testimonial-card blockquote {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 1.25rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
}

.testimonial-author h4 { font-size: 0.9rem; }
.testimonial-author p { font-size: 0.8rem; color: var(--gray-400); }

/* ===== Pricing ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: start;
}

.pricing-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(225, 29, 72, 0.04);
  transition: var(--transition);
  position: relative;
}

.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.pricing-card.featured {
  border: 2px solid var(--violet);
  transform: scale(1.03);
  box-shadow: var(--shadow-xl);
}

.pricing-card.featured:hover { transform: scale(1.03) translateY(-4px); }

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--violet), var(--coral));
  color: #fff;
  padding: 0.3rem 1.25rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.pricing-card h3 { font-size: 1.1rem; color: var(--gray-700); margin-bottom: 1rem; }

.pricing-price {
  font-size: 2.75rem;
  font-weight: 900;
  letter-spacing: -1.5px;
  margin-bottom: 0.25rem;
}

.pricing-price span { font-size: 1rem; font-weight: 500; color: var(--gray-400); }

.pricing-desc { color: var(--gray-500); font-size: 0.9rem; margin-bottom: 1.5rem; }

.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0;
  font-size: 0.9rem;
  color: var(--gray-600);
  border-bottom: 1px solid var(--gray-100);
}

.pricing-features li:last-child { border-bottom: none; }

.pricing-features li::before {
  content: '\2713';
  color: #22c55e;
  font-weight: 700;
  font-size: 0.8rem;
}

.pricing-card .btn { width: 100%; justify-content: center; }

/* ===== FAQ ===== */
.faq-bg {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.03), rgba(225, 29, 72, 0.03));
}

.faq-list {
  max-width: 780px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(225, 29, 72, 0.04);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover { box-shadow: var(--shadow-lg); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal);
  text-align: left;
  gap: 1rem;
  transition: var(--transition);
}

.faq-question:hover { color: var(--coral); }

.faq-icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
  border-radius: 50%;
  background: rgba(225, 29, 72, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--coral);
  transition: var(--transition);
}

.faq-item.active .faq-icon { transform: rotate(45deg); background: var(--coral); color: #fff; }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
  max-height: 1200px;
  padding: 0 1.5rem 1.25rem;
}

.faq-answer p {
  color: var(--gray-500);
  font-size: 0.925rem;
  line-height: 1.8;
}

/* ===== CTA ===== */
.cta {
  background: linear-gradient(135deg, var(--coral), var(--violet));
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%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");
}

.cta-content { position: relative; z-index: 1; }

.cta h2 {
  font-size: 2.75rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -1px;
  margin-bottom: 1rem;
}

.cta p {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.cta .btn {
  background: #fff;
  color: var(--coral);
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}

.cta .btn:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,0,0,0.2); }

/* ===== Keywords ===== */
.keywords {
  padding: 60px 0;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
}

.keywords-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.keyword-tag {
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 500;
  background: #fff;
  color: var(--gray-600);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.keyword-tag:hover { border-color: var(--violet-light); color: var(--violet); background: rgba(139, 92, 246, 0.04); }

.keywords-label {
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
  color: var(--gray-400);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== Footer ===== */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.75rem;
  letter-spacing: -0.5px;
}

.footer-brand h3 span { background: linear-gradient(135deg, var(--coral), var(--violet)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 320px;
}

.footer h4 {
  font-size: 0.85rem;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.25rem;
}

.footer-links { list-style: none; }

.footer-links li { margin-bottom: 0.6rem; }

.footer-links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.88rem;
  transition: var(--transition);
}

.footer-links a:hover { color: var(--violet-light); }

.footer-sisters {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 2rem;
  margin-top: 2rem;
}

.footer-sisters h4 {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  text-align: center;
}

.sister-sites {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.sister-sites a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.85rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.sister-sites a:hover { color: var(--violet-light); }

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}

/* ===== About & Contact Pages ===== */
.page-header {
  padding: 140px 0 60px;
  text-align: center;
  background: linear-gradient(135deg, rgba(225, 29, 72, 0.04), rgba(139, 92, 246, 0.06));
}

.page-header h1 {
  font-size: 2.75rem;
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 1rem;
}

.page-header h1 .highlight {
  background: linear-gradient(135deg, var(--coral), var(--violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-header p {
  color: var(--gray-500);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.about-content, .contact-content {
  padding: 80px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text h2 {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.about-text p {
  color: var(--gray-500);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.about-value {
  background: #fff;
  padding: 1.25rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  text-align: center;
}

.about-value h4 { font-size: 0.95rem; margin-bottom: 0.25rem; }
.about-value p { font-size: 0.85rem; color: var(--gray-400); margin-bottom: 0; }

.about-visual {
  position: relative;
}

.about-visual-card {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(225, 29, 72, 0.06);
}

.about-visual-card h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.about-visual-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.about-visual-stat {
  text-align: center;
  padding: 1rem;
  background: var(--warm-light);
  border-radius: var(--radius-sm);
}

.about-visual-stat h4 {
  font-size: 1.75rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--coral), var(--violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-visual-stat p { font-size: 0.8rem; color: var(--gray-400); }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info h2 {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.contact-info > p {
  color: var(--gray-500);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  background: rgba(139, 92, 246, 0.08);
  color: var(--violet);
  flex-shrink: 0;
}

.contact-detail h4 { font-size: 0.95rem; margin-bottom: 0.15rem; }
.contact-detail p { font-size: 0.88rem; color: var(--gray-500); }

.contact-form {
  background: #fff;
  padding: 2.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(225, 29, 72, 0.04);
}

.form-group { margin-bottom: 1.25rem; }

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.925rem;
  transition: var(--transition);
  background: var(--warm-light);
  color: var(--charcoal);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--violet);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.form-group textarea { resize: vertical; min-height: 120px; }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .hero h1 { font-size: 2.75rem; }
  .hero-grid { gap: 3rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(255, 251, 235, 0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 2rem;
    gap: 1.25rem;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    border-bottom: 1px solid rgba(225, 29, 72, 0.08);
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }

  .hero { padding: 120px 0 60px; min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 3rem; }
  .hero h1 { font-size: 2.25rem; }
  .hero p { margin: 0 auto 2rem; }
  .hero-actions { justify-content: center; }
  .hero-card-floating { display: none; }

  .section { padding: 60px 0; }
  .section-header h2 { font-size: 1.75rem; }

  .steps-grid { grid-template-columns: 1fr; }
  .step-arrow { display: none; }

  .features-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .pricing-card.featured { transform: none; }
  .pricing-card.featured:hover { transform: translateY(-4px); }

  .about-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-values { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }

  .cta h2 { font-size: 2rem; }
  .page-header h1 { font-size: 2rem; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.85rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .stat-item h3 { font-size: 2rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .sister-sites { flex-direction: column; align-items: center; }
}

/* ===== Utilities ===== */
.text-gradient { background: linear-gradient(135deg, var(--coral), var(--violet)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.text-center { text-align: center; }
