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

:root {
  --bg: #F6F3EE;
  --bg-warm: #EDE8E0;
  --bg-white: #FFFFFF;
  --bg-dark: #1A1D2A;
  --text-primary: #1A2030;
  --text-secondary: #4A5368;
  --text-light: #8A93A8;
  --text-muted: #A8B0C0;
  --green: #1E56A0;
  --green-dark: #163D78;
  --green-rich: #1A4C90;
  --green-light: #E0EAF6;
  --green-glow: rgba(30, 86, 160, 0.15);
  --amber: #F5B800;
  --amber-bright: #FFD23F;
  --amber-light: #FFF6D6;
  --amber-glow: rgba(245, 184, 0, 0.12);
  --coral: #F43F5E;
  --coral-light: #FFE4E9;
  --coral-glow: rgba(244, 63, 94, 0.12);
  --slate: #06B6D4;
  --slate-light: #DFFBFF;
  --sage: #6B8E68;
  --sage-light: #E5EDE3;
  --lavender: #7C6BA0;
  --lavender-light: #ECE7F5;
  --border: #DDD6CC;
  --border-light: #EBE6DE;
  --shadow-xs: 0 1px 3px rgba(26, 32, 48, 0.04);
  --shadow-sm: 0 2px 12px rgba(26, 32, 48, 0.06);
  --shadow-md: 0 8px 30px rgba(26, 32, 48, 0.08);
  --shadow-lg: 0 16px 50px rgba(26, 32, 48, 0.10);
  --shadow-glow: 0 0 80px rgba(30, 86, 160, 0.08);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 100px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

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

/* Grain overlay */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.4s var(--ease-out);
}

img {
  max-width: 100%;
  display: block;
}

::selection {
  background: var(--green);
  color: white;
}

/* ===== Typography ===== */
h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h4 {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  line-height: 1.3;
}

h1 { font-size: clamp(3rem, 6vw, 5rem); }
h2 { font-size: clamp(2.2rem, 4.5vw, 3.5rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); font-weight: 600; }

p {
  color: var(--text-secondary);
  max-width: 580px;
  font-weight: 350;
}

.section-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--green);
  margin-bottom: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--amber-bright));
  opacity: 0.6;
}

/* ===== Layout ===== */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

section {
  padding: 120px 0;
  position: relative;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: var(--radius-pill);
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 550;
  cursor: pointer;
  border: none;
  transition: all 0.5s var(--ease-out);
  position: relative;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--green);
  color: white;
  box-shadow: 0 4px 16px rgba(30, 86, 160, 0.2);
}

.btn-primary:hover {
  background: #2968B8;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 0 0 6px rgba(255, 210, 63, 0.15), 0 0 40px rgba(255, 210, 63, 0.2), 0 0 80px rgba(255, 210, 63, 0.1);
}

.btn-primary:active {
  transform: translateY(-1px) scale(0.98);
}

.btn-secondary {
  background: var(--bg);
  color: var(--text-primary);
  border: 1.5px solid var(--border);
}

.btn-secondary:hover {
  border-color: var(--green);
  color: var(--green);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 0 0 6px rgba(255, 210, 63, 0.12), 0 0 40px rgba(255, 210, 63, 0.15), 0 0 80px rgba(255, 210, 63, 0.08);
}

.btn-secondary:active {
  transform: translateY(-1px) scale(0.98);
}

