/* Moidom — shared stylesheet */

@font-face {
  font-family: 'Gordita';
  src: url('../fonts/Gordita-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gordita';
  src: url('../fonts/Gordita-LightItalic.woff2') format('woff2');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Gordita';
  src: url('../fonts/Gordita-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gordita';
  src: url('../fonts/Gordita-RegularItalic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Gordita';
  src: url('../fonts/Gordita-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gordita';
  src: url('../fonts/Gordita-MediumItalic.woff2') format('woff2');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Gordita';
  src: url('../fonts/Gordita-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gordita';
  src: url('../fonts/Gordita-BoldItalic.woff2') format('woff2');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Gordita';
  src: url('../fonts/Gordita-Black.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gordita';
  src: url('../fonts/Gordita-BlackItalic.woff2') format('woff2');
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}

:root {
  --green: #369151;
  --green-dark: #2c7643;
  --green-light: #e8f3ec;
  --text: #1a1a1a;
  --text-light: #5c5c5c;
  --border: #e6e6e6;
  --bg: #ffffff;
  --bg-alt: #f7f7f5;
  --max-width: 1200px;
  --font: 'Gordita', Arial, Helvetica, sans-serif;
  --radius: 10px;
  --shadow-sm: 0 2px 10px rgba(20, 20, 20, 0.06);
  --shadow-md: 0 16px 40px rgba(20, 20, 20, 0.12);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  /* Rendered height of .site-header at each breakpoint — the hero subtracts
     it so its centred content lands on the optical centre of the screen. */
  --header-h: 68px;
}

@media (min-width: 861px) { :root { --header-h: 62px; } }
@media (min-width: 1024px) { :root { --header-h: 128px; } }

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

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

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

::selection { background: var(--green); color: #fff; }

a, button, .property-card, .post-card, .post-row {
  transition: color 0.2s var(--ease), background 0.2s var(--ease),
    border-color 0.2s var(--ease), box-shadow 0.25s var(--ease),
    transform 0.25s var(--ease);
}

a:focus-visible, button:focus-visible, select:focus-visible, input:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green);
  color: #fff;
  border: none;
  padding: 14px 30px;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}

.btn:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(54, 145, 81, 0.28);
}

.btn:active { transform: translateY(0); box-shadow: 0 2px 8px rgba(54, 145, 81, 0.25); }

/* Header */
.site-header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow 0.25s var(--ease);
}

.site-header.scrolled {
  box-shadow: var(--shadow-sm);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
  gap: 24px;
}

.logo img { height: 42px; width: auto; transition: transform 0.25s var(--ease); }
.logo:hover img { transform: scale(1.04); }

@media (min-width: 1024px) {
  .site-header .container {
    padding-top: 28px;
    padding-bottom: 28px;
  }
  .logo img { height: 72px; }
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 36px;
  margin: 0;
  padding: 0;
}

.main-nav li { position: relative; }

.main-nav a {
  position: relative;
  font-weight: 500;
  color: var(--text);
  padding: 6px 0;
  display: inline-block;
}

.main-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
}

.main-nav a:hover { color: var(--green); }
.main-nav a:hover::after,
.main-nav a.active::after { transform: scaleX(1); }
.main-nav a.active { color: var(--green); }

.header-right {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.85rem;
}

.lang-toggle {
  display: flex;
  align-items: center;
  background: var(--bg-alt);
  border-radius: 999px;
  padding: 3px;
  gap: 2px;
}

.lang-toggle .lang {
  padding: 5px 12px;
  border-radius: 999px;
  color: var(--text-light);
  font-weight: 600;
  font-size: 0.78rem;
  cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.lang-toggle .lang.active {
  background: #fff;
  color: var(--green);
  box-shadow: 0 1px 4px rgba(20, 20, 20, 0.12);
}

.lang-toggle a.lang:hover { color: var(--text); }

/* Note on the English legal pages: the Bulgarian text is the binding one */
.legal-note {
  background: var(--bg-alt);
  border-left: 3px solid var(--green);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 14px 18px;
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 32px;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--text);
  cursor: pointer;
  padding: 4px;
  transition: transform 0.2s var(--ease);
}

@media (max-width: 480px) {
  .logo img { height: 40px; }
  .header-right { gap: 10px; }
  .lang-toggle .lang { padding: 5px 10px; font-size: 0.76rem; }
  .nav-toggle { font-size: 1.8rem; padding: 4px 2px; }
}

.nav-toggle:active { transform: scale(0.9); }

@media (max-width: 860px) {
  .main-nav {
    width: 100%;
    order: 3;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.35s var(--ease), opacity 0.25s var(--ease);
  }
  .main-nav.open { max-height: 400px; opacity: 1; }
  .main-nav ul { flex-direction: column; gap: 0; padding-top: 6px; }
  .main-nav li { border-top: 1px solid var(--border); }
  .main-nav a { display: block; padding: 16px 4px; font-size: 1.05rem; }
  .main-nav a::after { display: none; }
  .site-header .container {
    flex-wrap: wrap;
    /* the collapsed nav wraps to a second flex line; a row-gap here would
       add dead space below the logo row and push it off-centre */
    row-gap: 0;
    padding-top: 14px;
    padding-bottom: 14px;
  }
  .nav-toggle { display: block; }
}

/* Hero */
.hero {
  text-align: center;
  padding: 70px 24px 60px;
  position: relative;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, var(--green-light) 0%, transparent 70%);
}

.hero > *, .hero-content > * { animation: hero-in 0.7s var(--ease) backwards; }
.hero .partner-of { animation-delay: 0s; }
.hero h1 { animation-delay: 0.06s; }
.hero p:nth-of-type(1) { animation-delay: 0.12s; }
.hero p:nth-of-type(2) { animation-delay: 0.18s; }
.hero .btn { animation-delay: 0.24s; }

@keyframes hero-in {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Hero video background */
.hero-video-section { overflow: hidden; }

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 18, 14, 0.5), rgba(8, 18, 14, 0.62));
  z-index: 1;
}

