/* ===================================================================
   JFL Abogados — Main Stylesheet
   =================================================================== */

/* ===== CSS Custom Properties ===== */
:root {
  /* Monochromatic base */
  --color-black: #0a0a0a;
  --color-charcoal: #1a1a1a;
  --color-dark-gray: #2c2c2c;
  --color-mid-gray: #4a4a4a;
  --color-gray: #6b6b6b;
  --color-light-gray: #d4d4d4;
  --color-off-white: #f0f0f0;
  --color-white: #fafafa;

  /* Accent: British Racing Green */
  --color-brg: #004225;
  --color-brg-light: #005c35;
  --color-brg-dark: #00331c;
  --color-brg-subtle: #e8f5ee;

  /* Gold / Bronze accents */
  --color-gold: #b8860b;
  --color-bronze: #cd7f32;
  --color-gold-light: #d4a843;

  /* Logo gray (from actual logo) */
  --color-logo-gray: #4d5b5c;

  /* Typography */
  --font-heading: 'JetBrains Mono', monospace;
  --font-body: 'Atkinson Hyperlegible', sans-serif;

  /* Spacing */
  --section-padding: clamp(4rem, 8vw, 8rem) clamp(1.5rem, 5vw, 6rem);

  /* Transitions */
  --transition-smooth: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

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

body {
  font-family: var(--font-body);
  color: var(--color-charcoal);
  background-color: var(--color-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* ===== Utility ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 3rem);
}

.section-label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-brg);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 2rem;
  height: 1px;
  background: var(--color-gold);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--color-charcoal);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.section-text {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: var(--color-mid-gray);
  max-width: 640px;
  line-height: 1.8;
}

/* ===== Scroll Reveal Animations ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ===== Navigation ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: background-color var(--transition-smooth), box-shadow var(--transition-smooth), padding var(--transition-smooth);
}

.nav.scrolled {
  background-color: rgba(250, 250, 250, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
  padding: 0.75rem 0;
}

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

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Default (top): white logo */
.nav__logo img {
  height: 55px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: filter var(--transition-smooth);
}

/* Scrolled: dark logo */
.nav.scrolled .nav__logo img {
  filter: none;
}

.nav__monogram {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--color-logo-gray);
  letter-spacing: -0.02em;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

/* Default (top): white links */
.nav__links a {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--color-white);
  transition: color var(--transition-smooth);
  position: relative;
}

/* Scrolled: dark links */
.nav.scrolled .nav__links a {
  color: var(--color-mid-gray);
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-white);
  transition: width var(--transition-smooth), background-color var(--transition-smooth);
}

.nav.scrolled .nav__links a::after {
  background: var(--color-brg);
}

.nav__links a:hover {
  color: rgba(255, 255, 255, 0.8);
}

.nav.scrolled .nav__links a:hover {
  color: var(--color-brg);
}

.nav__links a:hover::after {
  width: 100%;
}

/* Default (top): white CTA */
.nav__links a.nav__cta {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.65rem 1.5rem;
  border: 1px solid var(--color-white);
  color: var(--color-white);
  transition: all var(--transition-smooth);
}

/* Scrolled: green CTA */
.nav.scrolled .nav__links a.nav__cta {
  border-color: var(--color-brg);
  color: var(--color-brg);
}

.nav__links a.nav__cta:hover {
  background-color: var(--color-white);
  color: var(--color-charcoal);
}

.nav.scrolled .nav__links a.nav__cta:hover {
  background-color: var(--color-brg);
  color: var(--color-gold-light);
}

/* CTA should not get the underline effect */
.nav__links a.nav__cta::after {
  display: none;
}

/* Mobile menu toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-white);
  transition: all 0.3s ease;
}

.nav.scrolled .nav__toggle span {
  background-color: var(--color-charcoal);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background-color: var(--color-white);
  overflow: hidden;
}

.hero__video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-color: var(--color-black);
}

.hero__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  opacity: 0;
  z-index: 1;
}

/* El video saliente se queda sólido al fondo */
.hero__video.previous {
  opacity: 1;
  z-index: 1;
}

/* El nuevo video aparece progresivamente por encima */
.hero__video.active {
  opacity: 1;
  z-index: 2;
  transition: opacity 1.5s ease-in-out;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65); /* Dark overlay */
  z-index: 1;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  z-index: 2;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-top: clamp(7rem, 12vw, 10rem);
  padding-bottom: clamp(4rem, 8vw, 8rem);
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-white);
  margin-bottom: 1.5rem;
  max-width: 700px;
}