/* ===== Navigation ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 24px 0;
  transition: all 0.5s var(--ease-out);
}

.navbar.scrolled {
  background: #F6F3EE;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: 0 1px 8px rgba(26, 32, 48, 0.06);
  padding: 14px 0;
  box-shadow: 0 1px 0 var(--border-light);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
}

.nav-logo .logo-img {
  height: 38px;
  width: auto;
  object-fit: contain;
  display: block;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 450;
  color: var(--text-secondary);
  position: relative;
  letter-spacing: 0.01em;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--green);
  transition: width 0.4s var(--ease-out);
}

.nav-links a:hover {
  color: var(--text-primary);
}

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

.nav-links .btn {
  padding: 10px 28px;
  font-size: 0.85rem;
}

.nav-links .btn::after {
  display: none;
}

.nav-links .btn-primary {
  color: white;
}

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

.nav-toggle span {
  width: 22px;
  height: 1.5px;
  background: var(--text-primary);
  transition: all 0.3s var(--ease-out);
  border-radius: 1px;
}

/* ===== Hero ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 100px;
  overflow: hidden;
}

/* Animated ambient glow behind hero */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 30% 30%, rgba(30, 86, 160, 0.08) 0%, transparent 55%),
              radial-gradient(ellipse at 70% 40%, rgba(245, 184, 0, 0.06) 0%, transparent 55%),
              radial-gradient(ellipse at 50% 20%, rgba(244, 63, 94, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
  animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
  0% { opacity: 1; }
  100% { opacity: 0.6; }
}

/* Floating dots */
.hero-dots {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: calc(100vh + 1400px);
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, #000 0, #000 78%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 0, #000 78%, transparent 100%);
}

.hero-dot-wrap {
  will-change: transform;
}

.hero-dot {
  border-radius: 50%;
  animation: heroDotFloat ease-in-out infinite alternate;
  filter: blur(0.5px);
  transition: opacity 0.8s ease;
  will-change: opacity;
}

.hero-dot:nth-child(3n) {
  animation-name: heroDotFloat2;
}

.hero-dot:nth-child(5n) {
  animation-name: heroDotFloat3;
}

@keyframes heroDotFloat {
  0% { transform: translateY(0) translateX(0) scale(1); opacity: 0.3; }
  50% { opacity: 0.9; }
  100% { transform: translateY(-40px) translateX(15px) scale(1.4); opacity: 0.2; }
}

@keyframes heroDotFloat2 {
  0% { transform: translateY(0) translateX(0) scale(1); opacity: 0.4; }
  50% { opacity: 1; }
  100% { transform: translateY(-25px) translateX(-20px) scale(1.2); opacity: 0.25; }
}

@keyframes heroDotFloat3 {
  0% { transform: translateY(0) translateX(0) scale(0.8); opacity: 0.35; }
  50% { opacity: 0.85; }
  100% { transform: translateY(-50px) translateX(10px) scale(1.5); opacity: 0.15; }
}

.hero-content {
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero h1 {
  margin-bottom: 28px;
  color: var(--text-primary);
}

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

.hero h1 em::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 130%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(255, 210, 63, 0.3) 0%, rgba(255, 210, 63, 0.1) 40%, transparent 70%);
  border-radius: 50%;
  z-index: -1;
  pointer-events: none;
}

.hero p {
  font-size: 1.15rem;
  margin: 0 auto 44px;
  max-width: 540px;
  line-height: 1.75;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== Social Proof Strip ===== */
.trust-strip {
  padding: 48px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  background: transparent;
  position: relative;
  z-index: 2;
}

.trust-strip-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.proof-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  transition: transform 0.4s var(--ease-spring);
}

.proof-item:nth-child(1) .proof-number { color: var(--green); }
.proof-item:nth-child(3) .proof-number { color: var(--amber); }
.proof-item:nth-child(5) .proof-number { color: var(--coral); }

.proof-item:hover .proof-number {
  transform: scale(1.1);
}

.proof-label {
  font-size: 0.88rem;
  color: var(--text-light);
  max-width: 180px;
  line-height: 1.4;
  font-weight: 400;
}

.proof-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
}

/* ===== Services ===== */
.services {
  background: transparent;
}

.services .container {
  position: relative;
  z-index: 2;
}

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

.services .section-header p {
  margin: 20px auto 0;
}

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

.service-card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-xl);
  padding: 44px 36px;
  transition: all 0.5s var(--ease-out);
  border: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
}

/* Ambient card glow on hover */
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s var(--ease-out);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

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

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  border-color: transparent;
}

