/* ========================================
   Milton Contracting – Premium Design System
   ======================================== */

:root {
  --primary: #0f172a;
  --primary-light: #1e293b;
  --accent: #f59e0b;
  --accent-dark: #d97706;
  --accent-glow: rgba(245, 158, 11, 0.25);
  --text-primary: #0f172a;
  --text-light: #ffffff;
  --text-muted: #64748b;
  --bg-light: #f8fafc;
  --bg-dark: #0f172a;
  --section-white: #ffffff;
  --section-light: #f1f5f9;
  --glass-bg: rgba(255, 255, 255, 0.06);
  --glass-border: rgba(255, 255, 255, 0.1);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
  --shadow-glow: 0 0 30px var(--accent-glow);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}

body {
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-primary);
  background: var(--bg-light);
  padding-bottom: 70px;
  -webkit-font-smoothing: antialiased;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulseGlow {
  0%,
  100% {
    box-shadow: 0 0 0 0 var(--accent-glow);
  }
  70% {
    box-shadow: 0 0 0 12px transparent;
  }
}
@keyframes scrollBounce {
  0%,
  100% {
    transform: rotate(45deg) translateY(0);
  }
  50% {
    transform: rotate(45deg) translateY(8px);
  }
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}
@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

/* Contact Popup */
.contact-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
  z-index: 1001;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.contact-popup.active {
  display: flex;
}
.contact-popup-content {
  background: white;
  padding: 32px;
  max-width: 440px;
  width: 100%;
  position: relative;
  border-radius: var(--radius);
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
}
.popup-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--text-muted);
  transition: color 0.2s;
}
.popup-close:hover {
  color: var(--primary);
}
.contact-popup-content h3 {
  color: var(--primary);
  font-size: 22px;
  margin-bottom: 6px;
  font-weight: 700;
}
.contact-popup-content > p {
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: 14px;
}
.popup-form .form-group {
  margin-bottom: 12px;
}
.popup-form label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 4px;
}
.popup-form input,
.popup-form textarea,
.popup-form select {
  width: 100%;
  padding: 11px 14px;
  font-size: 14px;
  border: 1.5px solid #e2e8f0;
  background: #f8fafc;
  font-family: inherit;
  border-radius: var(--radius-xs);
  transition: all 0.3s;
}
.popup-form input:focus,
.popup-form textarea:focus,
.popup-form select:focus {
  outline: none;
  border-color: var(--accent);
  background: white;
  box-shadow: 0 0 0 3px var(--accent-glow);
}

/* Sticky Mobile CTA */
.sticky-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}
.sticky-cta-wrapper {
  display: flex;
}
.sticky-cta-call,
.sticky-cta-book {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 20px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  flex: 1;
}
.sticky-cta-call {
  background: var(--accent);
  color: var(--primary);
}
.sticky-cta-call svg {
  width: 18px;
  height: 18px;
  margin-right: 6px;
}
.sticky-cta-book {
  background: var(--bg-dark);
  color: var(--text-light);
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.92) 0%,
    rgba(15, 23, 42, 0.7) 50%,
    rgba(15, 23, 42, 0.85) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px 24px;
  max-width: 920px;
}
.logo {
  margin-bottom: 28px;
}
.logo-img {
  height: 80px;
  border-radius: var(--radius-sm);
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3));
}

.hero-badges {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.hero-badge {
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: var(--accent);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  backdrop-filter: blur(8px);
}
.hero-badge-divider {
  color: rgba(255, 255, 255, 0.3);
  font-size: 20px;
}

.hero-headline {
  font-size: clamp(34px, 6vw, 58px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-light);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.hero-headline .highlight {
  color: var(--accent);
  display: inline-block;
  position: relative;
}
.hero-subheadline {
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
  line-height: 1.8;
}

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

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--accent);
  color: var(--primary);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: none;
  cursor: pointer;
  border-radius: var(--radius-xs);
  letter-spacing: 0.01em;
}
.cta-button:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.pulse-glow {
  animation: pulseGlow 2s infinite;
}
.cta-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulseGlow 2s infinite;
}

.cta-secondary {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: var(--text-light);
}
.cta-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--text-light);
  box-shadow: none;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  z-index: 2;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}
