/* =============================================
   VetPrática · Design v3
   Paleta oficial por @lebuenodesign
   Azul profissional · Verde veterinário · Esperança suave · Delicadeza técnica · Equilíbrio neutro · Clareza absoluta
   ============================================= */

:root {
  /* Paleta oficial VetPrática */
  --navy: #0B495E;          /* Azul profissional · primária */
  --navy-deep: #073847;     /* Azul mais escuro para hover/contrast */
  --navy-soft: #1F6478;     /* Azul médio para textos secundários */
  --navy-mist: rgba(11, 73, 94, 0.06);

  --green: #025648;         /* Verde veterinário · secundária forte */
  --green-deep: #013A30;    /* Verde mais profundo */
  --green-soft: #9DBBAE;    /* Esperança suave */

  --rose: #E8D0CE;          /* Delicadeza técnica */
  --rose-soft: #F2E2E0;

  --gray: #D3D9DF;          /* Equilíbrio neutro */
  --gray-line: rgba(11, 73, 94, 0.10);

  --cream: #F4F4F4;         /* Clareza absoluta · fundo */
  --cream-warm: #ECECEC;
  --paper: #FFFFFF;
  --ink: #0B495E;           /* Texto principal usa o navy */
  --ink-soft: #1F6478;
  --muted: #6B7C85;

  /* Compatibilidade com nomes antigos (mantém legibilidade no CSS legado) */
  --amber: var(--green);    /* O que era "amber" agora é verde veterinário */
  --amber-soft: var(--green-soft);
  --line: var(--gray-line);

  /* Tipografia */
  --font-display: 'Sora', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;

  /* Layout */
  --container-max: 1280px;
  --gutter: 24px;

  /* Curvas */
  --r-sm: 12px;
  --r-md: 22px;
  --r-lg: 36px;
  --r-xl: 56px;
  --r-pill: 999px;

  /* Sombras */
  --shadow-soft: 0 30px 60px -20px rgba(11, 73, 94, 0.16);
  --shadow-glow-amber: 0 30px 80px -20px rgba(2, 86, 72, 0.30);
  --shadow-glow-navy: 0 30px 80px -20px rgba(11, 73, 94, 0.35);
  --shadow-card: 0 18px 40px -16px rgba(11, 73, 94, 0.18);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  background: var(--cream);
  color-scheme: light;
  min-height: 100%;
}
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  min-height: 100vh;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--navy); text-decoration: none; transition: all 0.22s ease; }
a:hover { color: var(--green); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

.container { width: 100%; max-width: var(--container-max); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: 100px 0; position: relative; }

/* =============================================
   HEADER
   ============================================= */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid var(--gray-line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  padding: 16px 0;
  gap: 16px;
}
.logo-wrap {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  min-width: 0;
}
.logo-wrap img {
  height: 52px;
  width: auto;
  display: block;
}
@media (max-width: 480px) {
  .logo-wrap img { height: 44px; }
}

.nav-v2 {
  display: none;
  gap: 26px;
  align-items: center;
  flex-shrink: 1;
  flex-wrap: nowrap;
}
.nav-v2 a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.nav-v2 a:hover { color: var(--green); }
.nav-v2 a.is-active { color: var(--navy); font-weight: 600; }
.nav-v2 a.is-active::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
}
.nav-v2 .nav-cta-v2 {
  background: var(--navy);
  color: var(--cream) !important;
  padding: 11px 22px !important;
  border-radius: var(--r-pill);
  font-weight: 600 !important;
  transition: all 0.25s ease;
}
.nav-v2 .nav-cta-v2.is-active::after { display: none; }
.nav-v2 .nav-cta-v2:hover {
  background: var(--green);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-navy);
}

.menu-toggle-v2 {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  cursor: pointer;
}
.menu-toggle-v2 span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.menu-toggle-v2.is-open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle-v2.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle-v2.is-open span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

.mobile-menu-v2 {
  position: fixed;
  top: 88px; left: 0; right: 0;
  background: var(--cream);
  border-top: 1px solid var(--gray-line);
  padding: 28px 24px;
  z-index: 90;
  transform: translateY(-120%);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.32s ease, opacity 0.22s ease, visibility 0s linear 0.32s;
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.12);
  max-height: calc(100vh - 88px);
  overflow-y: auto;
}
.mobile-menu-v2.is-open {
  transform: translateY(0);
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transition: transform 0.32s ease, opacity 0.22s ease, visibility 0s linear 0s;
}
.mobile-menu-v2 a {
  display: block;
  padding: 16px 0;
  font-size: 18px;
  color: var(--ink);
  border-bottom: 1px solid var(--gray-line);
  font-weight: 500;
}
.mobile-menu-v2 .nav-cta-v2 {
  background: var(--navy);
  color: var(--cream);
  text-align: center;
  margin-top: 18px;
  border-radius: var(--r-pill);
  border: none;
}