.service-card:nth-child(1):hover {
  background: linear-gradient(165deg, rgba(224, 234, 246, 0.6) 0%, rgba(255, 255, 255, 0.95) 40%);
}
.service-card:nth-child(2):hover {
  background: linear-gradient(165deg, rgba(245, 235, 217, 0.6) 0%, rgba(255, 255, 255, 0.95) 40%);
}
.service-card:nth-child(3):hover {
  background: linear-gradient(165deg, rgba(224, 237, 241, 0.6) 0%, rgba(255, 255, 255, 0.95) 40%);
}
.service-card:nth-child(4):hover {
  background: linear-gradient(165deg, rgba(255, 228, 233, 0.6) 0%, rgba(255, 255, 255, 0.95) 40%);
}
.service-card:nth-child(5):hover {
  background: linear-gradient(165deg, rgba(229, 237, 227, 0.6) 0%, rgba(255, 255, 255, 0.95) 40%);
}
.service-card:nth-child(6):hover {
  background: linear-gradient(165deg, rgba(236, 231, 245, 0.6) 0%, rgba(255, 255, 255, 0.95) 40%);
}

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}

.service-icon svg {
  width: 28px;
  height: 28px;
  transition: transform 0.4s var(--ease-spring);
}

.service-card:hover .service-icon svg {
  transform: scale(1.15) rotate(-5deg);
}

.service-card:nth-child(1) .service-icon {
  background: var(--green-light);
}
.service-card:nth-child(1) .service-icon svg { color: var(--green); }
.service-card:nth-child(1)::before { background: var(--green); }

.service-card:nth-child(2) .service-icon {
  background: var(--amber-light);
}
.service-card:nth-child(2) .service-icon svg { color: var(--amber); }
.service-card:nth-child(2)::before { background: var(--amber); }

.service-card:nth-child(3) .service-icon {
  background: var(--slate-light);
}
.service-card:nth-child(3) .service-icon svg { color: var(--slate); }
.service-card:nth-child(3)::before { background: var(--slate); }

.service-card:nth-child(4) .service-icon {
  background: var(--coral-light);
}
.service-card:nth-child(4) .service-icon svg { color: var(--coral); }
.service-card:nth-child(4)::before { background: var(--coral); }

.service-card:nth-child(5) .service-icon {
  background: var(--sage-light);
}
.service-card:nth-child(5) .service-icon svg { color: var(--sage); }
.service-card:nth-child(5)::before { background: var(--sage); }

.service-card:nth-child(6) .service-icon {
  background: var(--lavender-light);
}
.service-card:nth-child(6) .service-icon svg { color: var(--lavender); }
.service-card:nth-child(6)::before { background: var(--lavender); }

.service-card h3 {
  margin-bottom: 14px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
}

.service-card p {
  font-size: 0.92rem;
  line-height: 1.75;
}

.service-details {
  list-style: none;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-details li {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 400;
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}

.service-details li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  opacity: 0.4;
}

.service-card:nth-child(2) .service-details li::before {
  background: var(--amber);
}

.service-card:nth-child(3) .service-details li::before {
  background: var(--slate);
}

.service-card:nth-child(4) .service-details li::before {
  background: var(--coral);
}

.service-card:nth-child(5) .service-details li::before {
  background: var(--sage);
}

.service-card:nth-child(6) .service-details li::before {
  background: var(--lavender);
}

/* ===== About ===== */
.about {
  background: var(--bg-white);
  overflow: hidden;
}

/* Subtle organic shape divider */
.about::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--bg);
  clip-path: ellipse(60% 100% at 50% 0%);
}

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

.about-visual {
  position: relative;
}

