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

:root {
  --bg: #f3f4f6;
  --bg-alt: #ffffff;
  --bg-soft: #f9fafb;
  --text: #111827;
  --muted: #6b7280;
  --border: #e5e7eb;
  --border-strong: #d1d5db;
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.12);
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-pill: 999px;
}

html,
body {
  height: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", system-ui, sans-serif;
  background: radial-gradient(circle at top, #ffffff 0, #f3f4f6 61.8%, #e5e7eb 100%);
  color: var(--text);
  line-height: 1.6;
  scroll-behavior: smooth;
  padding-top: 80px;
}

.container {
  width: min(1180px, 100% - 3rem);
  margin-inline: auto;
}

.section {
  padding: 4.1rem 0;
}

/* Floating background icons */
.floating-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.float-icon {
  position: absolute;
  font-size: 2.6rem;
  color: rgba(148, 163, 184, 0.16);
  animation: floatUp 26s linear infinite;
}

.fi-1 {
  left: 8%;
  bottom: -10%;
  animation-duration: 32s;
}

.fi-2 {
  left: 72%;
  bottom: -20%;
  font-size: 3.1rem;
  animation-duration: 26s;
}

.fi-3 {
  left: 40%;
  bottom: -15%;
  animation-duration: 30s;
}

.fi-4 {
  left: 88%;
  bottom: -18%;
  animation-duration: 34s;
}

@keyframes floatUp {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-140vh);
  }
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(229, 231, 235, 0.9);
  transition: background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  border-color: rgba(209, 213, 219, 1);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.9rem;
  gap: 1.5rem;
}

/* Brand & logo */
.brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: inherit;
}

.brand-logo-wrap {
  position: relative;
  display: inline-block;
  overflow: hidden;
  border-radius: 18px;
}

.brand-logo {
  height: 88px;
  width: auto;
  display: block;
}


.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-weight: 650;
  letter-spacing: 0.16em;
  font-size: 1.15rem;
  text-transform: uppercase;
}


.brand-tagline {
  font-size: 1rem;
  color: var(--muted);
}


/* Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.nav a {
  font-size: 0.86rem;
  color: var(--muted);
  text-decoration: none;
  padding: 0.4rem 0;
  position: relative;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: #111827;
  transition: width 0.18s ease;
}

.nav a:hover {
  color: #111827;
}

.nav a:hover::after {
  width: 100%;
}

/* Teklif Al butonu */
.nav-cta-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.8rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(34, 197, 94, 0.9);
  text-decoration: none;
  color: #166534;
  background: rgba(220, 252, 231, 0.9);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.nav-cta-main::after {
  display: none;
}

.nav-cta-main:hover {
  background: rgba(22, 163, 74, 0.12);
  color: #14532d;
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(22, 163, 74, 0.25);
}

