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

:root {
  --rose: #f43f5e;
  --rose-light: #fb7185;
  --rose-dark: #e11d48;
  --rose-glow: rgba(244, 63, 94, 0.25);
  --slate: #0f172a;
  --slate-light: #1e293b;
  --slate-lighter: #334155;
  --slate-border: #1e293b;
  --white: #f8fafc;
  --white-dim: #cbd5e1;
  --white-muted: #94a3b8;
  --gradient-rose: linear-gradient(135deg, #f43f5e, #e11d48);
  --gradient-slate: linear-gradient(135deg, #0f172a, #1e293b);
  --gradient-hero: linear-gradient(160deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.4);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.5);
  --shadow-rose: 0 4px 24px rgba(244, 63, 94, 0.3);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  --max-width: 1200px;
}

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

body {
  font-family: var(--font);
  background: var(--slate);
  color: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a:hover {
  color: var(--rose-light);
}

img {
  max-width: 100%;
  height: auto;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(244, 63, 94, 0.08);
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(15, 23, 42, 0.96);
  border-bottom-color: rgba(244, 63, 94, 0.15);
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
}

.logo:hover {
  color: var(--white);
}

.logo-icon {
  width: 34px;
  height: 34px;
  background: var(--slate);
  border: 2px solid var(--rose);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 900;
  color: var(--rose);
}

.logo span {
  color: var(--rose);
}

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

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white-dim);
  position: relative;
  padding: 4px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--rose);
  transition: var(--transition);
  border-radius: 2px;
}

.nav-link:hover {
  color: var(--white);
}

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

.nav-cta {
  background: var(--gradient-rose);
  color: var(--white);
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: 0 2px 12px rgba(244, 63, 94, 0.3);
}

.nav-cta:hover {
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(244, 63, 94, 0.4);
}

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

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

/* ===== SECTIONS ===== */
section {
  padding: 100px 0;
}

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

.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--rose);
  border-radius: 2px;
}

.section-title {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 20px;
  color: var(--white);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--white-muted);
  max-width: 640px;
  line-height: 1.7;
}

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

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
  padding-top: 68px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 63, 94, 0.08), transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 63, 94, 0.05), transparent 70%);
  pointer-events: none;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(244, 63, 94, 0.1);
  border: 1px solid rgba(244, 63, 94, 0.25);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--rose-light);
  margin-bottom: 24px;
}

.hero-badge-dot {
  width: 7px;
  height: 7px;
  background: var(--rose);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

.hero h1 {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 24px;
  background: linear-gradient(135deg, var(--white) 30%, var(--rose-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.15rem;
  color: var(--white-dim);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 540px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  font-family: var(--font);
  line-height: 1.2;
}

.btn-primary {
  background: var(--gradient-rose);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(244, 63, 94, 0.35);
}

.btn-primary:hover {
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(244, 63, 94, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--slate-lighter);
}

.btn-outline:hover {
  color: var(--white);
  border-color: var(--rose);
  background: rgba(244, 63, 94, 0.08);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.85rem;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual-inner {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1;
  position: relative;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(244, 63, 94, 0.15);
}

.hero-shape-1 {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  animation: spin-slow 30s linear infinite;
}

.hero-shape-2 {
  width: 75%;
  height: 75%;
  top: 12.5%;
  left: 12.5%;
  border-color: rgba(244, 63, 94, 0.1);
  animation: spin-slow 20s linear infinite reverse;
}

.hero-shape-3 {
  width: 50%;
  height: 50%;
  top: 25%;
  left: 25%;
  border-color: rgba(244, 63, 94, 0.2);
  animation: spin-slow 15s linear infinite;
}

.hero-icon-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
  background: var(--gradient-rose);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--white);
  box-shadow: 0 0 60px rgba(244, 63, 94, 0.3);
}

@keyframes spin-slow {
  to { transform: rotate(360deg); }
}

/* ===== SERVICES ===== */
.services {
  background: var(--slate);
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.service-card {
  background: var(--slate-light);
  border: 1px solid var(--slate-border);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

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

.service-card:hover {
  border-color: rgba(244, 63, 94, 0.25);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

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

.service-icon {
  width: 52px;
  height: 52px;
  background: rgba(244, 63, 94, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.service-card p {
  font-size: 0.92rem;
  color: var(--white-muted);
  line-height: 1.7;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.service-tag {
  padding: 4px 12px;
  background: rgba(244, 63, 94, 0.08);
  border: 1px solid rgba(244, 63, 94, 0.15);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--rose-light);
}

/* ===== PROCESS ===== */
.process {
  background: var(--slate-light);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 30px;
  margin-top: 56px;
  position: relative;
}

.process-step {
  text-align: center;
  position: relative;
}

.process-number {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  background: var(--gradient-rose);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  position: relative;
  z-index: 1;
  box-shadow: 0 0 30px rgba(244, 63, 94, 0.2);
}

.process h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}

.process p {
  font-size: 0.9rem;
  color: var(--white-muted);
  line-height: 1.7;
  max-width: 300px;
  margin: 0 auto;
}

/* ===== STATS ===== */
.stats {
  background: var(--slate);
  position: relative;
}

.stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(244, 63, 94, 0.04), transparent 70%);
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 48px;
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
  padding: 40px 20px;
  background: var(--slate-light);
  border: 1px solid var(--slate-border);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.stat-item:hover {
  border-color: rgba(244, 63, 94, 0.2);
  transform: translateY(-2px);
}

.stat-number {
  font-size: 3rem;
  font-weight: 900;
  background: var(--gradient-rose);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -1px;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--white-muted);
  font-weight: 500;
}

/* ===== PRICING ===== */
.pricing {
  background: var(--slate-light);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}

.pricing-card {
  background: var(--slate);
  border: 1px solid var(--slate-border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: var(--transition);
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(244, 63, 94, 0.2);
}

.pricing-card.featured {
  border-color: var(--rose);
  background: var(--slate-light);
  box-shadow: 0 0 40px rgba(244, 63, 94, 0.08);
}

.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 20px;
  background: var(--gradient-rose);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.pricing-name {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--rose);
  margin-bottom: 16px;
}

.pricing-amount {
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: -2px;
  margin-bottom: 4px;
}

.pricing-amount small {
  font-size: 1rem;
  font-weight: 500;
  color: var(--white-muted);
  letter-spacing: 0;
}

.pricing-desc {
  font-size: 0.9rem;
  color: var(--white-muted);
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--slate-border);
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--white-dim);
}

.pricing-feature::before {
  content: 'âœ“';
  color: var(--rose);
  font-weight: 700;
  font-size: 0.85rem;
}

.pricing-card .btn {
  width: 100%;
  justify-content: center;
}

/* ===== FAQ ===== */
.faq {
  background: var(--slate);
}

.faq-list {
  max-width: 800px;
  margin: 56px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--slate-light);
  border: 1px solid var(--slate-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active {
  border-color: rgba(244, 63, 94, 0.25);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font);
  text-align: left;
  cursor: pointer;
  transition: var(--transition);
  line-height: 1.5;
}

.faq-question:hover {
  color: var(--rose-light);
}

.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  font-size: 1.1rem;
  color: var(--rose);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 400px;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 0.92rem;
  color: var(--white-muted);
  line-height: 1.8;
}

/* ===== CTA ===== */
.cta {
  background: var(--slate-light);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 63, 94, 0.06), transparent 70%);
  pointer-events: none;
}

