/* ============================================
   RICARO MONTAJ SRL — Global Stylesheet
   ============================================ */

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

/* ── Variables ── */
:root {
  --primary:      #e91e63;
  --primary-dk:   #c2185b;
  --secondary:    #a81d84;
  --gradient:     linear-gradient(135deg, #e91e63 0%, #a81d84 100%);
  --dark:         #0f0f14;
  --dark-alt:     #1a1a24;
  --text:         #1f2937;
  --text-lt:      #6b7280;
  --bg:           #ffffff;
  --bg-alt:       #f7f7fb;
  --border:       #e8e8f0;
  --shadow-sm:    0 2px 8px rgba(0,0,0,.06);
  --shadow:       0 4px 24px rgba(0,0,0,.10);
  --shadow-lg:    0 12px 48px rgba(0,0,0,.14);
  --radius:       12px;
  --radius-lg:    20px;
  --ease:         0.3s ease;
  --max-w:        1180px;
}

/* ── Reset ── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width:100%; display:block; }
a { text-decoration:none; }
button { cursor:pointer; }

/* ── Typography helpers ── */
h1,h2,h3,h4,h5 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.15;
}

/* ── Layout ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 96px 0; }

/* ── Section labels / titles ── */
.label {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.75rem, 4vw, 2.8rem);
  color: var(--text);
  margin-bottom: 14px;
}
.section-sub {
  font-size: 1rem;
  color: var(--text-lt);
  max-width: 580px;
  line-height: 1.75;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .875rem;
  letter-spacing: .4px;
  transition: var(--ease);
  border: 2px solid transparent;
  line-height: 1;
}
.btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 4px 20px rgba(233,30,99,.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(233,30,99,.45);
}
.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.45);
}
.btn-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: #fff;
}
.btn-dark {
  background: var(--dark);
  color: #fff;
}
.btn-dark:hover {
  background: var(--dark-alt);
  transform: translateY(-2px);
}

/* ══════════════════════════════════════
   NAVBAR
══════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: var(--ease);
}
.navbar.scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 24px rgba(0,0,0,.08);
  padding: 12px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img { height: 46px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  font-family: 'Montserrat', sans-serif;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text);
  padding: 8px 16px;
  border-radius: 8px;
  transition: var(--ease);
  letter-spacing: .3px;
}
/* hero-mode: white text links */
.navbar:not(.scrolled) .nav-links a {
  color: rgba(255,255,255,.8);
}
.navbar:not(.scrolled) .nav-links a:hover {
  color: #fff;
  background: rgba(255,255,255,.1);
}
.nav-links a:hover { color: var(--primary); background: rgba(233,30,99,.06); }
.nav-links a.active { color: var(--primary); }
.navbar:not(.scrolled) .nav-links a.active { color: #fff; }

.nav-cta {
  background: var(--gradient) !important;
  color: #fff !important;
  padding: 10px 24px !important;
  border-radius: 50px !important;
  box-shadow: 0 4px 16px rgba(233,30,99,.3);
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(233,30,99,.4) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  border-radius: 2px;
  background: var(--text);
  transition: var(--ease);
}
.navbar:not(.scrolled) .hamburger span { background: #fff; }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══════════════════════════════════════
   HERO (homepage)
══════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: var(--dark);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 75% 40%, rgba(168,29,132,.2) 0%, transparent 55%),
    radial-gradient(ellipse at 25% 85%, rgba(233,30,99,.1) 0%, transparent 45%);
  pointer-events: none;
}
/* Subtle grid overlay */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 130px 0 90px;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(233,30,99,.12);
  border: 1px solid rgba(233,30,99,.25);
  color: #f48fb1;
  padding: 6px 16px 6px 10px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-badge i {
  width: 6px; height: 6px;
  background: var(--primary);
  border-radius: 50%;
  animation: blink 2s infinite;
}
@keyframes blink {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:.4; transform:scale(1.6); }
}
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: #fff;
  margin-bottom: 20px;
  font-weight: 800;
  letter-spacing: -.5px;
}
.hero h1 em {
  font-style: normal;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.55);
  margin-bottom: 40px;
  max-width: 480px;
  line-height: 1.75;
}
.hero-actions { display:flex; gap:16px; flex-wrap:wrap; }

/* Hero image */
.hero-img-wrap {
  position: relative;
}
.hero-img-glow {
  position: absolute;
  inset: -24px;
  background: var(--gradient);
  border-radius: 28px;
  opacity: .12;
  filter: blur(40px);
}
.hero-img-wrap img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.07);
  position: relative;
  z-index: 1;
}

/* Scroll indicator */
.scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  z-index: 2;
}
.scroll-hint span {
  font-family: 'Montserrat', sans-serif;
  font-size: .65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
}
.scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(255,255,255,.35), transparent);
  animation: scrollAnim 2s ease-in-out infinite;
}
@keyframes scrollAnim {
  0%,100% { opacity:.4; transform:scaleY(1); }
  50%      { opacity:1;  transform:scaleY(1.15); }
}

