/* ============================================
   TERRAFORMA – MAIN STYLES
   ============================================ */

/* ---------- Autofill Fix ---------- */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
select:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px var(--white) inset !important;
  -webkit-text-fill-color: var(--black) !important;
  transition: background-color 5000s ease-in-out 0s;
}

/* ---------- Local Fonts ---------- */
@font-face { font-family: 'Inter'; src: url('../fonts/Inter-Light.woff2') format('woff2'); font-weight: 300; font-style: normal; font-display: swap; }
@font-face { font-family: 'Inter'; src: url('../fonts/Inter-Regular.woff2') format('woff2'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Inter'; src: url('../fonts/Inter-Medium.woff2') format('woff2'); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: 'Inter'; src: url('../fonts/Inter-SemiBold.woff2') format('woff2'); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: 'Inter'; src: url('../fonts/Inter-Bold.woff2') format('woff2'); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: 'Inter'; src: url('../fonts/Inter-ExtraBold.woff2') format('woff2'); font-weight: 800; font-style: normal; font-display: swap; }

/* ---------- CSS Variables ---------- */
:root {
  --black:       #0a0a0a;
  --gray-900:    #1d1d1f;
  --gray-700:    #424245;
  --gray-500:    #6e6e73;
  --gray-300:    #d2d2d7;
  --gray-200:    #e5e5ea;
  --gray-100:    #f5f5f7;
  --gray-50:     #fbfbfd;
  --white:       #ffffff;

  --accent:      #2E5E3E;
  --accent-light:#e3efe8;
  --accent-dark: #1f4229;

  --font:        'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --radius-sm:   8px;
  --radius:      14px;
  --radius-lg:   20px;
  --radius-xl:   28px;
  --radius-pill: 100px;

  --shadow-sm:   0 2px 8px rgba(0,0,0,0.06);
  --shadow:      0 8px 30px rgba(0,0,0,0.10);
  --shadow-lg:   0 24px 64px rgba(0,0,0,0.14);
  --shadow-xl:   0 40px 100px rgba(0,0,0,0.18);

  --ease:        cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition:  0.4s var(--ease);

  --nav-h:       80px;
  --container:   1200px;
  --section-gap: 120px;
}

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

:focus:not(:focus-visible) { outline: none; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

button {
  font-family: var(--font);
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

address {
  font-style: normal;
}

/* ---------- Loading Screen ---------- */
#loading-screen {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s var(--ease), visibility 0.6s var(--ease);
}

#loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loading-inner {
  text-align: center;
}

.loading-logo {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -1.5px;
  margin-bottom: 32px;
  animation: loadPulse 1.2s ease infinite alternate;
}

@keyframes loadPulse {
  from { opacity: 0.6; }
  to   { opacity: 1; }
}

.loading-bar-track {
  width: 200px;
  height: 2px;
  background: rgba(255,255,255,0.15);
  border-radius: 2px;
  overflow: hidden;
}

.loading-bar-fill {
  height: 100%;
  background: var(--white);
  border-radius: 2px;
  width: 0;
  animation: loadBar 1.5s var(--ease) forwards;
}

@keyframes loadBar {
  0%   { width: 0; }
  60%  { width: 75%; }
  100% { width: 100%; }
}

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Buttons ---------- */
.btn-primary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.2px;
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--black);
  color: var(--white);
  border: 2px solid var(--black);
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
  z-index: 0;
}

.btn-primary span,
.btn-primary svg {
  position: relative;
  z-index: 1;
}

.btn-primary:hover::before {
  transform: scaleX(1);
}

.btn-primary:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(46,94,62,0.25);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-ghost {
  background: transparent;
  color: var(--black);
  border: 2px solid rgba(0,0,0,0.2);
}

.btn-ghost:hover {
  border-color: var(--black);
  background: rgba(0,0,0,0.04);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 17px 36px;
  font-size: 16px;
}

.btn-white {
  background: var(--white) !important;
  color: var(--black) !important;
  border-color: var(--white) !important;
}

.btn-white::before {
  background: var(--gray-100) !important;
}

