/* ============================================
   Creator Casting Florence — Styles
   Mobile-first, professional creator aesthetic
   ============================================ */

:root {
  --color-white: #ffffff;
  --color-black: #0a0a0f;
  --color-gray-50: #f8f9fc;
  --color-gray-100: #f0f2f7;
  --color-gray-200: #e2e6ef;
  --color-gray-400: #9aa3b5;
  --color-gray-600: #5c6478;
  --color-gray-800: #2d3344;
  --color-blue: #2563ff;
  --color-blue-light: #4d8bff;
  --color-purple: #7c3aed;
  --color-purple-light: #a78bfa;
  --color-pink: #f472b6;
  --color-pink-soft: #fce7f3;
  --color-whatsapp: #25d366;
  --color-whatsapp-dark: #128c7e;

  --gradient-hero: linear-gradient(135deg, #2563ff 0%, #7c3aed 50%, #f472b6 100%);
  --gradient-card: linear-gradient(145deg, rgba(37, 99, 255, 0.08) 0%, rgba(124, 58, 237, 0.06) 100%);
  --gradient-safety: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);

  --font-sans: "Inter", system-ui, -apple-system, sans-serif;
  --font-display: "Space Grotesk", "Inter", sans-serif;

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

  --shadow-sm: 0 2px 8px rgba(10, 10, 15, 0.06);
  --shadow-md: 0 8px 24px rgba(10, 10, 15, 0.08);
  --shadow-lg: 0 16px 48px rgba(10, 10, 15, 0.12);
  --shadow-glow: 0 0 40px rgba(37, 99, 255, 0.15);

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

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

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-gray-800);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: var(--color-blue);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--color-purple);
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---- Typography ---- */
.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-black);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.section__title--light {
  color: var(--color-white);
}

.section__subtitle {
  font-size: 1.05rem;
  color: var(--color-gray-600);
  margin-top: 12px;
}

.section__header {
  text-align: center;
  margin-bottom: 48px;
}

.section {
  padding: 80px 0;
}

.section:nth-child(even) {
  background: var(--color-gray-50);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  white-space: nowrap;
}

.btn--primary {
  background: var(--gradient-hero);
  color: var(--color-white);
  box-shadow: 0 4px 20px rgba(37, 99, 255, 0.35);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(37, 99, 255, 0.45);
  color: var(--color-white);
}

.btn--outline {
  background: transparent;
  color: var(--color-black);
  border-color: var(--color-gray-200);
}

.btn--outline:hover {
  border-color: var(--color-blue);
  color: var(--color-blue);
  background: rgba(37, 99, 255, 0.04);
}

.btn--whatsapp {
  background: var(--color-whatsapp);
  color: var(--color-white);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
}

.btn--whatsapp:hover {
  background: var(--color-whatsapp-dark);
  transform: translateY(-2px);
  color: var(--color-white);
}

.btn--lg {
  padding: 16px 36px;
  font-size: 1rem;
}

.btn--full {
  width: 100%;
}

/* ---- Header / Nav ---- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: all var(--transition);
}

.header--scrolled {
  border-bottom-color: var(--color-gray-200);
  box-shadow: var(--shadow-sm);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-black);
}

.nav__logo:hover {
  color: var(--color-blue);
}

.nav__logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--gradient-hero);
  color: white;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
}

.nav__toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-black);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.nav__menu {
  display: none;
  list-style: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-white);
  flex-direction: column;
  padding: 24px 20px;
  gap: 4px;
  overflow-y: auto;
}

.nav__menu.active {
  display: flex;
}

.nav__link {
  display: block;
  padding: 14px 16px;
  font-weight: 500;
  color: var(--color-gray-800);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.nav__link:hover {
  background: var(--color-gray-100);
  color: var(--color-blue);
}

.nav__link--cta {
  background: var(--gradient-hero);
  color: var(--color-white) !important;
  text-align: center;
  margin-top: 8px;
}

.nav__link--cta:hover {
  opacity: 0.9;
  background: var(--gradient-hero);
}

/* ---- Hero ---- */
.hero {
  position: relative;
  padding: calc(var(--header-height) + 48px) 0 80px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 40%, rgba(37, 99, 255, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(124, 58, 237, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse 50% 40% at 60% 80%, rgba(244, 114, 182, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.hero__inner {
  display: grid;
  gap: 48px;
  align-items: center;
}

.hero__badge {
  display: inline-block;
  padding: 8px 16px;
  background: var(--gradient-card);
  border: 1px solid rgba(37, 99, 255, 0.15);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-blue);
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3.25rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--color-black);
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.hero__subtitle {
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  color: var(--color-gray-600);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 540px;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.hero__trust {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
}

.hero__trust li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--color-gray-600);
  font-weight: 500;
}

.trust-icon {
  color: var(--color-blue);
  font-weight: 700;
}

.hero__visual {
  display: flex;
  justify-content: center;
}

.hero__image-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  max-width: 480px;
  width: 100%;
}

.hero__image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.hero__image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(transparent, rgba(10, 10, 15, 0.7));
}

