/* ===== CSS Variables ===== */
:root {
  --color-brand: #8B2515;
  --color-brand-light: rgba(139, 37, 21, 0.05);
  --color-brand-glow: rgba(139, 37, 21, 0.4);
  --color-brand-hover: #7a1e10;

  --color-brand-v2: #8B230C;
  --color-brand-v2-light: rgba(139, 35, 12, 0.05);
  --color-brand-v2-glow: rgba(139, 35, 12, 0.4);
  --color-brand-v2-muted: #A8361C;

  --color-dark: #111827;
  --color-secondary: #4B5563;
  --color-light: #F8FAFC;
  --background: #ffffff;
  --foreground: #111827;

  --font-sans: 'Inter', system-ui, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;

  --container-max: 80rem;
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  background: var(--background);
  color: var(--foreground);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

::selection {
  background-color: var(--color-brand);
  color: #fff;
}

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

.font-serif { font-family: var(--font-serif); }

/* ===== Animations ===== */
@keyframes scrolldown {
  0% { transform: translateY(-100%); }
  50% { transform: translateY(0); }
  100% { transform: translateY(100%); }
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes ping {
  75%, 100% { transform: scale(2); opacity: 0; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }

/* ===== Background Patterns ===== */
.bg-noise {
  position: fixed;
  inset: 0;
  z-index: 0;
  opacity: 0.5;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.04'/%3E%3C/svg%3E");
}

.bg-advantages {
  background-color: var(--color-brand);
  position: relative;
}
.bg-advantages::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.3;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 0;
}

/* ===== Marquee ===== */
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 25s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }

.marquee-row {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding-right: 2.5rem;
  white-space: nowrap;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ===== Buttons ===== */
.btn-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 0.625rem 1.25rem;
  background: var(--color-brand);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: none;
  border-radius: 2px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: all var(--transition);
}
.btn-brand:hover {
  background: var(--color-brand-hover);
  box-shadow: 0 0 20px var(--color-brand-glow);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--color-brand);
  color: var(--color-brand);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 2px;
  transition: all var(--transition);
}
.btn-outline:hover {
  background: var(--color-brand);
  color: #fff;
}

.badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border: 1px solid rgba(139,37,21,0.3);
  color: var(--color-brand);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 2px;
  background: var(--color-brand-light);
}

.section-divider {
  width: 4rem;
  height: 4px;
  background: var(--color-brand);
  margin: 1.5rem auto 0;
}

/* ===== EKG Loader ===== */
#ekg-loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--color-brand);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: transform 1s cubic-bezier(0.76, 0, 0.24, 1);
}
#ekg-loader.hidden { transform: translateY(-100%); pointer-events: none; }
#ekg-loader canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 10; }
.loader-title {
  position: relative;
  z-index: 20;
  text-align: center;
  color: #fff;
  padding-top: 2.5rem;
}
.loader-title h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.loader-title span {
  display: block;
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: clamp(1rem, 2.5vw, 1.875rem);
  margin-top: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
}