.btn-white:hover {
  box-shadow: 0 12px 32px rgba(0,0,0,0.2) !important;
}

.btn-ghost-white {
  color: var(--white) !important;
  border-color: rgba(255,255,255,0.4) !important;
}

.btn-ghost-white:hover {
  border-color: var(--white) !important;
  background: rgba(255,255,255,0.08) !important;
}

/* ---------- Section Shared ---------- */
section {
  padding: var(--section-gap) 0;
}

.section-header {
  text-align: center;
  margin-bottom: 72px;
}

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

h1, h2, h3, h4 {
  letter-spacing: -0.03em;
  line-height: 1.1;
}

h2 {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700;
  color: var(--black);
}

h3 {
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 600;
}

/* ---------- Navigation ---------- */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  z-index: 1000;
  overflow: hidden;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

#navbar.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
}

.nav-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.92);
  transition: color 0.3s;
}

#navbar.scrolled .nav-logo {
  color: var(--black);
}

body.inner-page .nav-logo {
  color: var(--black);
}

.nav-links {
  display: flex;
  gap: 32px;
  flex: 1;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transition: transform 0.3s var(--ease);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

#navbar.scrolled .nav-links a {
  color: var(--gray-700);
}

#navbar.scrolled .nav-links a:hover {
  color: var(--black);
}

.nav-cta {
  font-size: 13.5px;
  font-weight: 600;
  padding: 9px 20px;
  background: var(--white);
  color: var(--black) !important;
  border-radius: var(--radius-pill);
  transition: var(--transition);
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.nav-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
  z-index: 0;
  border-radius: var(--radius-pill);
}

.nav-cta span {
  position: relative;
  z-index: 1;
}

.nav-cta:hover::before {
  transform: scaleX(1);
}

.nav-cta:hover {
  color: var(--white) !important;
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

#navbar.scrolled .nav-cta {
  background: var(--black);
  color: var(--white) !important;
}

#navbar.scrolled .nav-cta::before {
  background: var(--accent);
}

#navbar.scrolled .nav-cta:hover {
  color: var(--white) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

#navbar.scrolled .hamburger span {
  background: var(--black);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  z-index: 999;
  padding: 20px 24px 32px;
  border-bottom: 1px solid var(--gray-200);
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.4s var(--ease), opacity 0.4s var(--ease);
  pointer-events: none;
}

.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-menu a {
  display: block;
  padding: 12px 16px;
  font-size: 16px;
  font-weight: 500;
  color: var(--gray-900);
  border-radius: var(--radius);
  transition: background 0.2s;
}

.mobile-menu a:hover {
  background: var(--gray-100);
}

.mobile-cta {
  background: var(--black) !important;
  color: var(--white) !important;
  text-align: center;
  margin-top: 8px;
}

/* ---------- Hero ---------- */
#hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0;
  background: #1a2218;
}

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

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.45) 0%,
    rgba(0,0,0,0.20) 50%,
    rgba(0,0,0,0.55) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 860px;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(44px, 7vw, 88px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 300;
  color: rgba(255,255,255,0.80);
  letter-spacing: 0.08em;
  margin-bottom: 44px;
}

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

.hero-actions .btn-primary {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.hero-actions .btn-primary::before {
  background: var(--accent);
}

.hero-actions .btn-primary:hover {
  border-color: var(--accent);
  color: var(--white);
  box-shadow: 0 12px 40px rgba(46,94,62,0.35);
}

.hero-actions .btn-primary:hover span,
.hero-actions .btn-primary:hover svg {
  color: var(--white);
}

.hero-actions .btn-ghost {
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}

.hero-actions .btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.6);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: hintBounce 2.4s ease infinite;
}

.scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 7px;
}

.scroll-wheel {
  width: 3px;
  height: 8px;
  background: rgba(255,255,255,0.6);
  border-radius: 2px;
  animation: wheelScroll 2s ease infinite;
}