.cta h2 {
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
  position: relative;
}

.cta p {
  font-size: 1.1rem;
  color: var(--white-muted);
  max-width: 560px;
  margin: 0 auto 36px;
  position: relative;
}

.cta .btn {
  position: relative;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--slate);
  border-top: 1px solid var(--slate-border);
  padding: 60px 0 32px;
}

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

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--white-muted);
  max-width: 300px;
  line-height: 1.7;
}

.footer h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white-dim);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--white-muted);
}

.footer-links a:hover {
  color: var(--rose);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--white-muted);
  margin-bottom: 14px;
}

.footer-contact-icon {
  width: 36px;
  height: 36px;
  background: rgba(244, 63, 94, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid var(--slate-border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: var(--white-muted);
}

.footer-bottom a {
  color: var(--white-muted);
}

.footer-bottom a:hover {
  color: var(--rose);
}

/* ===== ABOUT PAGE ===== */
.page-header {
  padding: 140px 0 80px;
  background: var(--gradient-hero);
  text-align: center;
  position: relative;
}

.page-header h1 {
  font-size: 3.2rem;
  font-weight: 900;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--white) 30%, var(--rose-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-header p {
  font-size: 1.1rem;
  color: var(--white-dim);
  max-width: 600px;
  margin: 0 auto;
}

.content-section {
  padding: 80px 0;
}

.content-section:nth-child(even) {
  background: var(--slate-light);
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.content-text h2 {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.8px;
  margin-bottom: 20px;
}

.content-text p {
  font-size: 1rem;
  color: var(--white-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.content-text p:last-child {
  margin-bottom: 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.value-card {
  text-align: center;
  padding: 36px 24px;
  background: var(--slate);
  border: 1px solid var(--slate-border);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.value-card:hover {
  border-color: rgba(244, 63, 94, 0.2);
  transform: translateY(-3px);
}

.value-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.value-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.value-card p {
  font-size: 0.9rem;
  color: var(--white-muted);
  line-height: 1.7;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 56px;
}

.team-member {
  text-align: center;
}

.team-avatar {
  width: 100px;
  height: 100px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--gradient-rose);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
}

.team-member h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.team-member p {
  font-size: 0.85rem;
  color: var(--white-muted);
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  margin-top: 56px;
}

.contact-info h2 {
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}

.contact-info > p {
  font-size: 1rem;
  color: var(--white-muted);
  margin-bottom: 32px;
  line-height: 1.8;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-method-icon {
  width: 48px;
  height: 48px;
  background: rgba(244, 63, 94, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-method h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.contact-method p, .contact-method a {
  font-size: 0.9rem;
  color: var(--white-muted);
}

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

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

.form-control {
  width: 100%;
  padding: 14px 16px;
  background: var(--slate);
  border: 1px solid var(--slate-border);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: 0.95rem;
  font-family: var(--font);
  transition: var(--transition);
  outline: none;
}

.form-control:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(244, 63, 94, 0.15);
}

.form-control::placeholder {
  color: var(--slate-lighter);
}

textarea.form-control {
  min-height: 140px;
  resize: vertical;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero p { margin: 0 auto 36px; }
  .hero-actions { justify-content: center; }
  .hero-visual { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 56px auto 0; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .content-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-list { display: none; }
  .mobile-toggle { display: flex; }
  .nav-list.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    padding: 24px;
    background: var(--slate);
    border-bottom: 1px solid var(--slate-border);
    gap: 16px;
    align-items: stretch;
  }
  .nav-list.open .nav-cta { text-align: center; }
  .hero h1 { font-size: 2.4rem; }
  .section-title { font-size: 2rem; }
  .services-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  section { padding: 60px 0; }
  .page-header h1 { font-size: 2.2rem; }
  .cta h2 { font-size: 2rem; }
  .pricing-card.featured { transform: none; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.8rem; }
  .section-title { font-size: 1.6rem; }
  .stats-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
  .pricing-card { padding: 28px 20px; }
}
