/* ============================================
   DESIGN TOKENS
   ============================================ */
:root {
  --bg:         #07090f;
  --bg-1:       #0b0f17;
  --bg-2:       #10151f;
  --bg-card:    #131a24;

  --lime:       #c8e4d8;
  --lime-hover: #d5ede4;
  --lime-glow:  rgba(200, 228, 216, 0.15);
  --lime-dim:   rgba(200, 228, 216, 0.08);
  --lime-border: rgba(200, 228, 216, 0.22);

  --coral:      #ff6b4a;
  --coral-dim:  rgba(255, 107, 74, 0.08);

  --text:       #ede9e1;
  --text-2:     #8a95a3;
  --text-3:     #454f5c;

  --border:     rgba(255, 255, 255, 0.06);
  --border-md:  rgba(255, 255, 255, 0.10);

  --radius-xs:  6px;
  --radius-sm:  10px;
  --radius:     16px;
  --radius-lg:  24px;
  --radius-pill: 999px;

  --container:  min(1200px, 100% - 3rem);

  --shadow:     0 4px 20px rgba(0, 0, 0, 0.45), 0 1px 4px rgba(0, 0, 0, 0.3);
  --shadow-lg:  0 20px 56px rgba(0, 0, 0, 0.55), 0 4px 16px rgba(0, 0, 0, 0.35);
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}

/* ============================================
   UTILITY
   ============================================ */
.serif {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
}
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-pill);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s, color 0.2s;
  white-space: nowrap;
  line-height: 1;
}
.btn-primary {
  background: var(--lime);
  color: #080b10;
}
.btn-primary:hover {
  background: var(--lime-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(200, 228, 216, 0.32);
}
.btn-ghost {
  background: transparent;
  color: var(--text-2);
  border: 1px solid var(--border-md);
}
.btn-ghost:hover {
  background: var(--bg-card);
  color: var(--text);
}
.btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}
.btn-arrow::after {
  content: '→';
  font-style: normal;
  transition: transform 0.2s;
}
.btn-arrow:hover::after { transform: translateX(3px); }

/* ============================================
   HEADER
   ============================================ */
header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 1rem 0;
  transition: background 0.35s, border-color 0.35s, padding 0.35s;
}
header.scrolled {
  background: rgba(7, 9, 15, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 0;
}
.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav-logo {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.75rem;
  font-weight: 600;
  font-style: italic;
  color: var(--text);
  letter-spacing: 0.04em;
  line-height: 1;
  text-decoration: none;
  transition: color 0.2s;
}
.nav-logo:hover { color: var(--lime); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.125rem;
  list-style: none;
}
.nav-links a {
  color: var(--text-2);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius-pill);
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover {
  color: var(--text);
  background: rgba(255,255,255,0.05);
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.lang-link {
  display: inline-flex;
  align-items: center;
  opacity: 0.55;
  transition: opacity 0.2s;
  text-decoration: none;
}
.lang-link:hover { opacity: 1; }
.lang-link svg {
  display: block;
  width: 24px;
  height: 16px;
  border-radius: 3px;
}
.nav-cta {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  padding: 6rem 0 3.5rem;
  overflow: hidden;
}
/* ambient glow */
.hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 60% at 75% 25%, rgba(200,228,216,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(255,107,74,0.04) 0%, transparent 65%);
}
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
}
.hero-inner {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
  width: 100%;
}
/* badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  background: var(--lime-dim);
  border: 1px solid var(--lime-border);
  border-radius: var(--radius-pill);
  padding: 0.4rem 0.875rem 0.4rem 0.625rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--lime);
  letter-spacing: 0.03em;
  margin-bottom: 1.75rem;
  width: fit-content;
}
.hero-badge-dot {
  width: 7px;
  height: 7px;
  background: var(--lime);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-dot 2.4s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(200,228,216,0.5); }
  50%       { opacity: 0.7; box-shadow: 0 0 0 5px rgba(200,228,216,0); }
}
/* headline */
.hero h1 {
  font-size: clamp(3rem, 5.5vw, 5rem);
  font-weight: 700;
  line-height: 1.07;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}
.hero h1 .serif {
  display: block;
  color: var(--lime);
  letter-spacing: -0.01em;
}
.hero-lead {
  font-size: 1.125rem;
  color: var(--text-2);
  max-width: 40ch;
  line-height: 1.72;
  margin-bottom: 2.5rem;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}
/* stat strip */
.hero-stats {
  display: inline-flex;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.hero-stat {
  padding: 0.875rem 1.5rem;
  border-right: 1px solid var(--border);
}
.hero-stat:last-child { border-right: none; }
.hero-stat-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.hero-stat-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-3);
}