/* ══════════════════════════════════════
   PAGE HERO (subpages)
══════════════════════════════════════ */
.page-hero {
  background: var(--dark);
  padding: 148px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 0%, rgba(233,30,99,.12) 0%, transparent 55%);
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.015) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.015) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.page-hero-inner { position:relative; z-index:1; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: .8rem;
  color: rgba(255,255,255,.35);
}
.breadcrumb a { color: rgba(255,255,255,.35); transition: var(--ease); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb svg { opacity: .4; }
.page-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: #fff;
  margin-bottom: 14px;
}
.page-hero p {
  color: rgba(255,255,255,.5);
  font-size: 1.05rem;
  max-width: 560px;
}

/* ══════════════════════════════════════
   SERVICES GRID
══════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
  margin-top: 56px;
}
.service-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--ease);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--ease);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::after { transform: scaleX(1); }

.service-icon {
  width: 54px; height: 54px;
  background: rgba(233,30,99,.07);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  margin-bottom: 20px;
  transition: var(--ease);
}
.service-card:hover .service-icon {
  background: var(--gradient);
  color: #fff;
}
.service-card h3 { font-size:1.05rem; margin-bottom:10px; }
.service-card p  { font-size:.9rem; color:var(--text-lt); line-height:1.65; }

/* Full-page services (servicii.html) */
.service-card.large {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 20px 24px;
  align-items: start;
}
.service-card.large .service-icon { margin-bottom:0; }
.service-card.large h3 { margin-top:4px; font-size:1.15rem; }
.service-card.large p  { font-size:.95rem; grid-column:2; }

/* ══════════════════════════════════════
   STATS BAR
══════════════════════════════════════ */
.stats-bar {
  background: var(--dark);
  padding: 72px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 32px;
  text-align: center;
}
.stat-num {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-lbl {
  font-size: .82rem;
  color: rgba(255,255,255,.45);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
}

/* ══════════════════════════════════════
   ABOUT SECTION (homepage)
══════════════════════════════════════ */
.about-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img-wrap { position: relative; }
.about-img-wrap img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.about-chip {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--gradient);
  color: #fff;
  padding: 20px 24px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 8px 32px rgba(233,30,99,.4);
}
.about-chip .n { font-family:'Montserrat',sans-serif; font-size:2.2rem; font-weight:800; display:block; line-height:1; }
.about-chip .l { font-size:.72rem; opacity:.85; font-weight:600; }
.feat-list { list-style:none; display:flex; flex-direction:column; gap:12px; margin:24px 0 36px; }
.feat-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .95rem;
}
.feat-list li::before {
  content: '';
  width: 22px; height: 22px;
  flex-shrink: 0;
  background: rgba(233,30,99,.1);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23e91e63'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
}

/* ══════════════════════════════════════
   CTA SECTION
══════════════════════════════════════ */
.cta-band {
  background: var(--dark);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(233,30,99,.12) 0%, transparent 60%);
  pointer-events: none;
}
.cta-band > .container { position:relative; z-index:1; }
.cta-band h2 { color:#fff; font-size:clamp(1.8rem,4vw,3rem); margin-bottom:14px; }
.cta-band p  { color:rgba(255,255,255,.5); font-size:1.05rem; margin-bottom:36px; }
.cta-actions { display:flex; gap:16px; justify-content:center; flex-wrap:wrap; }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.footer {
  background: #0a0a0f;
  padding: 72px 0 28px;
  border-top: 1px solid rgba(255,255,255,.04);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 56px;
  margin-bottom: 56px;
}
.footer-brand img { height: 42px; margin-bottom: 16px; }
.footer-brand p { color:rgba(255,255,255,.38); font-size:.875rem; line-height:1.75; max-width:260px; }
.footer-col h4 {
  font-family: 'Montserrat',sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 20px;
}
.f-links { list-style:none; display:flex; flex-direction:column; gap:10px; }
.f-links a { color:rgba(255,255,255,.38); font-size:.9rem; transition:var(--ease); }
.f-links a:hover { color:var(--primary); }
.f-contact { display:flex; flex-direction:column; gap:12px; }
.f-contact p { color:rgba(255,255,255,.38); font-size:.875rem; display:flex; align-items:flex-start; gap:10px; line-height:1.5; }
.f-contact svg { flex-shrink:0; margin-top:2px; color:var(--primary); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.05);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom p { color:rgba(255,255,255,.22); font-size:.8rem; }

/* ══════════════════════════════════════
   ABOUT PAGE — TIMELINE & VALUES
══════════════════════════════════════ */
.timeline { display:flex; flex-direction:column; gap:0; }
.tl-item {
  display: flex;
  gap: 24px;
  padding-bottom: 36px;
  position: relative;
}
.tl-item:not(:last-child)::before {
  content:'';
  position: absolute;
  left: 19px; top: 42px; bottom: 0;
  width: 2px;
  background: var(--border);
}
.tl-dot {
  width: 40px; height: 40px;
  background: rgba(233,30,99,.07);
  border: 2px solid rgba(233,30,99,.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
  font-family:'Montserrat',sans-serif;
  font-weight: 700;
  font-size: .72rem;
}
.tl-body h4 { font-size:1rem; margin-bottom:5px; padding-top:6px; }
.tl-body p  { font-size:.9rem; color:var(--text-lt); line-height:1.65; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 24px;
  margin-top: 56px;
}
.value-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--ease);
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(233,30,99,.18);
}
.value-icon { font-size:2rem; margin-bottom:12px; }
.value-card h3 { font-size:1rem; margin-bottom:8px; }
.value-card p  { font-size:.875rem; color:var(--text-lt); line-height:1.65; }

