/* NAV */
nav.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
  transition: box-shadow 0.25s;
}

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

.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  color: var(--dark);
  font-size: 0.95rem;
  line-height: 1.25;
}

.logo img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: cover;
}

.logo span {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  transition: transform 0.25s, opacity 0.25s;
}

@media (max-width: 900px) {
  .burger { display: flex; }

  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: 0.25s;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
}

/* HERO */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  padding: 140px 0 100px;
  color: white;
  background: var(--primary-dark) center/cover no-repeat;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--hero-overlay);
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 20px;
  max-width: 760px;
}

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 640px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.page-hero {
  padding: 130px 0 60px;
  background: var(--bg-soft);
}

.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 16px;
}

.page-hero p {
  color: var(--muted);
  max-width: 680px;
  font-size: 1.05rem;
}

.page-hero--cover {
  position: relative;
  color: white;
  background-color: var(--primary-dark);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 360px;
  display: flex;
  align-items: center;
  padding: 130px 0 72px;
}

.page-hero--cover::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(20, 31, 54, 0.72) 0%,
    rgba(20, 31, 54, 0.88) 55%,
    rgba(20, 31, 54, 0.94) 100%
  );
  z-index: 0;
}

.page-hero--cover .container {
  position: relative;
  z-index: 1;
}

.page-hero.page-hero--cover h1 {
  color: #fff;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
}

.page-hero.page-hero--cover p {
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
  max-width: 720px;
}

/* MEDIA SHOWCASE */
.media-showcase {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.media-showcase--3 {
  grid-template-columns: repeat(3, 1fr);
}

.media-tile {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  position: relative;
  margin: 0;
}

.media-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.media-tile:hover img {
  transform: scale(1.04);
}

.media-tile figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 12px 14px;
  font-size: 0.82rem;
  font-weight: 600;
  color: white;
  background: linear-gradient(to top, rgba(20, 31, 54, 0.9), transparent);
}

.contact-visual img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  aspect-ratio: 4 / 3;
  margin-bottom: 24px;
  display: block;
}

@media (max-width: 900px) {
  .media-showcase { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 500px) {
  .media-showcase,
  .media-showcase--3 { grid-template-columns: 1fr; }
}

/* CARDS */
.card-grid {
  display: grid;
  gap: 24px;
}

.card-grid-3 { grid-template-columns: repeat(3, 1fr); }
.card-grid-2 { grid-template-columns: repeat(2, 1fr); }
.card-grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 900px) {
  .card-grid-3,
  .card-grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .card-grid-2,
  .card-grid-3,
  .card-grid-4 { grid-template-columns: 1fr; }
}

.value-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
}

.value-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.value-card.accent {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}

.value-card.accent h3,
.value-card.accent p { color: white; }

.value-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--dark);
}

.value-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* ABOUT SPLIT */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-split img {
  border-radius: var(--radius-lg);
  width: 100%;
  object-fit: cover;
  min-height: 360px;
}

@media (max-width: 768px) {
  .about-split { grid-template-columns: 1fr; }
}

/* METRICS */
.metrics-band {
  background: white;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 0;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  text-align: center;
}

.metric-value {
  font-size: 3rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -1px;
}

.metric-divider {
  width: 60px;
  height: 2px;
  background: var(--border);
  margin: 12px auto 16px;
}

.metric-label {
  font-size: 1rem;
  color: var(--muted);
  font-weight: 500;
}

/* PACKAGES */
.package-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: var(--shadow-sm);
}

.package-card.featured {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}

.package-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--dark);
  margin: 8px 0 16px;
}

.package-price span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--muted);
}

.package-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
}

.package-card p {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 16px;
}

.package-card ul {
  list-style: none;
  margin-bottom: 20px;
  flex: 1;
}

.package-card li {
  padding: 6px 0 6px 20px;
  position: relative;
  font-size: 0.9rem;
  color: var(--text);
}

.package-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.package-meta {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 20px;
}

.package-legal-note {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 24px;
  text-align: center;
}