/* =============================================
   HERO
   ============================================= */
.hero-v2 { position: relative; padding: 60px 0 100px; overflow: hidden; }
.hero-v2::before {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(157, 187, 174, 0.30) 0%, transparent 60%);
  pointer-events: none; z-index: 0;
}
.hero-v2::after {
  content: ''; position: absolute; bottom: -200px; left: -150px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(232, 208, 206, 0.32) 0%, transparent 60%);
  pointer-events: none; z-index: 0;
}
.hero-grid { display: grid; grid-template-columns: 1fr; gap: 50px; align-items: center; position: relative; z-index: 1; }
.hero-content { max-width: 620px; }
.hero-eyebrow-v2 {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--green); margin-bottom: 28px;
}
.hero-eyebrow-v2::before { content: ''; width: 30px; height: 1px; background: var(--green); }
.hero-content h1 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(44px, 8vw, 88px); line-height: 0.98;
  letter-spacing: -2.5px; color: var(--navy); margin-bottom: 30px;
}
.hero-content h1 .accent-amber { color: var(--green); font-style: italic; font-weight: 600; }
.hero-content p {
  font-size: clamp(17px, 2vw, 21px); line-height: 1.6;
  color: var(--navy-soft); margin-bottom: 40px; max-width: 540px;
}
.hero-actions-v2 { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

.btn-v2 {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-weight: 600; font-size: 15px;
  padding: 16px 28px; border-radius: var(--r-pill);
  transition: all 0.25s ease; cursor: pointer; white-space: nowrap;
}
.btn-v2.primary { background: var(--navy); color: var(--cream); }
.btn-v2.primary:hover { background: var(--green); color: var(--cream); transform: translateY(-2px); box-shadow: var(--shadow-glow-navy); }
.btn-v2.ghost { background: transparent; color: var(--navy); padding: 14px 4px; }
.btn-v2.ghost:hover { color: var(--green); transform: translateX(4px); }
.btn-v2.amber { background: var(--green); color: var(--cream); }
.btn-v2.amber:hover { background: var(--green-deep); transform: translateY(-2px); box-shadow: var(--shadow-glow-amber); }

.hero-visual { position: relative; z-index: 1; }
.hero-photo-main {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  aspect-ratio: 4/5; box-shadow: var(--shadow-soft);
  transform: rotate(-1deg); transition: transform 0.6s ease;
}
.hero-photo-main:hover { transform: rotate(0deg) scale(1.01); }
.hero-photo-main img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo-bubble {
  position: absolute; bottom: -30px; left: -30px;
  width: 160px; height: 160px; border-radius: var(--r-md);
  overflow: hidden; box-shadow: var(--shadow-glow-amber);
  background: var(--paper); padding: 6px;
  transform: rotate(4deg); transition: transform 0.5s ease;
}
.hero-photo-bubble:hover { transform: rotate(0); }
.hero-photo-bubble img { width: 100%; height: 100%; object-fit: cover; border-radius: 18px; }
.hero-stat-floating {
  position: absolute; top: 30px; right: -10px;
  background: rgba(255, 255, 255, 0.90);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-radius: var(--r-md); padding: 14px 18px;
  box-shadow: var(--shadow-soft); display: flex; align-items: center; gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.6);
}
.hero-stat-floating .icon {
  width: 38px; height: 38px; background: var(--green-soft);
  border-radius: 50%; display: grid; place-items: center; font-size: 18px;
  color: var(--navy);
}
.hero-stat-floating .text strong {
  display: block; font-family: var(--font-display); font-weight: 700;
  font-size: 16px; color: var(--navy); line-height: 1;
}
.hero-stat-floating .text span { font-size: 11px; color: var(--muted); letter-spacing: 0.4px; }

/* =============================================
   QUOTE LINE
   ============================================= */
.quote-line { padding: 70px 0; position: relative; background: var(--cream-warm); overflow: hidden; }
.quote-line::before {
  content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 1200px; height: 1200px;
  background: radial-gradient(circle, rgba(11, 73, 94, 0.04) 0%, transparent 50%);
  pointer-events: none;
}
.quote-line p {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(28px, 4.5vw, 56px); line-height: 1.1;
  letter-spacing: -1.4px; color: var(--navy); text-align: center;
  max-width: 1080px; margin: 0 auto; position: relative;
}
.quote-line p .italic { font-style: italic; font-weight: 500; color: var(--green); }

/* =============================================
   ABOUT
   ============================================= */