/* ===== Header ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  padding: 1.25rem 0;
  transition: all var(--transition);
  animation: slideDown 0.8s ease 2.5s both;
}
.site-header.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #f3f4f6;
  padding: 0.75rem 0;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-logo img { height: 2.5rem; width: auto; object-fit: contain; }
.header-logo:hover { opacity: 0.8; }

.nav-desktop {
  display: none;
  align-items: center;
  gap: 1.5rem;
}
.nav-item { position: relative; }
.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: #1e293b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 0;
  transition: color var(--transition);
}
.nav-link:hover { color: var(--color-brand); }
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0.25rem;
  background: #fff;
  border: 1px solid #f3f4f6;
  box-shadow: 0 20px 25px rgba(0,0,0,0.1);
  min-width: 150px;
  padding: 0.5rem 0;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: all 0.2s;
}
.nav-item:hover .nav-dropdown {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.nav-dropdown a {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  color: #1e293b;
  transition: all var(--transition);
}
.nav-dropdown a:hover {
  color: var(--color-brand);
  background: #f8fafc;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: 1rem;
  padding-left: 1.5rem;
  border-left: 1px solid #e5e7eb;
}
.header-phone {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-brand);
  display: flex;
  align-items: center;
  gap: 0.375rem;
}
.header-phone:hover { opacity: 0.8; }

.menu-toggle { display: block; color: #1e293b; padding: 0.25rem; }
.menu-toggle svg { width: 28px; height: 28px; }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: var(--color-brand);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: #fff;
}
.mobile-menu-close svg { width: 32px; height: 32px; }
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: center;
  padding: 2rem;
  width: 100%;
}
.mobile-nav a {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: #fff;
  transition: color var(--transition);
}
.mobile-nav a:hover { color: rgba(255,255,255,0.7); }
.mobile-nav-actions {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.2);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  width: 100%;
}
.mobile-btn-white {
  width: 100%;
  max-width: 20rem;
  padding: 0.75rem 1.5rem;
  background: #fff;
  color: var(--color-brand);
  font-weight: 700;
  text-align: center;
}
.mobile-btn-outline {
  width: 100%;
  max-width: 20rem;
  padding: 0.75rem 1.5rem;
  border: 2px solid #fff;
  color: #fff;
  font-weight: 700;
  text-align: center;
}
.mobile-btn-outline:hover { background: rgba(255,255,255,0.1); }

@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
  .menu-toggle { display: none; }
  .header-logo img { height: 3rem; }
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #fff;
  padding: 6rem 0 8rem;
}
.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
  pointer-events: none;
}
.hero-gradient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 70% 60% at 50% 40%, rgba(139,37,21,0.04) 0%, transparent 70%);
}
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  margin-top: 2.5rem;
}
.hero-badge-wrap { overflow: hidden; margin-bottom: 1.25rem; }
.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 8vw, 6rem);
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1.1;
  max-width: 64rem;
  margin: 0 auto;
}
.hero h1 .brand-text {
  color: var(--color-brand);
  font-style: italic;
  padding: 0 0.5rem;
}
.hero-card {
  margin-top: 3rem;
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
  background: linear-gradient(to bottom, #fff, #f8fafc);
  border: 1px solid rgba(226,232,240,0.6);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 20px 50px rgba(0,0,0,0.05);
  position: relative;
  overflow: hidden;
}
.hero-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(139,37,21,0.3), transparent);
}
.hero-card-label {
  font-size: 0.625rem;
  font-weight: 700;
  color: var(--color-brand);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
}
.hero-card h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 3vw, 1.875rem);
  color: #1e293b;
  line-height: 1.4;
  margin-bottom: 2rem;
}
.hero-card h3 .highlight {
  color: var(--color-brand);
  font-weight: 700;
  font-style: italic;
  display: block;
  margin-top: 0.5rem;
}
.hero-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 2.5rem;
}
.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  padding: 1rem 2.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  background: var(--color-brand);
  border: 1px solid var(--color-brand);
  border-radius: 6px;
  box-shadow: 0 10px 15px rgba(0,0,0,0.1);
  transition: all 0.3s;
}
.hero-btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(139,37,21,0.3);
}
.hero-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  padding: 1rem 2.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-brand);
  background: transparent;
  border: 1px solid var(--color-brand);
  border-radius: 6px;
  transition: all 0.3s;
}
.hero-btn-secondary:hover {
  background: var(--color-brand-light);
  transform: translateY(-4px);
}
.hero-scroll {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0.5;
  z-index: 20;
}
.hero-scroll span {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: #64748b;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.scroll-line {
  width: 1px;
  height: 2rem;
  background: #e2e8f0;
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-brand);
  animation: scrolldown 2s ease-in-out infinite;
}

@media (min-width: 640px) {
  .hero-buttons { flex-direction: row; justify-content: center; }
  .hero-btn-primary, .hero-btn-secondary { width: auto; }
  .hero-card { padding: 3.5rem; }
  .hero-card-label { font-size: 0.75rem; }
}
@media (min-width: 768px) {
  .hero-scroll { bottom: 3rem; }
  .scroll-line { height: 3rem; }
}

/* ===== Marquee Section ===== */
.marquee-section {
  background: var(--color-brand);
  padding: 1rem 0;
  overflow: hidden;
}
.marquee-section .marquee-row { color: rgba(255,255,255,0.9); }
.marquee-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.8);
  opacity: 0.6;
}

