:root {
  --bg: #0a0b0c;
  --bg-2: #111418;
  --surface: rgba(18, 22, 27, 0.92);
  --surface-2: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.12);
  --text: #f6f8f9;
  --muted: #b9c3cc;
  --accent: #2fbf71;
  --accent-2: #9be6b5;
  --shadow: rgba(0, 0, 0, 0.45);
  --max-width: 1140px;
  --radius-lg: 24px;
  --radius-md: 16px;
}

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

body {
  font-family: "Sora", system-ui, sans-serif;
  background: radial-gradient(circle at top, #1a1e22 0%, #0d1013 55%, #07090b 100%);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

.bg-noise {
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='0.07'/%3E%3C/svg%3E");
  pointer-events: none;
  mix-blend-mode: screen;
  z-index: 0;
}

img {
  max-width: 100%;
}

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

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

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(10px);
  background: rgba(8, 12, 18, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 600;
}

.logo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 0.95;
  font-family: 'Anton', 'Arial Black', sans-serif;
}

.logo-text .correct {
  display: block;
  font-size: 2.15em;
  font-weight: 400;
  color: #228B22;
}

.logo-text .sub {
  display: block;
  font-size: 1.6em;
  font-weight: 400;
  color: #ffffff;
}

.site-nav {
  display: flex;
  gap: 28px;
  font-size: 0.95rem;
  color: var(--muted);
}

.site-nav a {
  transition: color 0.2s ease;
}

.site-nav a:hover {
  color: var(--text);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px;
  gap: 6px;
  flex-direction: column;
  cursor: pointer;
}

.nav-toggle .bar {
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
}

/* HERO */
.hero {
  position: relative;
  padding: 80px 0 64px;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 32px;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  color: var(--accent-2);
  margin-bottom: 16px;
}

.hero h1 {
  font-size: clamp(2.6rem, 4vw, 4rem);
  line-height: 1.05;
  margin-bottom: 20px;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 24px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
}

.btn {
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
}

.btn.primary {
  background: linear-gradient(135deg, var(--accent), #68e39b);
  color: #0a0b0c;
  box-shadow: 0 12px 30px rgba(47, 191, 113, 0.25);
}

.btn.secondary {
  background: var(--surface-2);
  border-color: var(--border);
}

.btn.ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}

.btn:hover {
  transform: translateY(-2px);
}

.hero-meta {
  display: flex;
  gap: 24px;
  color: var(--muted);
  font-size: 0.9rem;
}

.meta-title {
  text-transform: uppercase;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  margin-bottom: 6px;
  color: #7f8ba0;
}

.meta-value {
  font-weight: 600;
  color: var(--text);
}

.hero-card {
  background: linear-gradient(160deg, rgba(26, 32, 40, 0.9), rgba(7, 9, 11, 0.95));
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: 0 20px 50px var(--shadow);
  overflow: hidden;
  padding: 20px;
}

.hero-card-inner {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card-badge {
  display: inline-flex;
  width: fit-content;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  border: 1px solid rgba(47, 191, 113, 0.4);
  border-radius: 999px;
  padding: 4px 12px;
}

.hero-card h2 {
  font-size: 1.5rem;
  line-height: 1.2;
}

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

.hero-list {
  list-style: none;
  display: grid;
  gap: 8px;
  padding: 0;
}

.hero-list li {
  color: var(--muted);
  font-size: 0.9rem;
  padding-left: 16px;
  position: relative;
}

.hero-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* TRUST BAR */
.trust-bar {
  padding: 0 0 36px;
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
  position: relative;
  z-index: 1;
}

/* SECTIONS */
.section {
  padding: 80px 0;
  position: relative;
  z-index: 1;
}

.section.alt {
  background: linear-gradient(180deg, rgba(16, 20, 26, 0.95), rgba(8, 10, 12, 0.98));
}

.section-head {
  margin-bottom: 40px;
  max-width: 640px;
}

.section-head h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin-bottom: 12px;
}

.section-head p {
  color: var(--muted);
}

/* FEATURES GRID */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.feature {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  min-height: 180px;
  box-shadow: 0 16px 40px var(--shadow);
}

.feature-icon {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 12px;
}

.feature h3 {
  margin-bottom: 10px;
}

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

/* STEPS */
.steps {
  display: grid;
  gap: 20px;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid var(--border);
  align-items: start;
}

.step-number {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
  font-family: 'Anton', sans-serif;
  line-height: 1;
  padding-top: 3px;
}

.step h3 {
  margin-bottom: 6px;
}

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

/* FAQs */
.faqs {
  display: grid;
  gap: 12px;
  max-width: 800px;
}

.faq {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  cursor: pointer;
}

.faq summary {
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

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

.faq summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--accent);
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.2s ease;
}

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

.faq p {
  color: var(--muted);
  margin-top: 14px;
  font-size: 0.95rem;
  line-height: 1.65;
}

/* GALLERY */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}