.about-v2 { position: relative; padding: 110px 0; }
.about-grid { display: grid; grid-template-columns: 1fr; gap: 60px; align-items: center; }
.about-text .section-eyebrow-v2 {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--green); margin-bottom: 24px;
}
.about-text .section-eyebrow-v2::before { content: ''; width: 30px; height: 1px; background: var(--green); }
.about-text h2 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(36px, 5vw, 56px); line-height: 1.05;
  letter-spacing: -1.6px; color: var(--navy); margin-bottom: 28px;
}
.about-text h2 .italic { font-style: italic; color: var(--green); font-weight: 600; }
.about-text p { font-size: 17px; line-height: 1.75; color: var(--navy-soft); margin-bottom: 18px; }
.about-photo-stack { position: relative; }
.about-photo-main {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  aspect-ratio: 4/5; box-shadow: var(--shadow-soft);
}
.about-photo-main img { width: 100%; height: 100%; object-fit: cover; }
.about-photo-secondary {
  position: absolute; bottom: -40px; right: -20px;
  width: 60%; aspect-ratio: 1/1; border-radius: var(--r-md);
  overflow: hidden; border: 8px solid var(--cream);
  box-shadow: var(--shadow-soft); transform: rotate(3deg);
}
.about-photo-secondary img { width: 100%; height: 100%; object-fit: cover; }
.about-photo-deco {
  position: absolute; top: -30px; left: -30px;
  width: 100px; height: 100px;
  background: radial-gradient(circle at center, var(--green-soft) 0%, var(--rose) 100%);
  border-radius: 50%; z-index: -1; filter: blur(20px); opacity: 0.7;
}

/* =============================================
   COURSES SHOWCASE
   ============================================= */
.courses-v2 { padding: 110px 0; background: linear-gradient(180deg, var(--cream) 0%, var(--cream-warm) 100%); position: relative; }
.courses-v2::before {
  content: ''; position: absolute; top: 0; right: 0;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(157, 187, 174, 0.20) 0%, transparent 60%);
  pointer-events: none;
}
.section-head-v2 { text-align: center; margin-bottom: 70px; }
.section-head-v2 .section-eyebrow-v2 {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--green); margin-bottom: 20px;
}
.section-head-v2 .section-eyebrow-v2::before,
.section-head-v2 .section-eyebrow-v2::after { content: ''; width: 30px; height: 1px; background: var(--green); }
.section-head-v2 h2 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(36px, 5vw, 56px); line-height: 1.05;
  letter-spacing: -1.6px; color: var(--navy);
  margin: 0 auto 18px; max-width: 780px;
}
.section-head-v2 h2 .italic { font-style: italic; color: var(--green); font-weight: 600; }
.section-head-v2 p { font-size: 18px; color: var(--navy-soft); max-width: 620px; margin: 0 auto; line-height: 1.6; }

.course-feature {
  display: grid; grid-template-columns: 1fr; gap: 50px;
  align-items: center; margin-bottom: 80px; position: relative;
}
.course-feature.reverse .course-feature-text { order: 1; }
.course-feature-photo {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  aspect-ratio: 4/3; box-shadow: var(--shadow-soft);
}
.course-feature-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.course-feature-photo:hover img { transform: scale(1.04); }
.course-feature-photo .photo-tag {
  position: absolute; top: 20px; left: 20px;
  background: rgba(255, 255, 255, 0.92); backdrop-filter: blur(12px);
  padding: 8px 16px; border-radius: var(--r-pill);
  font-size: 12px; font-weight: 700; color: var(--navy);
  letter-spacing: 1px; text-transform: uppercase;
}
.course-feature-text .course-num {
  font-family: var(--font-display); font-size: 14px; font-weight: 600;
  color: var(--green); letter-spacing: 4px; margin-bottom: 16px;
}
.course-feature-text h3 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(28px, 3.6vw, 42px); line-height: 1.08;
  letter-spacing: -0.8px; color: var(--navy); margin-bottom: 18px;
}
.course-feature-text > p { font-size: 17px; line-height: 1.7; color: var(--navy-soft); margin-bottom: 22px; }
.course-feature-meta {
  display: flex; flex-wrap: wrap; gap: 20px;
  margin-bottom: 28px; font-size: 13px; color: var(--navy-soft); font-weight: 500;
}
.course-feature-meta span { display: inline-flex; align-items: center; gap: 6px; }
.course-feature-meta strong { color: var(--navy); font-weight: 700; }

/* =============================================
   PILLARS V2
   ============================================= */