.founder-note {
  position: relative;
  background: linear-gradient(155deg, #FDFBF3 0%, #FFFFFF 55%, #FDF8E8 100%);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(245, 184, 0, 0.18);
  padding: 56px 48px 48px 52px;
  box-shadow:
    0 1px 2px rgba(26, 32, 48, 0.04),
    0 24px 60px -20px rgba(245, 184, 0, 0.18),
    0 12px 36px -12px rgba(26, 32, 48, 0.12);
  overflow: hidden;
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
}

.founder-note:hover {
  transform: translateY(-4px);
  box-shadow:
    0 1px 2px rgba(26, 32, 48, 0.04),
    0 32px 80px -20px rgba(245, 184, 0, 0.26),
    0 18px 48px -12px rgba(26, 32, 48, 0.16);
}

/* Amber vertical ribbon on the left */
.founder-note::before {
  content: '';
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  width: 3px;
  background: linear-gradient(to bottom, transparent, var(--amber) 20%, var(--amber-bright) 50%, var(--amber) 80%, transparent);
  opacity: 0.7;
}

/* Subtle dotted pattern watermark */
.founder-note::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: radial-gradient(circle at 1px 1px, var(--amber) 1px, transparent 0);
  background-size: 22px 22px;
  pointer-events: none;
}

/* Warm amber corner glow */
.founder-note-corner {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(245, 184, 0, 0.22) 0%, transparent 70%);
  pointer-events: none;
}

.founder-note-label {
  position: relative;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2.8px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 28px;
}

.founder-note-quote {
  position: relative;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.25;
  color: var(--text-primary);
  font-style: italic;
  margin-bottom: 22px;
  letter-spacing: -0.01em;
}

.founder-note-body {
  position: relative;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 90%;
}

.founder-note-divider {
  position: relative;
  width: 48px;
  height: 1.5px;
  background: linear-gradient(to right, var(--amber), transparent);
  margin-bottom: 20px;
  border-radius: 2px;
}

.founder-note-signature {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.founder-note-names {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-style: italic;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1;
}

.founder-note-role {
  font-size: 0.72rem;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 600;
}

.about-content h2 {
  margin-bottom: 24px;
}

.about-content > p {
  margin-bottom: 40px;
  line-height: 1.8;
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.value-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 16px;
  border-radius: var(--radius-md);
  transition: all 0.4s var(--ease-out);
}

.value-item:hover {
  background: var(--bg);
}

.value-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s var(--ease-spring);
}

.value-item:hover .value-icon {
  transform: scale(1.1) rotate(-3deg);
}

.value-icon svg {
  width: 20px;
  height: 20px;
}

.value-item:nth-child(1) .value-icon { background: var(--green-light); }
.value-item:nth-child(1) .value-icon svg { color: var(--green); }
.value-item:nth-child(2) .value-icon { background: var(--amber-light); }
.value-item:nth-child(2) .value-icon svg { color: var(--amber); }
.value-item:nth-child(3) .value-icon { background: var(--coral-light); }
.value-item:nth-child(3) .value-icon svg { color: var(--coral); }

.value-item h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.value-item p {
  font-size: 0.88rem;
  line-height: 1.65;
}

/* ===== How It Works ===== */
.how-it-works {
  background: var(--bg);
}

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

.how-it-works .section-header p {
  margin: 20px auto 0;
}

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

.step {
  text-align: center;
  position: relative;
  z-index: 1;
  padding-top: 8px;
}

.step::before {
  content: '';
  position: absolute;
  top: -12px;
  left: -20px;
  right: -20px;
  bottom: -24px;
  border-radius: 32px;
  z-index: -1;
  pointer-events: none;
  opacity: 0.65;
}

.step:nth-child(1)::before {
  background: radial-gradient(ellipse 110% 70% at 50% 22%, var(--green-light) 0%, transparent 75%);
}
.step:nth-child(2)::before {
  background: radial-gradient(ellipse 110% 70% at 50% 22%, var(--amber-light) 0%, transparent 75%);
}
.step:nth-child(3)::before {
  background: radial-gradient(ellipse 110% 70% at 50% 22%, var(--coral-light) 0%, transparent 75%);
}

.step-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5.5rem;
  font-weight: 400;
  font-style: italic;
  line-height: 1;
  letter-spacing: -0.02em;
  display: inline-block;
  margin: 0 auto 28px;
  position: relative;
  z-index: 2;
  transition: transform 0.5s var(--ease-out);
}