.gallery-placeholder {
  aspect-ratio: 4/3;
  background: var(--surface);
  border: 1px dashed var(--border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7f8ba0;
  font-size: 0.85rem;
}

.gallery-note {
  color: var(--muted);
  font-size: 0.9rem;
}

.gallery-note a {
  color: var(--accent-2);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  align-items: start;
}

.contact-cards {
  margin-top: 24px;
  display: grid;
  gap: 12px;
}

.contact-card {
  padding: 16px 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--surface);
}

.contact-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #7f8ba0;
  margin-bottom: 6px;
}

.person-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-card a {
  color: var(--text);
  transition: color 0.2s ease;
}

.contact-card a:hover {
  color: var(--accent-2);
}

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

.contact-form {
  display: grid;
  gap: 16px;
  min-width: 0;
  background: var(--surface);
  padding: 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

label {
  display: grid;
  gap: 8px;
  font-size: 0.9rem;
  min-width: 0;
}

input,
textarea {
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(7, 10, 14, 0.7);
  color: var(--text);
  padding: 12px 14px;
  font-family: inherit;
  font-size: 1rem;
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(47, 191, 113, 0.4);
}

.form-note {
  font-size: 0.85rem;
  color: var(--muted);
}

/* FOOTER */
.site-footer {
  padding: 40px 0 24px;
  background: #0b1016;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  z-index: 1;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--text);
}

.footer-social .social-links a {
  transition: color 0.2s ease;
}

.footer-social .social-links a:hover {
  color: var(--text);
}

.footer-brand {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}

.footer-bottom {
  margin-top: 24px;
  color: #6f7a8c;
  font-size: 0.85rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* HERO IMAGE */
.hero-img {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  margin: 0 0 16px;
}

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

.hero-card-footer {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

.sub-headline {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--accent-2);
  margin-bottom: 12px;
  margin-top: -10px;
}

/* WHO WE ARE */
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 48px;
  align-items: start;
}

.about-grid .section-head {
  max-width: 100%;
  margin-bottom: 0;
}

.about-grid .section-head p {
  margin-bottom: 12px;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
}

.stat-number {
  font-family: 'Anton', sans-serif;
  font-size: 2.2rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* WHY CHOOSE US */
.grid-2-wide {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.feature-lg {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: 0 16px 40px var(--shadow);
}

.feature-lg h3 {
  margin-bottom: 12px;
  font-size: 1.1rem;
  color: var(--accent-2);
}

.feature-lg p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* INSTALLATION LAYOUT */
.install-layout {
  display: grid;
  grid-template-columns: 1fr minmax(0, 360px);
  gap: 40px;
  align-items: start;
}

.install-aside {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 80px;
}

.install-aside img {
  width: 100%;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  display: block;
}

/* PHOTO GRID */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 20px;
}

.photo-grid-sm {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.photo-item {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--surface);
  margin: 0;
}

.photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.photo-item:hover img {
  transform: scale(1.06);
}

.bad-install-cta {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 32px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.bad-install-cta p {
  color: var(--muted);
  flex: 1;
}

/* CAROUSEL */
.carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.carousel-viewport {
  flex: 1;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 12px;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.carousel-slide {
  flex: 0 0 calc((100% - 24px) / 3);
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--surface);
  margin: 0;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.carousel-slide:hover img {
  transform: scale(1.05);
}

.carousel-btn {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 2rem;
  color: var(--text);
  flex-shrink: 0;
  line-height: 1;
  padding: 0 0 2px;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.carousel-btn:hover:not(:disabled) {
  background: rgba(47, 191, 113, 0.15);
  border-color: rgba(47, 191, 113, 0.5);
  color: var(--accent-2);
}

.carousel-btn:disabled {
  opacity: 0.25;
  cursor: default;
}

/* Content carousels (cards/steps — not images) */
.carousel-content .carousel-slide {
  flex: 0 0 calc((100% - 12px) / 2);
  aspect-ratio: auto;
  overflow: visible;
  height: auto;
}

@media (max-width: 700px) {
  .carousel.carousel-content .carousel-slide {
    flex: 0 0 100%;
  }
}

/* TEAM GRID */
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-bottom: 16px;
}

.team-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

/* team card has no image, padding handles the feel */

.team-card-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px;
}

.team-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 0;
}

.btn-call {
  flex-shrink: 0;
  background: rgba(47, 191, 113, 0.12);
  border: 1px solid rgba(47, 191, 113, 0.35);
  border-radius: 999px;
  color: var(--accent-2);
  font-size: 0.82rem;
  font-weight: 600;
  font-family: inherit;
  padding: 11px 16px;
  white-space: nowrap;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.btn-call:hover {
  background: rgba(47, 191, 113, 0.25);
  border-color: rgba(47, 191, 113, 0.65);
}

.team-card {
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.team-card:hover {
  border-color: rgba(47, 191, 113, 0.4);
}

.team-card.selected {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(47, 191, 113, 0.25);
}

.team-card-details {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.25s ease, margin-top 0.3s ease;
  margin-top: 0;
  font-size: 0.82rem;
  color: var(--muted);
}

.team-card.selected .team-card-details {
  max-height: 160px;
  opacity: 1;
  margin-top: 8px;
}

.card-cta {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 600;
}

.card-cta::after {
  content: " →";
}

@media (max-width: 960px) {
  .card-cta::after {
    content: " ↓";
  }
}

.card-detail-email {
  color: var(--accent-2);
  overflow-wrap: break-word;
  word-break: break-all;
}

.card-detail-phone {
  color: var(--muted);
}

.btn-call {
  align-self: center;
}

.team-hint {
  font-size: 0.85rem;
  color: #7f8ba0;
  margin-bottom: 16px;
}

#recipient-email {
  font-size: 0.85rem;
  color: var(--muted);
  overflow-wrap: break-word;
  min-width: 0;
}

#recipient-phone {
  font-size: 0.85rem;
  color: var(--muted);
}

.team-email {
  font-size: 0.75rem;
  color: #7f8ba0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.4;
}

.team-info h3 {
  font-size: 1rem;
  margin: 0;
}

.team-info a {
  color: var(--muted);
  font-size: 0.88rem;
  transition: color 0.2s ease;
}

.team-info a:hover {
  color: var(--accent-2);
}

.form-recipient {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: rgba(47, 191, 113, 0.1);
  border: 1px solid rgba(47, 191, 113, 0.35);
  border-radius: 10px;
  padding: 10px 14px;
}

.recipient-top {
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-recipient .contact-label {
  margin: 0;
  flex-shrink: 0;
}

#recipient-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--accent-2);
  flex: 1;
  min-width: 0;
}

#clear-recipient {
  flex-shrink: 0;
  background: transparent;
  border: none;
  color: #e05555;
  cursor: pointer;
  font-size: 0.85rem;
  padding: 2px 4px;
  line-height: 1;
}

#clear-recipient:hover {
  color: #ff7070;
}