.pillars-v2 { padding: 110px 0; background: var(--navy); color: var(--cream); position: relative; overflow: hidden; }
.pillars-v2::before {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(2, 86, 72, 0.45) 0%, transparent 60%);
  pointer-events: none;
}
.pillars-v2::after {
  content: ''; position: absolute; bottom: -200px; left: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(232, 208, 206, 0.14) 0%, transparent 60%);
  pointer-events: none;
}
.pillars-v2 .section-head-v2 h2 { color: var(--cream); }
.pillars-v2 .section-head-v2 h2 .italic { color: var(--green-soft); }
.pillars-v2 .section-head-v2 .section-eyebrow-v2 { color: var(--green-soft); }
.pillars-v2 .section-head-v2 .section-eyebrow-v2::before,
.pillars-v2 .section-head-v2 .section-eyebrow-v2::after { background: var(--green-soft); }
.pillars-v2 .section-head-v2 p { color: rgba(244, 244, 244, 0.7); }
.pillars-v2-list { display: grid; grid-template-columns: 1fr; gap: 0; position: relative; z-index: 1; }
.pillar-item-v2 {
  display: grid; grid-template-columns: auto 1fr; gap: 32px;
  padding: 40px 0; border-top: 1px solid rgba(244, 244, 244, 0.12);
  align-items: center; transition: all 0.3s ease;
}
.pillar-item-v2:last-child { border-bottom: 1px solid rgba(244, 244, 244, 0.12); }
.pillar-item-v2:hover { padding-left: 14px; }
.pillar-item-v2 .pillar-num {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(48px, 7vw, 80px); line-height: 0.9;
  color: var(--green-soft); letter-spacing: -2px; font-style: italic;
}
.pillar-item-v2 .pillar-content h3 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(22px, 2.6vw, 32px); letter-spacing: -0.6px;
  margin-bottom: 8px; color: var(--cream); line-height: 1.15;
}
.pillar-item-v2 .pillar-content p {
  font-size: 16px; line-height: 1.65;
  color: rgba(244, 244, 244, 0.78); max-width: 720px;
}

/* =============================================
   BLOG
   ============================================= */
.blog-v2 { padding: 110px 0; position: relative; }
.blog-v2 .section-head-v2 { text-align: left; max-width: 640px; }
.blog-v2 .section-head-v2 .section-eyebrow-v2::after { display: none; }
.blog-list { display: grid; grid-template-columns: 1fr; gap: 14px; margin-top: 40px; }
.blog-item {
  display: grid; grid-template-columns: 1fr; gap: 20px;
  padding: 30px 0; border-top: 1px solid var(--gray-line);
  align-items: center; transition: all 0.3s ease; cursor: pointer;
}
.blog-item:last-child { border-bottom: 1px solid var(--gray-line); }
.blog-item:hover { padding-left: 14px; }
.blog-item:hover .blog-item-arrow { transform: translateX(8px); color: var(--green); }
.blog-item-meta {
  font-size: 11px; font-weight: 700; letter-spacing: 1.6px;
  text-transform: uppercase; color: var(--green); margin-bottom: 8px;
}
.blog-item h3 {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(22px, 2.4vw, 30px); line-height: 1.18;
  letter-spacing: -0.6px; color: var(--navy);
  margin-bottom: 8px; transition: color 0.2s ease;
}
.blog-item:hover h3 { color: var(--green); }
.blog-item p { font-size: 15.5px; line-height: 1.6; color: var(--navy-soft); }
.blog-item-arrow { font-size: 22px; color: var(--navy-soft); transition: all 0.3s ease; }

/* =============================================
   TESTIMONIALS V2
   ============================================= */
.testimonials-v2 { padding: 110px 0; background: var(--cream-warm); position: relative; overflow: hidden; }
.testimonials-v2::before {
  content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(157, 187, 174, 0.15) 0%, transparent 60%);
  pointer-events: none;
}
.testimonials-grid-v2 { display: grid; grid-template-columns: 1fr; gap: 30px; position: relative; z-index: 1; }
.testimonial-v2 {
  background: var(--paper); border-radius: var(--r-lg);
  padding: 36px 32px; position: relative;
  box-shadow: var(--shadow-card); transition: all 0.3s ease;
}
.testimonial-v2:hover { transform: translateY(-4px); box-shadow: var(--shadow-glow-amber); }
.testimonial-v2 .quote-mark {
  font-family: var(--font-display); font-weight: 800;
  font-size: 56px; line-height: 0.5;
  color: var(--green); margin-bottom: 12px; display: block;
}
.testimonial-v2 .quote-text {
  font-family: var(--font-display); font-weight: 500;
  font-size: 18px; line-height: 1.45;
  color: var(--navy); margin-bottom: 24px; letter-spacing: -0.3px;
}
.testimonial-v2 .author {
  display: flex; align-items: center; gap: 14px;
  border-top: 1px solid var(--gray-line); padding-top: 20px;
}
.testimonial-v2 .author-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--green));
  display: grid; place-items: center; color: var(--cream);
  font-family: var(--font-display); font-weight: 700; font-size: 16px;
}
.testimonial-v2 .author-info strong { display: block; font-size: 14.5px; color: var(--navy); font-weight: 700; }
.testimonial-v2 .author-info span { font-size: 12.5px; color: var(--muted); }

/* =============================================
   CTA FINAL
   ============================================= */
