/* =============================================
   In Practice — Redesign Azul Marinho + Coral
   ============================================= */

:root {
  --primary: #0f2b46;
  --primary-light: #1a3d5c;
  --primary-dark: #091e33;
  --accent: #e8806a;
  --accent-light: #f2a999;
  --accent-dark: #c96b56;
  --accent-glow: rgba(232, 128, 106, 0.10);
  --bg: #faf9f8;
  --bg-alt: #f2efec;
  --bg-cream: #fffdfb;
  --bg-dark: #0a1929;
  --text: #333;
  --text-light: #6a6a6a;
  --text-muted: #999;
  --white: #fff;
  --border: #e2d9cd;
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: 'Inter', -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.75;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; display: block; }

/* ============ Typography ============ */

h1, h2, h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  color: var(--primary);
  line-height: 1.15;
  font-weight: 600;
}

h1 { font-size: clamp(2.4rem, 4.5vw, 3.6rem); font-weight: 700; letter-spacing: -1px; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); letter-spacing: -0.5px; }
h3 { font-size: 1.25rem; }
h4 { font-family: 'Inter', sans-serif; font-size: 1rem; font-weight: 600; color: var(--primary); }

.text-accent { color: var(--accent-dark); }

.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--accent-dark);
  margin-bottom: 14px;
}

.section-header { text-align: center; max-width: 560px; margin: 0 auto 64px; }
.section-desc { color: var(--text-light); font-size: 1rem; margin-top: 10px; line-height: 1.8; }

/* ============ Buttons ============ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  letter-spacing: 0.3px;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(232, 128, 106, 0.3);
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(232, 128, 106, 0.4);
}

.btn-accent {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 24px rgba(232, 128, 106, 0.35);
  font-weight: 700;
}

.btn-accent:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(232, 128, 106, 0.45);
}

.btn-ghost {
  background: transparent;
  color: var(--text-light);
  padding: 14px 8px;
  font-weight: 500;
  position: relative;
}

.btn-ghost::after {
  content: '';
  position: absolute;
  bottom: 12px;
  left: 8px;
  right: 8px;
  height: 1px;
  background: var(--border);
  transition: var(--transition);
}

.btn-ghost:hover { color: var(--accent-dark); }
.btn-ghost:hover::after { background: var(--accent); }

.btn-lg { padding: 18px 40px; font-size: 0.95rem; }

/* ============ Header ============ */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 22px 0;
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(15, 43, 70, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.header.scrolled .logo-in { color: var(--accent); }
.header.scrolled .logo-practice { color: rgba(255,255,255,0.9); }
.header.scrolled .nav-link { color: rgba(255,255,255,0.6); }
.header.scrolled .nav-link:hover { color: var(--white); }
.header.scrolled .cta-nav { background: var(--accent); color: var(--white) !important; }
.header.scrolled .cta-nav:hover { background: var(--accent-light); }
.header.scrolled .menu-toggle span { background: var(--white); }

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

.logo { font-size: 1.5rem; font-weight: 700; display: flex; align-items: baseline; }

.logo-in {
  font-family: 'Cormorant Garamond', serif;
  color: var(--accent-dark);
  font-style: italic;
  font-weight: 700;
  font-size: 1.6rem;
  margin-right: 2px;
}

.logo-practice {
  font-family: 'Inter', sans-serif;
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.95rem;
  letter-spacing: 3px;
}

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

.nav-link {
  font-size: 0.76rem;
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

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

.cta-nav {
  background: var(--primary);
  color: var(--white) !important;
  padding: 10px 26px;
  border-radius: 50px;
  letter-spacing: 0.8px;
}

.cta-nav:hover { background: var(--primary-light); transform: translateY(-1px); }

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

.menu-toggle span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--primary);
  transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============ Hero ============ */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 30% 50%, var(--accent-glow) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(15, 43, 70, 0.04) 0%, transparent 40%);
}

.hero-grid {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--accent-dark);
  margin-bottom: 16px;
  padding: 6px 16px;
  background: var(--accent-glow);
  border-radius: 50px;
  border: 1px solid rgba(201, 169, 110, 0.2);
}