/* photo side */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: flex-end;
}
.hero-photo-frame {
  position: relative;
  width: 100%;
  max-width: 460px;
}
/* gradient border */
.hero-photo-frame::before {
  content: '';
  position: absolute;
  inset: -1.5px;
  border-radius: calc(var(--radius-lg) + 2px);
  background: linear-gradient(145deg, var(--lime) 0%, rgba(200,228,216,0.2) 40%, transparent 70%);
  z-index: 0;
}
.hero-photo {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}
/* floating card on photo */
.hero-float-card {
  position: absolute;
  bottom: 2rem;
  left: -2.5rem;
  z-index: 2;
  background: rgba(13, 18, 28, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-md);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.875rem;
  min-width: 210px;
}
.hero-float-icon {
  width: 38px;
  height: 38px;
  background: var(--lime-dim);
  border: 1px solid var(--lime-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--lime);
}
.hero-float-text strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.25;
}
.hero-float-text span {
  font-size: 0.75rem;
  color: var(--text-3);
}

/* bottom edge line */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-md) 50%, transparent);
}

/* ============================================
   SECTION BASE
   ============================================ */
section { padding: 6rem 0; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 1.25rem;
}
.section-label::before {
  content: '';
  width: 20px;
  height: 1.5px;
  background: var(--lime);
  flex-shrink: 0;
}
h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.028em;
  line-height: 1.12;
  color: var(--text);
}
h2 .serif {
  font-size: 1.05em;
  letter-spacing: -0.01em;
}
.section-lead {
  margin-top: 1rem;
  font-size: 1.0625rem;
  color: var(--text-2);
  max-width: 52ch;
  line-height: 1.72;
}

/* ============================================
   SERVICES
   ============================================ */
#services, #servicios {
  background: var(--bg-1);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.services-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.services-header { padding-top: 0.25rem; }
.services-header .section-lead { margin-bottom: 2rem; }

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.service-item {
  background: var(--bg-1);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: background 0.2s;
}
.service-item:hover { background: var(--bg-card); }
.service-num {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--lime);
  opacity: 0.6;
}
.service-item h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
}
.service-item p {
  font-size: 0.875rem;
  color: var(--text-2);
  line-height: 1.6;
}

/* ============================================
   WHY US
   ============================================ */
#why-us, #por-que {
  background: var(--bg);
}
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}
.value-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.value-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--lime), rgba(200,228,216,0.2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.value-card:hover {
  border-color: var(--border-md);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.value-card:hover::after { transform: scaleX(1); }
.value-card-num {
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  margin-bottom: 1.25rem;
  letter-spacing: -0.04em;
}
.value-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.625rem;
  letter-spacing: -0.015em;
}
.value-card p {
  font-size: 0.9375rem;
  color: var(--text-2);
  line-height: 1.68;
}

/* ============================================
   CONTACT
   ============================================ */
#contact, #contacto {
  background: var(--bg-1);
  border-top: 1px solid var(--border);
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: start;
}
.contact-info { padding-top: 0.25rem; }
.contact-info h2 { margin-bottom: 1rem; }
.contact-info .section-lead { margin-bottom: 2.5rem; }
.contact-details { display: flex; flex-direction: column; }
.contact-detail {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: var(--text-2);
  font-size: 0.9375rem;
  transition: color 0.2s;
}
.contact-detail:hover { color: var(--lime); }
.contact-icon {
  width: 34px;
  height: 34px;
  background: var(--bg-2);
  border: 1px solid var(--border-md);
  border-radius: var(--radius-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--text-2);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.contact-detail:hover .contact-icon {
  color: var(--lime);
  border-color: var(--lime-border);
  background: var(--lime-dim);
}

/* form card */
.contact-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}
.form-group { margin-bottom: 1.125rem; }
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-2);
  letter-spacing: 0.03em;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  font: inherit;
  font-size: 0.9375rem;
  color: var(--text);
  background: var(--bg-1);
  border: 1px solid var(--border-md);
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-3);
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--lime);
  box-shadow: 0 0 0 3px rgba(200, 228, 216, 0.1);
}
.form-group textarea {
  min-height: 120px;
  resize: vertical;
}
.form-actions { margin-top: 1.5rem; }
.form-actions .btn { width: 100%; justify-content: center; }
.form-message {
  margin-top: 1rem;
  padding: 0.875rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  display: none;
}
.form-message.success {
  display: block;
  background: var(--lime-dim);
  border: 1px solid var(--lime-border);
  color: var(--lime);
}
.form-message.error {
  display: block;
  background: var(--coral-dim);
  border: 1px solid rgba(255, 107, 74, 0.25);
  color: var(--coral);
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  padding: 2rem 0;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-logo {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.375rem;
  font-weight: 600;
  font-style: italic;
  color: var(--text-3);
  letter-spacing: 0.04em;
  line-height: 1;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-logo:hover { color: var(--lime); }
footer a {
  text-decoration: none;
  font-size: 0.875rem;
  color: var(--text-3);
  transition: color 0.2s;
}
footer a:hover { color: var(--lime); }
.footer-copy {
  font-size: 0.8125rem;
  color: var(--text-3);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 960px) {
  .services-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-layout  { grid-template-columns: 1fr; gap: 3rem; }
}
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 3.5rem;
    text-align: center;
  }
  .hero-lead   { max-width: none; }
  .hero-badge  { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats  { margin: 0 auto; }
  .hero-visual { justify-content: center; }
  .hero-photo-frame { max-width: 380px; margin: 0 auto; }
  .hero-float-card { left: 0; bottom: 1rem; }
}
@media (max-width: 700px) {
  section { padding: 4rem 0; }
  .value-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; border-radius: var(--radius); }
  .hero-stat { border-right: none; border-bottom: 1px solid var(--border); }
  .hero-stat:last-child { border-bottom: none; }
  .nav-links { display: none; }
  .contact-form-card { padding: 1.75rem; }
  .hero-float-card { display: none; }
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}