.scroll-arrow {
  width: 18px;
  height: 18px;
  border-right: 2px solid rgba(255, 255, 255, 0.4);
  border-bottom: 2px solid rgba(255, 255, 255, 0.4);
  transform: rotate(45deg);
  margin-top: 8px;
  animation: scrollBounce 2s infinite;
}

/* ========== SECTION STYLES ========== */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}
.section-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--primary);
  padding: 4px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}
.section-tag-light {
  background: rgba(245, 158, 11, 0.15);
  color: var(--accent);
}
.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.section-subtitle {
  color: var(--text-muted);
  font-size: 17px;
  max-width: 600px;
  margin: 0 auto;
  font-weight: 400;
}

/* ========== STATS ========== */
.stats-section {
  padding: 50px 0;
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-light) 100%
  );
}
.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.stat-item {
  flex: 1;
  padding: 20px;
  text-align: center;
}
.stat-icon-wrap {
  width: 40px;
  height: 40px;
  margin: 0 auto 10px;
  color: var(--accent);
  opacity: 0.6;
}
.stat-icon-wrap svg {
  width: 100%;
  height: 100%;
}
.stat-number {
  display: inline;
  font-size: 42px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.stat-plus {
  font-size: 32px;
  font-weight: 700;
  color: var(--accent);
}
.stat-label {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

/* ========== ABOUT ========== */
.about {
  padding: 100px 0;
  background: var(--section-white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: start;
}
.about-block h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
  position: relative;
  padding-left: 16px;
}
.about-block h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 4px;
  height: 24px;
  background: var(--accent);
  border-radius: 2px;
}
.about-block p {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 15px;
  line-height: 1.8;
}
.about-block strong {
  color: var(--accent-dark);
  font-weight: 600;
}

.about-credentials {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
}
.credential-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px;
  background: var(--section-light);
  border-radius: var(--radius-sm);
  border: 1px solid #e2e8f0;
  transition: all 0.3s;
}
.credential-card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 15px var(--accent-glow);
}
.credential-icon-wrap {
  width: 42px;
  height: 42px;
  min-width: 42px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-radius: var(--radius-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}
.credential-icon-wrap svg {
  width: 22px;
  height: 22px;
}
.credential-card h4 {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 2px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}
.credential-card p {
  font-size: 14px;
  color: var(--primary);
  margin: 0;
  font-weight: 500;
}
.about-cta {
  margin-top: 28px;
}

.about-image-col {
  position: sticky;
  top: 100px;
}
.about-image-wrapper {
  position: relative;
}
.about-image {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
}
.about-image-accent {
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 100%;
  height: 100%;
  border-radius: var(--radius);
  border: 3px solid var(--accent);
  z-index: 0;
}

/* ========== SEO CONTENT ========== */
.seo-content {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--primary) 0%, #1e293b 100%);
}
.seo-content .section-title {
  color: var(--text-light);
}
.seo-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 50px;
}
.seo-text p {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 18px;
  font-size: 15px;
  line-height: 1.8;
}
.seo-text strong {
  color: var(--accent);
}
.seo-cta {
  margin-top: 24px;
}
.seo-list h3 {
  color: var(--accent);
  font-size: 20px;
  margin-bottom: 18px;
  font-weight: 700;
}
.seo-list ul {
  list-style: none;
  background: var(--glass-bg);
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
}
.seo-list li {
  color: rgba(255, 255, 255, 0.7);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.seo-list li:last-child {
  border-bottom: none;
}
.seo-list li::before {
  content: "✓";
  color: var(--accent);
  font-weight: bold;
  width: 20px;
  height: 20px;
  min-width: 20px;
  background: rgba(245, 158, 11, 0.15);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}

/* ========== SERVICES ========== */
.services {
  padding: 100px 0;
  background: var(--section-light);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--section-white);
  padding: 32px;
  border-radius: var(--radius);
  border: 1px solid #e2e8f0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-dark));
  opacity: 0;
  transition: opacity 0.3s;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.service-card:hover::before {
  opacity: 1;
}
.service-icon-wrap {
  width: 56px;
  height: 56px;
  background: linear-gradient(
    135deg,
    rgba(245, 158, 11, 0.12),
    rgba(245, 158, 11, 0.05)
  );
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
  transition: all 0.3s;
}
.service-card:hover .service-icon-wrap {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--primary);
}
.service-icon-wrap svg {
  width: 28px;
  height: 28px;
}
.service-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}
.service-card p {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 16px;
  line-height: 1.7;
}
.service-cta {
  color: var(--accent);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s;
}
.service-cta:hover {
  gap: 10px;
}
.service-cta svg {
  width: 16px;
  height: 16px;
}

