/* ==============================
   LA PEDRA DISTRIBUTION – CSS
   Brand Colors from Style Guide:
   Deep Blue: #1A365D (titles, nav, footer)
   Stone Gray: #4A5568 (body text, secondary)
   Steel Blue: #3182CE (CTA buttons, links, accents)
   Light Gray: #F7FAFC (general background)
   ============================== */

/* --- CSS Variables --- */
:root {
  --deep-blue: #1A365D;
  --stone-gray: #4A5568;
  --steel-blue: #3182CE;
  --light-gray: #F7FAFC;
  --white: #ffffff;
  --dark-bg: #0f1f38;
  --dark-card: #162844;
  --steel-blue-light: #4299e1;
  --steel-blue-dark: #2b6cb0;
  --border: rgba(49,130,206,0.15);

  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;

  --shadow-sm: 0 2px 8px rgba(26,54,93,0.08);
  --shadow-md: 0 8px 32px rgba(26,54,93,0.14);
  --shadow-lg: 0 20px 60px rgba(26,54,93,0.22);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-body);
  background: var(--light-gray);
  color: var(--stone-gray);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

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

/* ==============================
   BUTTONS
   ============================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--steel-blue);
  color: var(--white);
  border-color: var(--steel-blue);
}
.btn-primary:hover {
  background: var(--steel-blue-dark);
  border-color: var(--steel-blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(49,130,206,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--steel-blue);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--light-gray);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

/* ==============================
   ANNOUNCEMENT BAR
   ============================== */
.announce-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1001;
  background: linear-gradient(90deg, var(--steel-blue-dark), var(--steel-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 9px 24px;
  font-family: var(--font-heading);
  font-size: 0.82rem;
}

.announce-icon { font-size: 1rem; flex-shrink: 0; }

.announce-text {
  color: rgba(255,255,255,0.92);
  font-size: 0.82rem;
  line-height: 1.4;
}
.announce-text strong { color: var(--white); }

.announce-link {
  color: var(--white);
  font-weight: 700;
  font-size: 0.82rem;
  border-bottom: 1px solid rgba(255,255,255,0.5);
  white-space: nowrap;
  transition: border-color var(--transition);
  flex-shrink: 0;
}
.announce-link:hover { border-color: var(--white); }

/* ==============================
   NAVBAR
   ============================== */
.navbar {
  position: fixed;
  top: 38px; left: 0; right: 0;
  z-index: 1000;
  background: rgba(26, 54, 93, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.3); }

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

.nav-logo { display: flex; align-items: center; }
.logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: screen;
  transition: opacity var(--transition);
}
.logo-img:hover { opacity: 0.85; }

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

.nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  letter-spacing: 0.02em;
}
.nav-link:hover { color: var(--white); background: rgba(255,255,255,0.08); }

.nav-cta { margin-left: 8px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ==============================
   HERO
   ============================== */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--dark-bg) 0%, #1a3a6e 50%, #0f2a50 100%);
  display: flex;
  align-items: center;
  padding-top: 110px;
  position: relative;
  overflow: hidden;
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
  background: var(--steel-blue);
}
.shape-1 { width: 600px; height: 600px; top: -200px; right: -100px; animation: pulse 8s ease-in-out infinite; }
.shape-2 { width: 400px; height: 400px; bottom: -100px; left: -150px; animation: pulse 10s ease-in-out infinite reverse; }
.shape-3 { width: 200px; height: 200px; top: 40%; left: 40%; animation: pulse 6s ease-in-out infinite; opacity: 0.04; }

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 1;
  padding-top: 60px;
  padding-bottom: 80px;
}

/* Re-layout hero: content takes full left column */
.hero-content { grid-column: 1; }
.hero-visual { grid-column: 2; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(49,130,206,0.15);
  border: 1px solid rgba(49,130,206,0.3);
  color: var(--steel-blue-light);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
  letter-spacing: 0.04em;
}

