/* ═══════════════════════════════════════════════
   MeRész EMÚ – Főstílus (Lovable klón)
   ═══════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&family=Quicksand:wght@400;500;600;700&display=swap');

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

/* ── Design tokenek (az eredeti CSS változók) ── */
:root {
  --background:    hsl(40, 33%, 97%);
  --foreground:    hsl(220, 20%, 20%);
  --card:          hsl(0, 0%, 100%);
  --card-fg:       hsl(220, 20%, 20%);
  --primary:       hsl(220, 62%, 40%);
  --primary-fg:    hsl(0, 0%, 100%);
  --secondary:     hsl(40, 90%, 55%);
  --secondary-fg:  hsl(220, 20%, 15%);
  --muted:         hsl(40, 20%, 93%);
  --muted-fg:      hsl(220, 10%, 45%);
  --accent:        hsl(325, 85%, 50%);
  --accent-fg:     hsl(0, 0%, 100%);
  --border:        hsl(220, 15%, 88%);
  --brand-cream:   hsl(42, 50%, 94%);
  --radius:        0.75rem;
  --gradient-hero: linear-gradient(135deg, hsl(220,62%,40%), hsl(325,85%,50%));
  --gradient-warm: linear-gradient(135deg, hsl(40,90%,55%,0.1), hsl(325,85%,50%,0.08));
  --shadow-card:    0 4px 20px -4px hsl(220 20% 20% / 0.08);
  --shadow-elevated:0 8px 32px -8px hsl(220 20% 20% / 0.12);
  --font-heading:  'Nunito', sans-serif;
  --font-body:     'Quicksand', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--background);
  color: var(--foreground);
  overflow-x: hidden;
  line-height: 1.6;
}

h1,h2,h3,h4,h5,h6 { font-family: var(--font-heading); }

img { max-width: 100%; height: auto; }
a { text-decoration: none; }
button { cursor: pointer; font-family: var(--font-body); }

/* ── Utilities ── */
.container-narrow { max-width: 72rem; margin: 0 auto; }
.section-padding { padding: 4rem 1rem; scroll-margin-top: 120px; }
@media(min-width:768px){ .section-padding { padding: 6rem 2rem; } }
@media(min-width:1024px){ .section-padding { padding: 6rem 4rem; } }

.gradient-text {
  background: var(--gradient-hero);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.card-hover { transition: all .3s; box-shadow: var(--shadow-card); }
.card-hover:hover { box-shadow: var(--shadow-elevated); transform: translateY(-2px); }

/* ── TOP BAR ── */
.top-bar {
  background: var(--primary); color: var(--primary-fg);
  display: flex; justify-content: flex-end; gap: 1.5rem;
  padding: 0.375rem 1rem; font-size: .875rem;
}
.top-bar a { color: var(--primary-fg); display: flex; align-items: center; gap: .375rem; opacity: .9; transition: opacity .2s; }
.top-bar a:hover { opacity: 1; }
.top-bar svg { width: .75rem; height: .75rem; }

/* ── NAVBAR ── */
.me-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: rgba(255,255,255,.95); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 72rem; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: .75rem 1rem;
}
.nav-logo img { height: 3rem; }
@media(min-width:768px){ .nav-logo img { height: 3.5rem; } }

.nav-links { display: none; }
@media(min-width:1024px){
  .nav-links {
    display: flex; align-items: center; gap: .25rem; list-style: none;
  }
}
.nav-links a {
  padding: .5rem .75rem; border-radius: .375rem;
  font-size: .875rem; font-weight: 600; font-family: var(--font-body);
  color: var(--foreground); transition: background .2s, color .2s;
}
.nav-links a:hover { background: var(--muted); color: var(--primary); }
.nav-cta {
  background: var(--accent); color: var(--accent-fg);
  padding: .625rem 1.25rem; border-radius: .5rem;
  font-weight: 700; font-size: .875rem; border: none;
  transition: opacity .2s; display: inline-block; margin-left: .75rem;
}
.nav-cta:hover { opacity: .9; color: var(--accent-fg); }

.nav-hamburger {
  display: flex; flex-direction: column; gap: 5px;
  background: none; border: none; padding: .5rem;
  border-radius: .375rem; transition: background .2s;
}
.nav-hamburger:hover { background: var(--muted); }
.nav-hamburger span { display: block; width: 24px; height: 2.5px; background: var(--foreground); border-radius: 4px; }
@media(min-width:1024px){ .nav-hamburger { display: none; } }

