@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Source+Sans+3:wght@300;400;500;600;700&display=swap');

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

:root {
  --dark-bg: #2d3a42;
  --darker-bg: #232d34;
  --card-bg: #3a4750;
  --accent: #8a9baa;
  --accent-light: #a3b5c4;
  --accent-glow: rgba(138, 155, 170, 0.15);
  --text-primary: #e8ebee;
  --text-secondary: #b0b9c2;
  --text-muted: #7a8894;
  --white: #ffffff;
  --success: #7cb89c;
  --warm: #c4a775;
  --danger: #c47070;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Source Sans 3', 'Segoe UI', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--darker-bg);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.footer-social {
  text-align: center;
  width: 100%;
  line-height: 1;
}
.footer-social a {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(138, 155, 170, 0.1);
  border: 1px solid rgba(138, 155, 170, 0.15);
  transition: all 0.3s;
  text-decoration: none;
  margin: 0 6px;
  vertical-align: middle;
}
.footer-social a:hover {
  background: rgba(138, 155, 170, 0.25);
  transform: translateY(-2px);
}
.footer-social a svg {
  width: 18px; height: 18px;
  fill: var(--text-secondary);
  transition: fill 0.3s;
}
.footer-social a:hover svg { fill: var(--white); }

/* ===== NAVIGATION ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(35, 45, 52, 0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(138, 155, 170, 0.1);
  transition: all 0.4s;
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 6px 32px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav-logo img {
  height: 200px;
  width: auto;
  transition: opacity 0.3s;
  mask-image:
    linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, black 4%, black 96%, transparent 100%);
  mask-composite: intersect;
  -webkit-mask-image:
    linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, black 4%, black 96%, transparent 100%);
  -webkit-mask-composite: source-in;
}
.nav-logo:hover img {
  opacity: 0.85;
}
.nav-links { display: flex; gap: 24px; align-items: center; }
.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.3s;
  padding: 6px 0;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-cta {
  background: var(--accent) !important;
  color: var(--darker-bg) !important;
  padding: 10px 24px !important;
  border-radius: 6px;
  font-weight: 700 !important;
  transition: all 0.3s !important;
}
.nav-cta:hover {
  background: var(--accent-light) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(138, 155, 170, 0.3);
}

/* Mobile Nav */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--text-secondary); margin: 5px 0; transition: 0.3s; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 32px 80px;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(138, 155, 170, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(124, 184, 156, 0.04) 0%, transparent 50%),
    linear-gradient(180deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
  z-index: 0;
}
.hero-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(138, 155, 170, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(138, 155, 170, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
}
.hero-inner {
  max-width: 1200px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center;
  position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(138, 155, 170, 0.1);
  border: 1px solid rgba(138, 155, 170, 0.2);
  border-radius: 30px;
  padding: 6px 18px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-badge::before {
  content: '';
  width: 7px; height: 7px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 12px;
}
.hero h1 em { font-style: italic; color: var(--accent-light); }
.hero-sub {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--accent-light);
  font-weight: 400;
  font-style: italic;
  margin-bottom: 24px;
}
.hero p {
  font-size: 1.08rem;
  color: var(--text-secondary);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.8;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ===== PAGE HERO (shorter) ===== */
.page-hero {
  padding: 140px 32px 80px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
  z-index: 0;
}
.page-hero .hero-grid-bg { z-index: 0; }
.page-hero-inner {
  max-width: 800px; margin: 0 auto;
  position: relative; z-index: 1;
}
.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}
.page-hero h1 em { font-style: italic; color: var(--accent-light); }
.page-hero p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--accent);
  color: var(--darker-bg);
  padding: 16px 36px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
  transition: all 0.35s;
  border: none; cursor: pointer;
}
.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(138, 155, 170, 0.25);
}
.btn-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent;
  color: var(--text-primary);
  padding: 16px 36px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  border: 1.5px solid rgba(155, 174, 191, 0.3);
  transition: all 0.35s;
  cursor: pointer;
}
.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent-light);
  background: rgba(138, 155, 170, 0.05);
}