.step:hover .step-number {
  transform: translateY(-3px);
}

.step:nth-child(1) .step-number { color: var(--green); }
.step:nth-child(2) .step-number { color: var(--amber); }
.step:nth-child(3) .step-number { color: var(--coral); }

.step h3 {
  margin-bottom: 14px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
}

.step p {
  font-size: 0.92rem;
  margin: 0 auto;
  line-height: 1.75;
}

/* ===== Benefits Slider ===== */
.benefits {
  background: var(--bg-white);
  overflow: hidden;
}

.benefits::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--bg);
  clip-path: ellipse(60% 100% at 50% 0%);
}

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

.benefits .section-header p {
  margin: 20px auto 0;
}

.benefits-slider {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 10%, #000 90%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, #000 10%, #000 90%, transparent 100%);
}

.benefits-track {
  display: flex;
  width: max-content;
  padding: 12px 0;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y;
  will-change: transform;
}

.benefits-slider.is-grabbing .benefits-track {
  cursor: grabbing;
}

.benefit-slide {
  flex: 0 0 400px;
  margin-right: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 44px 36px 40px;
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.benefit-slide:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.benefit-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.benefit-icon svg {
  width: 30px;
  height: 30px;
}

.benefit-slide[data-accent="green"] .benefit-icon { background: var(--green-light); color: var(--green); }
.benefit-slide[data-accent="amber"] .benefit-icon { background: var(--amber-light); color: var(--amber); }
.benefit-slide[data-accent="slate"] .benefit-icon { background: var(--slate-light); color: var(--slate); }
.benefit-slide[data-accent="coral"] .benefit-icon { background: var(--coral-light); color: var(--coral); }
.benefit-slide[data-accent="sage"]  .benefit-icon { background: var(--sage-light);  color: var(--sage); }
.benefit-slide[data-accent="lavender"] .benefit-icon { background: var(--lavender-light); color: var(--lavender); }

.benefit-service {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 22px;
}

.benefit-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 500;
  line-height: 1.45;
  color: var(--text-primary);
  font-style: italic;
  max-width: 580px;
  position: relative;
}

.benefit-quote::before {
  content: '\201C';
  position: absolute;
  top: -42px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: 4.5rem;
  line-height: 1;
  color: var(--border);
  opacity: 0.55;
  font-style: normal;
}


/* ===== Contact Section ===== */
.contact {
  background: var(--bg-white);
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--bg);
  clip-path: ellipse(60% 100% at 50% 0%);
}

/* When benefits precedes contact, no divider needed */
.benefits + .contact::before {
  display: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info h2 {
  margin-bottom: 20px;
}

.contact-info > p {
  margin-bottom: 36px;
  line-height: 1.8;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.contact-detail {
  display: flex;
  gap: 18px;
  align-items: center;
}

.contact-detail-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: var(--radius-sm);
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s var(--ease-out);
}

.contact-detail:hover .contact-detail-icon {
  background: var(--green);
}

.contact-detail:hover .contact-detail-icon svg {
  color: white;
}

.contact-detail-icon svg {
  width: 20px;
  height: 20px;
  color: var(--green);
  transition: color 0.4s var(--ease-out);
}

.contact-detail p {
  font-size: 0.92rem;
}

.contact-detail strong {
  color: var(--text-primary);
  display: block;
  margin-bottom: 2px;
  font-weight: 600;
}

.contact-form {
  background: var(--bg);
  border-radius: var(--radius-xl);
  padding: 44px;
  border: 1px solid var(--border-light);
}

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 550;
  margin-bottom: 8px;
  color: var(--text-primary);
  letter-spacing: 0.01em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 15px 20px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Outfit', sans-serif;
  font-size: 0.92rem;
  font-weight: 350;
  color: var(--text-primary);
  background: var(--bg-white);
  transition: all 0.4s var(--ease-out);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px var(--green-glow);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234A5D4A' fill='none' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 44px;
}

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

.contact-form .btn {
  width: 100%;
  justify-content: center;
  padding: 17px;
  font-size: 0.95rem;
}