/* Whatsapp icon (sadece alt butonda kullanılıyor) */
.wa-icon {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  border: 1px solid currentColor;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

.wa-icon::before {
  content: "W";
}

/* Nav toggle (mobile) */
.nav-toggle {
  display: none;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(209, 213, 219, 1);
  background: rgba(249, 250, 251, 0.95);
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
  padding: 0;
  cursor: pointer;
}

.nav-toggle span {
  width: 16px;
  height: 1.5px;
  background: #111827;
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle.is-open span:first-child {
  transform: translateY(2px) rotate(45deg);
}

.nav-toggle.is-open span:last-child {
  transform: translateY(-2px) rotate(-45deg);
}

/* Hero */
.hero {
  padding-top: 3.2rem;
  padding-bottom: 3.8rem;
  background: var(--bg-alt);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.618fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

.eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.hero-content h1 {
  font-size: clamp(2.2rem, 3vw + 1rem, 3rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 1rem;
}

.highlight {
  display: inline-block;
  border-bottom: 1px solid rgba(31, 41, 55, 0.35);
}

.hero-text {
  font-size: 1rem;
  color: var(--muted);
  max-width: 36rem;
  margin-bottom: 1.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  padding: 0.8rem 1.7rem;
  font-size: 0.9rem;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
  color: #111827;
}

.btn.primary {
  background: #111827;
  color: #f9fafb;
  border-color: #111827;
  box-shadow: 0 18px 32px rgba(15, 23, 42, 0.16);
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 42px rgba(15, 23, 42, 0.22);
}

.btn.ghost {
  background: transparent;
  color: #111827;
  border-color: rgba(156, 163, 175, 0.8);
}

.btn.ghost:hover {
  background: #111827;
  color: #f9fafb;
}

.btn.outline {
  background: transparent;
  border-color: rgba(156, 163, 175, 0.9);
}

.btn.outline:hover {
  background: #111827;
  color: #f9fafb;
}

.btn.full {
  width: 100%;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--muted);
}

.hero-badges span {
  border-radius: var(--radius-pill);
  border: 1px solid rgba(209, 213, 219, 1);
  padding: 0.3rem 0.7rem;
  background: #f9fafb;
}

/* Hero panel */
.hero-panel {
  border-radius: 28px;
  background: var(--bg-soft);
  color: #111827;
  padding: 1.8rem 1.8rem 1.6rem;
  box-shadow: var(--shadow-soft);
}

.hero-metric {
  padding-bottom: 1.1rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.1rem;
}

.metric-label {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.metric-value {
  font-size: 1.1rem;
  margin-top: 0.3rem;
}

.hero-list {
  list-style: none;
  display: grid;
  gap: 0.9rem;
  font-size: 0.9rem;
}

.hero-list li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.8rem;
}

.hero-list strong {
  display: block;
  margin-bottom: 0.1rem;
}

.hero-list p {
  font-size: 0.85rem;
  color: var(--muted);
}

/* Icons */
.icon {
  width: 32px;
  height: 32px;
  border-radius: 11px;
  border: 1px solid var(--border-strong);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  background: #ffffff;
}

.icon-server::before {
  content: "▤";
}

.icon-network::before {
  content: "⌘";
}

.icon-monitor::before {
  content: "💻";
}

.icon-camera::before {
  content: "📷";
}

/* Section headings */
.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-header.left {
  text-align: left;
  margin-bottom: 1.4rem;
}

.section-header h2 {
  font-size: 1.7rem;
  letter-spacing: -0.03em;
  margin-bottom: 0.4rem;
}

.section-header p {
  font-size: 0.96rem;
  color: var(--muted);
}

/* Services */
.services {
  background: var(--bg);
}

.service-groups {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.6rem;
}

.card {
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.5rem 1.6rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.2);
  border-color: var(--border-strong);
}

.card-head {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.8rem;
}

.service-card h3 {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.05rem;
}

.service-card h3 .icon {
  background: #f9fafb;
}

.service-card ul {
  list-style: none;
  font-size: 0.9rem;
  color: var(--muted);
  display: grid;
  gap: 0.35rem;
}

/* Split sections */
.split {
  background: var(--bg-alt);
}

.split-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.618fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.split-inner.reverse {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.618fr);
}

.split-text h2 {
  font-size: 1.4rem;
  margin-bottom: 0.7rem;
}

.split-text p {
  font-size: 0.96rem;
  color: var(--muted);
  margin-bottom: 0.8rem;
}

.split-text ul {
  list-style: none;
  font-size: 0.9rem;
  color: var(--muted);
  display: grid;
  gap: 0.25rem;
}

.split-text ul li::before {
  content: "•";
  margin-right: 0.4rem;
  color: #111827;
}

.split-visual {
  border-radius: 24px;
  min-height: 240px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.18);
  position: relative;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(229, 231, 235, 0.9);
}

.split-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* About */
.about-inner {
  display: block;
  max-width: 880px;
  margin-inline: auto;
}

.about-main {
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  padding: 1.8rem 2rem 2rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
}

.about-main .section-header {
  margin-bottom: 1rem;
}

.about-main .section-header h2 {
  margin-bottom: 0;
}

.about-main p {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 0.8rem;
}

@media (max-width: 640px) {
  .about-main {
    padding: 1.4rem 1.3rem 1.6rem;
    border-radius: var(--radius-md);
  }
}

/* Why us */
.why-us {
  background: var(--bg-alt);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
}

.why-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

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

/* Contact */
.contact {
  background: var(--bg);
}

.contact-inner,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.618fr) minmax(0, 1fr);
  gap: 2.4rem;
  align-items: flex-start;
}

.contact-list {
  list-style: none;
  font-size: 0.9rem;
  color: var(--muted);
  display: grid;
  gap: 0.45rem;
  margin-top: 0.8rem;
}

.contact-list .label {
  display: inline-block;
  width: 70px;
  color: #111827;
  font-weight: 500;
}

.contact-list a {
  color: inherit;
  text-decoration: none;
}

.contact-list a:hover {
  text-decoration: underline;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.4rem;
}

.whatsapp-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(34, 197, 94, 0.9);
  text-decoration: none;
  color: #166534;
  background: rgba(220, 252, 231, 0.9);
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.whatsapp-pill:hover {
  background: rgba(22, 163, 74, 0.12);
  color: #14532d;
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(22, 163, 74, 0.25);
}

.contact-note {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 0.9rem;
}

.contact-card h3 {
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.contact-form {
  display: grid;
  gap: 1.3rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.3rem;
}

.form-row .form-field {
  flex: 1;
}

.form-field {
  display: grid;
  gap: 0.4rem;
}

.form-field label {
  font-size: 0.8rem;
  color: var(--muted);
}

input,
select,
textarea {
  border-radius: 10px;
  border: 1px solid var(--border);
  padding: 0.7rem 0.85rem;
  font-size: 0.9rem;
  outline: none;
  background: #ffffff;
  color: #111827;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

input::placeholder,
textarea::placeholder {
  color: rgba(156, 163, 175, 0.9);
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(37, 99, 235, 0.9);
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.75);
  background: #ffffff;
}

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

.form-footnote {
  margin-top: 0.7rem;
  font-size: 0.8rem;
  color: var(--muted);
}

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

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding: 1.6rem 0 2rem;
  background: #f9fafb;
}

.footer-inner {
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
}