.nav-mobile {
  display: none; background: var(--card); border-top: 1px solid var(--border);
  padding: 1rem;
}
.nav-mobile.open { display: block; }
.nav-mobile a {
  display: block; padding: .625rem .75rem; border-radius: .375rem;
  font-size: .875rem; font-weight: 600; color: var(--foreground);
  transition: background .2s;
}
.nav-mobile a:hover { background: var(--muted); }
.nav-mobile .nav-cta { display: block; text-align: center; margin-top: .75rem; }

/* ── HERO ── */
.hero-section {
  position: relative; min-height: 90vh;
  display: flex; align-items: center;
  padding-top: 7rem; overflow: hidden;
}
.hero-slide {
  position: absolute; inset: 0;
  transition: opacity 1s ease-in-out;
}
.hero-slide img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, hsl(220,20%,20%,.8), hsl(220,20%,20%,.6), hsl(220,20%,20%,.3));
}
.hero-content {
  position: relative; z-index: 10;
  max-width: 72rem; margin: 0 auto; padding: 4rem 1rem;
  max-width: 42rem;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .375rem 1rem; border-radius: 9999px;
  background: hsl(325,85%,50%,.2); border: 1px solid hsl(325,85%,50%,.3);
  backdrop-filter: blur(4px); margin-bottom: 1.5rem;
}
.hero-badge .dot { width: .5rem; height: .5rem; border-radius: 50%; background: var(--secondary); animation: pulse 1.5s infinite; }
.hero-badge span { font-size: .875rem; font-weight: 600; color: var(--secondary); }
.hero-h1 { font-weight: 900; line-height: 1.15; margin-bottom: 1.5rem; }
.hero-h1 .block { display: block; color: var(--secondary); }
.hero-subtitle { font-size: 1.125rem; color: rgba(255,255,255,.8); max-width: 36rem; margin-bottom: 2rem; line-height: 1.7; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 1rem; }
.btn-primary-hero {
  padding: .875rem 2rem; border-radius: .5rem;
  background: var(--accent); color: var(--accent-fg);
  font-weight: 700; font-size: 1.125rem; border: none;
  box-shadow: 0 4px 16px hsl(325,85%,50%,.3); transition: opacity .2s;
}
.btn-primary-hero:hover { opacity: .9; color: var(--accent-fg); }
.btn-secondary-hero {
  padding: .875rem 2rem; border-radius: .5rem;
  background: rgba(255,255,255,.15); backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,.3); color: white;
  font-weight: 700; font-size: 1.125rem; transition: background .2s;
}
.btn-secondary-hero:hover { background: rgba(255,255,255,.25); color: white; }

/* Slider nav */
.slider-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 20;
  width: 2.5rem; height: 2.5rem; border-radius: 50%;
  background: rgba(255,255,255,.2); backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,.2); color: white;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.slider-arrow:hover { background: rgba(255,255,255,.3); }
.slider-arrow.prev { left: 1rem; }
.slider-arrow.next { right: 1rem; }
.slider-dots {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 20; display: flex; gap: .5rem;
}
.slider-dot {
  width: .75rem; height: .75rem; border-radius: 50%; border: none;
  background: rgba(255,255,255,.4); transition: all .3s; padding: 0;
}
.slider-dot.active { background: var(--secondary); transform: scale(1.25); }

/* ── ABOUT ── */
.about-section { background: var(--background); }
.about-grid { display: grid; gap: 3rem; align-items: center; }
@media(min-width:1024px){ .about-grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }

.about-img-wrap { position: relative; }
.about-img-wrap .rounded-img { border-radius: 1rem; overflow: hidden; box-shadow: var(--shadow-elevated); }
.about-img-wrap .rounded-img img { width: 100%; height: auto; display: block; }
.about-deco-1 { position: absolute; bottom: -1rem; right: -1rem; width: 6rem; height: 6rem; border-radius: 1rem; background: hsl(40,90%,55%,.2); z-index: -1; }
.about-deco-2 { position: absolute; top: -1rem; left: -1rem; width: 4rem; height: 4rem; border-radius: 50%; background: hsl(325,85%,50%,.15); z-index: -1; }