.hero-title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.gradient-text {
  background: linear-gradient(90deg, var(--steel-blue-light), #63b3ed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.72);
  max-width: 480px;
  margin-bottom: 24px;
  line-height: 1.8;
}

.hero-exclusive-note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-left: 3px solid var(--steel-blue-light);
  border-radius: var(--radius-sm);
  padding: 10px 18px;
  color: rgba(255,255,255,0.78);
  font-size: 0.85rem;
  font-weight: 600;
  font-family: var(--font-heading);
  margin-bottom: 36px;
  letter-spacing: 0.01em;
}
.exclusive-icon { font-size: 1rem; flex-shrink: 0; }

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
}
.stat-item { text-align: center; padding: 0 32px; }
.stat-item:first-child { padding-left: 0; }
.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2rem;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 420px;
}

.hero-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: var(--shadow-lg);
}

.hero-logo-big {
  width: 280px;
  height: auto;
  mix-blend-mode: screen;
}

.floating { animation: floating 4s ease-in-out infinite; }
@keyframes floating {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}

.hero-pill {
  position: absolute;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  padding: 10px 20px;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.pill-1 { bottom: 30px; left: -20px; animation: floating 5s ease-in-out infinite 1s; }
.pill-2 { top: 20px; right: -10px; animation: floating 6s ease-in-out infinite 0.5s; }
.pill-icon { font-size: 1rem; }

/* ==============================
   SECTION COMMONS
   ============================== */
.section { padding: 100px 0; }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--steel-blue);
  background: rgba(49,130,206,0.08);
  border: 1px solid rgba(49,130,206,0.2);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--deep-blue);
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--stone-gray);
  line-height: 1.8;
}

/* ==============================
   SERVICES
   ============================== */
.services-section { background: var(--white); }

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

.service-card {
  background: var(--light-gray);
  border: 1px solid rgba(26,54,93,0.07);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--steel-blue), var(--steel-blue-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(49,130,206,0.2);
}

.service-card--featured {
  background: linear-gradient(135deg, var(--deep-blue), #1e4080);
  border-color: transparent;
  color: var(--white);
}
.service-card--featured .service-title { color: var(--white); }
.service-card--featured .service-desc { color: rgba(255,255,255,0.78); }
.service-card--featured .service-list li { color: rgba(255,255,255,0.85); }
.service-card--featured .service-list li::before { background: var(--steel-blue-light); }
.service-card--featured::before { display: none; }
.service-card--featured:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(26,54,93,0.35);
}

/* ==============================
   ROSTER
   ============================== */
.roster-section {
  background: var(--deep-blue);
  position: relative;
  overflow: hidden;
}
.roster-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('roster_bg.png') center/cover no-repeat;
  opacity: 0.18;
  pointer-events: none;
}
.roster-section .section-tag {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.85);
}
.roster-section .section-title { color: var(--white); }
.roster-section .section-subtitle { color: rgba(255,255,255,0.65); }

.roster-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
  position: relative;
  z-index: 1;
}

.artist-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  width: 170px;
  text-align: center;
  transition: transform var(--transition);
}
.artist-card:hover { transform: translateY(-10px); }

.artist-avatar {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid rgba(255,255,255,0.12);
  box-shadow: 0 8px 32px rgba(0,0,0,0.45);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.artist-avatar::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,0.1) 0%, transparent 60%);
}
.artist-card:hover .artist-avatar {
  border-color: var(--steel-blue-light);
  box-shadow: 0 14px 44px rgba(49,130,206,0.45);
}

.artist-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.artist-info { display: flex; flex-direction: column; gap: 2px; }
.artist-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  line-height: 1.2;
}
.artist-alias {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  font-style: italic;
  min-height: 1em;
}

.artist-genre {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.7rem;
  color: var(--steel-blue-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: rgba(49,130,206,0.12);
  border: 1px solid rgba(49,130,206,0.28);
  padding: 3px 12px;
  border-radius: 100px;
}

.service-badge-featured {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--steel-blue);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
}

