:root {
  --primary: #0e0c0a;
  --primary-light: #171412;
  --accent: #c47a3a;
  --accent-hover: #e8a96a;
  --cream: #f2ebe3;
  --warm-gray: #2a2520;
  --text: #f2ebe3;
  --text-light: #b8a99a;
  --white: #171412;
  --glass-bg: rgba(14, 12, 10, 0.92);
  --glass-border: rgba(242, 235, 227, 0.08);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 16px 64px rgba(0, 0, 0, 0.45);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: 'Outfit', sans-serif;
  color: var(--text);
  background: var(--primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'DM Serif Display', serif;
  line-height: 1.15;
  font-weight: 400;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── HEADER ── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}

.header.scrolled {
  background: var(--glass-bg);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.logo {
  font-family: 'DM Serif Display', serif;
  font-size: 1.35rem;
  color: var(--cream);
  letter-spacing: -0.02em;
  transition: var(--transition);
}

.header.scrolled .logo {
  color: var(--cream);
}

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

.main-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-close-btn {
  display: none;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--cream);
  opacity: 0.7;
  transition: var(--transition);
  position: relative;
}

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

.nav-links a:hover { opacity: 1; }
.nav-links a:hover::after { width: 100%; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #0e0c0a;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 12px 28px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196, 122, 58, 0.35);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--cream);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 12px 28px;
  border-radius: 50px;
  border: 2px solid var(--cream);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-secondary:hover {
  background: var(--cream);
  color: var(--primary);
  transform: translateY(-2px);
}

.btn-large {
  padding: 18px 44px;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  margin: 6px 0;
  transition: var(--transition);
}

/* ── HERO (SmartSites-style) ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 140px 0 80px;
  overflow: hidden;
  background: #0e0c0a;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(196, 122, 58, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

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

.hero-content {
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}

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

.hero h1 {
  font-size: clamp(2.8rem, 5.5vw, 4.2rem);
  color: var(--cream);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s 0.35s forwards;
  line-height: 1.08;
}

.hero h1 em {
  font-style: italic;
  color: var(--accent);
  position: relative;
}

.hero-sub {
  font-size: 1.25rem;
  color: var(--text-light);
  max-width: 680px;
  margin-bottom: 36px;
  font-weight: 300;
  line-height: 1.7;
  opacity: 0;
  animation: fadeUp 0.8s 0.5s forwards;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 0.8s 0.65s forwards;
}

/* Trust badges row */
.hero-trust {
  opacity: 0;
  animation: fadeUp 0.8s 0.8s forwards;
}

.hero-trust-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
  margin-bottom: 16px;
}

.hero-trust-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--primary-light);
  border: 1px solid var(--warm-gray);
  border-radius: 10px;
  padding: 14px 16px;
  transition: var(--transition);
  width: 100%;
}

.trust-badge:hover {
  box-shadow: var(--shadow-sm);
  border-color: var(--accent);
}

.trust-badge-icon {
  width: 36px;
  height: 36px;
  background: var(--primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-badge-icon svg {
  width: 18px;
  height: 18px;
}

.trust-badge-text {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--cream);
  line-height: 1.3;
}

.trust-badge-text span {
  display: block;
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--text-light);
}

/* Hero visual - browser mockup */
.hero-visual {
  position: relative;
  opacity: 0;
  animation: fadeUp 0.8s 0.5s forwards;
  margin-top: -40px;
}

.browser-mockup {
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(242,235,227,0.06);
  overflow: hidden;
  position: relative;
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  background: #1e1a16;
  border-bottom: 1px solid var(--warm-gray);
}

.browser-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #3a322a;
}