/* ===== SECTIONS ===== */
section { padding: 100px 32px; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--white);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-intro {
  font-size: 1.08rem;
  color: var(--text-secondary);
  max-width: 680px;
  line-height: 1.8;
}

/* ===== NUMBERED SECTIONS (01, 02...) ===== */
.numbered-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0;
  border-bottom: 1px solid rgba(138, 155, 170, 0.06);
}
.numbered-section:last-child { border-bottom: none; }
.numbered-section.reverse { direction: rtl; }
.numbered-section.reverse > * { direction: ltr; }
.num-badge {
  font-family: var(--serif);
  font-size: 4rem;
  font-weight: 700;
  color: rgba(138, 155, 170, 0.12);
  line-height: 1;
  margin-bottom: 12px;
}
.numbered-section h3 {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 18px;
  line-height: 1.3;
}
.numbered-section p {
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 14px;
}
.numbered-section strong { color: var(--text-primary); }
.num-visual {
  background: var(--card-bg);
  border: 1px solid rgba(138, 155, 170, 0.08);
  border-radius: 16px;
  padding: 0;
  display: flex; align-items: center; justify-content: center;
  min-height: 320px;
  position: relative;
  overflow: hidden;
}
.num-visual::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 40%, rgba(138, 155, 170, 0.06) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
}
.num-visual img {
  transition: transform 0.6s ease, filter 0.6s ease;
  filter: brightness(0.85);
}
.num-visual:hover img {
  transform: scale(1.05);
  filter: brightness(0.95);
}
.num-visual-icon {
  font-size: 4rem;
  position: relative; z-index: 1;
}

/* ===== CARDS GRID ===== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}
.card {
  background: var(--card-bg);
  border: 1px solid rgba(138, 155, 170, 0.08);
  border-radius: 14px;
  padding: 36px 28px;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}
.card:hover {
  border-color: rgba(138, 155, 170, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}
.card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.card:hover::after { opacity: 1; }
.card-icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(138, 155, 170, 0.08);
  border-radius: 12px;
  margin-bottom: 20px;
  font-size: 1.5rem;
}
.card h3 {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.3;
}
.card p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.75;
}
.card-img {
  margin: -36px -28px 20px;
  overflow: hidden;
  border-radius: 13px 13px 0 0;
}
.card-img img {
  width: 100%;
  display: block;
  filter: brightness(0.8);
  transition: transform 0.5s ease, filter 0.5s ease;
}
.card:hover .card-img img {
  transform: scale(1.06);
  filter: brightness(0.95);
}

/* ===== HIGHLIGHT BOX ===== */
.highlight-box {
  background: linear-gradient(135deg, var(--card-bg) 0%, rgba(138, 155, 170, 0.08) 100%);
  border: 1px solid rgba(138, 155, 170, 0.12);
  border-radius: 18px;
  padding: 56px 48px;
  margin-top: 50px;
  position: relative;
  overflow: hidden;
}
.highlight-box::before {
  content: '';
  position: absolute; top: -1px; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--success));
}
.highlight-box h3 {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.3;
}
.highlight-box h3 em { color: var(--accent-light); font-style: italic; }
.hl-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 20px;
}
.hl-cols p {
  color: var(--text-secondary);
  line-height: 1.85;
  font-size: 1.02rem;
}
.hl-cols strong { color: var(--text-primary); }

/* ===== PROCESS STEPS ===== */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 50px;
}
.step {
  text-align: center;
  padding: 32px 20px;
}
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(138, 155, 170, 0.1);
  border: 2px solid rgba(138, 155, 170, 0.25);
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 20px;
}
.step h4 {
  font-family: var(--serif);
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 10px;
}
.step p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.7;
}

/* ===== STAT ROW ===== */
.stat-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  margin-top: 50px;
}
.stat-item {
  text-align: center;
  padding: 32px 16px;
  background: var(--card-bg);
  border: 1px solid rgba(138, 155, 170, 0.08);
  border-radius: 14px;
}
.stat-num {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--accent-light);
  line-height: 1.1;
}
.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 6px;
}