.cta-final { padding: 100px 0; position: relative; text-align: center; }
.cta-final-card {
  max-width: 980px; margin: 0 auto;
  background: linear-gradient(135deg, var(--navy) 0%, var(--green) 100%);
  border-radius: var(--r-xl); padding: 80px 40px; color: var(--cream);
  position: relative; overflow: hidden; box-shadow: var(--shadow-glow-navy);
}
.cta-final-card::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(157, 187, 174, 0.40) 0%, transparent 60%);
  pointer-events: none;
}
.cta-final-card::after {
  content: ''; position: absolute; bottom: -100px; left: -100px;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(232, 208, 206, 0.25) 0%, transparent 60%);
  pointer-events: none;
}
.cta-final-card h2 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(34px, 5vw, 56px); line-height: 1.05;
  letter-spacing: -1.6px; margin-bottom: 24px; position: relative;
}
.cta-final-card h2 .italic { font-style: italic; color: var(--green-soft); font-weight: 600; }
.cta-final-card p {
  font-size: 18px; opacity: 0.90; margin-bottom: 36px;
  max-width: 580px; margin-left: auto; margin-right: auto; position: relative;
}
.cta-final-card .btn-v2 { position: relative; background: var(--cream); color: var(--navy); }
.cta-final-card .btn-v2:hover { background: var(--green-soft); color: var(--navy); }

/* =============================================
   FOOTER V2
   ============================================= */
.footer-v2 { background: var(--navy); color: rgba(244, 244, 244, 0.78); padding: 80px 0 30px; }
.footer-v2-grid {
  display: grid; grid-template-columns: 1fr; gap: 40px;
  padding-bottom: 50px; border-bottom: 1px solid rgba(244, 244, 244, 0.12);
}
.footer-v2-brand .logo-wrap { margin-bottom: 16px; }
.footer-v2-brand .logo-wrap img { height: 64px; }
.footer-v2-brand p { font-size: 14.5px; line-height: 1.65; max-width: 340px; }
.footer-v2-col h4 {
  font-family: var(--font-display); font-weight: 700;
  font-size: 13px; color: var(--green-soft);
  letter-spacing: 1.6px; text-transform: uppercase; margin-bottom: 20px;
}
.footer-v2-col ul li { margin-bottom: 10px; }
.footer-v2-col a { font-size: 14.5px; color: rgba(244, 244, 244, 0.78); transition: color 0.2s ease; }
.footer-v2-col a:hover { color: var(--green-soft); }
.footer-v2-bottom {
  display: flex; flex-wrap: wrap; gap: 14px;
  justify-content: space-between; padding-top: 30px;
  font-size: 13px; color: rgba(244, 244, 244, 0.5);
}
.footer-v2-social { display: flex; gap: 12px; }
.footer-v2-social a {
  width: 42px; height: 42px; display: grid; place-items: center;
  background: rgba(244, 244, 244, 0.06); border-radius: 50%;
  font-size: 18px; color: var(--cream); transition: all 0.2s ease;
}
.footer-v2-social a:hover { background: var(--green-soft); color: var(--navy); transform: translateY(-2px); }

/* =============================================
   PAGE BANNER
   ============================================= */
.page-banner-v2 { position: relative; padding: 70px 0 80px; overflow: hidden; background: var(--cream); }
.page-banner-v2::before {
  content: ''; position: absolute; top: -150px; right: -150px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(157, 187, 174, 0.22) 0%, transparent 60%);
  pointer-events: none;
}
.page-banner-v2::after {
  content: ''; position: absolute; bottom: -200px; left: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(232, 208, 206, 0.28) 0%, transparent 60%);
  pointer-events: none;
}
.page-banner-v2 .breadcrumb-v2 {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 600; letter-spacing: 1.4px;
  text-transform: uppercase; color: var(--muted);
  margin-bottom: 24px; position: relative; z-index: 1;
}
.page-banner-v2 .breadcrumb-v2 a { color: var(--navy); }
.page-banner-v2 .breadcrumb-v2 .sep { color: var(--green); }
.page-banner-v2 h1 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(38px, 6.4vw, 76px); line-height: 1.0;
  letter-spacing: -2px; color: var(--navy);
  margin-bottom: 22px; position: relative; z-index: 1; max-width: 920px;
}
.page-banner-v2 h1 .italic { font-style: italic; color: var(--green); font-weight: 600; }
.page-banner-v2 .lead {
  font-size: clamp(17px, 2vw, 21px); line-height: 1.55;
  color: var(--navy-soft); max-width: 680px; position: relative; z-index: 1;
}

/* =============================================
   PROSE V2
   ============================================= */