/* TEAM CAROUSEL WRAPPER */
.team-carousel-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
}

.team-viewport {
  flex: 1;
  overflow: hidden;
}

.team-nav-btn {
  display: none; /* desktop: hidden, mobile: shown via media query */
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 2rem;
  color: var(--text);
  flex-shrink: 0;
  line-height: 1;
  padding: 0 0 2px;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.team-nav-btn:hover:not(:disabled) {
  background: rgba(47, 191, 113, 0.15);
  border-color: rgba(47, 191, 113, 0.5);
  color: var(--accent-2);
}

.team-nav-btn:disabled {
  opacity: 0.25;
  cursor: default;
}

/* FLOATING CONTACT BUTTON */
.fab-contact {
  display: none;
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: linear-gradient(135deg, var(--accent), #68e39b);
  color: #0a0b0c;
  font-weight: 700;
  font-size: 0.9rem;
  font-family: inherit;
  border-radius: 999px;
  padding: 14px 22px;
  box-shadow: 0 4px 24px rgba(47, 191, 113, 0.45);
  z-index: 50;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.4s ease;
}

.fab-contact:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(47, 191, 113, 0.55);
}

.fab-contact.fab-hidden {
  opacity: 0;
  pointer-events: none;
}

/* CONTACT BOTTOM */
.contact-bottom {
  display: grid;
  grid-template-columns: minmax(0, 0.6fr) minmax(0, 1fr);
  gap: 40px;
  align-items: start;
}


.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}

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

.testimonial {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}

.testimonial p {
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.7;
  font-style: italic;
}

.testimonial footer {
  font-size: 0.82rem;
  color: #7f8ba0;
}

.testimonial cite {
  font-style: normal;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .photo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .install-layout {
    grid-template-columns: 1fr;
  }

  .install-aside {
    position: static;
  }
}

@media (max-width: 960px) {
  .carousel-slide {
    flex: 0 0 calc((100% - 12px) / 2);
  }
}

@media (max-width: 600px) {
  .carousel-slide {
    flex: 0 0 100%;
  }
}

@media (max-width: 960px) {
  .logo-text .correct {
    font-size: 1.6em;
  }

  .logo-text .sub {
    font-size: 1.2em;
  }

  .hero-grid,
  .about-grid,
  .grid-2-wide,
  .contact-bottom {
    grid-template-columns: 1fr;
  }

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

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

  .hero-meta {
    flex-direction: column;
    gap: 12px;
  }

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

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

  .bad-install-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav {
    position: absolute;
    top: 60px;
    right: 24px;
    background: rgba(10, 14, 19, 0.98);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 16px;
    flex-direction: column;
    gap: 12px;
    display: none;
  }

  .site-nav.open {
    display: flex;
  }

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

  .footer-inner {
    flex-direction: column;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}

@media (max-width: 600px) {
  .photo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  /* Team carousel on mobile */
  .team-nav-btn {
    display: flex;
  }

  .card-detail-email,
  .card-detail-phone {
    display: none;
  }

  .team-grid {
    display: flex;
    gap: 0;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .team-grid .team-card {
    flex-shrink: 0;
    grid-column: auto !important;
    /* width set by JS */
  }

  /* FAB */
  .fab-contact {
    display: flex;
  }

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

}