.hero__stat {
  display: flex;
  flex-direction: column;
}

.hero__stat-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: white;
}

.hero__stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
}

/* ---- Cards ---- */
.cards-grid {
  display: grid;
  gap: 20px;
}

.card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--color-gray-200);
  transition: all var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(37, 99, 255, 0.2);
}

.card--icon {
  text-align: center;
}

.card__icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.card__tag {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-blue);
  background: rgba(37, 99, 255, 0.1);
  display: inline-block;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

.card__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-black);
  margin-bottom: 8px;
}

.card__text {
  font-size: 0.95rem;
  color: var(--color-gray-600);
  line-height: 1.6;
}

/* ---- About / Profile ---- */
.about__grid {
  display: grid;
  gap: 40px;
  align-items: start;
}

.about__text p {
  margin-bottom: 16px;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--color-gray-600);
}

.about__text strong {
  color: var(--color-black);
}

.profile-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: 32px;
  border: 1px solid var(--color-gray-200);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.profile-card__photo-wrap {
  width: 128px;
  height: 128px;
  border-radius: 50%;
  padding: 4px;
  background: var(--gradient-hero);
  flex-shrink: 0;
}

.profile-card__photo {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--color-white);
}

.profile-card__name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-black);
}

.profile-card__role {
  color: var(--color-blue);
  font-weight: 600;
  font-size: 0.95rem;
}

.profile-card__details {
  list-style: none;
  text-align: left;
  width: 100%;
}

.profile-card__details li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--color-gray-100);
  font-size: 0.9rem;
  color: var(--color-gray-600);
}

.profile-card__details li:last-child {
  border-bottom: none;
}

.profile-card__icon {
  flex-shrink: 0;
}

.who__note {
  text-align: center;
  margin-top: 32px;
  padding: 20px 24px;
  background: var(--color-pink-soft);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  color: var(--color-gray-800);
  border: 1px solid rgba(244, 114, 182, 0.2);
}

/* ---- Video Types Safety Line ---- */
.safety-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
  padding: 20px 28px;
  background: var(--gradient-card);
  border: 1px solid rgba(37, 99, 255, 0.15);
  border-radius: var(--radius-md);
  font-weight: 600;
  color: var(--color-gray-800);
  text-align: center;
}

.safety-line__icon {
  font-size: 1.25rem;
}

/* ---- Payment ---- */
.payment-grid {
  display: grid;
  gap: 24px;
}

.payment-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: 32px;
  border: 1px solid var(--color-gray-200);
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.payment-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-hero);
}

.payment-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.payment-card--featured {
  border-color: rgba(37, 99, 255, 0.3);
  box-shadow: var(--shadow-glow);
}

.payment-card__name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-black);
  margin-bottom: 8px;
}

.payment-card__duration {
  font-size: 0.9rem;
  color: var(--color-gray-600);
  margin-bottom: 20px;
}

.payment-card__features {
  list-style: none;
  margin-bottom: 24px;
  flex-grow: 1;
}

.payment-card__features li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  font-size: 0.95rem;
  color: var(--color-gray-600);
}

.payment-card__features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-blue);
  font-weight: 700;
}

.payment-card__price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
}

.payment__note,
.payment__growth {
  text-align: center;
  font-size: 0.95rem;
  color: var(--color-gray-600);
  margin-top: 24px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.payment__growth {
  margin-top: 12px;
  font-style: italic;
}

/* ---- Steps ---- */
.steps {
  max-width: 700px;
  margin: 0 auto;
}

.step {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  position: relative;
}

.step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 23px;
  top: 68px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(var(--color-blue), var(--color-purple));
  opacity: 0.3;
}

.step__number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-hero);
  color: white;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(37, 99, 255, 0.3);
}

.step__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-black);
  margin-bottom: 6px;
}

.step__text {
  font-size: 0.95rem;
  color: var(--color-gray-600);
  line-height: 1.6;
}

/* ---- Safety Section ---- */
.safety {
  background: var(--color-gray-50);
}

.safety__box {
  background: var(--gradient-safety);
  border-radius: var(--radius-xl);
  padding: 48px 32px;
  color: var(--color-white);
}

.safety__header {
  text-align: center;
  margin-bottom: 24px;
}