/* TESTIMONIALS */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}

.testimonial-stars {
  color: #f5a623;
  font-size: 0.9rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.testimonial-card blockquote {
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 20px;
  font-style: normal;
}

.testimonial-author {
  font-weight: 600;
  color: var(--dark);
  font-size: 0.9rem;
}

.testimonial-role {
  font-size: 0.82rem;
  color: var(--muted);
}

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

/* AREA CARDS — see enhanced styles below */

/* CTA BAND */
.cta-band {
  background: var(--primary);
  color: white;
  text-align: center;
  padding: 72px 24px;
}

.cta-band h2 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 28px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.cta-band-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-band .btn-outline-light {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.9);
}

.cta-band .btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.14);
  color: white;
}

/* SERVICES PAGE */
.page-services .services-hero h1 {
  font-size: clamp(1.85rem, 4.5vw, 3.1rem);
  font-weight: 700;
  max-width: 900px;
  margin: 0 auto 16px;
  text-align: center;
}

.page-services .services-hero p {
  font-size: 1.1rem;
  font-weight: 400;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.services-title-band {
  padding: 72px 0 24px;
  background: white;
  text-align: center;
}

.services-title-band h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--dark);
}

.services-dark-band {
  background: var(--primary-dark);
  color: rgba(255, 255, 255, 0.88);
  padding: 40px 0 56px;
}

.services-dark-inner {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.55;
}

.services-dark-inner h3 {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.services-dark-sub {
  margin-top: 24px;
  font-weight: 600;
  color: white;
}

.services-dark-note {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.72);
  margin-top: 24px;
}

.services-dark-note a {
  color: white;
  text-decoration: underline;
}

.services-overview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 16px 0 8px;
}

.services-overview-tile {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: white;
  font-size: 0.9rem;
  font-weight: 600;
  transition: background 0.2s, transform 0.2s;
}

.services-overview-tile:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-1px);
  color: white;
}

.services-overview-tile.is-active {
  background: rgba(232, 93, 44, 0.24);
  border-color: rgba(255, 176, 138, 0.9);
  box-shadow: 0 0 0 2px rgba(232, 93, 44, 0.35);
  color: white;
}

.services-overview-tile.is-active .services-overview-icon {
  background: rgba(232, 93, 44, 0.5);
  color: #ffd4c2;
}

.services-overview-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(232, 93, 44, 0.2);
  color: #ffb08a;
  display: flex;
  align-items: center;
  justify-content: center;
}

.services-overview-label {
  line-height: 1.35;
}

.services-catalog {
  padding: 32px 0 40px;
}

.services-catalog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  align-items: start;
}

.services-category-label {
  grid-column: 1 / -1;
  text-align: center;
  margin-top: 16px;
}

.services-category-label:first-child {
  margin-top: 0;
}

.services-category-label h2 {
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 6px;
}

.services-category-label .section-lead {
  font-size: 0.95rem;
  max-width: 640px;
  margin: 0 auto;
}

.services-text-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
  scroll-margin-top: 96px;
}

.services-text-card--solo {
  grid-column: 1 / -1;
  max-width: 720px;
  width: 100%;
  justify-self: center;
}

.services-text-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.services-text-card.is-active {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(232, 93, 44, 0.18), var(--shadow-md);
}

.services-text-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--accent-light);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.services-text-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.services-text-card > p {
  font-size: 0.94rem;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 12px;
}

.services-detail-list {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  font-size: 0.86rem;
  line-height: 1.5;
  color: var(--text);
}

.services-detail-list li {
  position: relative;
  padding-left: 14px;
  margin-bottom: 8px;
}

.services-detail-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

.services-detail-list strong {
  color: var(--dark);
  font-weight: 700;
}

.services-card-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
}

.services-card-link:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .services-catalog-grid,
  .services-overview-grid {
    grid-template-columns: 1fr;
  }

  .services-dark-inner {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .services-title-band {
    padding-top: 48px;
  }

  .services-catalog {
    padding-top: 24px;
  }

  .services-overview-grid {
    grid-template-columns: 1fr;
  }
}

