:root {
  --green: #28c28a;
  --green-dark: #1ea975;
  --dark: #1b2a30;
  --text: #2c3e4a;
  --muted: #6b7780;
  --bg-soft: #f4f6f6;
  --bg-mint: #eaf6ef;
}

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

html, body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ============ HEADER ============ */
.site-header {
  background: #fff;
  border-bottom: 1px solid #ececec;
  position: sticky; top: 0; z-index: 50;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 70px; gap: 30px;
}
.logo { display: inline-flex; align-items: center; }
.logo img {
  height: 38px;
  width: auto;
  display: block;
}
.main-nav ul {
  display: flex; gap: 30px; list-style: none; align-items: center;
}
.main-nav a {
  font-size: 14px;
  color: var(--text);
  font-weight: 500;
  padding: 8px 0;
  position: relative;
  transition: color .2s;
}
.main-nav a:hover, .main-nav a.active { color: var(--green); }
.main-nav a.active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -4px;
  height: 2px; background: var(--green); border-radius: 2px;
}
.header-right { display: flex; align-items: center; gap: 12px; }
.search-btn {
  background: transparent; border: none; cursor: pointer;
  color: var(--text); font-size: 15px; padding: 8px;
  border-radius: 50%; transition: background .2s;
}
.search-btn:hover { background: #f0f0f0; }
.mobile-toggle { display: none; background: none; border: none; font-size: 22px; cursor: pointer; }

/* ============ HERO ============ */
.hero {
  position: relative;
  height: clamp(420px, 48vw, 620px);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  color: #fff;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('assets/white-woman-cyborg.png');
  background-size: cover;
  background-position: center center;
  background-color: #0e2b3d;
  z-index: 0;
}
.hero-bg::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 22% 50%, rgba(80, 200, 240, .18) 0%, transparent 35%),
    radial-gradient(circle at 78% 50%, rgba(100, 220, 255, .14) 0%, transparent 40%);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,25,41,.15) 0%, rgba(10,25,41,.0) 50%, rgba(10,25,41,.25) 100%);
  z-index: 1;
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.hero-content h1 {
  font-size: clamp(32px, 5.2vw, 58px);
  font-weight: 800;
  letter-spacing: 2px;
  background: rgba(20, 50, 60, .55);
  padding: 6px 22px;
  border-radius: 2px;
  display: inline-block;
}
.hero-sub {
  font-size: clamp(13px, 1.5vw, 17px);
  letter-spacing: 3px;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
}
.hero-sub .line {
  background: rgba(20, 50, 60, .45);
  padding: 4px 16px;
  display: inline-block;
}
.hero-sub strong {
  font-weight: 700;
  letter-spacing: 4px;
}
.hero-tag {
  font-size: 14px;
  font-style: italic;
  opacity: .95;
  letter-spacing: 1px;
  margin-top: 8px;
  text-shadow: 0 1px 6px rgba(0,0,0,.5);
}

/* ============ DARK BAND ============ */
.dark-band {
  background: #1d3530;
  height: 70px;
}

/* ============ INTRO ============ */
.intro-band {
  background: var(--green);
  color: #fff;
  padding: 32px 0;
  text-align: center;
}
.intro-band p {
  max-width: 880px; margin: 0 auto;
  font-size: 15px;
  line-height: 1.7;
}

/* ============ FEATURES ============ */
.features {
  background: var(--bg-soft);
  padding: 70px 0;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.feature-card {
  background: #fff;
  border-radius: 4px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
  transition: transform .25s, box-shadow .25s;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0,0,0,.1);
}
.feature-icon {
  width: 56px; height: 56px;
  margin: 0 auto 22px;
  display: flex; align-items: center; justify-content: center;
  background: #f0f0f0;
  border-radius: 50%;
  font-size: 22px;
  color: var(--text);
}
.feature-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: .5px;
  min-height: 44px;
}
.feature-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
}

/* ============ QUALITY SECTION ============ */
.quality-section {
  background: var(--bg-mint);
  padding: 80px 0;
}
.quality-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.quality-text h2 {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 24px;
  line-height: 1.3;
}
.quality-text p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  max-width: 480px;
}
.quality-illustration {
  display: flex; justify-content: center;
}
.quality-illustration svg {
  max-width: 340px; width: 100%;
}