.hero-content { position: relative; z-index: 2; }

/* Lift the hero copy above the optical centre. Done with asymmetric padding
   rather than a margin: the copy is flex-centred between the paddings, so this
   shifts it up while the section's height stays driven by its min-height —
   which is what the scroll-snap positions depend on. Keep the total padding
   plus copy under that min-height or the section grows and the snap drifts. */
.hero-video-section.snap-section {
  padding-top: 20px;
  padding-bottom: 170px;
}

@media (max-width: 860px) {
  .hero-video-section.snap-section {
    padding-top: 16px;
    padding-bottom: 110px;
  }
}

/* Short windows have no room to spare: the copy plus a big bottom padding
   would outgrow the space under the header and spill past the fold. Back the
   lift off so the hero still fits. */
@media (max-height: 700px) {
  .hero-video-section.snap-section {
    padding-top: 14px;
    padding-bottom: 90px;
  }
}

.hero-video-section .hero-content h1,
.hero-video-section .hero-content p { color: #fff; }
.hero-video-section .hero-content p { color: rgba(255, 255, 255, 0.9); }

.hero-video-section .partner-of {
  background: rgba(255, 255, 255, 0.95);
  padding: 8px 20px;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}

.scroll-hint {
  margin-top: 50px;
  color: var(--text-light);
  font-size: 1.4rem;
  line-height: 1;
  animation: bounce 2.2s ease-in-out infinite;
  user-select: none;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); opacity: 0.6; }
  50% { transform: translateY(8px); opacity: 1; }
}

.hero .partner-of {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text-light);
  font-size: 1.15rem;
  margin-bottom: 28px;
  transition: transform 0.25s var(--ease);
}

.hero .partner-of:hover { transform: scale(1.08); }

.hero .partner-of span { position: relative; top: 5px; }

.hero .partner-of img { height: 48px; }

.hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  font-weight: 700;
  margin: 0 0 28px;
  line-height: 1.3;
}

.hero p {
  max-width: 720px;
  margin: 0 auto 14px;
  color: var(--text-light);
  font-size: 1.05rem;
}

.hero .btn { margin-top: 24px; }

/* Slideshow */
.slideshow {
  background: var(--bg-alt);
  padding: 70px 24px;
}

.slide {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
}

.slide .slide-img-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.slide img { width: 100%; height: 360px; object-fit: cover; transition: transform 0.5s var(--ease); }
.slide .slide-img-wrap:hover img { transform: scale(1.05); }

.slide h2 {
  font-size: 1.6rem;
  line-height: 1.3;
  margin: 0 0 10px;
}

.slide h3 {
  font-size: 1.15rem;
  color: var(--text-light);
  font-weight: 500;
  margin: 0 0 24px;
}

@media (max-width: 780px) {
  .slide { grid-template-columns: 1fr; }
  .slide img { height: 260px; }
}

/* 3-step guide (includes the quote — one combined scroll panel) */
.guide-section {
  padding: 70px 24px;
  text-align: center;
}