/* SERVICE SHOWCASE (legacy) */
.service-showcase-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
  scroll-margin-top: 96px;
}

.service-showcase-item--reverse .service-showcase-media {
  order: 2;
}

.service-showcase-item--reverse .service-showcase-body {
  order: 1;
}

.service-showcase-media img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  min-height: 280px;
  display: block;
}

.service-showcase-body h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
  color: var(--dark);
}

.service-showcase-lead {
  color: var(--muted);
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.service-showcase-body dl {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 8px 16px;
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.service-showcase-body dt {
  font-weight: 600;
  color: var(--dark);
}

.service-showcase-body dd {
  color: var(--muted);
}

.service-price-item:target {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
  .service-showcase-item,
  .service-showcase-item--reverse {
    grid-template-columns: 1fr;
  }

  .service-showcase-item--reverse .service-showcase-media,
  .service-showcase-item--reverse .service-showcase-body {
    order: unset;
  }

  .service-showcase-body dl {
    grid-template-columns: 1fr;
  }
}

/* SERVICE DETAIL */
.service-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  margin-bottom: 24px;
}

.service-item h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: var(--dark);
}

.service-item .service-for {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 16px;
}

.service-item dl {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 8px 16px;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.service-item dt {
  font-weight: 600;
  color: var(--dark);
}

.service-item dd {
  color: var(--muted);
}

@media (max-width: 600px) {
  .service-item dl { grid-template-columns: 1fr; }
}

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-info-block {
  background: var(--bg-soft);
  border-radius: var(--radius);
  padding: 32px;
}

.contact-info-block h3 {
  margin-bottom: 16px;
  color: var(--dark);
}

.contact-info-block p,
.contact-info-block a {
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.contact-info-block p a {
  display: block;
}

.steps-list {
  list-style: none;
  counter-reset: step;
}

.steps-list li {
  counter-increment: step;
  padding: 12px 0 12px 40px;
  position: relative;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}

.steps-list li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  width: 28px;
  height: 28px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
}

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

/* SERVICE PRICING */
.service-price-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.service-price-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  height: 100%;
  scroll-margin-top: 96px;
}

.service-price-item--wide {
  grid-column: 1 / -1;
}

.service-price-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--accent-light);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-price-body {
  flex: 1;
  min-width: 0;
}

.service-price-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.service-price-desc {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 12px;
  line-height: 1.55;
}

.service-price-line {
  font-size: 0.9rem;
  color: var(--text);
  margin-bottom: 4px;
}

.service-price-line strong {
  color: var(--dark);
  font-weight: 700;
}

.service-price-note {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 8px;
}

.service-price-body .btn {
  margin-top: 14px;
}

@media (max-width: 768px) {
  .service-price-grid {
    grid-template-columns: 1fr;
  }

  .service-price-item--wide {
    grid-column: auto;
  }
}

/* FORMS */
.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font: inherit;
  background: white;
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-success {
  display: none;
  padding: 16px;
  background: #e8f5e9;
  border-radius: 8px;
  color: #2e7d32;
  margin-top: 16px;
}

.form-success.visible { display: block; }

/* MODAL */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal-overlay.open { display: flex; }

.modal {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  max-width: 520px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--muted);
  line-height: 1;
}

.modal h2 {
  font-size: 1.35rem;
  margin-bottom: 8px;
  color: var(--dark);
}

.modal .modal-sub {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 24px;
}

/* FOOTER */
.site-footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.85);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.2fr 1.4fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-grid h4 {
  color: white;
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.footer-grid p,
.footer-grid a,
.footer-grid li {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
}

.footer-grid a:hover { color: white; }

.footer-grid ul {
  list-style: none;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.newsletter-form {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.newsletter-form input {
  flex: 1;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  font: inherit;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
  padding: 10px 16px;
  border: none;
  border-radius: 8px;
  background: var(--gradient-btn);
  color: white;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 24px;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.75);
}

.footer-bottom a:hover {
  color: white;
}

.footer-bottom .social-links {
  justify-content: center;
}

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

@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
}

/* MAP */
.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-top: 24px;
}