.service-icon-wrap {
  width: 56px; height: 56px;
  background: rgba(49,130,206,0.1);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  transition: background var(--transition);
}
.service-card:hover .service-icon-wrap { background: rgba(49,130,206,0.18); }
.service-card--featured .service-icon-wrap { background: rgba(255,255,255,0.1); }
.service-card--featured:hover .service-icon-wrap { background: rgba(255,255,255,0.18); }

.service-icon { font-size: 1.6rem; }

.service-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--deep-blue);
  margin-bottom: 12px;
}

.service-desc {
  font-size: 0.95rem;
  color: var(--stone-gray);
  line-height: 1.75;
  margin-bottom: 20px;
}

.service-list { display: flex; flex-direction: column; gap: 8px; }
.service-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--stone-gray);
}
.service-list li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--steel-blue);
  flex-shrink: 0;
}

/* ==============================
   BOUTIQUE SECTION
   ============================== */
.boutique-section {
  background: linear-gradient(135deg, var(--deep-blue) 0%, #0f2a50 100%);
  position: relative;
  overflow: hidden;
}
.boutique-section::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(49,130,206,0.06);
  top: -150px; right: -100px;
  pointer-events: none;
}

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

.boutique-tag {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.85);
}

.boutique-title {
  color: var(--white) !important;
  font-size: clamp(1.9rem, 3vw, 2.8rem) !important;
}

.boutique-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.85;
  margin-bottom: 16px;
}

.boutique-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.boutique-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: all var(--transition);
  backdrop-filter: blur(8px);
}
.boutique-card:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.2);
  transform: translateX(6px);
}

.boutique-card--highlight {
  background: rgba(49,130,206,0.18);
  border-color: rgba(49,130,206,0.4);
}
.boutique-card--highlight:hover {
  background: rgba(49,130,206,0.26);
  border-color: rgba(49,130,206,0.6);
}

.boutique-card-icon { font-size: 1.6rem; }

.boutique-card-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
}

.boutique-card-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.7;
}

/* ==============================
   ABOUT
   ============================== */
.about-section {
  background: var(--light-gray);
}

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

.about-visual { position: relative; }
.about-card-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}

.about-card-main {
  background: linear-gradient(135deg, var(--deep-blue), #1e4080);
  border-radius: var(--radius-lg);
  padding: 60px 48px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.about-logo {
  width: 220px;
  margin: 0 auto 24px;
  mix-blend-mode: screen;
}
.about-card-text {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}

.about-badge {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 12px 20px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--deep-blue);
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 8px;
  animation: floating 5s ease-in-out infinite;
}
.about-badge-1 { bottom: -20px; left: -20px; animation-delay: 0s; }
.about-badge-2 { top: -20px; right: -20px; animation-delay: 1.5s; }

.about-text { display: flex; flex-direction: column; gap: 0; }
.about-desc {
  font-size: 1rem;
  color: var(--stone-gray);
  line-height: 1.85;
  margin-bottom: 16px;
}
.about-desc:last-of-type { margin-bottom: 32px; }
.about-desc strong { color: var(--deep-blue); font-weight: 700; }

.about-values {
  display: flex; flex-direction: column; gap: 20px;
  margin-bottom: 40px;
}
.value-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px 24px;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.value-item:hover { box-shadow: var(--shadow-sm); transform: translateX(4px); }
.value-icon { font-size: 1.5rem; flex-shrink: 0; }
.value-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--deep-blue);
  margin-bottom: 2px;
}
.value-desc { font-size: 0.88rem; color: var(--stone-gray); }

/* ==============================
   PLATFORMS
   ============================== */
.platforms-section { background: var(--white); overflow: hidden; }

.platforms-marquee-wrap { overflow: hidden; margin-bottom: 48px; }
.platforms-marquee { overflow: hidden; }
.platforms-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: marquee 30s linear infinite;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.platforms-track:hover { animation-play-state: paused; }