.safety__shield {
  font-size: 3rem;
  display: block;
  margin-bottom: 16px;
}

.safety__intro {
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.7;
  opacity: 0.9;
  max-width: 640px;
  margin: 0 auto 36px;
}

.safety__checklist {
  list-style: none;
  display: grid;
  gap: 12px;
  max-width: 600px;
  margin: 0 auto 32px;
}

.safety__checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
}

.safety__checklist .check {
  color: #4ade80;
  font-weight: 700;
  flex-shrink: 0;
}

.safety__disclaimer {
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.75;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.6;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

/* ---- Boundaries ---- */
.boundaries__grid {
  display: grid;
  gap: 12px;
  max-width: 700px;
  margin: 0 auto;
}

.boundary-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  color: var(--color-gray-800);
  transition: all var(--transition);
}

.boundary-item:hover {
  border-color: rgba(244, 114, 182, 0.3);
  background: var(--color-pink-soft);
}

.boundary-item__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(244, 114, 182, 0.15);
  color: var(--color-pink);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
}

.boundaries__goal {
  text-align: center;
  margin-top: 32px;
  font-size: 1.05rem;
  color: var(--color-gray-600);
  font-weight: 500;
}

/* ---- Application Form ---- */
.apply-form {
  max-width: 640px;
  margin: 0 auto;
  background: var(--color-white);
  padding: 36px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-gray-200);
  box-shadow: var(--shadow-md);
}

.form-row {
  display: grid;
  gap: 20px;
}

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

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-gray-800);
  margin-bottom: 8px;
}

.required {
  color: var(--color-pink);
}

.optional {
  font-weight: 400;
  color: var(--color-gray-400);
  font-size: 0.85rem;
}

.form-group input[type="text"],
.form-group input[type="number"],
.form-group input[type="tel"],
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--color-gray-800);
  background: var(--color-gray-50);
  transition: all var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-blue);
  background: var(--color-white);
  box-shadow: 0 0 0 3px rgba(37, 99, 255, 0.1);
}

.form-group input.error,
.form-group textarea.error {
  border-color: #ef4444;
}

.radio-group,
.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
}

.radio-label,
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 400;
  cursor: pointer;
  font-size: 0.95rem;
}

.radio-label input,
.checkbox-label input {
  width: 18px;
  height: 18px;
  accent-color: var(--color-blue);
}

.form-group--checkbox {
  padding: 12px 16px;
  background: var(--color-gray-50);
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-gray-200);
}

.form-error {
  color: #ef4444;
  font-size: 0.85rem;
  margin-top: 6px;
}

.form-help {
  margin-top: 8px;
  color: var(--color-gray-600);
  font-size: 0.82rem;
  line-height: 1.5;
}

.minor-fields {
  margin-bottom: 24px;
  padding: 20px;
  border: 1px solid rgba(37, 99, 255, 0.28);
  border-radius: var(--radius-md);
  background: rgba(37, 99, 255, 0.05);
}

.minor-notice {
  margin-bottom: 18px;
  color: var(--color-gray-800);
  line-height: 1.65;
}

/* ---- WhatsApp CTA Section ---- */
.whatsapp-cta-section {
  background: var(--color-gray-50);
}

.whatsapp-cta-box {
  text-align: center;
  padding: 56px 32px;
  background: var(--gradient-hero);
  border-radius: var(--radius-xl);
  color: white;
}

.whatsapp-cta-box__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  margin-bottom: 16px;
}

.whatsapp-cta-box__text {
  font-size: 1.05rem;
  opacity: 0.9;
  max-width: 520px;
  margin: 0 auto 28px;
  line-height: 1.7;
}

.whatsapp-cta-box .btn--whatsapp {
  background: white;
  color: var(--color-whatsapp-dark);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}

.whatsapp-cta-box .btn--whatsapp:hover {
  background: var(--color-gray-100);
  color: var(--color-whatsapp-dark);
}

/* ---- FAQ ---- */
.faq-list {
  max-width: 700px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--color-white);
  transition: all var(--transition);
}

.faq-item:hover {
  border-color: rgba(37, 99, 255, 0.2);
}

.faq-item[open] {
  border-color: var(--color-blue);
  box-shadow: var(--shadow-sm);
}

.faq-item summary {
  padding: 20px 24px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-black);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--color-blue);
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  padding: 0 24px 20px;
  font-size: 0.95rem;
  color: var(--color-gray-600);
  line-height: 1.7;
}

/* ---- Testimonials ---- */
.testimonials-grid {
  display: grid;
  gap: 24px;
}

.testimonial-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--color-gray-200);
  position: relative;
}

.testimonial-card::before {
  content: "";
}