.prose-v2 { max-width: 760px; margin: 0 auto; }
.prose-v2 h2 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(28px, 3.6vw, 40px); line-height: 1.1;
  letter-spacing: -0.8px; color: var(--navy); margin: 50px 0 18px;
}
.prose-v2 h2 .italic { font-style: italic; color: var(--green); font-weight: 600; }
.prose-v2 h3 {
  font-family: var(--font-display); font-weight: 600;
  font-size: 22px; margin: 32px 0 12px;
  color: var(--navy); letter-spacing: -0.4px;
}
.prose-v2 p { font-size: 17.5px; line-height: 1.75; color: var(--navy-soft); margin-bottom: 20px; }
.prose-v2 ul, .prose-v2 ol { margin: 0 0 22px 22px; list-style: none; }
.prose-v2 ol { counter-reset: list; }
.prose-v2 ol li { counter-increment: list; }
.prose-v2 ol li::before {
  content: counter(list, decimal-leading-zero);
  font-family: var(--font-display); font-weight: 700;
  color: var(--green); margin-right: 12px; font-size: 14px; letter-spacing: 1px;
}
.prose-v2 ul li::before { content: '◆'; color: var(--green); margin-right: 12px; font-size: 12px; }
.prose-v2 li {
  font-size: 17.5px; line-height: 1.7; color: var(--navy-soft);
  margin-bottom: 10px; margin-left: -22px; list-style: none;
}
.prose-v2 blockquote {
  border-left: 3px solid var(--green); padding: 6px 0 6px 24px;
  margin: 32px 0; font-style: italic;
  font-family: var(--font-display); font-size: 21px; font-weight: 500;
  color: var(--navy); letter-spacing: -0.3px; line-height: 1.5;
}
.prose-v2 strong { color: var(--navy); font-weight: 700; }
.prose-v2 a { color: var(--navy); border-bottom: 1px solid var(--green); padding-bottom: 1px; }
.prose-v2 a:hover { color: var(--green); }

/* =============================================
   FAQ v2
   ============================================= */
.faq-v2 { max-width: 880px; margin: 50px auto 0; }
.faq-item-v2 { border-bottom: 1px solid var(--gray-line); }
.faq-item-v2:first-child { border-top: 1px solid var(--gray-line); }
.faq-q-v2 {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 24px; padding: 26px 0; text-align: left;
  font-family: var(--font-display); font-size: 19px; font-weight: 600;
  color: var(--navy); background: transparent; cursor: pointer;
  letter-spacing: -0.3px; transition: color 0.2s ease;
}
.faq-q-v2:hover { color: var(--green); }
.faq-q-v2 .icon {
  flex-shrink: 0; width: 36px; height: 36px;
  display: grid; place-items: center;
  background: var(--navy-mist); color: var(--navy);
  border-radius: 50%; font-size: 16px; font-weight: 700;
  transition: all 0.25s ease;
}
.faq-item-v2.is-open .faq-q-v2 { color: var(--green); }
.faq-item-v2.is-open .faq-q-v2 .icon {
  background: var(--green); color: var(--cream); transform: rotate(45deg);
}
.faq-a-v2 { max-height: 0; overflow: hidden; transition: max-height 0.32s ease; }
.faq-a-v2 .inner {
  padding: 0 0 26px 0; font-size: 16.5px; line-height: 1.7;
  color: var(--navy-soft); max-width: 720px;
}

/* =============================================
   FORM V2
   ============================================= */
.form-card-v2 {
  background: var(--paper); border-radius: var(--r-lg);
  padding: 44px 36px; box-shadow: var(--shadow-card); border: 1px solid var(--gray-line);
}
.form-card-v2 h3 {
  font-family: var(--font-display); font-weight: 700;
  font-size: 26px; letter-spacing: -0.6px;
  color: var(--navy); margin-bottom: 8px;
}
.form-card-v2 .form-deck { font-size: 15px; color: var(--navy-soft); margin-bottom: 28px; line-height: 1.55; }
.form-row-v2 { margin-bottom: 18px; }
.form-row-v2 label {
  display: block; font-size: 12px; font-weight: 700;
  letter-spacing: 1.2px; text-transform: uppercase;
  color: var(--navy); margin-bottom: 8px;
}
.form-row-v2 input, .form-row-v2 textarea, .form-row-v2 select {
  width: 100%; padding: 16px 20px;
  font-family: inherit; font-size: 15.5px; color: var(--ink);
  background: var(--cream); border: 1.5px solid transparent;
  border-radius: var(--r-md); transition: all 0.2s ease;
}
.form-row-v2 textarea { resize: vertical; min-height: 130px; line-height: 1.55; }
.form-row-v2 input:focus, .form-row-v2 textarea:focus, .form-row-v2 select:focus {
  outline: none; border-color: var(--green); background: var(--paper);
  box-shadow: 0 0 0 4px rgba(2, 86, 72, 0.15);
}
.form-row-v2.is-invalid input, .form-row-v2.is-invalid textarea, .form-row-v2.is-invalid select { border-color: #c0392b; }
.form-msg-v2 {
  margin-top: 18px; padding: 14px 18px;
  border-radius: var(--r-sm); font-size: 14.5px; font-weight: 500; display: none;
}
.form-msg-v2.success { background: rgba(2, 86, 72, 0.10); color: var(--green-deep); display: block; }
.form-msg-v2.error { background: rgba(192, 57, 43, 0.10); color: #c0392b; display: block; }

/* =============================================
   AUDIENCE BLOCK
   ============================================= */
.audience-block { padding: 90px 0; border-top: 1px solid var(--gray-line); position: relative; }
.audience-block.is-tutor::before, .audience-block.is-student::before, .audience-block.is-vet::before {
  content: ''; position: absolute; top: -1px; left: 0;
  width: 60px; height: 4px; background: var(--green); border-radius: 2px;
}
.audience-grid-v2 { display: grid; grid-template-columns: 1fr; gap: 50px; align-items: start; }
.audience-side { position: sticky; top: 100px; }
.audience-side .badge {
  display: inline-block; font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--green); margin-bottom: 20px;
}
.audience-side h2 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(32px, 4.6vw, 52px); line-height: 1.05;
  letter-spacing: -1.4px; color: var(--navy); margin-bottom: 20px;
}
.audience-side h2 .italic { font-style: italic; color: var(--green); font-weight: 600; }
.audience-side > a { margin-top: 8px; }