/* ============ REFERENCES ============ */
.references {
  background: #fff;
  padding: 70px 0 50px;
  text-align: center;
}
.ref-title {
  font-size: 26px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}
.ref-sub {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 40px;
}
.ref-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 42px;
  flex-wrap: wrap;
}
.ref-logo {
  padding: 12px 8px;
  filter: grayscale(1);
  opacity: .8;
  transition: opacity .2s, filter .2s;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
}
.ref-logo img {
  max-height: 60px;
  max-width: 160px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
.ref-logo:hover { filter: grayscale(0); opacity: 1; }
.ref-logo.lavazza {
  font-family: 'Times New Roman', serif;
  font-style: italic;
  color: #c00;
  font-size: 22px;
  letter-spacing: 3px;
}
.ref-logo.atlantic {
  background: #444;
  color: #fff;
  padding: 14px 18px;
  border-radius: 2px;
  font-family: 'Arial Black', sans-serif;
  font-style: italic;
  font-size: 18px;
  letter-spacing: 1px;
  text-align: center;
  line-height: 1;
}
.ref-logo.atlantic span {
  display: block;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 4px;
  margin-top: 4px;
}
.ref-logo.schindler {
  font-family: serif;
  font-size: 22px;
  color: #888;
  position: relative;
  padding-left: 48px;
}
.ref-logo.schindler::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 3px solid #888;
}

/* ============ CTA BAND ============ */
.cta-band {
  background: var(--bg-soft);
  padding: 22px 0;
  border-top: 1px solid #e5e5e5;
}
.cta-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
}
.social { display: flex; gap: 14px; }
.social a {
  width: 30px; height: 30px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text);
  font-size: 14px;
  border-radius: 50%;
  transition: color .2s;
}
.social a:hover { color: var(--green); }
.cta-button {
  background: var(--green);
  color: #fff;
  padding: 10px 22px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  transition: background .2s, transform .2s;
}
.cta-button:hover { background: var(--green-dark); transform: translateY(-1px); }

/* ============ FOOTER ============ */
.site-footer {
  background: var(--bg-soft);
  padding: 18px 0 30px;
  font-size: 12px;
  color: var(--muted);
}
.footer-inner {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 20px; flex-wrap: wrap;
}
.footer-left p { margin-bottom: 4px; }
.footer-left a { text-decoration: underline; }
.footer-right a { color: var(--green); }
.footer-right strong { color: var(--text); font-weight: 700; }

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .features-grid { grid-template-columns: 1fr; }
  .quality-grid { grid-template-columns: 1fr; gap: 30px; text-align: center; }
  .quality-text p { margin: 0 auto; }
  .mobile-toggle { display: block; font-size: 22px; color: var(--text); cursor: pointer; padding: 8px; }
  .hero { min-height: 420px; }
  .ref-logos { gap: 28px; }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid #ececec;
    border-bottom: 1px solid #ececec;
    box-shadow: 0 8px 18px rgba(0,0,0,.08);
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
    z-index: 49;
  }
  .main-nav.open { max-height: 420px; }
  .main-nav ul {
    flex-direction: column;
    gap: 0;
    padding: 6px 0;
    align-items: stretch;
  }
  .main-nav li { width: 100%; }
  .main-nav a {
    display: block;
    padding: 14px 24px;
    font-size: 15px;
    border-bottom: 1px solid #f0f0f0;
  }
  .main-nav li:last-child a { border-bottom: none; }
  .main-nav a.active::after { display: none; }
  .main-nav a.active { color: var(--green); background: #f7faf8; }
}
@media (max-width: 600px) {
  .footer-inner { flex-direction: column; }
  .cta-inner { flex-direction: column; }
  .hero-content { padding: 60px 16px; }
}

/* ============ PAGE BANNER (shorter hero) ============ */
.page-banner {
  position: relative;
  min-height: 230px;
  display: flex; align-items: center;
  color: #fff;
  overflow: hidden;
}
.page-banner .hero-bg { position: absolute; inset: 0; }
.banner-inner {
  position: relative; z-index: 2;
  padding: 50px 24px;
}
.banner-inner h1 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  letter-spacing: 1px;
  text-shadow: 0 2px 12px rgba(0,0,0,.4);
}