.platform-chip {
  display: flex; align-items: center; gap: 10px;
  background: var(--light-gray);
  border: 1px solid rgba(26,54,93,0.1);
  border-radius: 100px;
  padding: 12px 24px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--deep-blue);
  white-space: nowrap;
  transition: all var(--transition);
}
.platform-chip:hover {
  background: var(--steel-blue);
  color: var(--white);
  border-color: var(--steel-blue);
  transform: scale(1.05);
}

.platforms-count {
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.count-number {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 3.5rem;
  color: var(--steel-blue);
  line-height: 1;
}
.count-label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--stone-gray);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ==============================
   PROCESS
   ============================== */
.process-section { background: var(--light-gray); }

.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
}

.process-step {
  flex: 1;
  text-align: center;
  padding: 40px 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
}
.process-step:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: rgba(49,130,206,0.3);
}

.step-number {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 2.8rem;
  color: transparent;
  -webkit-text-stroke: 2px var(--steel-blue);
  opacity: 0.3;
  margin-bottom: 20px;
  line-height: 1;
}
.process-step:hover .step-number { opacity: 0.6; }

.step-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--deep-blue);
  margin-bottom: 12px;
}

.step-desc {
  font-size: 0.9rem;
  color: var(--stone-gray);
  line-height: 1.7;
}

.process-connector {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--steel-blue), var(--steel-blue-light));
  margin-top: 80px;
  flex-shrink: 0;
  position: relative;
}
.process-connector::after {
  content: '';
  position: absolute;
  right: -6px; top: -4px;
  border: 5px solid transparent;
  border-left-color: var(--steel-blue-light);
}

/* ==============================
   CTA BAND
   ============================== */
.cta-band {
  background: linear-gradient(135deg, var(--steel-blue) 0%, var(--deep-blue) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.cta-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.2;
}

.cta-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 100px;
  margin-bottom: 14px;
}

.cta-subtitle { font-size: 1rem; color: rgba(255,255,255,0.78); }

.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; flex-shrink: 0; }

/* ==============================
   CONTACT
   ============================== */
.contact-section { background: var(--white); }

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

.contact-desc {
  font-size: 1rem;
  color: var(--stone-gray);
  line-height: 1.8;
  margin-bottom: 40px;
}

.contact-channels { display: flex; flex-direction: column; gap: 20px; }
.contact-channel {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 24px;
  background: var(--light-gray);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.contact-channel:hover { box-shadow: var(--shadow-sm); border-color: rgba(49,130,206,0.25); }
.channel-icon { font-size: 1.4rem; }
.channel-label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--stone-gray);
  margin-bottom: 2px;
}
.channel-value {
  font-weight: 600;
  color: var(--steel-blue);
  font-size: 0.95rem;
  transition: color var(--transition);
}
.channel-value:hover { color: var(--steel-blue-dark); }

/* Form */
.contact-form {
  background: var(--light-gray);
  border-radius: var(--radius-md);
  padding: 40px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--deep-blue);
  letter-spacing: 0.02em;
}

.form-input {
  width: 100%;
  padding: 14px 18px;
  background: var(--white);
  border: 1.5px solid rgba(26,54,93,0.12);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--deep-blue);
  outline: none;
  transition: all var(--transition);
  -webkit-appearance: none;
}
.form-input::placeholder { color: rgba(74,85,104,0.5); }
.form-input:focus {
  border-color: var(--steel-blue);
  box-shadow: 0 0 0 3px rgba(49,130,206,0.12);
}

.form-select { cursor: pointer; }
.form-textarea { resize: vertical; min-height: 120px; }

.form-note {
  font-size: 0.82rem;
  color: var(--stone-gray);
  text-align: center;
  font-style: italic;
  margin-top: -8px;
}

.form-success {
  background: rgba(49,130,206,0.08);
  border: 1px solid rgba(49,130,206,0.25);
  border-radius: var(--radius-sm);
  padding: 16px;
  color: var(--steel-blue-dark);
  font-weight: 600;
  font-size: 0.95rem;
  text-align: center;
}