/* ===== Book a Call ===== */
.book-call {
  background: var(--bg-dark);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Ambient glow in CTA */
.book-call::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 500px;
  background: radial-gradient(ellipse at 40% 50%, rgba(30, 86, 160, 0.25) 0%, transparent 50%),
              radial-gradient(ellipse at 60% 50%, rgba(245, 184, 0, 0.15) 0%, transparent 50%);
  pointer-events: none;
  animation: ctaGlow 6s ease-in-out infinite alternate;
}

@keyframes ctaGlow {
  0% { opacity: 0.8; transform: translate(-50%, -50%) scale(1); }
  100% { opacity: 1; transform: translate(-50%, -50%) scale(1.05); }
}

.book-call .section-label {
  color: var(--text-muted);
}

.book-call .section-label::before {
  background: var(--text-muted);
}

.book-call h2 {
  color: white;
  margin-bottom: 20px;
}

.book-call p {
  color: rgba(255, 255, 255, 0.55);
  margin: 0 auto 44px;
  max-width: 480px;
}

.book-call .btn-primary {
  background: white;
  color: var(--bg-dark);
  box-shadow: 0 4px 24px rgba(255, 255, 255, 0.1);
}

.book-call .btn-primary:hover {
  background: var(--bg);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.15);
}

.calendar-embed {
  max-width: 900px;
  margin: 48px auto 0;
  background: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: 0;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
}

.calendly-inline-widget {
  width: 100%;
}

/* ===== Footer ===== */
.footer {
  background: var(--bg-warm);
  color: var(--text-primary);
  padding: 72px 0 32px;
  border-top: 1px solid var(--border-light);
}

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

.footer-brand .nav-logo {
  color: var(--text-primary);
  margin-bottom: 20px;
  display: inline-block;
}

.footer-brand .nav-logo span {
  color: var(--amber);
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  max-width: 280px;
  line-height: 1.7;
}

.footer-col h4 {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 20px;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  color: var(--text-secondary);
  font-size: 0.88rem;
  transition: color 0.4s var(--ease-out);
}

.footer-col a:hover {
  color: var(--green);
}

.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  color: var(--text-light);
  font-size: 0.82rem;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(26, 32, 48, 0.04);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all 0.4s var(--ease-out);
}

.footer-socials a:hover {
  background: var(--green);
  border-color: var(--green);
  color: white;
  transform: translateY(-2px);
}

.footer-socials svg {
  width: 18px;
  height: 18px;
}

/* ===== Contact Page Specific ===== */
.contact-page-hero {
  padding-top: 160px;
  padding-bottom: 60px;
  text-align: center;
}

.contact-page-hero p {
  margin: 20px auto 0;
}

.contact-page-content {
  padding-top: 0;
}

.contact-page-content::before {
  display: none;
}

.contact-form {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(250, 245, 240, 0.95) 100%);
  border: 1px solid #E5D9CC;
  box-shadow: 0 12px 48px rgba(139, 100, 52, 0.08);
}