.browser-dot:nth-child(1) { background: #FF5F57; }
.browser-dot:nth-child(2) { background: #FFBD2E; }
.browser-dot:nth-child(3) { background: #28CA41; }

.browser-url {
  flex: 1;
  margin-left: 12px;
  background: #1e1a16;
  border-radius: 6px;
  padding: 6px 14px;
  font-size: 0.72rem;
  color: var(--text-light);
  font-weight: 400;
  border: 1px solid rgba(242,235,227,0.06);
}

.browser-content {
  position: relative;
  aspect-ratio: 16/13;
  overflow: hidden;
}

.browser-content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

/* Floating stats card */
.hero-float-card {
  position: absolute;
  bottom: 40px;
  left: -32px;
  background: var(--primary-light);
  border-radius: var(--radius);
  padding: 18px 22px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 14px;
  animation: float 4s ease-in-out infinite;
  z-index: 2;
}

.hero-float-card .hfc-icon {
  width: 48px;
  height: 48px;
  background: var(--accent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--cream);
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
}

.hero-float-card .hfc-text strong {
  display: block;
  font-size: 0.88rem;
  color: var(--cream);
}

.hero-float-card .hfc-text span {
  font-size: 0.75rem;
  color: var(--text-light);
}

.hero-float-card-2 {
  position: absolute;
  top: 60px;
  right: -20px;
  background: var(--primary);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float 4s ease-in-out 1s infinite;
  z-index: 2;
}

.hero-float-card-2 .hfc-icon {
  width: 42px;
  height: 42px;
  background: rgba(196,122,58,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-float-card-2 .hfc-text strong {
  display: block;
  font-size: 0.85rem;
  color: var(--cream);
}

.hero-float-card-2 .hfc-text span {
  font-size: 0.72rem;
  color: rgba(242,235,227,0.5);
}

/* ── LOGOS / SOCIAL PROOF BAR ── */
.logos-section {
  padding: 60px 0;
  background: var(--primary-light);
  border-top: 1px solid var(--warm-gray);
  border-bottom: 1px solid var(--warm-gray);
}

.logos-header {
  text-align: center;
  margin-bottom: 32px;
}

.logos-header p {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
}

.logos-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.logo-stat {
  text-align: center;
  padding: 0 20px;
}

.logo-stat .stat-number {
  font-family: 'DM Serif Display', serif;
  font-size: 2.4rem;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 4px;
}

.logo-stat .stat-number span {
  color: var(--accent);
}

.logo-stat .stat-label {
  font-size: 0.82rem;
  color: var(--text-light);
  font-weight: 400;
}

/* ── PAIN POINTS ── */
.pain-section {
  padding: 100px 0;
  position: relative;
}

.pain-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--warm-gray), transparent);
}

.pain-header {
  text-align: center;
  margin-bottom: 56px;
}

.pain-header h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--cream);
  margin-bottom: 8px;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto 48px;
}

.pain-card-v2 {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  transition: var(--transition);
  cursor: default;
}

.pain-card-v2:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.pain-card-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.pain-card-v2:hover .pain-card-bg {
  transform: scale(1.06);
}

.pain-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14,12,10,0.92) 0%, rgba(14,12,10,0.5) 50%, rgba(14,12,10,0.2) 100%);
  z-index: 1;
}

.pain-card-content {
  position: relative;
  z-index: 2;
  padding: 32px 28px;
  width: 100%;
}

.pain-card-icon {
  width: 52px;
  height: 52px;
  background: rgba(196, 122, 58, 0.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(196, 122, 58, 0.2);
}

.pain-card-content h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.3rem;
  color: var(--cream);
  margin-bottom: 8px;
  line-height: 1.2;
}

.pain-card-content p {
  font-size: 0.92rem;
  font-weight: 300;
  color: rgba(242, 235, 227, 0.7);
  line-height: 1.6;
}

.pain-reassurance {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-light);
  font-weight: 300;
  font-style: italic;
}

.pain-reassurance strong {
  color: var(--accent);
  font-weight: 600;
  font-style: normal;
}

/* ── SERVICES ── */
.services-section {
  padding: 100px 0;
  background: var(--primary);
  position: relative;
  overflow: hidden;
}

.services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 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.03'%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;
}

.services-header {
  text-align: center;
  margin-bottom: 64px;
  position: relative;
  z-index: 1;
}

.services-header h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--cream);
  margin-bottom: 16px;
}

.services-header p {
  font-size: 1.1rem;
  color: rgba(242, 235, 227, 0.6);
  font-weight: 300;
  max-width: 560px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.service-card {
  background: rgba(242, 235, 227, 0.06);
  border: 1px solid rgba(242, 235, 227, 0.1);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transition: var(--transition);
}

.service-card:hover {
  background: rgba(242, 235, 227, 0.1);
  transform: translateY(-6px);
  border-color: rgba(196, 122, 58, 0.3);
}

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

.service-icon {
  width: 56px;
  height: 56px;
  background: rgba(196, 122, 58, 0.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 1.5rem;
}

.service-card h3 {
  font-size: 1.2rem;
  color: var(--cream);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.9rem;
  color: rgba(242, 235, 227, 0.55);
  line-height: 1.6;
  font-weight: 300;
}

/* ── HOW IT WORKS ── */
.how-section {
  padding: 100px 0;
  position: relative;
}

.how-header {
  text-align: center;
  margin-bottom: 72px;
}

.how-header h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--cream);
  margin-bottom: 12px;
}

.how-header p {
  font-size: 1.1rem;
  color: var(--text-light);
  font-weight: 300;
}

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

.how-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--primary), var(--accent));
  opacity: 0.2;
}

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

.step-number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-family: 'DM Serif Display', serif;
  font-size: 1.8rem;
  color: var(--accent);
  position: relative;
  z-index: 1;
  transition: var(--transition);
}

.step-card:hover .step-number {
  background: var(--accent);
  color: #0e0c0a;
  transform: scale(1.1);
}

.step-card h3 {
  font-size: 1.15rem;
  color: var(--cream);
  margin-bottom: 10px;
}

.step-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 300;
  line-height: 1.6;
  max-width: 240px;
  margin: 0 auto;
}

/* ── WHY CHOOSE US ── */
.why-section {
  padding: 100px 0;
  background: var(--primary-light);
  position: relative;
}

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

.why-header h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--cream);
  margin-bottom: 12px;
}