.hero-greeting {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 8px;
}

.hero h1 { margin-bottom: 20px; }

.hero-desc {
  color: var(--text-light);
  font-size: 1rem;
  max-width: 460px;
  margin-bottom: 32px;
  line-height: 1.85;
}

.hero-actions { display: flex; gap: 16px; align-items: center; }

/* Hero Photo */
.hero-photo { display: flex; justify-content: center; }

.hero-frame {
  width: 360px;
  height: 460px;
}

.hero-frame img {
  object-position: center 15%;
}

/* Photo Frame (reusable) */
.photo-frame {
  position: relative;
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  border-radius: 16px;
  position: relative;
  z-index: 1;
}

.photo-frame::before {
  content: '';
  position: absolute;
  top: 14px;
  left: -14px;
  right: 14px;
  bottom: -14px;
  background: var(--primary);
  border-radius: 16px;
  z-index: 0;
  opacity: 0.12;
}

.photo-frame::after {
  content: '';
  position: absolute;
  top: -6px;
  right: -6px;
  width: 60px;
  height: 60px;
  border-top: 3px solid var(--accent);
  border-right: 3px solid var(--accent);
  border-radius: 0 16px 0 0;
  z-index: 2;
  opacity: 0.6;
}

/* ============ Stats Bar ============ */

.stats-bar {
  padding: 44px 0;
  background: var(--primary);
}

.stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
}

.stat { text-align: center; }

.stat-number {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--accent-light);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 44px;
  background: rgba(255,255,255,0.15);
}

/* ============ Sections ============ */

.section { padding: 110px 0; }
.section-alt { background: var(--bg-alt); }

/* ============ About ============ */

.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: start;
}

.about-photo-col {
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: sticky;
  top: 100px;
}

.photo-frame-alt {
  width: 100%;
  height: 420px;
}

.photo-frame-alt img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.photo-frame-alt::before {
  inset: 14px -14px -14px 14px;
}

.photo-frame-alt::after {
  top: -6px;
  right: -6px;
  width: 60px;
  height: 60px;
}

.quote-block {
  background: var(--primary);
  border-radius: 16px;
  padding: 32px 28px;
}

.quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  color: var(--accent);
  line-height: 0.5;
  margin-bottom: 20px;
  opacity: 0.4;
}

.quote-block p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: rgba(255,255,255,0.85);
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 16px;
}

.quote-author {
  font-size: 0.85rem;
  color: var(--accent-light);
  font-weight: 600;
}

.about-text-col .section-tag { display: block; }
.about-text-col h2 { margin-bottom: 24px; }
.about-text-col p { color: var(--text-light); margin-bottom: 16px; line-height: 1.85; }
.about-text-col p strong { color: var(--text); font-weight: 600; }

.credentials {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.credential { display: flex; align-items: center; gap: 14px; }

.credential-icon {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  border-radius: 50%;
  color: var(--accent-light);
  flex-shrink: 0;
}

.credential span { font-size: 0.9rem; font-weight: 500; color: var(--text); }

/* ============ Services ============ */

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

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

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.06);
  border-color: var(--accent-light);
}

.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  border-radius: 50%;
  color: var(--accent-light);
  margin-bottom: 18px;
}

.service-card h4 { margin-bottom: 8px; }
.service-card p { color: var(--text-light); font-size: 0.88rem; line-height: 1.75; }

/* ============ How It Works ============ */

.how-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.how-card {
  padding: 32px 28px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--bg-cream);
  transition: var(--transition);
}

.how-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.05);
}

.how-icon { color: var(--primary); margin-bottom: 14px; }
.how-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.how-card p { color: var(--text-light); font-size: 0.88rem; line-height: 1.75; }

.how-bottom {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 40px;
  align-items: center;
  padding-top: 16px;
}

.how-photo .photo-frame {
  width: 100%;
  height: 340px;
}

.how-photo .photo-frame img {
  object-position: center 25%;
}

.how-quote {
  text-align: left;
  padding: 32px 0;
  border-left: 3px solid var(--accent);
  padding-left: 28px;
}

.how-quote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  color: var(--primary);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 12px;
}