.map-embed iframe {
  width: 100%;
  height: 280px;
  border: 0;
}

/* INFO BLOCK */
.info-block {
  background: var(--bg-soft);
  border-radius: var(--radius);
  padding: 32px;
  margin: 32px 0;
}

.info-block h3 {
  margin-bottom: 12px;
  color: var(--dark);
}

.info-block p {
  color: var(--muted);
  font-size: 0.95rem;
}

.link-card {
  display: block;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: box-shadow 0.2s;
}

.link-card:hover {
  box-shadow: var(--shadow-md);
  color: inherit;
}

.link-card h3 {
  color: var(--dark);
  margin-bottom: 8px;
}

.link-card p {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 16px;
}

.link-card .link-arrow {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
}

/* SOCIAL LINKS */
.social-links {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.85);
  line-height: 0;
  flex-shrink: 0;
  padding: 0;
  transition: background 0.2s, transform 0.2s, color 0.2s;
}

.social-link svg {
  display: block;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.social-links--light .social-link {
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--primary);
}

.social-link:hover {
  background: var(--accent);
  color: white;
  transform: translateY(-2px);
}

.social-links--light .social-link:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

/* CARD ICONS */
.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--accent-light);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.value-card.accent .card-icon {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

/* SERVICE CHIPS */
.service-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 8px;
}

.service-chip {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.service-chip:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
  color: var(--primary);
}

/* HOW WE WORK */
.how-we-work {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 8px;
}

.how-step {
  text-align: center;
  padding: 24px 16px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  position: relative;
}

.how-step-num {
  width: 36px;
  height: 36px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: var(--gradient-btn);
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.how-step h4 {
  font-size: 0.95rem;
  color: var(--dark);
  margin-bottom: 6px;
}

.how-step p {
  font-size: 0.82rem;
  color: var(--muted);
}

@media (max-width: 900px) {
  .how-we-work {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .how-we-work {
    grid-template-columns: 1fr;
  }
}

/* AREA CARDS with images */
.area-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 240px;
  color: white;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--primary-dark);
  transition: transform 0.35s ease;
}

.area-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 31, 54, 0.92) 0%, rgba(28, 43, 74, 0.55) 100%);
  transition: background 0.3s;
  z-index: 1;
}

.area-card:hover {
  transform: translateY(-4px);
}

.area-card:hover::before {
  background: linear-gradient(to top, rgba(20, 31, 54, 0.88) 0%, rgba(232, 93, 44, 0.35) 100%);
}

.area-card h3,
.area-card p {
  position: relative;
  z-index: 2;
}

.area-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.area-card p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.85);
}

.area-card .area-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
  z-index: 0;
}

.area-card:hover .area-bg {
  transform: scale(1.05);
}

/* TESTIMONIALS enhanced */
.testimonial-card {
  transition: box-shadow 0.25s, transform 0.25s;
  position: relative;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.testimonial-card blockquote::before {
  content: '\201C';
  font-size: 2.5rem;
  line-height: 1;
  color: var(--accent);
  opacity: 0.35;
  display: block;
  margin-bottom: 4px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-btn);
  color: white;
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

/* HERO button on dark */
.btn-on-hero {
  color: white;
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-on-hero:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: white;
  color: white;
}

.package-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.package-card {
  transition: transform 0.25s, box-shadow 0.25s;
}

/* COOKIE CONSENT */
.cookie-consent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1200;
  background: var(--primary-dark);
  color: rgba(255, 255, 255, 0.92);
  padding: 16px 20px;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.18);
}

.cookie-consent-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.cookie-consent p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  flex: 1;
  min-width: 220px;
}

.cookie-consent a {
  color: #ffb08a;
  text-decoration: underline;
}

.cookie-consent-accept {
  flex-shrink: 0;
}