/* ===== Why Choose RNs ===== */
.section { padding: 6rem 0; position: relative; }
.section-white { background: #fff; }
.section-gray { background: #f8fafc; border-top: 1px solid #f3f4f6; }

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}
.why-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}
.why-content h2 .brand { color: var(--color-brand); font-style: italic; }
.why-content p {
  color: #475569;
  font-size: 1.125rem;
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 1.5rem;
}
.specialty-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-bottom: 2rem;
}
.specialty-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border: 1px solid #e5e7eb;
  border-radius: 2px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #1e293b;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  transition: all var(--transition);
  cursor: default;
}
.specialty-tag:hover {
  background: var(--color-brand);
  color: #fff;
  border-color: var(--color-brand);
}
.specialty-tag svg { color: var(--color-brand); width: 14px; height: 14px; }
.specialty-tag:hover svg { color: #fff; }
.why-actions { display: flex; flex-direction: column; gap: 1rem; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.stat-card {
  padding: 2rem;
  border-radius: 2px;
  text-align: center;
  transition: all 0.3s;
}
.stat-card:hover { transform: translateY(-4px); }
.stat-card-white {
  background: #fff;
  border: 1px solid #f3f4f6;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}
.stat-card-white:hover { box-shadow: 0 10px 15px rgba(0,0,0,0.1); }
.stat-card-brand { background: var(--color-brand); box-shadow: 0 10px 15px rgba(139,37,21,0.2); }
.stat-card-brand:hover { box-shadow: 0 20px 25px rgba(139,37,21,0.3); }
.stat-card-dark { background: #111827; box-shadow: 0 10px 15px rgba(0,0,0,0.2); }
.stat-card-dark:hover { box-shadow: 0 20px 25px rgba(0,0,0,0.3); }
.stat-number {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}
.stat-card-white .stat-number { color: var(--color-brand); }
.stat-card-white .stat-label { color: #64748b; }
.stat-card-brand .stat-number, .stat-card-brand .stat-label { color: #fff; }
.stat-card-brand .stat-label { color: rgba(255,255,255,0.75); }
.stat-card-dark .stat-number { color: #fff; }
.stat-card-dark .stat-label { color: rgba(255,255,255,0.6); }
.stat-sublabel {
  font-size: 0.625rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: normal;
  display: block;
  margin-top: 0.25rem;
}

@media (min-width: 1024px) {
  .why-grid { grid-template-columns: 1fr 1fr; }
  .why-actions { flex-direction: row; }
  .stat-number { font-size: 3.125rem; }
}

/* ===== Services ===== */
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #0f172a;
}
.section-header h2 .brand { color: var(--color-brand); font-style: italic; }

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.service-card {
  background: #fff;
  padding: 2.5rem;
  border: 1px solid #f3f4f6;
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
  cursor: default;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}
.service-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  transition: all 0.5s;
}
.service-card:hover .service-icon {
  background: var(--color-brand-light);
  border-color: rgba(139,37,21,0.2);
}
.service-icon svg { color: var(--color-brand); width: 24px; height: 24px; }
.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  letter-spacing: 0.025em;
}
.service-card p {
  color: #475569;
  line-height: 1.75;
  font-weight: 300;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 4px;
  background: var(--color-brand);
  transition: width 0.5s;
}
.service-card:hover::after { width: 100%; }

@media (min-width: 768px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
  .service-card { padding: 3rem; }
}

/* ===== Video Intro ===== */
.video-section { padding: 6rem 0; background: #fff; }
.video-header { text-align: center; margin-bottom: 3rem; }
.video-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: #0f172a;
}
.video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
  border: 1px solid #e5e7eb;
}
.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ===== Advantages Accordion ===== */
.advantages-section {
  padding: 6rem 0;
  position: relative;
  z-index: 1;
}
.advantages-section h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 3rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
.accordion { display: flex; flex-direction: column; gap: 1rem; max-width: 56rem; margin: 0 auto; }
.accordion-item {
  background: #fff;
  border-left: 4px solid var(--color-brand);
  box-shadow: 0 10px 15px rgba(0,0,0,0.1);
  border-radius: 2px;
  overflow: hidden;
}
.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  background: #fff;
  transition: background var(--transition);
}
.accordion-trigger:hover { background: #f8fafc; }
.accordion-trigger-content {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-align: left;
}
.accordion-trigger svg.icon { color: var(--color-brand); width: 24px; height: 24px; flex-shrink: 0; }
.accordion-trigger svg.chevron { color: var(--color-brand); width: 20px; height: 20px; flex-shrink: 0; transition: transform 0.3s; }
.accordion-item.open .accordion-trigger svg.chevron { transform: rotate(180deg); }
.accordion-title {
  font-weight: 700;
  color: #0f172a;
  font-size: 1.125rem;
}
.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  opacity: 0;
}
.accordion-item.open .accordion-panel {
  max-height: 500px;
  opacity: 1;
}
.accordion-content {
  padding: 0.5rem 1.5rem 1.5rem 4.5rem;
  color: #475569;
  font-weight: 300;
  line-height: 1.75;
}

@media (min-width: 768px) {
  .accordion-trigger { padding: 1.5rem; }
  .accordion-title { font-size: 1.25rem; }
}

/* ===== CTA Section ===== */
.cta-section { padding: 6rem 0; background: #f8fafc; position: relative; overflow: hidden; }
.cta-header { text-align: center; margin-bottom: 3.5rem; }
.cta-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #0f172a;
}
.cta-header h2 .brand { color: var(--color-brand); font-style: italic; }
.cta-header p {
  margin-top: 1.25rem;
  color: #475569;
  font-size: 1.125rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
}
.cta-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.cta-card {
  padding: 2rem;
  border-radius: 2px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.3s;
}
.cta-card:hover { transform: translateY(-8px); }
.cta-card-brand {
  background: var(--color-brand);
  color: #fff;
  box-shadow: 0 20px 25px rgba(139,37,21,0.2);
}
.cta-card-brand:hover { box-shadow: 0 25px 50px rgba(139,37,21,0.3); }
.cta-card-white {
  background: #fff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}
.cta-card-white:hover { box-shadow: 0 20px 25px rgba(0,0,0,0.1); }
.cta-card-dark {
  background: #111827;
  color: #fff;
  box-shadow: 0 20px 25px rgba(0,0,0,0.2);
}
.cta-card-dark:hover { box-shadow: 0 25px 50px rgba(0,0,0,0.3); }
.cta-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}
.cta-card-brand .cta-icon { background: rgba(255,255,255,0.2); }
.cta-card-brand .cta-icon svg { color: #fff; width: 28px; height: 28px; }
.cta-card-white .cta-icon { background: var(--color-brand-light); }
.cta-card-white .cta-icon svg { color: var(--color-brand); width: 28px; height: 28px; }
.cta-card-dark .cta-icon { background: rgba(255,255,255,0.1); }
.cta-card-dark .cta-icon svg { color: #fff; width: 28px; height: 28px; }
.cta-card h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: 0.025em;
}
.cta-card-white h3 { color: #0f172a; }
.cta-card p {
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
  font-weight: 300;
}
.cta-card-brand p { color: rgba(255,255,255,0.8); }
.cta-card-white p { color: #475569; }
.cta-card-dark p { color: rgba(255,255,255,0.6); }
.cta-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 2px;
  transition: all var(--transition);
}
.cta-card-brand a { background: #fff; color: var(--color-brand); }
.cta-card-brand a:hover { background: rgba(255,255,255,0.9); }
.cta-card-white a { background: var(--color-brand); color: #fff; }
.cta-card-white a:hover { background: var(--color-brand-hover); }
.cta-card-dark a { background: rgba(255,255,255,0.1); color: #fff; border: 1px solid rgba(255,255,255,0.2); }
.cta-card-dark a:hover { background: #fff; color: #0f172a; }
.cta-card-white.cta-card-outline a { background: #fff; color: var(--color-brand); border: 1px solid #e5e7eb; }
.cta-card-white.cta-card-outline a:hover { border-color: var(--color-brand); }

@media (min-width: 640px) { .cta-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .cta-grid { grid-template-columns: repeat(4, 1fr); } }

/* ===== Footer ===== */
.site-footer {
  background: #0a0f1a;
  color: #fff;
  padding: 4rem 0 2rem;
  border-top: 4px solid var(--color-brand);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer-brand-logo {
  display: inline-block;
  padding: 0.5rem;
  background: rgba(255,255,255,0.05);
  border-radius: 2px;
  margin-bottom: 1rem;
}
.footer-brand-logo img {
  height: 2.5rem;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
}
.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-brand);
}
.footer-phone:hover { color: #fff; }
.footer-col h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: all var(--transition);
}
.footer-col a:hover { color: #fff; margin-left: 4px; }
.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-bottom p { font-size: 0.875rem; color: rgba(255,255,255,0.4); text-align: center; }
.social-links { display: flex; gap: 0.75rem; }
.social-links a {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.social-links a:hover { background: var(--color-brand); color: #fff; }
.footer-links { display: flex; align-items: center; gap: 1.25rem; }
.footer-links a { font-size: 0.875rem; color: rgba(255,255,255,0.4); }
.footer-links a:hover { color: #fff; }
.footer-top-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.4);
  cursor: pointer;
}
.footer-top-btn:hover { color: var(--color-brand); }

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}
@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ===== WhatsApp Widget ===== */
.whatsapp-widget {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.whatsapp-popup {
  display: none;
  width: 20rem;
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
  overflow: hidden;
  border: 1px solid #f3f4f6;
  margin-bottom: 1rem;
  animation: fadeInUp 0.3s ease;
}
.whatsapp-popup.open { display: block; }
.whatsapp-header {
  background: var(--color-brand);
  padding: 1.25rem;
  color: #fff;
}
.whatsapp-header h3 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.125rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}
.whatsapp-header p { font-size: 0.875rem; color: rgba(255,255,255,0.8); font-weight: 300; }
.whatsapp-body { padding: 1.25rem; background: #f8fafc; }
.whatsapp-body > p { font-size: 0.75rem; color: #94a3b8; margin-bottom: 1rem; line-height: 1.5; }
.whatsapp-contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem;
  background: #fff;
  border-radius: 0.75rem;
  border-left: 4px solid #25D366;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  transition: all 0.3s;
}
.whatsapp-contact:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.1); transform: translateY(-2px); }
.whatsapp-contact-info { display: flex; align-items: center; gap: 0.75rem; }
.whatsapp-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(37,211,102,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #25D366;
}
.whatsapp-name { font-size: 0.875rem; font-weight: 700; color: #1e293b; }
.whatsapp-role { font-size: 0.625rem; color: #64748b; text-transform: uppercase; letter-spacing: 0.05em; font-weight: 600; }
.whatsapp-btn {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: var(--color-brand);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(139,37,21,0.4);
  position: relative;
  transition: background var(--transition);
}
.whatsapp-btn:hover { background: var(--color-brand-hover); }
.whatsapp-btn .ping {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--color-brand);
  opacity: 0.2;
  animation: ping 3s cubic-bezier(0,0,0.2,1) infinite;
}

/* ===== Main wrapper ===== */
main { position: relative; z-index: 10; }
.page-wrapper { position: relative; z-index: 10; }

/* ===== V2 Styles ===== */
.v2-page ::selection { background: var(--color-brand-v2); }
.v2-page .badge { border-color: rgba(139,35,12,0.3); color: var(--color-brand-v2); background: var(--color-brand-v2-light); }
.v2-page .btn-brand { background: var(--color-brand-v2); }
.v2-page .btn-brand:hover { background: #0f172a; box-shadow: 0 0 20px var(--color-brand-v2-glow); }
.v2-page .section-divider { background: var(--color-brand-v2); }

.v2-header { animation: slideDown 0.8s ease both; background: rgba(255,255,255,0.95); backdrop-filter: blur(4px); border-bottom: 1px solid #f3f4f6; padding: 1rem 0; }
.v2-header.scrolled { box-shadow: 0 4px 6px rgba(0,0,0,0.05); padding: 0.75rem 0; }
.v2-header .nav-link:hover { color: var(--color-brand-v2); }
.v2-header .nav-dropdown { border-top: 2px solid var(--color-brand-v2); }
.v2-header .nav-dropdown a:hover { color: var(--color-brand-v2); }
.v2-header .header-phone { color: #1e293b; }
.v2-header .header-phone:hover { color: var(--color-brand-v2); }
.v2-phone-icon { background: #FAF5F4; width: 2.5rem; height: 2.5rem; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--color-brand-v2); }
.v2-header .btn-brand { background: var(--color-brand-v2); }
.v2-header .btn-brand:hover { background: #0f172a; }

.v2-mobile-menu { background: #fff; }
.v2-mobile-menu .mobile-nav a { font-family: var(--font-sans); font-weight: 700; color: #1e293b; }
.v2-mobile-menu .mobile-nav a:hover { color: var(--color-brand-v2); }
.v2-mobile-cta { padding: 1rem; background: var(--color-brand-v2); color: #fff; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; text-align: center; }
.v2-mobile-cta:hover { background: #0f172a; }

.v2-hero { min-height: 90vh; display: flex; align-items: center; background: #fff; overflow: hidden; position: relative; }
.v2-hero::before { content: ''; position: absolute; top: 0; left: 0; width: 50%; height: 100%; background: #f8fafc; display: none; }
.v2-hero-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; position: relative; z-index: 10; }
.v2-hero-label { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.v2-hero-label .line { height: 2px; width: 3rem; background: var(--color-brand-v2); }
.v2-hero-label span { font-size: 0.625rem; font-weight: 700; color: var(--color-brand-v2); text-transform: uppercase; letter-spacing: 0.2em; }
.v2-hero h1 { font-size: clamp(2.5rem, 6vw, 5rem); font-weight: 700; color: #0f172a; line-height: 1.05; letter-spacing: -0.02em; margin-bottom: 2rem; }
.v2-hero h1 .brand { color: var(--color-brand-v2); font-style: italic; font-family: var(--font-serif); font-weight: 300; }
.v2-hero-quote { font-size: 1.125rem; color: #475569; font-weight: 500; line-height: 1.6; max-width: 32rem; border-left: 4px solid #e2e8f0; padding-left: 1.5rem; margin-bottom: 2.5rem; }
.v2-hero-quote .highlight { color: var(--color-brand-v2); font-weight: 700; font-style: italic; }
.v2-hero-image { position: relative; height: 500px; border-radius: 30px; overflow: hidden; box-shadow: 0 25px 50px rgba(0,0,0,0.15); }
.v2-hero-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s; }
.v2-hero-image:hover img { transform: scale(1.05); }
.v2-hero-overlay { position: absolute; bottom: 0; left: 0; width: 100%; height: 75%; background: linear-gradient(to top, #2c0b03, rgba(139,35,12,0.9), transparent); z-index: 2; pointer-events: none; }
.v2-hero-branding { position: absolute; bottom: 0; left: 0; width: 100%; height: 100%; z-index: 3; display: flex; flex-direction: column; align-items: center; justify-content: flex-end; padding-bottom: 3rem; }
.v2-hero-branding .godoy-text { font-size: clamp(3rem, 8vw, 6.5rem); font-weight: 900; color: #fff; line-height: 1; letter-spacing: -0.05em; text-shadow: 0 4px 20px rgba(0,0,0,0.3); margin-bottom: 1rem; }
.v2-hero-pill { background: rgba(255,255,255,0.1); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.2); color: #fff; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.25em; padding: 0.625rem 2rem; border-radius: 9999px; box-shadow: 0 8px 30px rgba(0,0,0,0.12); }
.v2-hero-sub { font-size: 0.625rem; letter-spacing: 0.6em; color: rgba(255,255,255,0.7); font-weight: 300; text-transform: uppercase; margin-top: 1.25rem; padding-left: 0.5rem; }
.v2-hero-tagline { padding: 1.25rem 2.5rem; margin-top: 2rem; position: relative; }
.v2-hero-tagline p { font-size: 0.9375rem; color: rgba(255,255,255,0.95); font-family: var(--font-serif); font-style: italic; text-align: center; font-weight: 300; line-height: 1.6; }
.v2-corner { position: absolute; width: 12px; height: 12px; border-color: rgba(255,255,255,0.5); transition: all 0.5s; }
.v2-hero-tagline:hover .v2-corner { width: 20px; height: 20px; border-color: rgba(255,255,255,0.9); }
.v2-corner-tl { top: 0; left: 0; border-top: 1.5px solid; border-left: 1.5px solid; }
.v2-corner-tr { top: 0; right: 0; border-top: 1.5px solid; border-right: 1.5px solid; }
.v2-corner-bl { bottom: 0; left: 0; border-bottom: 1.5px solid; border-left: 1.5px solid; }
.v2-corner-br { bottom: 0; right: 0; border-bottom: 1.5px solid; border-right: 1.5px solid; }

.v2-marquee { background: #0f172a; border-top: 1px solid #1e293b; border-bottom: 1px solid #1e293b; padding: 1.5rem 0; }
.v2-marquee .marquee-row { color: #cbd5e1; font-size: 0.6875rem; letter-spacing: 0.2em; gap: 3rem; }
.v2-marquee .marquee-row svg { color: var(--color-brand-v2); width: 12px; height: 12px; }

.v2-section-label { font-size: 0.75rem; font-weight: 700; color: var(--color-brand-v2); text-transform: uppercase; letter-spacing: 0.2em; margin-bottom: 1rem; display: flex; align-items: center; gap: 0.75rem; }
.v2-section-label .line { width: 2rem; height: 1px; background: var(--color-brand-v2); }

.v2-why-image { position: relative; width: 100%; height: 280px; margin-bottom: 3rem; }
.v2-why-image-back { position: absolute; inset: 0; background: var(--color-brand-v2); border-radius: 0 50px 10px 10px; transform: translate(-12px, 12px); transition: transform 0.5s; }
.v2-why-image:hover .v2-why-image-back { transform: translate(-16px, 16px); }
.v2-why-image-front { position: absolute; inset: 0; border-radius: 0 50px 10px 10px; overflow: hidden; z-index: 10; }
.v2-why-image-front img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s; }
.v2-why-image:hover .v2-why-image-front img { transform: scale(1.1); }

.v2-specialty-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; margin-bottom: 3rem; }
.v2-specialty-item { display: flex; align-items: center; gap: 1.25rem; padding: 1rem 1.25rem; background: #F8FAFC; border-radius: 1rem; border: 1px solid #f1f5f9; transition: all var(--transition); }
.v2-specialty-item:hover { box-shadow: 0 10px 40px -10px rgba(0,0,0,0.05); }
.v2-specialty-icon { width: 2.5rem; height: 2.5rem; background: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--color-brand-v2); box-shadow: 0 1px 3px rgba(0,0,0,0.05); transition: transform 0.3s; }
.v2-specialty-item:hover .v2-specialty-icon { transform: rotate(12deg); }
.v2-specialty-item span { font-size: 0.9375rem; font-weight: 700; color: #1e293b; }

.v2-stat-card { padding: 2.5rem; border-radius: 1.5rem; min-height: 280px; display: flex; flex-direction: column; justify-content: center; transition: transform 0.3s; }
.v2-stat-card:hover { transform: translateY(-5px); }
.v2-stat-number { font-size: 5.3125rem; font-weight: 900; line-height: 1; letter-spacing: -0.05em; margin-bottom: 1rem; }
.v2-stat-label { font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.2em; font-weight: 700; }

.v2-services-header { display: flex; flex-direction: column; gap: 2rem; margin-bottom: 4rem; }
.v2-service-card { background: #fff; padding: 3rem; border: 1px solid #f1f5f9; position: relative; overflow: hidden; transition: all var(--transition); }
.v2-service-card:hover { box-shadow: 0 25px 50px rgba(0,0,0,0.15); }
.v2-service-card .deco { position: absolute; top: 0; right: 0; width: 8rem; height: 8rem; background: var(--color-brand-v2-light); border-radius: 0 0 0 100px; transition: transform var(--transition); }
.v2-service-card:hover .deco { transform: scale(1.1); }
.v2-service-card .icon { color: var(--color-brand-v2); margin-bottom: 2rem; transition: transform var(--transition); }
.v2-service-card:hover .icon { transform: translateY(-8px); }
.v2-service-card h4 { font-size: 1.25rem; font-weight: 700; color: #0f172a; margin-bottom: 1rem; }
.v2-service-card p { color: #475569; font-weight: 500; line-height: 1.6; }
.v2-service-card .bar { position: absolute; bottom: 0; left: 0; width: 100%; height: 3px; background: #f1f5f9; transition: background var(--transition); }
.v2-service-card:hover .bar { background: var(--color-brand-v2); }

.v2-agenda { margin-top: 8rem; position: relative; min-height: 600px; display: flex; flex-direction: column; }
.v2-agenda-bg { position: absolute; top: 0; left: 0; width: 60%; height: 100%; z-index: 0; }
.v2-agenda-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.v2-agenda-slice { display: none; position: absolute; top: 0; right: 0; width: 55%; height: 100%; background: #8B230C; z-index: 10; box-shadow: 0 25px 50px rgba(0,0,0,0.15); clip-path: polygon(18% 0, 100% 0, 100% 100%, 0% 100%); }
.v2-agenda-mobile-overlay { display: none; position: absolute; inset: 0; background: rgba(139,35,12,0.9); z-index: 10; }
.v2-agenda-content { position: relative; z-index: 20; display: flex; width: 100%; min-height: 600px; }
.v2-agenda-spacer { display: none; width: 41.67%; }
.v2-agenda-text { flex: 1; display: flex; flex-direction: column; justify-content: center; padding: 5rem 0 5rem 7rem; color: #fff; }
.v2-agenda-text h3 { font-size: clamp(3rem, 6vw, 5rem); font-weight: 700; margin-bottom: 3.5rem; line-height: 1; }
.v2-agenda-list { display: flex; flex-direction: column; gap: 2rem; max-width: 32rem; }
.v2-agenda-list li { display: flex; align-items: flex-start; gap: 1.25rem; font-size: 1.25rem; font-weight: 500; line-height: 1.4; }
.v2-agenda-list .dot { width: 10px; height: 10px; background: #fff; border-radius: 50%; flex-shrink: 0; margin-top: 10px; box-shadow: 0 1px 3px rgba(0,0,0,0.1); }

.v2-video-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
.v2-video-text h3 { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 700; color: #0f172a; line-height: 1.1; margin-bottom: 1.5rem; }
.v2-video-text p { color: #475569; font-weight: 500; line-height: 1.6; }
.v2-video-frame { position: relative; padding: 0.5rem; background: #fff; border: 1px solid #e2e8f0; box-shadow: 0 25px 50px rgba(0,0,0,0.15); }
.v2-video-deco { position: absolute; bottom: -1rem; right: -1rem; width: 6rem; height: 6rem; background: rgba(139,35,12,0.1); z-index: -1; }

.v2-advantages { background: #0f172a; border-top: 4px solid var(--color-brand-v2); }
.v2-advantages h3 { color: #fff; }
.v2-advantages .accordion-item { background: transparent; border-left: none; box-shadow: none; border-bottom: 1px solid #334155; border-radius: 0; }
.v2-advantages .accordion-trigger { background: transparent; padding: 1.5rem 0; }
.v2-advantages .accordion-trigger:hover { background: transparent; }
.v2-advantages .accordion-title { color: #cbd5e1; font-size: 1.25rem; }
.v2-advantages .accordion-item.open .accordion-title { color: #fff; }
.v2-advantages .accordion-content { color: #94a3b8; padding-left: 3.5rem; }
.v2-advantages-image { position: relative; width: 16rem; height: 16rem; margin: 2.5rem auto; }
.v2-advantages-ring { position: absolute; inset: 0; border-radius: 50%; border: 2px solid #334155; transform: scale(1.05); margin: 8px; }
.v2-advantages-image img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; border: 4px solid #0f172a; position: relative; z-index: 10; }

.v2-cta-card { display: flex; flex-direction: column; overflow: hidden; border-radius: 20px; box-shadow: 0 25px 50px rgba(0,0,0,0.15); border: 1px solid #f1f5f9; max-width: 72rem; margin: 0 auto; background: #fff; }
.v2-cta-image { position: relative; min-height: 400px; }
.v2-cta-image img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.v2-cta-info { background: var(--color-brand-v2); color: #fff; padding: 3rem 5rem; display: flex; flex-direction: column; justify-content: center; }
.v2-cta-info h3 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; margin-bottom: 3rem; }
.v2-contact-item { display: flex; align-items: center; gap: 1.5rem; margin-bottom: 2.5rem; transition: transform var(--transition); cursor: pointer; }
.v2-contact-item:hover { transform: translateX(8px); }
.v2-contact-icon { width: 3.5rem; height: 3.5rem; border-radius: 50%; border: 2px solid rgba(255,255,255,0.3); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: border-color var(--transition); }
.v2-contact-item:hover .v2-contact-icon { border-color: #fff; }
.v2-contact-item h4 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.25rem; }
.v2-contact-item p { color: rgba(255,255,255,0.8); font-weight: 500; }
.v2-cta-logo { margin-top: 4rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.2); }
.v2-cta-logo img { height: 2.5rem; filter: brightness(0) invert(1); }

.v2-footer { background: #0f172a; border-top: 8px solid var(--color-brand-v2); padding: 5rem 0 2.5rem; }
.v2-footer h4 { font-size: 0.8125rem; text-transform: uppercase; letter-spacing: 0.15em; color: #cbd5e1; display: flex; align-items: center; gap: 0.75rem; border: none; padding: 0; }
.v2-footer h4 .line { width: 1rem; height: 1px; background: var(--color-brand-v2); }
.v2-footer a:hover { color: var(--color-brand-v2); }
.v2-newsletter { display: flex; overflow: hidden; border-radius: 2px; }
.v2-newsletter input { flex: 1; min-width: 0; background: #1e293b; color: #fff; padding: 0.75rem 1rem; border: none; outline: none; }
.v2-newsletter input:focus { background: #334155; }
.v2-newsletter button { background: var(--color-brand-v2); color: #fff; padding: 0 1.5rem; font-size: 0.875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; flex-shrink: 0; transition: background var(--transition); }
.v2-newsletter button:hover { background: var(--color-brand-v2-muted); }
.v2-footer-top-btn { width: 2.5rem; height: 2.5rem; background: #1e293b; color: var(--color-brand-v2); display: flex; align-items: center; justify-content: center; transition: all var(--transition); }
.v2-footer-top-btn:hover { background: var(--color-brand-v2); color: #fff; }

@media (min-width: 640px) {
  .v2-specialty-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 768px) {
  .v2-video-grid { grid-template-columns: 1fr 2fr; }
  .v2-why-image { height: 360px; }
}
@media (min-width: 1024px) {
  .v2-hero::before { display: block; }
  .v2-hero-grid { grid-template-columns: 1fr 1fr; gap: 5rem; }
  .v2-hero-image { height: 700px; }
  .v2-why-grid { grid-template-columns: 1fr 1fr; gap: 6rem; }
  .v2-why-image { margin-bottom: 0; }
  .v2-services-header { flex-direction: row; justify-content: space-between; align-items: flex-end; }
  .v2-services-grid { grid-template-columns: repeat(3, 1fr); gap: 1px; }
  .v2-agenda-slice { display: block; }
  .v2-agenda-spacer { display: block; }
  .v2-advantages-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 4rem; }
  .v2-advantages-image { width: 20rem; height: 20rem; margin: 2.5rem 0; }
  .v2-advantages-sidebar { position: sticky; top: 8rem; }
  .v2-cta-card { flex-direction: row; }
  .v2-cta-image { width: 50%; min-height: 600px; }
  .v2-cta-info { width: 50%; }
  .v2-footer-grid { grid-template-columns: 4fr 2fr 2fr 3fr; gap: 2rem; }
  .nav-desktop.v2-nav { display: flex; }
}
@media (max-width: 1279px) {
  .v2-nav { display: none !important; }
}
@media (min-width: 1280px) {
  .v2-nav { display: flex !important; }
  .v2-menu-toggle { display: none !important; }
}
@media (max-width: 1023px) {
  .v2-agenda-mobile-overlay { display: block; }
  .v2-agenda-text { padding: 5rem 1.5rem !important; }
  .v2-agenda-bg { width: 100%; }
}