/* =============================================
   CONTACT CHANNELS
   ============================================= */
.contact-channels { display: grid; grid-template-columns: 1fr; gap: 18px; }
.contact-channel {
  background: var(--paper); border-radius: var(--r-md);
  padding: 24px 26px; border: 1px solid var(--gray-line);
  transition: all 0.25s ease; display: flex; align-items: center;
  gap: 18px; text-decoration: none;
}
.contact-channel:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card); border-color: var(--green-soft);
}
.contact-channel .icon-wrap {
  width: 52px; height: 52px; display: grid; place-items: center;
  background: var(--green-soft); border-radius: 50%; font-size: 22px; flex-shrink: 0;
  color: var(--navy);
}
.contact-channel .channel-info strong {
  display: block; font-family: var(--font-display); font-weight: 700;
  font-size: 17px; color: var(--navy); margin-bottom: 4px;
}
.contact-channel .channel-info span { font-size: 14px; color: var(--navy-soft); }

/* =============================================
   MOBILE OPTIMIZATIONS
   ============================================= */
@media (max-width: 719px) {
  body { font-size: 16px; }
  .section { padding: 60px 0; }
  .hero-v2 { padding: 36px 0 60px; }
  .hero-content h1 { font-size: 40px; letter-spacing: -1.4px; line-height: 1.05; }
  .hero-content p { font-size: 16px; }
  .hero-actions-v2 { gap: 10px; }
  .btn-v2 { padding: 14px 22px; font-size: 14.5px; min-height: 44px; }
  .hero-photo-main { aspect-ratio: 4/4.4; transform: rotate(0); }
  .hero-photo-bubble { width: 110px; height: 110px; bottom: -20px; left: -10px; transform: rotate(2deg); }
  .hero-stat-floating { top: 18px; right: 8px; padding: 10px 14px; }
  .hero-stat-floating .icon { width: 32px; height: 32px; font-size: 15px; }
  .hero-stat-floating .text strong { font-size: 14px; }
  .hero-stat-floating .text span { font-size: 10px; }
  .quote-line { padding: 50px 0; }
  .quote-line p { font-size: 24px; letter-spacing: -0.6px; }
  .about-v2 { padding: 70px 0; }
  .about-text h2 { font-size: 32px; letter-spacing: -1px; }
  .about-text p { font-size: 16px; }
  .about-photo-secondary { width: 50%; bottom: -25px; right: -10px; border-width: 6px; }
  .courses-v2 { padding: 70px 0; }
  .course-feature { gap: 36px; margin-bottom: 60px; }
  .course-feature-text h3 { font-size: 26px; letter-spacing: -0.4px; }
  .course-feature-text > p { font-size: 16px; }
  .course-feature-meta { gap: 12px; font-size: 12px; }
  .pillars-v2 { padding: 70px 0; }
  .pillar-item-v2 { padding: 28px 0; gap: 18px; }
  .pillar-item-v2 .pillar-num { font-size: 44px; }
  .pillar-item-v2 .pillar-content h3 { font-size: 21px; }
  .pillar-item-v2 .pillar-content p { font-size: 15px; }
  .blog-v2 { padding: 70px 0; }
  .blog-item { padding: 22px 0; }
  .blog-item h3 { font-size: 21px; line-height: 1.22; }
  .blog-item p { font-size: 14.5px; }
  .blog-item-arrow { display: none; }
  .testimonials-v2 { padding: 70px 0; }
  .testimonial-v2 { padding: 28px 24px; }
  .testimonial-v2 .quote-text { font-size: 16px; }
  .cta-final { padding: 60px 0; }
  .cta-final-card { padding: 50px 24px; border-radius: var(--r-lg); }
  .cta-final-card h2 { font-size: 30px; letter-spacing: -0.8px; }
  .cta-final-card p { font-size: 16px; }
  .page-banner-v2 { padding: 50px 0 56px; }
  .page-banner-v2 h1 { font-size: 38px; letter-spacing: -1px; line-height: 1.05; }
  .page-banner-v2 .lead { font-size: 16px; }
  .prose-v2 h2 { font-size: 24px; }
  .prose-v2 h3 { font-size: 19px; }
  .prose-v2 p, .prose-v2 li { font-size: 16px; line-height: 1.65; }
  .prose-v2 blockquote { font-size: 17px; padding-left: 18px; }
  .audience-block { padding: 60px 0; }
  .audience-side { position: static; }
  .audience-side h2 { font-size: 30px; }
  .form-card-v2 { padding: 28px 22px; }
  .form-card-v2 h3 { font-size: 22px; }
  .form-row-v2 input, .form-row-v2 textarea, .form-row-v2 select { font-size: 16px; padding: 14px 16px; min-height: 48px; }
  .faq-q-v2 { font-size: 16px; padding: 22px 0; }
  .faq-q-v2 .icon { width: 32px; height: 32px; }
  .footer-v2 { padding: 60px 0 24px; }
  .footer-v2-grid { gap: 28px; padding-bottom: 36px; }
  .nav-v2 .nav-cta-v2 { padding: 12px 22px !important; min-height: 44px; }
  .menu-toggle-v2 { padding: 12px; min-width: 44px; min-height: 44px; }
  .contact-channel { padding: 18px 20px; }
}