/* ===== CONTACT INFO ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 50px;
}
.contact-card {
  background: var(--card-bg);
  border: 1px solid rgba(138, 155, 170, 0.08);
  border-radius: 16px;
  padding: 44px 36px;
}
.contact-card h3 {
  font-family: var(--serif);
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 24px;
}
.contact-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid rgba(138, 155, 170, 0.06);
}
.contact-item:last-child { border-bottom: none; }
.contact-item-icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(138, 155, 170, 0.08);
  border-radius: 10px;
  flex-shrink: 0;
  font-size: 1.2rem;
}
.contact-item-text .label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 2px;
}
.contact-item-text .value {
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 600;
}
.contact-item-text a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s;
}
.contact-item-text a:hover { color: var(--accent-light); }

/* ===== MAP ===== */
.map-container {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(138, 155, 170, 0.08);
  margin-top: 50px;
}
.map-container iframe {
  width: 100%; height: 400px; border: none;
  filter: grayscale(40%) brightness(0.85);
}

/* ===== REFERENZ CARDS ===== */
.ref-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}
.ref-card {
  background: var(--card-bg);
  border: 1px solid rgba(138, 155, 170, 0.08);
  border-radius: 12px;
  padding: 32px 28px;
}
.ref-quote {
  color: var(--text-secondary);
  font-style: italic;
  line-height: 1.75;
  font-size: 0.95rem;
  margin-bottom: 20px;
}
.ref-author {
  color: var(--accent-light);
  font-weight: 600;
  font-size: 0.88rem;
}
.ref-company {
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* ===== PAIN/SOLUTION LISTS ===== */
.check-list { list-style: none; margin-top: 20px; }
.check-list li {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid rgba(138, 155, 170, 0.06);
  color: var(--text-secondary);
  font-size: 0.96rem;
  line-height: 1.6;
}
.check-list li::before {
  content: '✓';
  color: var(--success);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.cross-list { list-style: none; margin-top: 20px; }
.cross-list li {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid rgba(138, 155, 170, 0.06);
  color: var(--text-secondary);
  font-size: 0.96rem;
}
.cross-list li::before {
  content: '✗';
  color: var(--danger);
  font-weight: 700;
  flex-shrink: 0;
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: var(--dark-bg);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(138, 155, 170, 0.05) 0%, transparent 70%);
}
.cta-section .section-inner { position: relative; z-index: 1; }
.cta-section .section-title { max-width: 700px; margin: 0 auto 16px; }
.cta-section .section-intro { margin: 0 auto 40px; text-align: center; }
.cta-contact {
  display: flex; gap: 32px; justify-content: center; align-items: center;
  flex-wrap: wrap;
  margin-top: 32px;
}
.cta-phone {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  transition: color 0.3s;
}
.cta-phone:hover { color: var(--accent); }
.cta-divider {
  width: 1px; height: 40px;
  background: rgba(155, 174, 191, 0.2);
}

/* ===== FOOTER ===== */
footer {
  background: var(--darker-bg);
  border-top: 1px solid rgba(138, 155, 170, 0.08);
  padding: 48px 32px 32px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex; flex-direction: column; align-items: center;
  gap: 20px;
}
.footer-row {
  display: flex; justify-content: space-between; align-items: center;
  width: 100%;
  flex-wrap: wrap; gap: 20px;
}
footer a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s;
}
footer a:hover { color: var(--accent); }
.copyright {
  color: var(--text-muted);
  font-size: 0.82rem;
}
.footer-links { display: flex; gap: 24px; }

/* ===== BACKGROUND VARIANTS ===== */
.two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.four-col-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.bg-dark { background: var(--dark-bg); }
.bg-darker { background: var(--darker-bg); }
.bg-gradient {
  position: relative;
}
.bg-gradient::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 40% at 50% 0%, rgba(138, 155, 170, 0.04) 0%, transparent 70%);
  pointer-events: none;
}
.bg-gradient > .section-inner { position: relative; z-index: 1; }