/* ===== Success Toast ===== */
.toast {
  position: fixed;
  bottom: 32px;
  right: 32px;
  background: var(--green);
  color: white;
  padding: 18px 32px;
  border-radius: var(--radius-md);
  box-shadow: 0 12px 40px rgba(30, 86, 160, 0.3);
  font-weight: 550;
  font-size: 0.92rem;
  transform: translateY(120%);
  opacity: 0;
  transition: all 0.5s var(--ease-spring);
  z-index: 2000;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast.toast-error {
  background: #c0392b;
  box-shadow: 0 12px 40px rgba(192, 57, 43, 0.3);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .services-grid,
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps::before {
    display: none;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .about-grid {
    gap: 64px;
  }

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

  .trust-strip-content {
    gap: 32px;
  }

  .proof-number {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  section {
    padding: 80px 0;
  }

  .container {
    padding: 0 24px;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--bg-white);
    flex-direction: column;
    padding: 100px 36px 36px;
    gap: 28px;
    box-shadow: var(--shadow-lg);
    transition: right 0.4s var(--ease-out);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-toggle {
    display: flex;
    z-index: 1001;
  }

  .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);
  }

  .services-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .step-number {
    font-size: 4.5rem;
    margin-bottom: 36px;
  }

  .founder-note {
    padding: 44px 28px 36px 32px;
  }

  .founder-note-quote {
    font-size: 1.55rem;
  }

  .founder-note-names {
    font-size: 1.5rem;
  }

  .benefits-slider {
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 6%, #000 94%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0, #000 6%, #000 94%, transparent 100%);
  }

  .benefit-slide {
    flex-basis: 300px;
    margin-right: 20px;
    padding: 36px 24px 32px;
  }

  .benefit-quote {
    font-size: 1.2rem;
  }

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

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

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .about::before,
  .contact::before,
  .benefits::before {
    height: 40px;
  }

  .trust-strip-content {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  .proof-item {
    flex-direction: column;
    gap: 8px;
  }

  .proof-label {
    max-width: 100%;
  }

  .proof-divider {
    width: 48px;
    height: 1px;
  }

  .trust-strip {
    padding: 36px 0;
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

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

  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
}

/* ===== Blog Pages ===== */
.blog-hero {
  padding-top: 160px;
  padding-bottom: 60px;
  text-align: center;
}

.blog-hero p {
  margin: 20px auto 0;
}

.blog-listing {
  padding-top: 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.blog-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  padding: 36px;
  transition: all 0.5s var(--ease-out);
  display: block;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-glow);
}

.blog-date {
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-light);
  display: block;
  margin-bottom: 12px;
}

.blog-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-primary);
  line-height: 1.3;
}

.blog-card p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.blog-read-more {
  font-size: 0.85rem;
  font-weight: 550;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.blog-loading, .blog-empty {
  text-align: center;
  color: var(--text-light);
  font-size: 0.95rem;
  padding: 60px 0;
  grid-column: 1 / -1;
}

/* Blog Post Page */
.blog-post-page {
  padding-top: 140px;
  padding-bottom: 80px;
}

.blog-back-link {
  display: inline-flex;
  align-items: center;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--green);
  margin-bottom: 40px;
  transition: color 0.3s;
}

.blog-back-link:hover {
  color: var(--green-dark);
}

.blog-post-body {
  max-width: 720px;
  margin: 0 auto;
}

.blog-post-body h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 32px;
  line-height: 1.2;
}

.blog-post-body .blog-date {
  margin-bottom: 20px;
}

.blog-content h2 {
  font-size: 1.6rem;
  margin: 40px 0 16px;
}

.blog-content h3 {
  font-size: 1.25rem;
  margin: 32px 0 12px;
}

.blog-content p {
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 20px;
  max-width: 100%;
}

.blog-content ul, .blog-content ol {
  padding-left: 24px;
  margin-bottom: 20px;
}