.hero__title span {
  color: var(--color-gold-light);
}

.hero__subtitle {
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: rgba(255, 255, 255, 0.85);
  max-width: 520px;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  transition: all var(--transition-smooth);
  cursor: pointer;
  border: none;
}

.btn--primary {
  background-color: var(--color-brg);
  color: var(--color-white);
}

.btn--primary:hover {
  background-color: var(--color-brg-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 66, 37, 0.2);
}

.btn--outline {
  background: transparent;
  color: var(--color-charcoal);
  border: 1px solid var(--color-light-gray);
}

.btn--outline:hover {
  border-color: var(--color-brg);
  color: var(--color-brg);
}

/* Override for outline button on dark backgrounds (Hero) */
.hero .btn--outline {
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.4);
}

.hero .btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--color-white);
  color: var(--color-white);
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-heading);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero__scroll-indicator .line {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.25);
  position: relative;
  overflow: hidden;
}

.hero__scroll-indicator .line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-white);
  animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
  0% { top: -100%; }
  50% { top: 0; }
  100% { top: 100%; }
}

/* ===== About Section ===== */
.about {
  padding: var(--section-padding);
  background-color: var(--color-white);
}

.about__top {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
  margin-bottom: 5rem;
}

.about__text .section-text {
  margin-bottom: 0;
}

.about__main-text {
  position: relative;
}

.about__main-text::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: calc(-1 * (clamp(3rem, 6vw, 6rem) / 2));
  width: 2px;
  background-color: rgba(0, 66, 37, 0.35);
}

.about__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about__logo-img {
  max-width: 320px;
  width: 100%;
  height: auto;
}

.about__values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.about__card {
  background: var(--color-white);
  border: 1px solid rgba(0, 66, 37, 0.1);
  padding: 1.5rem 1.25rem;
  border-radius: 0;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.about__card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(0, 66, 37, 0.1);
  transition: border-color 0.4s ease;
}

.about__card-number {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  color: var(--color-brg);
  display: inline-block;
  padding-right: 0.75rem;
  border-right: 2px solid var(--color-gold);
  transition: all 0.4s ease;
}

.about__card h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-charcoal);
  margin: 0;
  transition: color 0.4s ease;
}

.about__card p {
  font-size: 0.85rem;
  color: var(--color-gray);
  line-height: 1.6;
  margin: 0;
  transition: color 0.4s ease;
}

/* Card Hover Effects */
.about__card:hover {
  transform: translateY(-5px);
  background-color: var(--color-brg);
  border-color: var(--color-brg);
  box-shadow: 0 15px 30px rgba(0, 66, 37, 0.15);
}

.about__card:hover .about__card-header {
  border-bottom-color: rgba(255, 255, 255, 0.15);
}

.about__card:hover .about__card-number {
  color: var(--color-white);
  border-right-color: var(--color-gold);
}

.about__card:hover h4,
.about__card:hover p {
  color: var(--color-white);
}

/* ===== Services Section ===== */
.services {
  padding: var(--section-padding);
  background-color: var(--color-off-white);
}

.services__header {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.services__header .section-label {
  justify-content: center;
}

.services__header .section-label::before {
  display: none;
}

.services__header .section-text {
  margin: 0 auto;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--color-white);
  padding: clamp(2rem, 3vw, 2.5rem);
  position: relative;
  transition: all var(--transition-smooth);
  border: 1px solid transparent;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-brg), var(--color-gold));
  transition: width var(--transition-smooth);
}

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

.service-card:hover::before {
  width: 100%;
}

.service-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--color-brg);
}

.service-card__icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--color-brg);
  stroke-width: 1.5;
  fill: none;
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-charcoal);
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--color-gray);
  line-height: 1.7;
}

/* ===== Founders Section ===== */
.founders {
  padding: var(--section-padding);
  background-color: var(--color-white);
}

.founders__header {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.founders__header .section-label {
  justify-content: center;
}

.founders__header .section-label::before {
  display: none;
}

.founders__header .section-text {
  margin: 0 auto;
}

.founders__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(2rem, 4vw, 3rem);
  max-width: 900px;
  margin: 0 auto;
}

.founder-card {
  text-align: center;
  padding: clamp(2rem, 4vw, 3rem);
  position: relative;
  transition: all var(--transition-smooth);
}

.founder-card:hover {
  transform: translateY(-4px);
}