/* ══════════════════════════════════════
   FAQ ACCORDION
══════════════════════════════════════ */
.faq-list { display:flex; flex-direction:column; gap:10px; margin-top:56px; }
.faq-item {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--ease);
}
.faq-item.open { box-shadow:var(--shadow); border-color:transparent; }
.faq-q {
  width:100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 26px;
  background: none;
  border: none;
  text-align: left;
  font-family: 'Montserrat',sans-serif;
  font-weight: 600;
  font-size: .975rem;
  color: var(--text);
  transition: var(--ease);
}
.faq-q:hover { color:var(--primary); }
.faq-item.open .faq-q { color:var(--primary); }
.faq-ico {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(233,30,99,.08);
  display: flex; align-items:center; justify-content:center;
  flex-shrink: 0;
  color: var(--primary);
  transition: var(--ease);
}
.faq-item.open .faq-ico {
  background: var(--gradient);
  color: #fff;
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}
.faq-item.open .faq-a { max-height:400px; }
.faq-a-inner {
  padding: 0 26px 22px;
  font-size: .93rem;
  color: var(--text-lt);
  line-height: 1.75;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

/* ══════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 56px;
  margin-top: 56px;
}
.contact-cards { display:flex; flex-direction:column; gap:18px; }
.c-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 26px 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: var(--ease);
}
.c-card:hover { transform:translateY(-2px); box-shadow:var(--shadow); }
.c-icon {
  width: 48px; height: 48px;
  background: rgba(233,30,99,.08);
  border-radius: 12px;
  display: flex; align-items:center; justify-content:center;
  flex-shrink: 0;
  color: var(--primary);
}
.c-card h4 {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-lt);
  margin-bottom: 5px;
}
.c-card p, .c-card a {
  font-size: .95rem;
  color: var(--text);
  line-height: 1.55;
}
.c-card a { transition:var(--ease); }
.c-card a:hover { color:var(--primary); }

/* Contact form */
.form-wrap {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.form-wrap h3 { font-size:1.3rem; margin-bottom:28px; }
.form-row2 { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.form-group { margin-bottom:18px; }
.form-group label {
  display: block;
  font-size: .78rem;
  font-weight: 700;
  font-family: 'Montserrat',sans-serif;
  color: var(--text);
  margin-bottom: 7px;
  letter-spacing: .4px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 15px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: 'Inter',sans-serif;
  font-size: .93rem;
  color: var(--text);
  background: var(--bg-alt);
  outline: none;
  transition: var(--ease);
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(233,30,99,.08);
}
.form-group textarea { resize:vertical; min-height:128px; }
.form-submit { width:100%; padding:15px; font-size:.975rem; margin-top:6px; border:none; }

/* Map */
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 380px;
  margin-top: 56px;
}
.map-wrap iframe { width:100%; height:100%; border:none; }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width:1024px) {
  .footer-grid { grid-template-columns:1fr 1fr; gap:40px; }
  .services-grid { grid-template-columns:repeat(2,1fr); }
  .about-2col { gap:48px; }
}

@media (max-width:768px) {
  .hamburger { display:flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: 70px; left:0; right:0;
    background: #fff;
    flex-direction: column;
    padding: 20px;
    gap: 4px;
    box-shadow: 0 10px 40px rgba(0,0,0,.1);
    border-top: 1px solid var(--border);
  }
  .nav-links.open { display:flex; }
  .nav-links a { color: var(--text) !important; padding:12px 16px; width:100%; }
  .nav-links a:hover { color:var(--primary) !important; }

  .hero-grid { grid-template-columns:1fr; text-align:center; gap:36px; padding:120px 0 70px; }
  .hero-sub, .hero-badge { margin-left:auto; margin-right:auto; }
  .hero-actions { justify-content:center; }
  .hero-img-wrap { order:-1; }
  .hero-img-wrap img { height:240px; }

  .services-grid { grid-template-columns:1fr; }
  .stats-grid { grid-template-columns:1fr; gap:16px; }
  .about-2col { grid-template-columns:1fr; gap:36px; }
  .about-chip { right:0; bottom:-10px; }
  .values-grid { grid-template-columns:1fr; }
  .contact-layout { grid-template-columns:1fr; gap:36px; }
  .form-wrap { padding:28px 20px; }
  .form-row2 { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1fr; gap:32px; }
  .footer-bottom { flex-direction:column; gap:8px; text-align:center; }
  section { padding:64px 0; }
  .page-hero { padding:130px 0 60px; }
}