.how-quote span { font-size: 0.88rem; color: var(--accent-dark); font-weight: 500; }

/* ============ Method (Navy Section) ============ */

.section-navy {
  background: var(--primary);
  padding: 100px 0;
}

.section-navy .section-tag { color: var(--accent-light); }
.section-navy .section-header h2 { color: var(--white); }

.method-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

.method-step {
  text-align: center;
  flex: 1;
  max-width: 220px;
  padding: 0 16px;
}

.method-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 14px;
  opacity: 0.3;
}

.method-step h3 { color: var(--white); margin-bottom: 8px; font-size: 1.15rem; }
.method-step p { color: rgba(255,255,255,0.55); font-size: 0.88rem; line-height: 1.7; }

.method-connector {
  width: 48px;
  height: 2px;
  background: var(--accent);
  margin-top: 32px;
  flex-shrink: 0;
  opacity: 0.3;
}

/* ============ Testimonials ============ */

/* Testimonial Rows */
.testimonials-stack {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.testimonial-row {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 40px;
  align-items: center;
}

.testimonial-row.row-reverse {
  grid-template-columns: 1.3fr 0.7fr;
}

.testimonial-row.row-reverse .testimonial-photo {
  order: 2;
}

.testimonial-row.row-reverse .testimonial-content {
  order: 1;
}

.testimonial-photo {
  position: relative;
}

.testimonial-photo img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center 30%;
  border-radius: 16px;
  border: 3px solid var(--accent-light);
}

.testimonial-photo img.photo-landscape {
  object-position: center 75%;
}

.testimonial-photo::before {
  content: '';
  position: absolute;
  top: 12px;
  left: -12px;
  right: 12px;
  bottom: -12px;
  background: var(--primary);
  border-radius: 16px;
  z-index: -1;
  opacity: 0.1;
}

.testimonial-content {
  padding: 8px 0;
}

.testimonial-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  color: var(--primary);
  line-height: 0.5;
  margin-bottom: 24px;
  opacity: 0.12;
}

.testimonial-content > p {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.85;
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial-author { display: flex; flex-direction: column; gap: 2px; }
.testimonial-author strong { font-size: 1rem; color: var(--primary); }
.testimonial-author span { font-size: 0.8rem; color: var(--text-muted); }

/* ============ CTA (Dark Section) ============ */

.section-dark {
  background: var(--bg-dark);
  padding: 110px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-decoration {
  position: absolute;
  font-family: 'Cormorant Garamond', serif;
  font-size: 40rem;
  color: var(--accent);
  opacity: 0.025;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  line-height: 1;
  pointer-events: none;
}

.cta-content { position: relative; z-index: 1; max-width: 540px; margin: 0 auto; }
.cta-content .section-tag { color: var(--accent-light); }
.cta-content h2 { color: var(--white); margin-bottom: 16px; }
.cta-content > p { color: rgba(255,255,255,0.55); font-size: 1rem; margin-bottom: 32px; line-height: 1.85; }

.cta-phone {
  display: block;
  margin-top: 20px;
  color: rgba(255,255,255,0.3);
  font-size: 0.85rem;
  letter-spacing: 1px;
}

/* ============ Footer ============ */

.footer {
  background: var(--bg-dark);
  padding: 44px 0 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
  text-align: center;
}

.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 14px; }

.footer-logo .logo-in { color: var(--accent); }
.footer-logo .logo-practice { color: rgba(255,255,255,0.8); }

.footer-tagline { color: rgba(255,255,255,0.35); font-size: 0.8rem; }

.footer-links { display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; margin: 8px 0; }
.footer-links a { color: rgba(255,255,255,0.35); font-size: 0.75rem; letter-spacing: 1px; text-transform: uppercase; }
.footer-links a:hover { color: var(--accent); }

.footer-copy { color: rgba(255,255,255,0.18); font-size: 0.72rem; margin-top: 6px; }

/* ============ WhatsApp Float ============ */

.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: white;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition);
  animation: wap-pulse 2.5s ease-in-out infinite;
}

.whatsapp-float:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5); }