.founder-card__avatar {
  width: 100px;
  height: 100px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-brg), var(--color-brg-light));
  position: relative;
}

.founder-card__avatar::after {
  content: '';
  position: absolute;
  inset: -4px;
  border: 1px solid var(--color-gold);
  opacity: 0.3;
}

.founder-card__initials {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.05em;
}

.founder-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-charcoal);
  margin-bottom: 0.25rem;
}

.founder-card__role {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-brg);
  margin-bottom: 1rem;
}

.founder-card__divider {
  width: 30px;
  height: 1px;
  background: var(--color-gold);
  margin: 0 auto 1rem;
}

.founder-card__contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
}

.founder-card__contact a {
  font-size: 0.85rem;
  color: var(--color-gray);
  transition: color var(--transition-smooth);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.founder-card__contact a:hover {
  color: var(--color-brg);
}

.founder-card__contact svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
  flex-shrink: 0;
}

/* ===== Contact Section ===== */
.contact {
  padding: var(--section-padding);
  background-color: var(--color-charcoal);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: 'JFL';
  font-family: var(--font-heading);
  font-size: clamp(12rem, 25vw, 20rem);
  font-weight: 800;
  color: rgba(255, 255, 255, 0.015);
  position: absolute;
  bottom: -5%;
  right: -3%;
  pointer-events: none;
  line-height: 1;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  position: relative;
  z-index: 1;
}

.contact .section-label {
  color: var(--color-gold-light);
}

.contact .section-label::before {
  background: var(--color-gold);
}

.contact .section-title {
  color: var(--color-white);
}

.contact .section-text {
  color: var(--color-light-gray);
  opacity: 0.8;
}

/* Contact Form */
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  position: relative;
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-light-gray);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
  outline: none;
  transition: border-color var(--transition-smooth), background var(--transition-smooth);
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--color-brg-light);
  background: rgba(255, 255, 255, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.contact__form .btn--primary {
  align-self: flex-start;
  margin-top: 0.5rem;
}

.contact__form .btn--primary:hover {
  box-shadow: 0 8px 24px rgba(0, 66, 37, 0.3);
}

/* ===== Footer ===== */
.footer {
  background-color: var(--color-black);
  padding: 2.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer__brand .nav__monogram {
  color: var(--color-logo-gray);
  font-size: 1.25rem;
}

.footer__copy {
  font-size: 0.8rem;
  color: var(--color-gray);
}

.footer__links {
  display: flex;
  gap: 1.5rem;
}

.footer__links a {
  font-size: 0.8rem;
  color: var(--color-gray);
  transition: color var(--transition-smooth);
}

.footer__links a:hover {
  color: var(--color-gold-light);
}

/* ===== Responsive ===== */
@media (max-width: 968px) {
  .about__top {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about__visual {
    order: -1;
  }

  .about__logo-img {
    max-width: 250px;
  }

  .about__values {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .about__main-text::after {
    display: none;
  }

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

  .contact__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .nav__links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(250, 250, 250, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    z-index: 999;
  }

  .nav__links.open {
    display: flex;
  }

  .nav__links a {
    font-size: 1.1rem;
    color: var(--color-charcoal) !important;
  }

  .nav__links a.nav__cta {
    color: var(--color-brg) !important;
    border-color: var(--color-brg) !important;
  }

  .nav__toggle {
    display: flex;
    z-index: 1001;
  }

  .nav__toggle.open span {
    background-color: var(--color-charcoal) !important;
  }

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

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

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

  .services__grid {
    grid-template-columns: 1fr;
  }

  .founders__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

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

  .footer__inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 2rem;
  }

  .hero__actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ===== Toast Notification (Success Bubble) ===== */
.toast-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.toast {
  background: var(--color-white);
  color: var(--color-charcoal);
  padding: 1.25rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  border-left: 5px solid var(--color-gold);
  display: flex;
  align-items: center;
  gap: 1.25rem;
  transform: translateX(150%);
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  max-width: 350px;
}

.toast.show {
  transform: translateX(0);
  opacity: 1;
}

.toast__icon {
  color: var(--color-brg);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-brg-subtle);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
}

.toast__icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.toast__content h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: var(--color-brg);
}

.toast__content p {
  font-size: 0.85rem;
  color: var(--color-gray);
  margin: 0;
  line-height: 1.4;
}

@media (max-width: 480px) {
  .toast-container {
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
  }
  .toast {
    max-width: 100%;
    transform: translateY(150%);
  }
  .toast.show {
    transform: translateY(0);
  }
}