.why-header p {
  font-size: 1.1rem;
  color: var(--text-light);
  font-weight: 300;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.why-card {
  background: var(--primary-light);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--warm-gray);
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}

.why-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #c47a3a, #e8a96a);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.3rem;
}

.why-card h3 {
  font-size: 1.05rem;
  color: var(--cream);
  margin-bottom: 10px;
  line-height: 1.3;
}

.why-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 300;
  line-height: 1.6;
}

/* ── ABOUT CATHERINE ── */
.about-section {
  padding: 100px 0;
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
  background: linear-gradient(145deg, #c47a3a, #8a5528);
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: normal;
}

.about-image-wrapper::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 30%;
  background: linear-gradient(to top, rgba(14, 12, 10, 0.3), transparent);
  pointer-events: none;
}

.about-accent-box {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 120px;
  height: 120px;
  border: 3px solid var(--accent);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.about-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--cream);
  margin-bottom: 28px;
}

.about-content h2 em {
  font-style: italic;
  color: var(--accent);
}

.about-content p {
  font-size: 1.05rem;
  color: var(--text-light);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-content p strong {
  color: #f2ebe3;
  font-weight: 600;
}

.about-cta {
  margin-top: 36px;
}

/* ── CONTACT ── */
.contact-section {
  padding: 100px 0;
  background: var(--primary);
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(196, 122, 58, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.contact-info h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--cream);
  margin-bottom: 20px;
}

.contact-info p {
  font-size: 1.1rem;
  color: rgba(242, 235, 227, 0.6);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 32px;
}

.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--accent);
  font-size: 1.05rem;
  font-weight: 500;
  transition: var(--transition);
}

.contact-email:hover { color: var(--accent-hover); }

.contact-email svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.contact-form-wrapper {
  background: rgba(242, 235, 227, 0.06);
  border: 1px solid rgba(242, 235, 227, 0.1);
  border-radius: var(--radius-lg);
  padding: 40px;
}

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

.contact-form-wrapper label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(242, 235, 227, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.contact-form-wrapper input,
.contact-form-wrapper textarea {
  width: 100%;
  background: rgba(242, 235, 227, 0.06);
  border: 1px solid rgba(242, 235, 227, 0.15);
  border-radius: 10px;
  padding: 14px 18px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  color: var(--cream);
  transition: var(--transition);
  outline: none;
}

.contact-form-wrapper input::placeholder,
.contact-form-wrapper textarea::placeholder {
  color: rgba(242, 235, 227, 0.3);
}

.contact-form-wrapper input:focus,
.contact-form-wrapper textarea:focus {
  border-color: var(--accent);
  background: rgba(242, 235, 227, 0.1);
}

.contact-form-wrapper textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form-wrapper .btn-primary {
  width: 100%;
  justify-content: center;
  padding: 16px 32px;
  font-size: 1rem;
}

/* ── FOOTER ── */
.footer {
  padding: 60px 0 32px;
  background: #0e0c0a;
  color: rgba(242, 235, 227, 0.5);
}

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

.footer-brand .logo {
  color: var(--cream);
  font-size: 1.3rem;
  margin-bottom: 12px;
  display: block;
}

.footer-brand p {
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.6;
}

.footer-col h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(242, 235, 227, 0.3);
  margin-bottom: 20px;
}

.footer-col ul { list-style: none; }

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

.footer-col ul li a {
  font-size: 0.9rem;
  font-weight: 300;
  transition: var(--transition);
}

.footer-col ul li a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid rgba(242, 235, 227, 0.08);
  padding-top: 24px;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 300;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

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

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .how-steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .how-steps::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-float-card { left: -16px; }
  .hero-float-card-2 { right: -10px; }
}

@media (max-width: 768px) {
  .mobile-toggle { display: block; }

  .main-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #0e0c0a;
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
  }

  .main-nav.open { display: flex; }

  .main-nav .nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .main-nav .nav-links a {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--cream);
    opacity: 1;
  }

  .main-nav .nav-cta {
    display: inline-flex;
  }

  .nav-close-btn {
    display: block;
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--cream);
    cursor: pointer;
  }

  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-sub { margin: 0 auto 36px; }
  .hero-ctas { justify-content: center; }
  .hero-visual { order: -1; }
  .hero-float-card { bottom: -16px; left: 50%; transform: translateX(-50%); }
  .hero-float-card-2 { top: 20px; right: 10px; }
  .hero-trust { text-align: center; }
  .hero-trust-badges { grid-template-columns: 1fr; gap: 12px; }

  .logos-grid { gap: 24px; }

  .pain-grid { grid-template-columns: 1fr; max-width: 480px; }
  .pain-card-v2 { min-height: 280px; }

  .services-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }

  .how-steps { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; }

  .why-grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }

  .about-grid { grid-template-columns: 1fr; text-align: center; }
  .about-image-wrapper { max-width: 400px; margin: 0 auto; }

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

  .footer-grid { grid-template-columns: 1fr; text-align: center; }

}

@media (max-width: 480px) {
  .hero { padding: 120px 0 60px; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-float-card-2 { display: none; }
}