/* ==============================
   FOOTER
   ============================== */
.footer { background: var(--deep-blue); color: rgba(255,255,255,0.75); padding-top: 80px; }

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 80px;
  padding-bottom: 60px;
}

.footer-logo {
  height: 60px;
  width: auto;
  mix-blend-mode: screen;
  margin-bottom: 20px;
}

.footer-tagline { font-size: 0.95rem; line-height: 1.7; margin-bottom: 28px; max-width: 280px; }

.footer-socials { display: flex; gap: 12px; }
.social-link {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: all var(--transition);
}
.social-link:hover { background: var(--steel-blue); color: var(--white); transform: translateY(-2px); }
.social-link svg { width: 18px; height: 18px; }

.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }

.footer-col-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.footer-link {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
  line-height: 1.5;
}
.footer-link:hover { color: var(--steel-blue-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
}
.footer-copy {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  text-align: center;
}

/* ==============================
   SCROLL ANIMATIONS
   ============================== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ==============================
   RESPONSIVE
   ============================== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-inner { gap: 48px; }
  .contact-inner { gap: 48px; }
  .boutique-inner { gap: 48px; }
}

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

  /* Announce bar */
  .announce-bar { display: none; }
  .navbar { top: 0; }
  .hero { padding-top: 80px; }

  /* Navbar */
  .hamburger { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--deep-blue);
    flex-direction: column;
    padding: 24px;
    gap: 8px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .nav-links.open { display: flex; }
  .nav-link { padding: 12px 16px; }

  /* Hero */
  .hero .container {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-top: 40px;
  }
  .hero-visual { display: none; }
  .hero-title { font-size: clamp(2.2rem, 8vw, 3rem); }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .stat-item { padding: 0 16px; }
  .hero-exclusive-note { font-size: 0.78rem; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }

  /* Boutique */
  .boutique-inner { grid-template-columns: 1fr; }

  /* About */
  .about-inner { grid-template-columns: 1fr; }
  .about-visual { display: none; }

  /* Process */
  .process-steps { flex-direction: column; gap: 24px; }
  .process-connector { width: 2px; height: 32px; margin: 0 auto; }
  .process-connector::after { display: none; }

  /* CTA */
  .cta-inner { flex-direction: column; text-align: center; }

  /* Contact */
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .btn-lg { width: 100%; justify-content: center; }
  .footer-links { grid-template-columns: 1fr; }
  .contact-form { padding: 24px; }
  .cta-actions { flex-direction: column; width: 100%; }
  .hero-exclusive-note { flex-direction: column; text-align: center; gap: 6px; }
}

/* ==============================
   WHATSAPP BUTTON & FLOAT
   ============================== */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  padding: 10px 20px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all var(--transition);
  margin-top: 4px;
}
.btn-whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,211,102,0.35);
}

.btn-instagram {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  padding: 10px 20px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all var(--transition);
  margin-top: 4px;
}
.btn-instagram:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(220,39,67,0.35);
}

/* Floating bubble bottom-right */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 24px rgba(37,211,102,0.5);
  transition: all var(--transition);
  overflow: hidden;
}
.whatsapp-float svg {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  transition: transform var(--transition);
}
.whatsapp-float-label {
  display: none;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.88rem;
  white-space: nowrap;
}
.whatsapp-float:hover {
  width: auto;
  border-radius: 100px;
  padding: 0 20px 0 16px;
  gap: 10px;
  box-shadow: 0 6px 28px rgba(37,211,102,0.6);
  transform: translateY(-3px);
}
.whatsapp-float:hover .whatsapp-float-label { display: block; }
.whatsapp-float:hover svg { transform: scale(1.1); }

/* Pulse ring animation */
.whatsapp-float::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #25D366;
  animation: wa-pulse 2.5s ease-out infinite;
  z-index: -1;
}
@keyframes wa-pulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.8); opacity: 0; }
}