@keyframes wap-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 28px rgba(37, 211, 102, 0.5), 0 0 0 10px rgba(37, 211, 102, 0.08); }
}

/* ============ Blog ============ */

.scrolled-always { background: rgba(15, 43, 70, 0.97); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); padding: 12px 0; }
.scrolled-always .logo-in { color: var(--accent); }
.scrolled-always .logo-practice { color: rgba(255,255,255,0.9); }
.scrolled-always .nav-link { color: rgba(255,255,255,0.6); }
.scrolled-always .nav-link:hover { color: var(--white); }
.scrolled-always .cta-nav { background: var(--accent); color: var(--white) !important; }
.scrolled-always .menu-toggle span { background: var(--white); }

.blog-hero {
  padding: 140px 0 60px;
  text-align: center;
  background: var(--primary);
}

.blog-hero .section-tag { color: var(--accent-light); }
.blog-hero h1 { color: var(--white); margin-bottom: 12px; }
.blog-hero-desc { color: rgba(255,255,255,0.55); font-size: 1rem; max-width: 500px; margin: 0 auto; line-height: 1.8; }

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

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

.blog-card {
  background: var(--bg-cream);
  border-radius: 16px;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.06);
  border-color: var(--accent-light);
}

.blog-card-img {
  height: 200px;
  overflow: hidden;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.blog-card:hover .blog-card-img img { transform: scale(1.05); }

.blog-card-body { padding: 28px 24px; flex: 1; display: flex; flex-direction: column; }

.blog-card-date {
  font-size: 0.72rem;
  color: var(--accent-dark);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  margin-bottom: 8px;
}

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

.blog-card p { color: var(--text-light); font-size: 0.88rem; line-height: 1.75; flex: 1; }

.blog-card-link {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent-dark);
  letter-spacing: 0.5px;
}

.blog-card:hover .blog-card-link { color: var(--primary); }

.blog-empty {
  text-align: center;
  padding: 60px 0;
  color: var(--text-muted);
  font-style: italic;
  display: none;
}

/* Blog Post Page */
.blog-post-page {
  padding: 120px 0 80px;
  max-width: 720px;
  margin: 0 auto;
}

.blog-back {
  display: inline-block;
  font-size: 0.82rem;
  color: var(--accent-dark);
  font-weight: 600;
  margin-bottom: 32px;
  letter-spacing: 0.5px;
}

.blog-back:hover { color: var(--primary); }

.blog-post-header { margin-bottom: 40px; }
.blog-post-header h1 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 16px; }

.blog-post-hero-img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 16px;
  margin-top: 20px;
}

.blog-post-content h2 {
  font-size: 1.5rem;
  margin: 36px 0 16px;
}

.blog-post-content h3 { font-size: 1.2rem; margin: 28px 0 12px; }

.blog-post-content p {
  color: var(--text-light);
  line-height: 1.9;
  margin-bottom: 18px;
  font-size: 0.95rem;
}

.blog-post-content strong { color: var(--text); }

.blog-post-content ul, .blog-post-content ol {
  padding-left: 24px;
  margin-bottom: 18px;
  color: var(--text-light);
}

.blog-post-content li { margin-bottom: 8px; line-height: 1.8; font-size: 0.95rem; }

.blog-post-content hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 36px 0;
}

.blog-post-content blockquote {
  border-left: 3px solid var(--accent);
  padding-left: 20px;
  margin: 24px 0;
  font-style: italic;
  color: var(--primary);
}

/* ============ Animations ============ */