.blog-content li {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.blog-content strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* ===== Admin / Command Center ===== */
.admin-login {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.admin-login-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 48px;
  max-width: 400px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.admin-login-card .nav-logo {
  display: inline-block;
  margin-bottom: 24px;
}

.admin-login-card h2 {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.admin-login-card > p {
  font-size: 0.9rem;
  margin: 0 auto 28px;
}

.admin-error {
  color: #c0392b;
  font-size: 0.85rem;
  margin-top: 16px;
}

.admin-badge {
  background: var(--green-light);
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
}

.admin-input-section {
  padding-top: 140px;
}

.admin-input-section .section-header {
  text-align: center;
  margin-bottom: 48px;
}

.admin-input-section .section-header p {
  margin: 16px auto 0;
}

.admin-input-card {
  max-width: 700px;
  margin: 0 auto;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

.admin-toggle-row {
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
  background: var(--bg);
  border-radius: var(--radius-sm);
  padding: 4px;
}

.admin-toggle-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  background: transparent;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-light);
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
}

.admin-toggle-btn.active {
  background: var(--bg-white);
  color: var(--text-primary);
  box-shadow: var(--shadow-xs);
}

.admin-toggle-btn:hover:not(.active) {
  color: var(--text-secondary);
}

.admin-hint {
  font-size: 0.82rem;
  color: var(--text-light);
  font-style: italic;
  margin-top: 8px;
}

.admin-status {
  font-size: 0.88rem;
  color: var(--green);
  margin-top: 16px;
  text-align: center;
}

.admin-status-error {
  color: #c0392b;
}

/* Output Section */
.admin-output-section {
  padding-top: 40px;
}

.admin-output-section .section-header {
  text-align: center;
  margin-bottom: 32px;
}

.admin-output-section .section-header p {
  margin: 12px auto 0;
}

.admin-tabs {
  display: flex;
  gap: 4px;
  max-width: 900px;
  margin: 0 auto 24px;
  background: var(--bg-warm);
  border-radius: var(--radius-sm);
  padding: 4px;
}

.admin-tab {
  flex: 1;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  background: transparent;
  font-family: 'Outfit', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-light);
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
}

.admin-tab.active {
  background: var(--bg-white);
  color: var(--text-primary);
  box-shadow: var(--shadow-xs);
}

.admin-tab:hover:not(.active) {
  color: var(--text-secondary);
}

.admin-tab-panel {
  display: none;
  max-width: 900px;
  margin: 0 auto;
}

.admin-tab-panel.active {
  display: block;
}

.admin-output-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.admin-output-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  border-bottom: 1px solid var(--border-light);
  flex-wrap: wrap;
  gap: 12px;
}

.admin-output-header h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 600;
}

.admin-output-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.admin-copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg);
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
}

.admin-copy-btn:hover {
  border-color: var(--green);
  color: var(--green);
}

.admin-copy-btn.copied {
  border-color: var(--green);
  color: var(--green);
  background: var(--green-light);
}

.admin-output-body {
  padding: 28px;
}

.admin-edit-input {
  width: 100%;
  padding: 12px 16px;
  font-size: 1.1rem;
  font-weight: 600;
  font-family: var(--font-body);
  border: 2px solid var(--border);
  border-radius: 8px;
  background: white;
  margin-bottom: 12px;
}

.admin-edit-input:focus {
  outline: none;
  border-color: var(--green);
}

.admin-edit-textarea {
  width: 100%;
  min-height: 500px;
  padding: 20px;
  font-family: monospace;
  font-size: 0.85rem;
  line-height: 1.6;
  border: 2px solid var(--border);
  border-radius: 8px;
  background: white;
  resize: vertical;
}

.admin-edit-textarea:focus {
  outline: none;
  border-color: var(--green);
}

.admin-pre {
  white-space: pre-wrap;
  word-wrap: break-word;
  font-family: 'Outfit', sans-serif;
  font-size: 0.92rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

.blog-preview h2 {
  font-size: 1.5rem;
  margin: 28px 0 12px;
}

.blog-preview h3 {
  font-size: 1.2rem;
  margin: 24px 0 10px;
}

.blog-preview p {
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 16px;
  max-width: 100%;
}

.blog-preview ul, .blog-preview ol {
  padding-left: 24px;
  margin-bottom: 16px;
}

.blog-preview li {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

/* Tweet Cards */
.tweet-card {
  background: var(--bg);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 12px;
  border: 1px solid var(--border-light);
}

.tweet-number {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.tweet-text {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-primary);
  max-width: 100%;
  margin-bottom: 12px;
}

.tweet-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tweet-chars {
  font-size: 0.75rem;
  color: var(--text-light);
  font-weight: 500;
}

.tweet-chars.tweet-over {
  color: #c0392b;
  font-weight: 600;
}

.tweet-copy-btn {
  padding: 4px 10px !important;
  font-size: 0.78rem !important;
}

/* Responsive Admin */
@media (max-width: 768px) {
  .admin-input-card {
    padding: 24px;
  }

  .admin-output-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .admin-tabs {
    flex-direction: column;
  }

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