@keyframes wheelScroll {
  0%   { transform: translateY(0); opacity: 1; }
  60%  { transform: translateY(8px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

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

/* ---------- Stats Strip ---------- */
#stats {
  padding: 56px 0;
  background: var(--black);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 24px 16px;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.stat-item:last-child {
  border-right: none;
}

.stat-num {
  display: inline;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.04em;
  line-height: 1;
}

.stat-suffix {
  font-size: clamp(20px, 2.5vw, 32px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}

.stat-label {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-top: 8px;
  letter-spacing: 0.02em;
}

/* ---------- Services ---------- */
#services {
  background: var(--gray-50);
}

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

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.service-img-wrap {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.service-card:hover .service-img-wrap img {
  transform: scale(1.06);
}

.service-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.3) 0%, transparent 60%);
}

.service-body {
  padding: 28px;
}

.service-num {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 12px;
  display: block;
}

.service-body h3 {
  margin-bottom: 12px;
}

.service-body p {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.65;
  margin-bottom: 20px;
}

.service-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--gray-600);
}

.service-checklist li::before {
  content: '';
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent);
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4L3.5 6.5L9 1' stroke='white' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  transition: gap 0.3s var(--ease), color 0.3s;
}

.service-link:hover {
  gap: 12px;
  color: var(--accent);
}

/* ---------- About ---------- */
#about {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text-col .eyebrow { display: block; }
.about-text-col h2 { margin: 16px 0 24px; }

.about-lead {
  font-size: 17px;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 40px;
}

.usp-list { display: flex; flex-direction: column; gap: 20px; }

.usp-list li { display: flex; align-items: flex-start; gap: 16px; }

.usp-check {
  width: 28px;
  height: 28px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.usp-text { display: flex; flex-direction: column; gap: 4px; }
.usp-text strong { font-size: 15px; font-weight: 600; color: var(--black); }
.usp-text span { font-size: 14px; color: var(--gray-500); }

.about-img-col { position: relative; }

.about-img-col img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.about-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--accent);
  color: var(--white);
  padding: 24px 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.badge-num {
  display: block;
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 6px;
}

.badge-txt {
  display: block;
  font-size: 13px;
  opacity: 0.85;
  white-space: nowrap;
}

/* ---------- Gallery / Slider ---------- */
#gallery {
  background: var(--gray-50);
  overflow: hidden;
}

#gallery .container {
  margin-bottom: 0;
}

.slider-outer {
  position: relative;
  overflow: hidden;
}

.slider-track {
  display: flex;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.slide {
  min-width: 100%;
  position: relative;
  height: clamp(360px, 55vw, 620px);
  overflow: hidden;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.slide-caption {
  position: absolute;
  bottom: 40px;
  left: 60px;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(12px);
  color: var(--white);
  padding: 16px 24px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.1);
}

.slide-caption span {
  display: block;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 4px;
}

.slide-caption p {
  font-size: 13px;
  opacity: 0.7;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 32px 0;
  background: var(--gray-50);
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--gray-300);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-700);
  transition: var(--transition);
  flex-shrink: 0;
}

.slider-btn:hover {
  border-color: var(--black);
  color: var(--black);
  background: var(--black);
  color: var(--white);
  transform: scale(1.08);
}

.slider-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gray-300);
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.slider-dot.active {
  background: var(--black);
  transform: scale(1.3);
}

/* ---------- Process ---------- */
#process {
  background: var(--white);
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
}

.process-step {
  text-align: center;
  padding: 0 16px;
}

.step-num {
  font-size: 40px;
  font-weight: 800;
  color: var(--accent-light);
  letter-spacing: -0.05em;
  margin-bottom: 16px;
  line-height: 1;
  display: block;
}

.process-step h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--black);
}

.process-step p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
}

.process-connector {
  width: 40px;
  height: 2px;
  background: var(--gray-200);
  margin-top: 20px;
  flex-shrink: 0;
  align-self: start;
  transform: none;
}

/* ---------- Testimonials ---------- */
#testimonials {
  background: var(--gray-50);
}

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

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

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

.stars {
  font-size: 18px;
  color: #f5a623;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.testimonial-card blockquote {
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 28px;
  font-style: italic;
}

.t-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.t-avatar {
  width: 44px;
  height: 44px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}

.t-author strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
}