/* ============ CONTENT SECTIONS ============ */
.content-section { padding: 60px 0; background: #fff; }
.content-section.alt-bg { background: var(--bg-soft); }
.section-center { padding: 50px 0 20px; text-align: center; background: #fff; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.two-col.reverse > div:first-child { order: 2; }

.lead { font-size: 15px; font-weight: 600; margin-bottom: 16px; }
.content-section p { font-size: 14px; color: var(--text); margin-bottom: 14px; line-height: 1.75; }
.block-title { font-size: 22px; font-weight: 600; color: var(--dark); margin-bottom: 18px; }
.big-title { font-size: clamp(28px, 4vw, 42px); font-weight: 700; color: var(--dark); margin-bottom: 12px; }
.subtitle { font-size: 14px; color: var(--muted); }
.subtitle.light { color: #cfd6da; }
.page-title { font-size: 30px; font-weight: 700; margin-bottom: 22px; color: var(--dark); }

.narrow { max-width: 900px; }

.role { font-weight: 600; color: var(--green); margin-bottom: 14px; font-size: 14px; }

.illustration { display: flex; justify-content: center; align-items: center; }
.illustration-img {
  max-width: 100%;
  width: 100%;
  max-height: 360px;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: contain;
}
.illustration-img.portrait-img {
  max-width: 280px;
  border-radius: 50%;
}
.img-placeholder, .ai-figure {
  width: 100%;
  max-width: 360px;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #e3f2ec 0%, #cdebd9 100%);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 80px;
  color: var(--green-dark);
  box-shadow: 0 6px 18px rgba(40, 194, 138, .12);
}
.img-placeholder.portrait { aspect-ratio: 1/1; max-width: 260px; border-radius: 50%; }
.ai-figure {
  background: linear-gradient(135deg, #0a1929 0%, #1a3a5c 100%);
  color: #6ed3ff;
  font-size: 90px;
}

/* ============ CASE STUDY ============ */
.case-study-band {
  background: linear-gradient(135deg, #0a1929, #1a3a5c);
  color: #fff;
  text-align: center;
  padding: 60px 0;
  position: relative;
}
.case-study-band .big-title { color: #fff; letter-spacing: 2px; }

.case-cards { background: #fff; padding: 40px 0 60px; }
.cards-4 {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
}
.case-card {
  background: #fff; border: 1px solid #eee; border-radius: 4px;
  padding: 18px; transition: box-shadow .2s, transform .2s;
}
.case-card:hover { box-shadow: 0 8px 22px rgba(0,0,0,.08); transform: translateY(-3px); }
.case-thumb {
  background: #f7f9fa; border-radius: 4px; height: 110px;
  display: flex; align-items: flex-end; justify-content: center;
  padding: 14px; margin-bottom: 14px;
  overflow: hidden;
}
.case-thumb img {
  width: 100%; height: 100%; object-fit: contain; display: block;
}
.bar-chart { display: flex; align-items: flex-end; gap: 6px; height: 100%; width: 100%; max-width: 130px; }
.bar-chart span { flex: 1; background: #4a9fd6; border-radius: 2px 2px 0 0; }
.bar-chart span:nth-child(1){ height: 60%; }
.bar-chart span:nth-child(2){ height: 85%; }
.bar-chart span:nth-child(3){ height: 45%; }
.bar-chart span:nth-child(4){ height: 70%; }
.bar-chart.alt span { background: #2d6da6; }
.bar-chart.alt span:nth-child(1){ height: 40%; }
.bar-chart.alt span:nth-child(2){ height: 70%; }
.bar-chart.alt span:nth-child(3){ height: 90%; }
.bar-chart.alt span:nth-child(4){ height: 60%; }
.bar-chart.alt span:nth-child(5){ height: 30%; }
.line-chart {
  width: 100%; height: 100%;
  background:
    linear-gradient(45deg, transparent 48%, #4a9fd6 48%, #4a9fd6 52%, transparent 52%),
    linear-gradient(135deg, transparent 48%, #4a9fd6 48%, #4a9fd6 52%, transparent 52%);
  opacity: .7;
}
.line-chart.down {
  background:
    linear-gradient(-45deg, transparent 48%, #c25050 48%, #c25050 52%, transparent 52%),
    linear-gradient(-135deg, transparent 48%, #c25050 48%, #c25050 52%, transparent 52%);
}
.case-card h3 { font-size: 14px; font-weight: 700; margin-bottom: 10px; letter-spacing: .5px; }
.case-card p { font-size: 12px; color: var(--muted); line-height: 1.6; margin-bottom: 8px; }

/* ============ INSIGHTS / THREE COL ============ */
.three-col-insights {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px;
}
.insight h3 { font-size: 15px; color: var(--green-dark); font-weight: 600; margin-bottom: 12px; line-height: 1.5; }
.insight p { font-size: 13px; color: var(--muted); line-height: 1.7; }

/* ============ BULLET LIST ============ */
.bullet-list { padding-left: 18px; margin: 10px 0 14px; }
.bullet-list li { font-size: 14px; color: var(--text); line-height: 1.8; margin-bottom: 6px; }

/* ============ GREEN BAND ============ */
.green-band {
  background: var(--green);
  color: #fff;
  text-align: center;
  padding: 50px 0;
  position: relative;
}
.green-band h2 {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 600;
}

/* ============ ACCORDION (Legal) ============ */
.accordion { max-width: 900px; margin: 0 auto; }
.accordion details {
  border-bottom: 1px solid #e0e0e0;
  background: var(--bg-soft);
  margin-bottom: 2px;
}
.accordion summary {
  list-style: none;
  cursor: pointer;
  padding: 14px 20px;
  font-size: 14px;
  color: var(--green-dark);
  font-weight: 500;
  position: relative;
  user-select: none;
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::before {
  content: '\002B';
  display: inline-block;
  width: 18px;
  color: var(--green);
  font-weight: 700;
}
.accordion details[open] > summary::before { content: '\2212'; }
.acc-body {
  padding: 6px 20px 20px 38px;
  font-size: 13px;
  color: var(--text);
  line-height: 1.75;
  background: var(--bg-soft);
}
.acc-body p { margin-bottom: 10px; }
.acc-body h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--green-dark);
  margin: 18px 0 8px;
}
.acc-body a { color: var(--green-dark); text-decoration: underline; }
.numbered-list { padding-left: 22px; margin: 10px 0 14px; }
.numbered-list li {
  font-size: 13px;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 12px;
}
.consent-line {
  margin-top: 18px;
  padding: 12px 14px;
  background: #eaf6ef;
  border-left: 3px solid var(--green);
  border-radius: 3px;
  font-size: 13px;
  color: var(--text);
}
.consent-check { margin-right: 6px; }

/* ============ ASHORVAT PAGE ============ */
.ashorvat-hero {
  background: var(--green);
  color: #fff;
  padding: 60px 0 50px;
  text-align: center;
}
.ashorvat-hero h1 {
  font-size: clamp(36px, 6vw, 60px);
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 22px;
}
.ah-phone, .ah-email {
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 400;
  margin-bottom: 10px;
}
.ah-email { font-weight: 300; }

.ashorvat-social {
  background: var(--bg-soft);
  padding: 50px 0 70px;
  text-align: center;
}
.ah-section-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}
.ah-section-sub {
  color: var(--green);
  font-size: 14px;
  margin-bottom: 36px;
}
.ah-social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
}
.ah-circle {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(0,0,0,.18);
  transition: transform .2s, box-shadow .2s;
}
.ah-circle:hover { transform: translateY(-4px); box-shadow: 0 10px 24px rgba(0,0,0,.25); }
.ah-circle.linkedin { background: #0a66c2; }
.ah-circle.whatsapp { background: #25d366; }
.ah-circle.email    { background: #1f4e8c; }
.ah-circle.xtwitter { background: #0a0a0a; }
.ah-circle-img {
  width: 130px;
  height: 130px;
  display: inline-block;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,.18);
  transition: transform .2s, box-shadow .2s;
}
.ah-circle-img:hover { transform: translateY(-4px); box-shadow: 0 10px 24px rgba(0,0,0,.25); }
.ah-circle-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 800px) {
  .ah-circle-img { width: 100px; height: 100px; }
}

.ashorvat-details {
  background: var(--bg-soft);
  padding: 0 0 70px;
}
.ah-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: flex-start;
}
.ah-card-wrap { display: flex; justify-content: center; }
.ah-card-img {
  max-width: 100%;
  width: 100%;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 4px 16px rgba(0,0,0,.12);
}
.ah-card-fallback {
  width: 100%;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 4px 16px rgba(0,0,0,.12);
  padding: 24px;
}
.ah-card-inner { text-align: center; }
.ah-card-logo { max-width: 140px; margin: 0 auto 14px; display: block; }
.ah-card-inner h3 { font-size: 22px; color: var(--dark); margin-bottom: 6px; }
.ah-card-role { color: var(--muted); font-size: 13px; margin-bottom: 18px; line-height: 1.5; }
.ah-card-line { font-size: 14px; color: var(--text); margin-bottom: 4px; }

.ah-company-info { font-size: 14px; line-height: 1.7; }
.ah-company-info p { margin-bottom: 14px; color: var(--text); }
.ah-company-info a { color: var(--green); }
.ah-company-info a:hover { text-decoration: underline; }
.ah-bank { color: var(--green); }

.ah-whatwedo { background: var(--bg-soft); padding: 40px 0 60px; }

.andrej-link {
  color: var(--green-dark);
  text-decoration: none;
  border-bottom: 1px dashed rgba(40, 194, 138, .4);
}
.andrej-link:hover { color: var(--green); border-bottom-style: solid; }

/* ============ SLIDER ============ */
.slider-section {
  position: relative;
  background: #0f2f2a;
  color: #fff;
  padding: 70px 0 30px;
  overflow: hidden;
}
.slider-bg-decor {
  position: absolute; inset: 0;
  pointer-events: none;
}
.slider-bg-decor .dl {
  position: absolute;
  width: 2px;
  border-radius: 2px;
  transform-origin: center;
  opacity: .55;
}
.slider-bg-decor .dl-1 { top: 8%;  left: 10%; height: 90px; background: #fff;       transform: rotate(45deg); }
.slider-bg-decor .dl-2 { top: 70%; left: 7%;  height: 70px; background: var(--green); transform: rotate(45deg); }
.slider-bg-decor .dl-3 { top: 15%; left: 88%; height: 80px; background: var(--green); transform: rotate(45deg); }
.slider-bg-decor .dl-4 { top: 78%; left: 92%; height: 100px; background: #fff;       transform: rotate(45deg); }
.slider-bg-decor .dl-5 { top: 30%; left: 4%;  height: 50px; background: var(--green); transform: rotate(45deg); opacity: .35; }
.slider-bg-decor .dl-6 { top: 50%; left: 95%; height: 60px; background: #fff;        transform: rotate(45deg); opacity: .35; }
.slider-bg-decor .dl-7 { top: 88%; left: 30%; height: 70px; background: var(--green); transform: rotate(45deg); }
.slider-bg-decor .dl-8 { top: 5%;  left: 60%; height: 50px; background: #fff;        transform: rotate(45deg); opacity: .4; }

.slider-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 420px;
}
.slider {
  position: relative;
  width: 100%;
  max-width: 760px;
  min-height: 380px;
}
.slide {
  position: absolute; inset: 0;
  background: #fff;
  color: #1a1a1a;
  padding: 38px 44px 38px 70px;
  border-radius: 2px;
  font-style: italic;
  font-size: 17px;
  line-height: 1.55;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .35s ease, transform .35s ease;
  pointer-events: none;
  box-shadow: 0 14px 36px rgba(0,0,0,.25);
}
.slide.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  position: relative;
}
.slide-quote {
  position: absolute;
  left: -14px;
  top: -14px;
  width: 44px;
  height: 44px;
  background: var(--green);
  color: #0a2a26;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  border-radius: 2px;
}
.slide-title { font-weight: 600; font-size: 18px; margin-bottom: 14px; }
.slide-body p { margin-bottom: 14px; }
.slide-body ul { padding-left: 22px; margin: 8px 0 4px; }
.slide-body li { margin-bottom: 10px; }

.slider-arrow {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #fff;
  color: #0a2a26;
  border: none;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,.3);
  flex-shrink: 0;
  transition: transform .2s, background .2s;
  z-index: 2;
}
.slider-arrow:hover { transform: scale(1.06); background: var(--green); color: #fff; }

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
  position: relative;
  z-index: 2;
}
.slider-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.35);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background .2s, transform .2s;
}
.slider-dots .dot.active { background: var(--green); transform: scale(1.2); }
.slider-dots .dot:hover { background: rgba(255,255,255,.6); }

@media (max-width: 720px) {
  .slider-wrap { gap: 6px; }
  .slider { max-width: none; min-height: 460px; }
  .slide { padding: 32px 22px 32px 44px; font-size: 15px; }
  .slide-quote { width: 36px; height: 36px; font-size: 15px; left: -8px; top: -8px; }
  .slider-arrow { width: 44px; height: 44px; font-size: 15px; }
}

@media (max-width: 800px) {
  .ah-details-grid { grid-template-columns: 1fr; }
  .ah-circle { width: 100px; height: 100px; font-size: 44px; }
  .ah-social-icons { gap: 20px; }
}

/* ============ CONTACT ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
  align-items: flex-start;
}
.contact-lead {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 28px;
  max-width: 520px;
}
.contact-form .form-row { margin-bottom: 14px; }
.contact-form label {
  display: block;
  font-size: 13px;
  color: var(--text);
  margin-bottom: 6px;
  font-weight: 500;
}
.req { color: #d04040; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 9px 12px;
  border: 1px solid #d0d4d8;
  border-radius: 3px;
  font-family: inherit;
  font-size: 14px;
  background: #fff;
  color: var(--text);
  transition: border-color .15s, box-shadow .15s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 2px rgba(40, 194, 138, .15);
}
.phone-row { display: flex; align-items: stretch; }
.phone-prefix {
  background: #f0f0f0;
  border: 1px solid #d0d4d8;
  border-right: none;
  padding: 9px 14px;
  font-size: 14px;
  border-radius: 3px 0 0 3px;
  color: var(--muted);
}
.phone-row input { border-radius: 0 3px 3px 0; }
.submit-btn {
  background: var(--green);
  border: none;
  color: #fff;
  padding: 9px 24px;
  border-radius: 18px;
  cursor: pointer;
  margin-top: 8px;
  font-size: 13px;
  font-weight: 600;
}
.submit-btn:hover { background: var(--green-dark); }
.contact-info { padding-top: 50px; }
.contact-info h3 { font-size: 16px; font-weight: 600; margin-bottom: 14px; color: var(--dark); }
.contact-info ul { list-style: none; }
.contact-info li {
  font-size: 13px;
  color: var(--text);
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.contact-info li i { color: var(--green); margin-top: 3px; }
.contact-info a { color: var(--text); }
.contact-info a:hover { color: var(--green); }

/* ============ COOKIE TABLE ============ */
.table-wrap { overflow-x: auto; margin: 24px 0; }
.cookie-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.cookie-table th, .cookie-table td {
  border: 1px solid #e0e0e0;
  padding: 12px 14px;
  text-align: left;
  vertical-align: top;
  line-height: 1.6;
}
.cookie-table thead th {
  background: var(--green);
  color: #fff;
  font-weight: 600;
}
.cookie-table tbody tr:nth-child(even) { background: var(--bg-soft); }
.cookie-table .muted { color: var(--muted); font-size: 12px; }

/* ============ RESPONSIVE OVERRIDES ============ */
@media (max-width: 900px) {
  .two-col, .contact-grid { grid-template-columns: 1fr; }
  .two-col.reverse > div:first-child { order: 0; }
  .cards-4 { grid-template-columns: repeat(2, 1fr); }
  .three-col-insights { grid-template-columns: 1fr; }
  .contact-info { padding-top: 0; }
}
@media (max-width: 600px) {
  .cards-4 { grid-template-columns: 1fr; }
}