.guide-quote {
  font-size: 1.05rem;
  font-weight: 500;
  margin: 36px 0 0;
}

.author {
  font-style: italic;
  color: var(--text-light);
  font-weight: 400;
}

.guide-section h2 {
  font-size: 1.7rem;
  max-width: 640px;
  margin: 0 auto 50px;
}

.guide-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: var(--max-width);
  margin: 0 auto 40px;
}

.guide-steps img { height: 56px; width: auto; margin: 0 auto 18px; }
.guide-steps p { max-width: 220px; margin: 0 auto; }

@media (max-width: 780px) {
  .guide-steps { grid-template-columns: 1fr; }
}

/* Platform comparison */
.platform-section {
  background: var(--bg-alt);
  padding: 70px 24px;
  text-align: center;
}

.platform-section h2 { margin-bottom: 40px; }

.platform-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 30px;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
}

.platform-grid .photo-wrap { border-radius: var(--radius); overflow: hidden; margin-top: 16px; box-shadow: var(--shadow-sm); }
.platform-grid img { height: 280px; width: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.platform-grid .photo-wrap:hover img { transform: scale(1.05); }
.platform-grid h3 { font-size: 1.3rem; }
.platform-grid .or {
  font-size: 1rem;
  color: var(--text-light);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 780px) {
  .platform-grid { grid-template-columns: 1fr; }
}

/* PDF download CTA */
.pdf-section {
  padding: 70px 24px;
  text-align: center;
}

.pdf-section img {
  max-width: 320px;
  margin: 0 auto 24px;
  border-radius: 8px;
}

.pdf-section h2 { margin-bottom: 24px; }

/* Blog feed on homepage */
.blog-feed {
  padding: 70px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.blog-feed h2 {
  font-size: 1.3rem;
  border-bottom: 2px solid var(--green);
  display: inline-block;
  padding-bottom: 6px;
  margin-bottom: 28px;
}

.blog-feed-grid,
.post-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 50px;
}

.post-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  display: block;
}

.post-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: transparent; }
.post-card img { width: 100%; height: 180px; object-fit: cover; background: var(--bg-alt); transition: transform 0.5s var(--ease); }
.post-card:hover img { transform: scale(1.06); }

.post-card img.logo-thumb,
.post-row img.logo-thumb {
  object-fit: contain;
  padding: 34px;
  box-sizing: border-box;
}
.post-card .post-card-body { padding: 18px; }
.post-card h3 { font-size: 1rem; margin: 0 0 8px; transition: color 0.2s var(--ease); }
.post-card:hover h3 { color: var(--green); }
.post-card .date { color: var(--text-light); font-size: 0.85rem; }

@media (max-width: 780px) {
  .blog-feed-grid, .post-grid { grid-template-columns: 1fr; }
}

/* Page hero (inner pages) */
.page-hero {
  padding: 60px 24px;
  text-align: center;
}

.page-hero h1 {
  display: inline-block;
  border: 1px solid var(--border);
  padding: 20px 50px;
  font-size: 2.4rem;
  font-weight: 700;
}

.page-hero.with-bg {
  background-size: cover;
  background-position: center;
  padding: 90px 24px;
}