.t-author span {
  font-size: 13px;
  color: var(--gray-500);
}

/* ---------- CTA Banner ---------- */
#cta-banner {
  padding: 0;
  background: var(--black);
}

.cta-inner {
  padding: 100px 24px;
  text-align: center;
}

.cta-inner h2 {
  color: var(--white);
  font-size: clamp(36px, 5vw, 60px);
  margin-bottom: 20px;
}

.cta-inner p {
  font-size: 18px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 44px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

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

/* ---------- Footer ---------- */
#footer {
  background: #2F3A34;
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-logo {
  display: block;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -1px;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin-bottom: 24px;
}

.social-links {
  display: flex;
  gap: 14px;
}

.social-links a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}

.social-links a:hover {
  border-color: var(--white);
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a,
.footer-col address p,
.footer-col address a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: color 0.25s;
}

.footer-col a:hover,
.footer-col address a:hover {
  color: var(--white);
}

.footer-col address p {
  margin-bottom: 8px;
  line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  transition: color 0.25s;
}

.footer-legal a:hover {
  color: rgba(255,255,255,0.7);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  :root {
    --section-gap: 80px;
  }

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

  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-img-col img { height: 400px; }
  .about-badge { bottom: -16px; left: 16px; }

  .process-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .process-connector {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-gap: 60px;
  }

  .about-img-col { display: none; }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-menu {
    display: block;
  }

  #navbar.scrolled .hamburger span {
    background: var(--black);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }

  .stat-item:nth-child(2) {
    border-right: none;
  }

  .stat-item:nth-child(3),
  .stat-item:nth-child(4) {
    border-top: 1px solid rgba(255,255,255,0.08);
  }

  .stat-item:nth-child(4) {
    border-right: none;
  }

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

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: clamp(36px, 10vw, 52px);
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .slide-caption {
    left: 20px;
    bottom: 20px;
  }
}

@media (max-width: 480px) {
  .site-logo { height: 36px; }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .btn-lg {
    width: 100%;
    justify-content: center;
    padding: 16px 24px;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
}

/* ============================================
   (reserved for future additions)
   ============================================ */
/*
.fh-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 82px;
  padding: 0 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.fh-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.fh-logo img {
  width: 58px;
  height: auto;
  display: block;
}

.fh-logo span {
  font-size: 18px;
  font-weight: 600;
  color: #263832;
  letter-spacing: 0.3px;
}

.fh-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.fh-nav a {
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  color: #263832;
  transition: opacity 0.25s ease;
}

.fh-nav a:hover {
  opacity: 0.55;
}

.fh-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding-top: 82px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-image: url('../img/garten1.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.fh-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.58) 0%,
    rgba(0, 0, 0, 0.34) 45%,
    rgba(0, 0, 0, 0.08) 100%
  );
  z-index: 1;
}

.fh-hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin-left: 78px;
  color: #ffffff;
}

.fh-hero-subtitle {
  margin: 0 0 18px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2.6px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}

.fh-hero-content h1 {
  margin: 0;
  font-size: clamp(58px, 8vw, 118px);
  line-height: 0.92;
  font-weight: 800;
  letter-spacing: -4px;
  color: #ffffff;
}

.fh-hero-text {
  margin: 28px 0 0;
  max-width: 560px;
  font-size: 19px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.86);
}

.fh-hero-button {
  display: inline-flex;
  margin-top: 36px;
  padding: 15px 28px;
  border-radius: 999px;
  background: #ffffff;
  color: #263832;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.fh-hero-button:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

@media (max-width: 768px) {
  .fh-header {
    height: 72px;
    padding: 0 22px;
  }

  .fh-nav {
    display: none;
  }

  .fh-logo img {
    width: 46px;
  }

  .fh-logo span {
    font-size: 16px;
  }

  .fh-hero {
    padding-top: 72px;
  }

  .fh-hero-content {
    margin-left: 24px;
    margin-right: 24px;
  }

  .fh-hero-content h1 {
    font-size: 54px;
    letter-spacing: -2px;
  }

  .fh-hero-text {
    font-size: 16px;
  }
}
*/