/* ========== CTA SECTION ========== */
.cta-section {
  position: relative;
}
.cta-section-inner {
  padding: 100px 0;
  background: linear-gradient(
    135deg,
    #1e293b 0%,
    var(--primary) 50%,
    #1e293b 100%
  );
  text-align: center;
  clip-path: polygon(0 8%, 100% 0, 100% 92%, 0 100%);
}
.cta-section-inner h2 {
  font-size: clamp(28px, 4vw, 40px);
  color: var(--text-light);
  margin-bottom: 16px;
  font-weight: 800;
}
.cta-section-inner p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 32px;
  font-size: 18px;
}
.cta-section-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-call {
  background: var(--accent);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
}
.cta-call svg {
  width: 18px;
  height: 18px;
  margin-right: 8px;
}
.cta-book {
  background: white;
  color: var(--primary);
}
.cta-book:hover {
  background: #f1f5f9;
}

/* ========== LICENSES ========== */
.licenses-section {
  padding: 100px 0;
  background: var(--section-white);
}
.licenses-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
  align-items: start;
}
.licenses-text h3 {
  font-size: 24px;
  color: var(--primary);
  margin-bottom: 16px;
  font-weight: 700;
}
.licenses-text p {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 16px;
  line-height: 1.8;
}
.licenses-cta {
  margin-top: 24px;
}
.licenses-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.license-card {
  background: var(--section-light);
  padding: 26px;
  border-radius: var(--radius);
  border: 1px solid #e2e8f0;
  transition: all 0.3s;
}
.license-card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 15px var(--accent-glow);
}
.license-icon-wrap {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 16px;
}
.license-icon-wrap svg {
  width: 24px;
  height: 24px;
}
.license-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}
.license-card ul {
  list-style: none;
}
.license-card li {
  color: var(--text-muted);
  font-size: 13px;
  padding: 6px 0;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.license-card li:last-child {
  border-bottom: none;
}
.license-card li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ========== WHY CHOOSE US ========== */
.why-choose-us {
  padding: 100px 0;
  background: var(--section-light);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.feature-card {
  text-align: center;
  padding: 32px 20px;
  background: var(--section-white);
  border-radius: var(--radius);
  border: 1px solid #e2e8f0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.feature-icon-wrap {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  background: linear-gradient(
    135deg,
    rgba(245, 158, 11, 0.12),
    rgba(245, 158, 11, 0.05)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  transition: all 0.3s;
}
.feature-card:hover .feature-icon-wrap {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--primary);
  transform: scale(1.1);
}
.feature-icon-wrap svg {
  width: 26px;
  height: 26px;
}
.feature-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}
.feature-card p {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.6;
}
.why-choose-cta {
  text-align: center;
  margin-top: 44px;
}

/* ========== REVIEWS ========== */
.reviews-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--primary) 0%, #1e293b 100%);
}
.reviews-section .section-title {
  color: var(--text-light);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--glass-bg);
  padding: 32px;
  border-radius: var(--radius);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  transition: all 0.3s;
  position: relative;
}
.review-card:hover {
  border-color: rgba(245, 158, 11, 0.3);
  transform: translateY(-4px);
}
.review-quote-icon {
  color: rgba(245, 158, 11, 0.2);
  margin-bottom: 12px;
}
.review-quote-icon svg {
  width: 32px;
  height: 32px;
}
.review-stars {
  color: var(--accent);
  font-size: 18px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.review-text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  font-style: italic;
  margin-bottom: 16px;
  line-height: 1.7;
}
.review-author {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  font-weight: 500;
}