.section-eyebrow { font-size: .875rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--accent); margin-bottom: .5rem; }
.section-title-lg { font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: 900; color: var(--foreground); line-height: 1.2; }
.section-title-lg .highlight { color: var(--primary); }
.section-desc { font-size: 1.125rem; color: var(--muted-fg); line-height: 1.7; margin-top: 1rem; }

.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1.5rem; }
.value-item { display: flex; gap: .75rem; align-items: flex-start; }
.value-icon {
  flex-shrink: 0; width: 2.5rem; height: 2.5rem; border-radius: .5rem;
  background: var(--brand-cream); display: flex; align-items: center; justify-content: center;
}
.value-icon img { width: 1.25rem; height: 1.25rem; object-fit: contain; }
.value-title { font-weight: 700; color: var(--foreground); font-size: .875rem; }
.value-desc { color: var(--muted-fg); font-size: .875rem; }

/* ── PROBLEMS / EXPERTISE ── */
.problems-section { background: var(--brand-cream); }
.section-header-center { text-align: center; max-width: 42rem; margin: 0 auto 3rem; }
.problems-grid { display: grid; gap: 1.5rem; }
@media(min-width:768px){ .problems-grid { grid-template-columns: 1fr 1fr; } }
@media(min-width:1024px){ .problems-grid { grid-template-columns: repeat(3, 1fr); } }

.problem-card {
  background: var(--card); border-radius: 1rem; padding: 1.5rem;
  border: 1px solid var(--border);
}
.problem-icon { width: 3rem; height: 3rem; border-radius: .75rem; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.problem-icon svg { width: 1.5rem; height: 1.5rem; }
.problem-icon img { width: 1.5rem; height: 1.5rem; object-fit: contain; }
.problem-title { font-size: 1.125rem; font-weight: 700; font-family: var(--font-heading); color: var(--foreground); margin-bottom: .5rem; }
.problem-desc { color: var(--muted-fg); font-size: .875rem; line-height: 1.6; }
.problem-link { display: inline-flex; align-items: center; gap: .25rem; font-size: .875rem; font-weight: 600; color: var(--primary); margin-top: .75rem; transition: opacity .2s; }
.problem-link:hover { opacity: .7; }
.problem-link svg { width: .875rem; height: .875rem; }

/* ── SERVICES ── */
.services-section { background: var(--background); }
.services-grid { display: grid; gap: 1.25rem; }
@media(min-width:640px){ .services-grid { grid-template-columns: 1fr 1fr; } }
@media(min-width:1024px){ .services-grid { grid-template-columns: repeat(4, 1fr); } }

.service-card {
  background: var(--card); border-radius: 1rem; padding: 1.25rem;
  border: 1px solid var(--border); text-align: center;
  transition: all .3s; box-shadow: var(--shadow-card);
}
.service-card:hover { box-shadow: var(--shadow-elevated); transform: translateY(-2px); }
.service-icon-wrap {
  width: 3.5rem; height: 3.5rem; border-radius: 1rem;
  background: hsl(220,62%,40%,.1); display: flex; align-items: center;
  justify-content: center; margin: 0 auto 1rem;
  transition: background .3s;
}
.service-card:hover .service-icon-wrap { background: var(--primary); }
.service-icon-wrap svg { width: 1.75rem; height: 1.75rem; color: var(--primary); transition: color .3s; }
.service-card:hover .service-icon-wrap svg { color: white; }
.service-name { font-size: .875rem; font-weight: 700; font-family: var(--font-heading); color: var(--foreground); margin-bottom: .375rem; }
.service-desc { color: var(--muted-fg); font-size: .75rem; line-height: 1.6; }
.service-link { display: inline-flex; align-items: center; gap: .25rem; font-size: .75rem; font-weight: 600; color: var(--primary); margin-top: .5rem; }
.service-link:hover { opacity: .7; }

/* ── TEAM ── */
.team-section { background: var(--brand-cream); }
.team-grid { display: grid; gap: 1.5rem; }
@media(min-width:640px){ .team-grid { grid-template-columns: 1fr 1fr; } }
@media(min-width:1024px){ .team-grid { grid-template-columns: repeat(3, 1fr); } }

.team-card {
  background: var(--card); border-radius: 1rem; padding: 1.5rem;
  border: 1px solid var(--border); text-align: center;
  box-shadow: var(--shadow-card); transition: all .3s;
}
.team-card:hover { box-shadow: var(--shadow-elevated); transform: translateY(-2px); }
.team-avatar { width: 5rem; height: 5rem; border-radius: 50%; object-fit: cover; margin: 0 auto 1rem; display: block; }
.team-avatar-placeholder {
  width: 5rem; height: 5rem; border-radius: 50%;
  background: hsl(220,62%,40%,.1); display: flex; align-items: center;
  justify-content: center; margin: 0 auto 1rem;
  font-size: 1.5rem; font-weight: 900; font-family: var(--font-heading); color: var(--primary);
}
.team-name { font-size: 1.125rem; font-weight: 700; font-family: var(--font-heading); color: var(--foreground); }
.team-role { font-size: .875rem; font-weight: 600; color: var(--accent); margin-top: .25rem; }
.team-desc { color: var(--muted-fg); font-size: .875rem; margin-top: .75rem; line-height: 1.6; }
.team-link { display: inline-flex; align-items: center; gap: .25rem; font-size: .875rem; font-weight: 600; color: var(--primary); margin-top: .75rem; }

/* ── BLOG ── */
.blog-section { background: var(--background); }
.blog-header { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 3rem; }
@media(min-width:640px){ .blog-header { flex-direction: row; align-items: center; justify-content: space-between; } }
.blog-all-btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .625rem 1.25rem; border-radius: .5rem;
  border: 1px solid var(--border); font-weight: 700; font-size: .875rem;
  color: var(--foreground); transition: background .2s;
}
.blog-all-btn:hover { background: var(--muted); color: var(--foreground); }
.blog-all-btn svg { width: 1rem; height: 1rem; }
.blog-grid { display: grid; gap: 1.5rem; }
@media(min-width:768px){ .blog-grid { grid-template-columns: repeat(3, 1fr); } }