/* ===== IMAGE EFFECTS ===== */
.img-container {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(138, 155, 170, 0.1);
}
.img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease, filter 0.6s ease;
  filter: grayscale(20%) brightness(0.85);
}
.img-container:hover img {
  transform: scale(1.05);
  filter: grayscale(0%) brightness(0.95);
}
.img-container::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(35, 45, 52, 0.3) 0%, rgba(138, 155, 170, 0.1) 100%);
  pointer-events: none;
  transition: opacity 0.6s ease;
}
.img-container:hover::after { opacity: 0.4; }

.img-hero {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(138, 155, 170, 0.12);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.img-hero img {
  width: 100%;
  display: block;
  filter: grayscale(15%) brightness(0.8) contrast(1.05);
  transition: all 0.8s ease;
}
.img-hero:hover img {
  filter: grayscale(0%) brightness(0.9) contrast(1.05);
  transform: scale(1.03);
}
.img-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(35, 45, 52, 0.6) 100%);
  pointer-events: none;
}

.img-round {
  width: 140px; height: 140px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(138, 155, 170, 0.2);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  margin: 0 auto;
}
.img-round img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.9);
  transition: transform 0.5s ease;
}
.img-round:hover img { transform: scale(1.1); }

.img-card-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.img-card-item {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(138, 155, 170, 0.08);
  position: relative;
  aspect-ratio: 4/3;
}
.img-card-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(30%) brightness(0.8);
  transition: all 0.5s ease;
}
.img-card-item:hover img {
  filter: grayscale(0%) brightness(0.95);
  transform: scale(1.08);
}
.img-card-item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(35, 45, 52, 0.5) 100%);
  pointer-events: none;
}
.img-card-item .img-label {
  position: absolute;
  bottom: 10px; left: 12px;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  z-index: 1;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

.qr-box {
  background: var(--white);
  border-radius: 16px;
  padding: 16px;
  display: inline-block;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}
.qr-box img {
  width: 160px; height: 160px;
  display: block;
}

/* ===== STICKY PHONE BAR ===== */
.sticky-phone {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 99;
  background: rgba(35, 45, 52, 0.97);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(138, 155, 170, 0.15);
  padding: 10px 20px;
  display: none;
  text-align: center;
}
.sticky-phone a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: var(--darker-bg);
  padding: 12px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
}
.sticky-phone a:hover { background: var(--accent-light); }
@media (max-width: 960px) {
  .sticky-phone { display: block; }
  footer { padding-bottom: 70px; }
}

/* ===== QUICK CONTACT FORM ===== */
.quick-form {
  background: var(--card-bg);
  border: 1px solid rgba(138, 155, 170, 0.12);
  border-radius: 18px;
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.quick-form::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--success));
}
.quick-form h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 8px;
  text-align: center;
}
.quick-form .qf-sub {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 28px;
  text-align: center;
  line-height: 1.6;
}
.quick-form input,
.quick-form textarea {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 16px 20px;
  background: rgba(138, 155, 170, 0.06);
  border: 1.5px solid rgba(138, 155, 170, 0.12);
  border-radius: 12px;
  color: var(--white);
  font-size: 1rem;
  font-family: var(--sans);
  outline: none;
  margin-bottom: 14px;
  transition: border-color 0.3s;
}
.quick-form input::placeholder,
.quick-form textarea::placeholder { color: var(--text-muted); }
.quick-form input:focus,
.quick-form textarea:focus { border-color: var(--accent); background: rgba(138, 155, 170, 0.1); }
.quick-form textarea { resize: vertical; min-height: 120px; }
.quick-form .qf-btn {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 18px;
  background: var(--accent);
  color: var(--darker-bg);
  border: none;
  border-radius: 12px;
  font-size: 1.05rem;
  font-weight: 700;
  font-family: var(--sans);
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 6px;
  letter-spacing: 0.02em;
}
.quick-form .qf-btn:hover { background: var(--accent-light); transform: translateY(-2px); }
@media (max-width: 800px) {
  .quick-form { padding: 32px 22px; }
}