/* ============================================
   THEME TOGGLE BUTTON
   ============================================ */
.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: var(--radius-pill);
  color: var(--text-2);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
  flex-shrink: 0;
}
.theme-toggle:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
}
.theme-toggle svg { display: block; }
/* Show correct icon per theme */
.theme-toggle .icon-sun  { display: block; }
.theme-toggle .icon-moon { display: none; }
[data-theme="light"] .theme-toggle .icon-sun  { display: none; }
[data-theme="light"] .theme-toggle .icon-moon { display: block; }
[data-theme="light"] .theme-toggle:hover { background: rgba(0, 0, 0, 0.06); }

/* ============================================
   LIGHT THEME
   ============================================ */
[data-theme="light"] {
  --bg:          #ffffff;
  --bg-1:        #c8e4d8;
  --bg-2:        #afd6c6;
  --bg-card:     #ffffff;

  --lime:        #15573e;
  --lime-hover:  #0f4430;
  --lime-glow:   rgba(21, 87, 62, 0.1);
  --lime-dim:    rgba(200, 228, 216, 0.55);
  --lime-border: #9dd0bc;

  --coral:       #c0392b;
  --coral-dim:   rgba(192, 57, 43, 0.07);

  --text:        #0a1f16;
  --text-2:      #376152;
  --text-3:      #82a896;

  --border:      rgba(0, 0, 0, 0.07);
  --border-md:   rgba(0, 0, 0, 0.13);

  --shadow:      0 2px 12px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
  --shadow-lg:   0 16px 48px rgba(0, 0, 0, 0.11), 0 4px 16px rgba(0, 0, 0, 0.06);
}

[data-theme="light"] header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  border-bottom-color: rgba(0, 0, 0, 0.09);
}

[data-theme="light"] .hero { background: #eef8f3; }
[data-theme="light"] .hero-glow {
  background:
    radial-gradient(ellipse 70% 60% at 75% 25%, rgba(200, 228, 216, 0.75) 0%, transparent 65%),
    radial-gradient(ellipse 50% 50% at 15% 80%, rgba(200, 228, 216, 0.5)  0%, transparent 60%);
}
[data-theme="light"] .hero-grid-overlay {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.04) 1px, transparent 1px);
}
[data-theme="light"] .hero::after {
  background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.08), transparent);
}
[data-theme="light"] .hero-photo-frame::before {
  background: linear-gradient(145deg, #15573e 0%, rgba(200, 228, 216, 0.55) 45%, transparent 70%);
}
[data-theme="light"] .hero-float-card {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(0, 0, 0, 0.1);
}
[data-theme="light"] .hero-stats {
  background: rgba(255, 255, 255, 0.75);
  border-color: rgba(0, 0, 0, 0.1);
}
[data-theme="light"] .hero-stat { border-color: rgba(0, 0, 0, 0.08); }

[data-theme="light"] .btn-primary { color: #ffffff; }
[data-theme="light"] .btn-ghost {
  border-color: rgba(0, 0, 0, 0.15);
  color: var(--text-2);
}
[data-theme="light"] .btn-ghost:hover {
  background: rgba(0, 0, 0, 0.04);
  color: var(--text);
}

[data-theme="light"] .nav-links a:hover { background: rgba(200, 228, 216, 0.5); }

[data-theme="light"] .services-grid { background: rgba(0, 0, 0, 0.07); }
[data-theme="light"] .service-item { background: #ffffff; }
[data-theme="light"] .service-item:hover { background: #f0faf6; }

[data-theme="light"] #why-us,
[data-theme="light"] #por-que { background: #f5fbf8; }
[data-theme="light"] .value-card { background: #ffffff; }
[data-theme="light"] .value-card-num { color: rgba(0, 0, 0, 0.05); }
[data-theme="light"] .value-card::after {
  background: linear-gradient(90deg, var(--lime), rgba(200, 228, 216, 0.5));
}

[data-theme="light"] .contact-form-card {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.09);
}
[data-theme="light"] .form-group input,
[data-theme="light"] .form-group textarea {
  background: #f3fbf7;
  border-color: rgba(0, 0, 0, 0.13);
}
[data-theme="light"] .form-group input:focus,
[data-theme="light"] .form-group textarea:focus {
  border-color: var(--lime);
  box-shadow: 0 0 0 3px rgba(200, 228, 216, 0.45);
}
[data-theme="light"] .form-message.success {
  background: rgba(200, 228, 216, 0.4);
  border-color: #9dd0bc;
}

[data-theme="light"] footer { border-top-color: rgba(0, 0, 0, 0.08); }