.blog-card {
  background: var(--card); border-radius: 1rem; border: 1px solid var(--border);
  overflow: hidden; box-shadow: var(--shadow-card); transition: all .3s; display: block;
  color: var(--foreground);
}
.blog-card:hover { box-shadow: var(--shadow-elevated); transform: translateY(-2px); }
.blog-img { height: 10rem; overflow: hidden; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.blog-card:hover .blog-img img { transform: scale(1.05); }
.blog-body { padding: 1.25rem; }
.blog-meta { display: flex; align-items: center; gap: .75rem; margin-bottom: .75rem; }
.blog-cat { font-size: .75rem; font-weight: 700; padding: .25rem .625rem; border-radius: 9999px; background: hsl(220,62%,40%,.1); color: var(--primary); }
.blog-date { font-size: .75rem; color: var(--muted-fg); display: flex; align-items: center; gap: .25rem; }
.blog-date svg { width: .75rem; height: .75rem; }
.blog-title { font-size: 1.125rem; font-weight: 700; font-family: var(--font-heading); color: var(--foreground); margin-bottom: .75rem; line-height: 1.4; transition: color .2s; }
.blog-card:hover .blog-title { color: var(--primary); }
.blog-excerpt { font-size: .875rem; color: var(--muted-fg); line-height: 1.6; }

/* ── APPOINTMENT ── */
.appointment-section { background: var(--gradient-warm); }
.appointment-form {
  max-width: 42rem; margin: 0 auto;
  background: var(--card); border-radius: 1rem; padding: 1.5rem;
  border: 1px solid var(--border); box-shadow: var(--shadow-elevated);
}
@media(min-width:768px){ .appointment-form { padding: 2rem; } }

.mode-toggle { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; margin-bottom: 1.25rem; }
.mode-btn {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  border-radius: .75rem; border: 2px solid var(--border); padding: .75rem 1rem;
  font-size: .875rem; font-weight: 700; background: var(--background);
  color: var(--muted-fg); transition: all .2s;
}
.mode-btn.active { border-color: var(--primary); background: hsl(220,62%,40%,.1); color: var(--primary); }
.mode-btn svg { width: 1rem; height: 1rem; }

.form-label { display: block; font-size: .875rem; font-weight: 600; color: var(--foreground); margin-bottom: .375rem; }
.form-input, .form-select, .form-textarea {
  width: 100%; border: 1px solid var(--border); border-radius: var(--radius);
  padding: .625rem .875rem; font-family: var(--font-body); font-size: .9375rem;
  color: var(--foreground); background: white; outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--primary); box-shadow: 0 0 0 3px hsl(220,62%,40%,.12);
}
.form-textarea { resize: vertical; min-height: 5rem; }
.form-row { display: grid; gap: 1rem; margin-bottom: 1rem; }
@media(min-width:640px){ .form-row-2 { grid-template-columns: 1fr 1fr; } }
.form-group { margin-bottom: 1rem; }