/* Back to top button */
.back-to-top {
  position: fixed;
  right: 1.6rem;
  bottom: 1.6rem;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(209, 213, 219, 1);
  background: #ffffff;
  color: #111827;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.15);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
  z-index: 35;
}

.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.22);
}

/* Responsive */
@media (max-width: 960px) {
  .hero-content { order: 1; }

  .hero-inner,
  .contact-inner,
  .contact-grid,
  .split-inner,
  .split-inner.reverse {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-panel { order: 2;
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 768px) {
  .container {
    width: min(100% - 2rem, 100%);
  }

  .section {
    padding: 3.4rem 0;
  }

  .hero {
    padding-top: 2.8rem;
  }

  .hero-content h1 {
    font-size: 2.1rem;
  }

  .nav {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    padding: 0.9rem 1.5rem 1.4rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(229, 231, 235, 0.9);
    transform: translateY(-140%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

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

  .nav a {
    padding: 0.35rem 0;
  }

  .nav-cta-main {
    margin-top: 0.4rem;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .split-inner,
  .split-inner.reverse,
  .contact-inner,
  .contact-grid {
    gap: 2rem;
  }
}

@media (max-width: 640px) {
  .form-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .brand-text {
    display: none;
  }

  body {
    padding-top: 70px;
  }

  .brand-logo {
    height: 56px;
  }
}

/* Trust / Referanslar */
.section.trust {
  background: var(--bg-alt);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 2rem auto 0;
}

.trust-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 1.2rem 1.4rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.trust-card strong {
  display: block;
  font-size: 1.3rem;
  margin-bottom: 0.15rem;
}

.trust-card span {
  font-size: 0.94rem;
  color: var(--muted);
}

/* Tablet */
@media (max-width: 992px) {
  .trust-grid {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }
}

/* Telefon */
@media (max-width: 640px) {
  .trust-grid {
    grid-template-columns: minmax(0,1fr);
  }
}

/* FAQ Section */
.section.faq {
  background: var(--bg);
}

.faq-grid {
  max-width: 880px;
  margin: 2rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.faq-item {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  padding: 0.9rem 1.1rem;
}

/* remove native markers and apply custom chevron */
.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-size: 0.96rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0;
}

.faq-item summary::marker {
  content: "";
}
.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "▾";
  font-size: 0.85rem;
  margin-left: 0.75rem;
  transition: transform 0.18s ease;
}

.faq-item[open] summary::after {
  transform: rotate(-180deg);
}

.faq-item p {
  margin-top: 0.45rem;
  font-size: 0.9rem;
  color: var(--muted);
}

@media (max-width: 640px) {
  .faq-item {
    padding: 0.85rem 0.95rem;
  }
}


/* Neden Nora list */
.why-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-top: 1.2rem;
  font-size: 0.95rem;
  color: var(--text);
}

.why-list li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.why-icon {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  border: 2px solid #16a34a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: #16a34a;
}

.why-icon::before {
  content: "✔";
}



/* İletişim grid düzeni: Neden Nora & Teklif Formu */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 2.6rem;
  align-items: flex-start;
}

/* Neden Nora listesi */
.why-list {
  list-style: none;
  margin-top: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  font-size: 0.98rem;
  color: var(--text);
}

.why-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.why-icon {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  border: 2px solid #16a34a;
  color: #16a34a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

.why-icon::before {
  content: "✔";
}

.contact-form-wrapper {
  width: 100%;
}

/* Mobil uyum */
@media (max-width: 960px) {
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}


/* Sol altta sabit WhatsApp logolu buton */
.whatsapp-fixed {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 999;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.wa-fixed-icon {
  height: 40px;
  width: auto;
  display: block;
}


/* Hero button color adjustments */
.hero-actions .btn.primary {
  background: rgba(220, 252, 231, 0.9);
  border-color: rgba(34, 197, 94, 0.9);
  color: #166534;
  box-shadow: 0 18px 32px rgba(22, 163, 74, 0.3);
}

.hero-actions .btn.primary:hover {
  background: rgba(22, 163, 74, 0.12);
  color: #14532d;
  transform: translateY(-1px);
  box-shadow: 0 22px 42px rgba(22, 163, 74, 0.35);
}

.hero-actions .btn.ghost {
  border-color: rgba(34, 197, 94, 0.9);
  color: #166534;
}

.hero-actions .btn.ghost:hover {
  background: rgba(22, 163, 74, 0.06);
  color: #14532d;
  border-color: rgba(34, 197, 94, 1);
}

/* Section background corrections: white & light grey alternation */
.hero {
  background: var(--bg-alt);
}

.section.services,
.section.about,
.section.faq,
.section.contact {
  background: var(--bg);
}

.section.split,
.section.why-us,
.section.trust {
  background: var(--bg-alt);
}


/* Green button style added */
.btn.green {
  border: 1px solid rgba(34, 197, 94, 0.9);
  color: #166534;
  background: rgba(220, 252, 231, 0.9);
}
.btn.green:hover {
  background: rgba(22, 163, 74, 0.12);
  color: #14532d;
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(22, 163, 74, 0.25);
}