.animate {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.service-card.animate:nth-child(2) { transition-delay: 0.08s; }
.service-card.animate:nth-child(3) { transition-delay: 0.16s; }
.service-card.animate:nth-child(4) { transition-delay: 0.24s; }
.service-card.animate:nth-child(5) { transition-delay: 0.32s; }
.service-card.animate:nth-child(6) { transition-delay: 0.4s; }

.how-card.animate:nth-child(2) { transition-delay: 0.08s; }
.how-card.animate:nth-child(3) { transition-delay: 0.16s; }
.how-card.animate:nth-child(4) { transition-delay: 0.24s; }

.method-step.animate:nth-child(1) { transition-delay: 0s; }
.method-step.animate:nth-child(3) { transition-delay: 0.12s; }
.method-step.animate:nth-child(5) { transition-delay: 0.24s; }
.method-step.animate:nth-child(7) { transition-delay: 0.36s; }

.testimonial-card.animate:nth-child(2) { transition-delay: 0.1s; }
.testimonial-card.animate:nth-child(3) { transition-delay: 0.2s; }

/* ============ Responsive ============ */

@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero-photo { order: -1; }
  .hero-frame { width: 260px; height: 340px; margin: 0 auto; }

  .hero-desc { margin: 0 auto 32px; }
  .hero-actions { justify-content: center; }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-photo-col { position: static; max-width: 400px; margin: 0 auto; }
  .photo-frame-alt { height: 360px; }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonial-row,
  .testimonial-row.row-reverse {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .testimonial-row.row-reverse .testimonial-photo { order: 0; }
  .testimonial-row.row-reverse .testimonial-content { order: 0; }
  .testimonial-photo img { height: 280px; }

  .method-steps { flex-direction: column; align-items: center; }
  .method-connector { width: 2px; height: 32px; margin: 0; }
}

@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--bg);
    flex-direction: column;
    padding: 100px 36px 40px;
    gap: 0;
    box-shadow: -10px 0 40px rgba(0,0,0,0.08);
    transition: right 0.4s ease;
    z-index: 1000;
  }

  .nav.active { right: 0; }

  .nav-link {
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    width: 100%;
    font-size: 0.85rem;
    color: var(--text);
  }

  .cta-nav { margin-top: 20px; text-align: center; border-bottom: none; }

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

  .how-grid {
    grid-template-columns: 1fr;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 32px;
  }

  .how-card {
    display: grid;
    grid-template-columns: 40px 1fr;
    grid-template-rows: auto auto;
    column-gap: 16px;
    row-gap: 2px;
    padding: 18px 20px;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid var(--border);
    align-items: start;
  }

  .how-card:last-child { border-bottom: none; }
  .how-card:hover { transform: none; box-shadow: none; }

  .how-icon { grid-row: 1 / 3; align-self: center; margin-bottom: 0; }
  .how-icon svg { width: 22px; height: 22px; }
  .how-card h3 { grid-column: 2; font-size: 1rem; margin-bottom: 0; }
  .how-card p { grid-column: 2; font-size: 0.88rem; line-height: 1.6; }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
  }

  .service-card {
    display: grid;
    grid-template-columns: 40px 1fr;
    grid-template-rows: auto auto;
    column-gap: 16px;
    row-gap: 2px;
    padding: 18px 20px;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid var(--border);
    align-items: start;
  }

  .service-card .service-icon { grid-row: 1 / 3; align-self: center; }
  .service-card h4 { grid-column: 2; font-size: 1rem; }
  .service-card p { grid-column: 2; font-size: 0.88rem; line-height: 1.6; }

  .service-card:last-child { border-bottom: none; }

  .service-card::before { display: none; }

  .service-card:hover { transform: none; box-shadow: none; }

  .service-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    margin-bottom: 0;
  }

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

  .service-card h4 { margin-bottom: 2px; font-size: 0.9rem; }
  .service-card p { font-size: 0.78rem; line-height: 1.5; }

  .how-bottom { grid-template-columns: 1fr; gap: 24px; }
  .how-photo .photo-frame { height: 280px; }
  .how-quote { text-align: center; border-left: none; padding-left: 0; border-top: 3px solid var(--accent); padding-top: 24px; }

  .testimonial-photo img { height: 240px; }

  .stats-inner { flex-direction: column; gap: 24px; }
  .stat-divider { width: 40px; height: 1px; }

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

  .hero { padding: 100px 0 60px; min-height: auto; }

  .blog-grid { grid-template-columns: 1fr; }
  .blog-post-page { padding: 100px 16px 60px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-grid { padding: 0 16px; }
  .hero-actions { flex-direction: column; width: 100%; }
  .btn { justify-content: center; width: 100%; }
  .btn-ghost { width: auto; }
  .photo-frame { width: 220px; height: 280px; }
}