.form-checkbox-label { display: flex; align-items: flex-start; gap: .5rem; cursor: pointer; font-size: .875rem; color: var(--muted-fg); }
.form-checkbox-label input { margin-top: .125rem; accent-color: var(--accent); }
.form-checkbox-label a { color: var(--accent); text-decoration: underline; }

.btn-submit {
  width: 100%; background: var(--accent); color: var(--accent-fg);
  border: none; border-radius: .75rem; padding: 1.25rem;
  font-family: var(--font-body); font-weight: 700; font-size: 1.125rem;
  transition: opacity .2s; margin-top: .5rem;
}
.btn-submit:hover:not(:disabled) { opacity: .9; }
.btn-submit:disabled { opacity: .5; cursor: not-allowed; }

.booking-notice {
  padding: .75rem 1rem; border-radius: .5rem;
  background: hsl(325,85%,50%,.1); border: 1px solid hsl(325,85%,50%,.2);
  font-size: .875rem; color: var(--foreground); margin-bottom: 1.25rem;
}

/* ── CONTACT ── */
.contact-section { background: var(--background); }
.contact-grid { display: grid; gap: 2.5rem; }
@media(min-width:1024px){ .contact-grid { grid-template-columns: 1fr 1fr; } }

.contact-info-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.25rem; }
.contact-icon { width: 2.5rem; height: 2.5rem; border-radius: .5rem; background: hsl(220,62%,40%,.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-icon svg { width: 1.25rem; height: 1.25rem; color: var(--primary); }
.contact-label { font-size: .875rem; font-weight: 700; color: var(--foreground); }
.contact-value { color: var(--muted-fg); }

.location-card { background: var(--card); border-radius: 1rem; border: 1px solid var(--border); padding: 1.25rem; margin-bottom: 1rem; }
.location-name { display: flex; align-items: center; gap: .5rem; font-weight: 700; color: var(--foreground); margin-bottom: .75rem; }
.location-name svg { width: 1.25rem; height: 1.25rem; color: var(--primary); }
.location-row { margin-bottom: .5rem; }
.location-row .loc-label { font-size: .875rem; font-weight: 600; color: var(--foreground); }
.location-row .loc-val { font-size: .875rem; color: var(--muted-fg); }
.location-map { border-radius: .75rem; overflow: hidden; border: 1px solid var(--border); height: 11rem; margin-top: .75rem; }
.location-map iframe { width: 100%; height: 100%; border: 0; }

.contact-form-box { background: var(--card); border-radius: 1rem; border: 1px solid var(--border); padding: 1.5rem; }
@media(min-width:768px){ .contact-form-box { padding: 2rem; } }
.contact-form-title { font-size: 1.25rem; font-weight: 700; font-family: var(--font-heading); color: var(--foreground); margin-bottom: 1.25rem; }
.btn-send { width: 100%; background: var(--primary); color: var(--primary-fg); border: none; border-radius: .5rem; padding: .75rem; font-family: var(--font-body); font-weight: 700; font-size: 1rem; display: flex; align-items: center; justify-content: center; gap: .5rem; transition: opacity .2s; }
.btn-send:hover { opacity: .9; }
.btn-send svg { width: 1rem; height: 1rem; }

/* ── POPUP ── */
.site-popup { position: fixed; inset: 0; z-index: 100; display: flex; align-items: center; justify-content: center; padding: 1rem; }
.site-popup.hidden { display: none; }
.popup-backdrop { position: absolute; inset: 0; background: hsl(220,20%,20%,.5); backdrop-filter: blur(4px); }
.popup-box {
  position: relative; background: var(--card); border-radius: 1rem;
  box-shadow: 0 25px 50px rgba(0,0,0,.25); max-width: 32rem; width: 100%; overflow: hidden;
  animation: zoomIn .3s ease;
}
@keyframes zoomIn { from{opacity:0;transform:scale(.95)} to{opacity:1;transform:scale(1)} }
.popup-close {
  position: absolute; top: .75rem; right: .75rem; z-index: 10;
  width: 2rem; height: 2rem; border-radius: 50%; background: rgba(0,0,0,.1);
  border: none; display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.popup-close:hover { background: rgba(0,0,0,.2); }
.popup-close svg { width: 1rem; height: 1rem; }
.popup-img img { width: 100%; height: 12rem; object-fit: cover; }
.popup-content { padding: 1.5rem; }
.popup-title { font-size: 1.25rem; font-weight: 700; font-family: var(--font-heading); color: var(--foreground); padding-right: 2rem; margin-bottom: 1rem; }
.popup-text { font-size: .875rem; color: var(--muted-fg); line-height: 1.7; }
.popup-btns { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.25rem; }
.popup-btn-primary { padding: .625rem 1.25rem; border-radius: .5rem; background: var(--accent); color: var(--accent-fg); font-weight: 700; font-size: .875rem; transition: opacity .2s; }
.popup-btn-primary:hover { opacity: .9; color: var(--accent-fg); }
.popup-btn-secondary { padding: .625rem 1.25rem; border-radius: .5rem; border: 1px solid var(--border); color: var(--foreground); font-weight: 700; font-size: .875rem; transition: background .2s; }
.popup-btn-secondary:hover { background: var(--muted); color: var(--foreground); }

/* ── FOOTER ── */
.me-footer { background: var(--foreground); color: rgba(255,255,255,.8); }
.footer-inner { max-width: 72rem; margin: 0 auto; }
.footer-grid { display: grid; gap: 2.5rem; padding: 4rem 1rem 2.5rem; }
@media(min-width:768px){ .footer-grid { grid-template-columns: repeat(3,1fr); padding: 4rem 2rem 2.5rem; } }
.footer-logo img { height: 3rem; margin-bottom: 1rem; }
.footer-desc { font-size: .875rem; color: rgba(255,255,255,.6); line-height: 1.7; }
.footer-socials { display: flex; gap: .75rem; margin-top: 1rem; }
.footer-social { width: 2.25rem; height: 2.25rem; border-radius: 50%; background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; transition: background .2s; }
.footer-social:hover { background: rgba(255,255,255,.2); }
.footer-social svg { width: 1rem; height: 1rem; color: white; }
.footer-col-title { font-weight: 700; font-family: var(--font-heading); color: white; margin-bottom: 1rem; }
.footer-links-list { display: grid; grid-template-columns: 1fr 1fr; gap: .375rem .75rem; list-style: none; }
.footer-links-list a { font-size: .875rem; color: rgba(255,255,255,.7); transition: color .2s; }
.footer-links-list a:hover { color: white; }
.footer-contact-list { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.footer-contact-list li { font-size: .875rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1.5rem 1rem;
  display: flex; flex-direction: column; gap: .75rem; align-items: center;
  font-size: .75rem; color: rgba(255,255,255,.5);
}
@media(min-width:768px){ .footer-bottom { flex-direction: row; justify-content: space-between; padding: 1.5rem 2rem; } }

/* ── Animations ── */
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.3)} }
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Toast ── */
.me-toast {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 200;
  background: var(--card); border: 1px solid var(--border); border-radius: .75rem;
  padding: 1rem 1.25rem; box-shadow: var(--shadow-elevated);
  min-width: 280px; max-width: 360px;
  animation: slideUp .4s ease;
  display: none;
}
.me-toast.show { display: block; }
.me-toast.success { border-left: 4px solid var(--primary); }
.me-toast.error { border-left: 4px solid hsl(0,84%,60%); }
.toast-title { font-weight: 700; color: var(--foreground); font-size: .9375rem; }
.toast-desc { font-size: .875rem; color: var(--muted-fg); margin-top: .25rem; }
@keyframes slideUp { from{opacity:0;transform:translateY(16px)} to{opacity:1;transform:translateY(0)} }

/* ── Page padding for fixed nav ── */
#page-wrap { padding-top: 106px; }

/* ── Inline SVG icons helper ── */
.icon-sm { width: 1.25rem; height: 1.25rem; display: inline-block; vertical-align: middle; }