/* TABLET / DESKTOP */
@media (min-width: 720px) {
  .hero-grid { grid-template-columns: 1.05fr 1fr; gap: 80px; }
  .about-grid { grid-template-columns: 1fr 1fr; gap: 80px; }
  .course-feature { grid-template-columns: 1fr 1fr; gap: 70px; }
  .testimonials-grid-v2 { grid-template-columns: repeat(3, 1fr); }
  .footer-v2-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .blog-item { grid-template-columns: auto 1fr auto; gap: 40px; }
  .blog-item-meta { width: 140px; align-self: start; padding-top: 4px; margin-bottom: 0; }
  .audience-grid-v2 { grid-template-columns: 5fr 7fr; gap: 70px; }
  .contact-channels { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .nav-v2 { display: flex; }
  .menu-toggle-v2 { display: none; }
  .pillar-item-v2 { grid-template-columns: 120px 1fr auto; }
}
@media (min-width: 1024px) and (max-width: 1180px) {
  .nav-v2 { gap: 18px; }
  .nav-v2 a { font-size: 13.5px; }
  .nav-v2 .nav-cta-v2 { padding: 10px 18px !important; }
}

/* ===================== AUX PAGE · BULLETS PILL ===================== */
.aux-bullets {
  display: grid;
  gap: 14px;
  max-width: 560px;
  margin-top: 26px;
}
.aux-bullet {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--navy);
  color: var(--paper);
  padding: 14px 22px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
.aux-bullet .dot {
  width: 28px; height: 28px;
  background: var(--green-soft);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-deep);
  font-weight: 800;
  font-size: 13px;
  flex-shrink: 0;
}

/* ===================== AUX PAGE · 3 INFO CARDS ===================== */
.aux-info-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  margin-top: 50px;
}
@media (min-width: 720px) {
  .aux-info-cards { grid-template-columns: repeat(3, 1fr); }
}
.aux-info-card {
  background: var(--paper);
  border: 1px solid var(--gray-line);
  border-radius: var(--r-md);
  padding: 32px 26px;
  text-align: center;
  box-shadow: var(--shadow-card);
}
.aux-info-card .num-circle {
  width: 70px; height: 70px;
  background: var(--navy);
  color: var(--paper);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  margin-bottom: 18px;
}
.aux-info-card h4 {
  font-family: var(--font-display);
  color: var(--navy-deep);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 10px;
  line-height: 1.3;
}
.aux-info-card p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0;
}

/* ===================== CONTACT STRIP ===================== */
.contact-strip {
  background: var(--navy-deep);
  color: var(--paper);
  padding: 28px 32px;
  border-radius: var(--r-pill);
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: center;
  align-items: center;
}
@media (max-width: 720px) {
  .contact-strip {
    border-radius: var(--r-md);
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
}
.contact-strip a, .contact-strip span {
  color: var(--paper);
  font-size: 14.5px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.contact-strip a:hover { color: var(--green-soft); }
.contact-strip .sep {
  width: 4px; height: 4px;
  background: var(--green-soft);
  border-radius: 50%;
  opacity: 0.6;
}
@media (max-width: 720px) { .contact-strip .sep { display: none; } }

/* ===================== PROSE LIST · CHECK ITEM ===================== */
.list-check {
  list-style: none;
  margin: 24px 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.list-check li {
  position: relative;
  padding-left: 30px;
  line-height: 1.6;
}
.list-check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--green);
  border: 3px solid var(--green-soft);
}