/* ========== FAQs ========== */
.faqs-section {
  padding: 100px 0;
  background: var(--section-white);
}
.faqs-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  margin-bottom: 12px;
  background: var(--section-light);
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid #e2e8f0;
  transition: all 0.3s;
}
.faq-item.active {
  border-color: var(--accent);
  box-shadow: 0 4px 15px var(--accent-glow);
}
.faq-item.active .faq-question {
  color: var(--accent-dark);
}
.faq-question {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: var(--primary);
  text-align: left;
  font-family: inherit;
  transition: color 0.3s;
}
.faq-toggle {
  width: 24px;
  height: 24px;
  color: var(--accent);
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-toggle svg {
  width: 100%;
  height: 100%;
}
.faq-item.active .faq-toggle {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-item.active .faq-answer {
  max-height: 200px;
}
.faq-answer p {
  padding: 0 24px 20px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
}

/* ========== CONTACT ========== */
.contact {
  padding: 100px 0;
  background: var(--section-light);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-icon-wrap {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: linear-gradient(
    135deg,
    rgba(245, 158, 11, 0.12),
    rgba(245, 158, 11, 0.05)
  );
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}
.contact-icon-wrap svg {
  width: 22px;
  height: 22px;
}
.contact-label {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}
.contact-value {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: color 0.2s;
}
.contact-value:hover {
  color: var(--accent);
}
.contact-cta {
  text-align: center;
  margin-top: 8px;
}

.contact-form {
  background: white;
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  border: 1px solid #e2e8f0;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  font-family: inherit;
  font-size: 14px;
  border: 1.5px solid #e2e8f0;
  background: #f8fafc;
  transition: all 0.3s;
  border-radius: var(--radius-xs);
  color: var(--primary);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #94a3b8;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
  background: white;
  box-shadow: 0 0 0 3px var(--accent-glow);
}
.submit-button {
  width: 100%;
  padding: 15px;
  background: var(--primary);
  color: var(--text-light);
  font-weight: 700;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: var(--radius-xs);
  letter-spacing: 0.01em;
}
.submit-button:hover {
  background: var(--accent);
  color: var(--primary);
  transform: translateY(-1px);
  box-shadow: var(--shadow-glow);
}
.form-status {
  margin-top: 12px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
}
.form-status.success {
  color: #22c55e;
}
.form-status.error {
  color: #ef4444;
}

/* ========== FOOTER ========== */
.footer {
  padding: 50px 0 40px;
  background: var(--bg-dark);
}
.footer-content {
  text-align: center;
}
.footer-logo {
  margin-bottom: 14px;
}
.footer-logo img {
  height: 56px;
  border-radius: var(--radius-xs);
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.3));
}
.footer-tagline {
  color: rgba(255, 255, 255, 0.4);
  font-size: 14px;
  margin-bottom: 18px;
  font-weight: 400;
}
.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--accent);
}
.footer-sep {
  color: rgba(255, 255, 255, 0.2);
  font-size: 12px;
}
.footer-links span {
  color: rgba(255, 255, 255, 0.4);
  font-size: 14px;
}
.footer-copyright {
  color: rgba(255, 255, 255, 0.25);
  font-size: 12px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .services-grid,
  .features-grid,
  .licenses-cards,
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-grid {
    flex-wrap: wrap;
  }
  .stat-item {
    flex: 1 1 40%;
  }
  .stat-divider {
    display: none;
  }
  .about-grid,
  .seo-grid,
  .licenses-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .about-image-col {
    display: none;
  }
}
@media (max-width: 768px) {
  .services-grid,
  .features-grid,
  .licenses-cards,
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .sticky-mobile-cta {
    display: block;
  }
  .hero-content {
    padding: 80px 20px;
  }
  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }
  .cta-secondary {
    border-color: var(--accent);
    color: var(--accent);
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  body {
    padding-bottom: 60px;
  }
  .cta-section-inner {
    clip-path: polygon(0 4%, 100% 0, 100% 96%, 0 100%);
    padding: 80px 0;
  }
  .hero-badges {
    flex-direction: column;
    gap: 8px;
  }
  .hero-badge-divider {
    display: none;
  }
  .stat-item {
    flex: 1 1 100%;
  }
  .footer-links {
    flex-direction: column;
    gap: 8px;
  }
  .footer-sep {
    display: none;
  }
}