/* ===== SERVICE CTA CARD ===== */
.sc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}
.sc-card {
  background: var(--card-bg);
  border: 1px solid rgba(138, 155, 170, 0.08);
  border-radius: 14px;
  padding: 32px 28px;
  transition: all 0.4s;
  display: flex;
  flex-direction: column;
}
.sc-card:hover {
  border-color: rgba(138, 155, 170, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}
.sc-card .sc-icon { font-size: 2rem; margin-bottom: 16px; }
.sc-card h3 {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 10px;
}
.sc-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
  flex: 1;
}
.sc-card .sc-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding: 10px 20px;
  background: rgba(138, 155, 170, 0.1);
  border: 1px solid rgba(138, 155, 170, 0.2);
  border-radius: 8px;
  color: var(--accent-light);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  transition: all 0.3s;
  align-self: flex-start;
}
.sc-card .sc-btn:hover {
  background: var(--accent);
  color: var(--darker-bg);
  border-color: var(--accent);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate { opacity: 0; animation: fadeUp 0.7s ease forwards; }
.d1 { animation-delay: 0.1s; }
.d2 { animation-delay: 0.2s; }
.d3 { animation-delay: 0.3s; }
.d4 { animation-delay: 0.4s; }
.d5 { animation-delay: 0.5s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .nav-logo img { height: 120px; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero p { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-visual { display: flex; justify-content: center; }
  .numbered-section { grid-template-columns: 1fr; }
  .numbered-section.reverse { direction: ltr; }
  .sc-grid { grid-template-columns: 1fr 1fr !important; }
  .cards-grid { grid-template-columns: 1fr 1fr !important; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .hl-cols { grid-template-columns: 1fr; }
  .ref-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: 1fr 1fr; }
  .img-card-row { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: rgba(35,45,52,0.98); padding: 20px 32px; gap: 16px; border-bottom: 1px solid rgba(138,155,170,0.1); }
  .nav-toggle { display: block; }
  /* Fix 2-column inline grids on mobile */
  .two-col-grid { grid-template-columns: 1fr; gap: 40px; }
  .four-col-grid { grid-template-columns: 1fr 1fr; }
  [style*="grid-template-columns: 1fr 1fr"] { grid-template-columns: 1fr !important; }
  [style*="grid-template-columns:1fr 1fr"] { grid-template-columns: 1fr !important; }
  /* Footer wrap */
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; gap: 12px 20px; }
}
@media (max-width: 800px) {
  .nav-logo img { height: 85px; }
  section { padding: 70px 20px; }
  .cards-grid { grid-template-columns: 1fr !important; }
  .process-steps { grid-template-columns: 1fr !important; }
  .hero { padding: 100px 20px 60px; }
  .page-hero { padding: 110px 20px 60px; }
  .highlight-box { padding: 32px 22px; }
  .stat-row { grid-template-columns: 1fr 1fr !important; gap: 12px; }
  .footer-links { gap: 10px 16px; }
  .footer-links a { font-size: 0.78rem; }
  .section-title { font-size: 1.5rem; }
  .check-list li { font-size: 0.88rem; }
  .img-card-row { grid-template-columns: 1fr !important; }
  .two-col-grid { grid-template-columns: 1fr !important; }
  .four-col-grid { grid-template-columns: 1fr 1fr !important; }
  .hl-cols { grid-template-columns: 1fr !important; }
  .ref-grid { grid-template-columns: 1fr !important; }
  .contact-grid { grid-template-columns: 1fr !important; }
  .numbered-section { grid-template-columns: 1fr !important; }
  .sc-grid { grid-template-columns: 1fr !important; }
  [style*="grid-template-columns"] { grid-template-columns: 1fr !important; }
}