.page-hero.with-bg h1 { background: #fff; }

/* About page — background photo covers hero + cards as one block */
.about-hero-wrap {
  background-size: cover;
  background-position: center;
  padding: 90px 24px 80px;
}

.about-hero-wrap .page-hero { padding: 0 0 50px; }
.about-hero-wrap .page-hero h1 { background: #fff; }

.about-cards {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  gap: 24px;
}

.about-cards .card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 32px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s var(--ease), transform 0.25s var(--ease), border-color 0.25s var(--ease);
}

.about-cards .card:hover {
  box-shadow: var(--shadow-md);
  border-color: transparent;
  transform: translateY(-4px);
}

.about-cards h2 { font-size: 1.1rem; margin: 0 0 12px; }
.about-cards p { margin: 0; color: var(--text-light); }

.map-attribution {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 12px;
  margin: 24px auto 0;
  padding: 10px 20px;
  background: #16211c;
  border-radius: 999px;
  font-size: 0.9rem;
  color: #cfd8d4;
  transition: background 0.2s var(--ease);
}

.map-attribution:hover { background: #223129; }
.map-attribution img { height: 26px; width: auto; }

/* Properties — embedded third-party map */
.map-embed-wrap {
  max-width: var(--max-width);
  margin: 0 auto 80px;
  padding: 0 24px;
}

.map-embed {
  width: 100%;
  height: 75vh;
  min-height: 480px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

/* Blog */
.post-list {
  max-width: 860px;
  margin: 0 auto 80px;
  padding: 0 24px;
  display: grid;
  gap: 24px;
}

.post-list .post-row {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.post-list .post-row:hover { box-shadow: var(--shadow-md); border-color: transparent; transform: translateY(-4px); }
.post-list .post-row img { height: 100%; width: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.post-list .post-row:hover img { transform: scale(1.06); }
.post-list .post-row .body { padding: 24px; }
.post-list .post-row h2 { font-size: 1.2rem; margin: 0 0 10px; transition: color 0.2s var(--ease); }
.post-list .post-row:hover h2 { color: var(--green); }
.post-list .post-row p { color: var(--text-light); margin: 0; }

@media (max-width: 700px) {
  .post-list .post-row { grid-template-columns: 1fr; }
  .post-list .post-row img { height: 200px; }
}

/* Article */
.article {
  max-width: 760px;
  margin: 40px auto 90px;
  padding: 0 24px;
}

.article h1 { font-size: 2rem; margin-bottom: 6px; }
.article .byline { color: var(--text-light); margin-bottom: 30px; }
.article h2 { font-size: 1.3rem; margin-top: 40px; }
.article p, .article li { color: #333; }
.article ul { padding-left: 20px; }
.article .cta { margin-top: 40px; padding: 24px; background: var(--bg-alt); border-radius: 8px; }
.article a { color: var(--green); text-decoration: underline; text-underline-offset: 2px; }
.article a:hover { color: var(--green-dark); }

/* Careers */
.careers-empty {
  max-width: var(--max-width);
  margin: 0 auto 100px;
  padding: 0 24px;
  text-align: center;
  color: var(--text-light);
}

/* Footer */
.site-footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 110px 24px 50px;
}

.footer-top {
  max-width: var(--max-width);
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 32px;
}

.footer-top img { height: 46px; margin-bottom: 16px; }

.newsletter-form { display: flex; gap: 8px; margin-top: 12px; }
.newsletter-form input {
  flex: 1;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-family: var(--font);
}

.footer-top h3 { font-size: 0.95rem; margin: 0 0 14px; }
.footer-top ul { list-style: none; margin: 0; padding: 0; }
.footer-top li { margin-bottom: 10px; }
.footer-top a { color: var(--text-light); }
.footer-top a:hover { color: var(--green); }

.social-list { display: flex; gap: 14px; margin-top: 14px; }
.social-list img { height: 22px; width: 22px; filter: brightness(0); }

.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--text-light);
}

.footer-bottom a { margin-left: 16px; }

@media (max-width: 860px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}

.social-list img { transition: transform 0.2s var(--ease), opacity 0.2s var(--ease); opacity: 0.75; }
.social-list a:hover img { transform: translateY(-3px); opacity: 1; }

.newsletter-form button { white-space: nowrap; }

@media (max-width: 420px) {
  .newsletter-form { flex-direction: column; align-items: stretch; }
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.reveal.in-view { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* Full-page "plane" scrolling — homepage only */
html.snap-page {
  scroll-snap-type: y mandatory;
}

.snap-section {
  /* The sticky header sits above these in the flow, so a full 100dvh section
     runs a header's height past the fold and its last strip is never visible.
     Size them to the space that's actually left under the header. */
  min-height: calc(100vh - var(--header-h));
  min-height: calc(100dvh - var(--header-h)); /* dvh: mobile address bar */
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.snap-section > .btn,
.snap-section > .partner-of {
  align-self: center;
}

.snap-page .snap-section,
.snap-page .site-footer {
  scroll-snap-align: start;
  /* Must equal the sticky header's height. Too small and every section snaps
     partly underneath the header, and the hero's snap point lands below 0 so
     the page can never rest at the true top. */
  scroll-margin-top: var(--header-h);
}

.snap-page .site-footer {
  min-height: calc(100vh - var(--header-h));
  min-height: calc(100dvh - var(--header-h));
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (prefers-reduced-motion: reduce) {
  html.snap-page { scroll-snap-type: none; }
  .snap-section,
  .snap-page .site-footer {
    min-height: 0;
    display: block;
  }
}

/* Airbnb vs Booking landing page */
.avb-hero {
  position: relative;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
}

.avb-hero .card {
  background: #fff;
  max-width: 560px;
  margin: 0 24px;
  padding: 50px 48px;
  text-align: center;
}

@media (min-width: 1248px) {
  .avb-hero .card { margin: 0 auto; }
}

.avb-hero h1 { font-size: 2.6rem; margin: 0 0 20px; }
.avb-hero p { color: var(--text-light); margin: 0 0 24px; font-size: 1.05rem; }

.avb-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 70px 24px;
  text-align: center;
}

.avb-section h2 { font-size: 1.8rem; margin: 0 0 20px; }
.avb-section > p { color: var(--text-light); max-width: 720px; margin: 0 auto; }

.avb-news-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
  text-align: left;
}

.avb-news-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 260px;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
}

.avb-news-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(105,140,70,0.92) 0%, rgba(105,140,70,0.35) 60%, rgba(105,140,70,0.1) 100%);
}

.avb-news-card .body {
  position: relative;
  padding: 22px;
  color: #fff;
}

.avb-news-card h3 { font-size: 1.1rem; margin: 0 0 8px; }
.avb-news-card p { font-size: 0.85rem; margin: 0; opacity: 0.9; }

@media (max-width: 700px) {
  .avb-news-grid { grid-template-columns: 1fr; }
}

.avb-intro p { color: var(--text-light); margin: 0 0 20px; text-align: left; }

.avb-strategy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.avb-strategy-card {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 40px 30px;
  text-align: center;
}

.avb-strategy-card .brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 30px;
}

.avb-strategy-card.airbnb .brand { color: #FF5A5F; }
.avb-strategy-card.booking .brand { color: #003580; }
.avb-strategy-card.booking .brand .badge {
  background: #003580;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: 4px;
}

.avb-strategy-card ul { list-style: none; padding: 0; margin: 0; }
.avb-strategy-card li { padding: 14px 0; color: var(--text); }

@media (max-width: 700px) {
  .avb-strategy-grid { grid-template-columns: 1fr; }
}

.avb-quotes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
  text-align: left;
}

.avb-quote-card {
  background: var(--green-light);
  border-radius: var(--radius);
  padding: 34px 30px;
}

.avb-quote-card img { height: 32px; width: auto; margin-bottom: 14px; }
.avb-quote-card p { color: var(--text); font-size: 1.05rem; margin: 0 0 16px; }
.avb-quote-card cite { font-style: normal; color: var(--text-light); font-size: 0.9rem; }

@media (max-width: 700px) {
  .avb-quotes-grid { grid-template-columns: 1fr; }
}

.avb-table-wrap {
  max-width: 900px;
  margin: 40px auto 0;
  overflow-x: auto;
}

.avb-table {
  width: 100%;
  border-collapse: collapse;
}

.avb-table th {
  font-size: 1.1rem;
  padding: 12px 16px 24px;
  text-align: center;
  width: 140px;
}

.avb-table td {
  padding: 16px;
  border-top: 1px solid var(--border);
}

.avb-table td:first-child {
  text-align: left;
  color: var(--text);
}

.avb-table td:not(:first-child) { text-align: center; }

.avb-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
}

.avb-icon.yes { background: var(--green); }
.avb-icon.no { background: #e0524b; }

.avb-cta {
  background: linear-gradient(135deg, #4a9d68, #3a8a56);
  border-radius: 24px;
  padding: 50px;
  color: #fff;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 30px;
  align-items: center;
  text-align: left;
}

.avb-cta h2 {
  grid-column: 1 / -1;
  font-size: 1.5rem;
  margin: 0 0 10px;
  color: #fff;
}

.avb-cta .spark {
  font-size: 5rem;
  text-align: center;
  opacity: 0.5;
  line-height: 1;
}

.avb-cta h3 { margin: 0 0 10px; }
.avb-cta p { margin: 0; opacity: 0.95; }

@media (max-width: 700px) {
  .avb-cta { grid-template-columns: 1fr; text-align: center; }
}

/* Floating "next section" arrow */
.next-arrow {
  position: fixed;
  left: calc(50% - 24px);
  bottom: 26px;
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  z-index: 60;
  animation: arrow-bounce 2.2s ease-in-out infinite;
  transition: opacity 0.3s var(--ease), background 0.2s var(--ease),
    color 0.2s var(--ease), border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.next-arrow svg {
  width: 22px;
  height: 22px;
  display: block;
}

.next-arrow:hover {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
  box-shadow: var(--shadow-md);
}

.next-arrow.hidden {
  opacity: 0;
  pointer-events: none;
}

@keyframes arrow-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

@media (max-width: 600px) {
  .next-arrow { width: 42px; height: 42px; bottom: 16px; }
  .next-arrow svg { width: 19px; height: 19px; }
}