.testimonial-card__title {
  margin-bottom: 10px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--color-black);
}

.testimonial-card__quote {
  font-size: 1rem;
  color: var(--color-gray-800);
  line-height: 1.7;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.testimonial-card__author {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-gray-600);
}

.testimonial-card__author::before {
  content: "— ";
}

/* ---- Contact ---- */
.contact-grid {
  display: grid;
  gap: 16px;
  max-width: 600px;
  margin: 0 auto 32px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-md);
  transition: all var(--transition);
  color: inherit;
}

.contact-card:hover {
  border-color: var(--color-blue);
  box-shadow: var(--shadow-sm);
}

.contact-card--whatsapp:hover {
  border-color: var(--color-whatsapp);
}

.contact-card__icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-card__label {
  font-size: 0.8rem;
  color: var(--color-gray-400);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
}

.contact-card__value {
  font-weight: 600;
  color: var(--color-black);
  font-size: 1rem;
}

.contact__cta {
  text-align: center;
}

/* ---- Legal ---- */
.legal {
  padding: 60px 0;
  background: var(--color-gray-50);
}

.legal--terms {
  padding-top: 0;
}

.legal__block {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.legal__block .section__title {
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.legal__block p {
  font-size: 0.95rem;
  color: var(--color-gray-600);
  line-height: 1.75;
}

.legal-page {
  max-width: 820px;
  padding-top: calc(var(--header-height) + 64px);
  padding-bottom: 80px;
}

.legal-page__eyebrow {
  margin-bottom: 12px;
  color: var(--color-blue);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.legal-page h1 {
  margin-bottom: 20px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3.5rem);
  line-height: 1.1;
  color: var(--color-black);
}

.legal-page h2 {
  margin: 36px 0 10px;
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--color-black);
}

.legal-page p {
  margin-bottom: 16px;
  line-height: 1.8;
}

.error-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background: var(--gradient-card), var(--color-gray-50);
}

.error-page__card {
  width: min(620px, 100%);
  padding: 48px;
  text-align: center;
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.error-page__card h1 {
  margin: 20px 0 12px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 7vw, 3rem);
  color: var(--color-black);
}

.error-page__card p {
  margin-bottom: 28px;
  color: var(--color-gray-600);
}

/* ---- Footer ---- */
.footer {
  background: var(--color-black);
  color: rgba(255, 255, 255, 0.7);
  padding: 48px 0 32px;
}

.footer__inner {
  text-align: center;
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  display: block;
  margin-bottom: 8px;
}

.footer__tagline {
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.footer__links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 24px;
}

.footer__links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.footer__links a:hover {
  color: white;
}

.footer__disclaimer {
  font-size: 0.8rem;
  line-height: 1.6;
  max-width: 640px;
  margin: 0 auto 20px;
  opacity: 0.6;
}

.footer__copy {
  font-size: 0.8rem;
  opacity: 0.4;
}

/* ---- Floating WhatsApp ---- */
.fab-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-whatsapp);
  color: white;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: all var(--transition);
  animation: fab-pulse 2s infinite;
}

.fab-whatsapp:hover {
  background: var(--color-whatsapp-dark);
  transform: scale(1.08);
  color: white;
}

@keyframes fab-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45); }
  50% { box-shadow: 0 4px 32px rgba(37, 211, 102, 0.65); }
}

/* ---- Animations ---- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in--delay {
  transition-delay: 0.15s;
}

/* ---- Responsive ---- */
@media (min-width: 640px) {
  .cards-grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

  .safety__checklist {
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
  }
}

@media (min-width: 768px) {
  .nav__toggle {
    display: none;
  }

  .nav__menu {
    display: flex !important;
    position: static;
    flex-direction: row;
    align-items: center;
    padding: 0;
    gap: 4px;
    background: transparent;
    overflow: visible;
  }

  .nav__link {
    padding: 8px 12px;
    font-size: 0.85rem;
  }

  .nav__link--cta {
    margin-top: 0;
    margin-left: 8px;
    padding: 10px 20px;
  }

  .hero__inner {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }

  .about__grid {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
  }

  .profile-card {
    flex-direction: row;
    text-align: left;
  }

  .profile-card__details {
    text-align: left;
  }
}

@media (min-width: 1024px) {
  .cards-grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .payment-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .section {
    padding: 100px 0;
  }
}

@media (max-width: 767px) {
  .nav__logo-text {
    font-size: 0.85rem;
    max-width: 180px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .apply-form {
    padding: 24px 20px;
  }

  .safety__box {
    padding: 36px 20px;
  }

  .fab-whatsapp {
    bottom: 16px;
    right: 16px;
    width: 56px;
    height: 56px;
  }
}
