/* ============================================================
   ADVANCE ESTIMATING — Main Stylesheet
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  --orange: #f0643a;
  --orange-dark: #d9562e;
  --orange-light: #fff1ec;
  --dark: #1a1a2e;
  --dark-alt: #2d2d44;
  --gray: #6b7280;
  --gray-light: #f9fafb;
  --white: #ffffff;
  --border: #e5e7eb;
  --font: "Assistant", sans-serif;
  --radius: 8px;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.7;
  color: #374151;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad {
  padding: 80px 0;
}
.section-pad-sm {
  padding: 60px 0;
}

/* ---------- Typography ---------- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.25;
  color: var(--dark);
}
h1 {
  font-size: clamp(2rem, 4vw, 3.25rem);
}
h2 {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
}
h3 {
  font-size: 1.25rem;
}
p {
  color: var(--gray);
}

.section-label {
  display: inline-block;
  background: var(--orange-light);
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-title {
  margin-bottom: 16px;
}
.section-desc {
  max-width: 620px;
  margin: 0 auto 48px;
  font-size: 1.05rem;
}
.text-center {
  text-align: center;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 700;
  transition: all 0.25s ease;
  line-height: 1;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(240, 100, 58, 0.4);
}

.btn-outline {
  border: 2px solid var(--white);
  color: var(--white);
  background: transparent;
}
.btn-outline:hover {
  background: var(--white);
  color: var(--orange);
}

.btn-dark {
  background: var(--dark);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--dark-alt);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 18px 42px;
  font-size: 1.1rem;
}

/* ---------- Header ---------- */
#site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 32px;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.site-logo .logo-icon {
  width: 42px;
  height: 42px;
  background: var(--orange);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}
.site-logo .logo-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--white);
}
.site-logo .logo-text {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
}
.site-logo .logo-text span {
  color: var(--orange);
}

/* Main Nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
  border-radius: 6px;
  transition:
    color 0.2s,
    background 0.2s;
  white-space: nowrap;
}
.nav-link:hover {
  color: var(--orange);
  background: var(--orange-light);
}
.nav-link .chevron {
  width: 14px;
  height: 14px;
  transition: transform 0.2s;
}
.nav-item:hover .chevron {
  transform: rotate(180deg);
}

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.2s ease;
  z-index: 100;
}
.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-wide {
  min-width: 640px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  padding: 16px;
}
.dropdown-sm {
  padding: 8px;
}

.dropdown-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
  transition:
    background 0.2s,
    color 0.2s;
}
.dropdown-link:hover {
  background: var(--orange-light);
  color: var(--orange);
}
.dropdown-link .icon {
  font-size: 1.1rem;
}

/* Header CTA */
.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ---------- Hero ---------- */
#hero {
  background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 40%, #16213e 100%);
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

#hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-inner {
  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(240, 100, 58, 0.15);
  border: 1px solid rgba(240, 100, 58, 0.3);
  color: #ffb89a;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-title {
  color: var(--white);
  margin-bottom: 20px;
}
.hero-title span {
  color: var(--orange);
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.15rem;
  margin-bottom: 36px;
  max-width: 480px;
}

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

.hero-stats {
  display: flex;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.stat-item {
  text-align: center;
}
.stat-number {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 4px;
}

.hero-visual {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 32px;
  backdrop-filter: blur(10px);
}

.hero-card {
  background: var(--white);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow);
}
.hero-card:last-child {
  margin-bottom: 0;
}
.hero-card .card-icon {
  width: 48px;
  height: 48px;
  background: var(--orange-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.hero-card .card-content h4 {
  font-size: 0.95rem;
  color: var(--dark);
  margin-bottom: 2px;
}
.hero-card .card-content p {
  font-size: 0.82rem;
  color: var(--gray);
  margin: 0;
}
.hero-card .card-badge {
  margin-left: auto;
  background: #ecfdf5;
  color: #059669;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  flex-shrink: 0;
}

/* ---------- Trusted By / Logo Bar ---------- */
#trust-bar {
  background: var(--gray-light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.trust-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}
.trust-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.trust-logos {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.trust-logo {
  font-size: 0.9rem;
  font-weight: 700;
  color: #9ca3af;
  opacity: 0.7;
  letter-spacing: 0.5px;
}

/* ---------- Services Grid ---------- */
#services {
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
  transition: all 0.25s ease;
  cursor: pointer;
}
.service-card:hover {
  border-color: var(--orange);
  box-shadow: 0 8px 24px rgba(240, 100, 58, 0.12);
  transform: translateY(-4px);
}
.service-card .service-icon {
  font-size: 2.4rem;
  margin-bottom: 12px;
  display: block;
}
.service-card h3 {
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: 6px;
}
.service-card p {
  font-size: 0.85rem;
  margin: 0;
}

/* ---------- Why Choose Us ---------- */
#why-us {
  background: var(--gray-light);
}

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

.why-content {
}
.why-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 36px;
}

.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--orange);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  color: var(--white);
}
.feature-text h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}
.feature-text p {
  font-size: 0.9rem;
  margin: 0;
}

.why-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.stat-card {
  background: var(--white);
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.stat-card .big-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-card p {
  font-size: 0.85rem;
  margin: 0;
}
.stat-card.featured {
  grid-column: span 2;
  background: var(--orange);
}
.stat-card.featured .big-num {
  color: var(--white);
}
.stat-card.featured p {
  color: rgba(255, 255, 255, 0.8);
}

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

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}

.steps-grid::before {
  content: "";
  position: absolute;
  top: 40px;
  left: calc(16.67% + 20px);
  right: calc(16.67% + 20px);
  height: 2px;
  background: linear-gradient(to right, var(--orange), var(--orange));
  background-size: calc(100% - 0px) 2px;
  background-repeat: no-repeat;
  z-index: 0;
}

.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 80px;
  height: 80px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 auto 24px;
  border: 4px solid var(--white);
  box-shadow:
    0 0 0 4px var(--orange),
    0 8px 24px rgba(240, 100, 58, 0.3);
}
.step-card h3 {
  margin-bottom: 10px;
}
.step-card p {
  font-size: 0.95rem;
}

/* ---------- Pricing ---------- */
#pricing {
  background: var(--gray-light);
}

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

.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 32px;
  position: relative;
  transition: box-shadow 0.25s ease;
}
.pricing-card:hover {
  box-shadow: var(--shadow-lg);
}
.pricing-card.featured {
  border-color: var(--orange);
  box-shadow:
    0 0 0 2px var(--orange),
    var(--shadow-lg);
  transform: scale(1.03);
}
.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 50px;
  white-space: nowrap;
}

.pricing-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.pricing-price {
  margin-bottom: 8px;
}
.pricing-price .amount {
  font-size: 3rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
}
.pricing-price .currency {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  vertical-align: top;
  line-height: 2;
}
.pricing-price .period {
  font-size: 0.9rem;
  color: var(--gray);
}
.pricing-desc {
  font-size: 0.9rem;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.pricing-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--dark);
  font-weight: 500;
}
.pricing-feature .check {
  color: var(--orange);
  font-weight: 700;
  flex-shrink: 0;
}
.pricing-feature .cross {
  color: #d1d5db;
  flex-shrink: 0;
}

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

.reviews-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
}
.google-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--gray-light);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 10px 20px;
}
.google-badge .stars {
  color: #fbbf24;
  font-size: 1.1rem;
}
.google-badge .rating {
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--dark);
}
.google-badge .count {
  font-size: 0.85rem;
  color: var(--gray);
}

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

.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  transition: box-shadow 0.25s ease;
}
.review-card:hover {
  box-shadow: var(--shadow);
}
.review-stars {
  color: #fbbf24;
  font-size: 1rem;
  margin-bottom: 14px;
}
.review-text {
  font-size: 0.92rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}
.reviewer-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
  flex-shrink: 0;
}
.reviewer-name {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--dark);
}
.reviewer-title {
  font-size: 0.8rem;
  color: var(--gray);
}

/* ---------- FAQ ---------- */
#faq {
  background: var(--gray-light);
}

.faq-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
}

.faq-sidebar {
}
.faq-sidebar h2 {
  margin-bottom: 16px;
}
.faq-sidebar p {
  font-size: 0.95rem;
  margin-bottom: 28px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.active {
  border-color: var(--orange);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--dark);
  gap: 12px;
  user-select: none;
}
.faq-question .faq-icon {
  width: 24px;
  height: 24px;
  background: var(--orange-light);
  color: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
  transition: all 0.2s;
}
.faq-item.active .faq-icon {
  background: var(--orange);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 20px 18px;
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.7;
}
.faq-item.active .faq-answer {
  display: block;
}

/* ---------- CTA Banner ---------- */
#cta-banner {
  background: linear-gradient(135deg, var(--orange) 0%, #e84e20 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
#cta-banner::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  top: -150px;
  right: -100px;
}
#cta-banner::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  bottom: -120px;
  left: -80px;
}
.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.cta-inner h2 {
  color: var(--white);
  margin-bottom: 16px;
}
.cta-inner p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  margin-bottom: 36px;
}
.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Footer ---------- */
#site-footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.7);
}
.footer-top {
  padding: 64px 0 48px;
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-logo .logo-icon {
  width: 38px;
  height: 38px;
  background: var(--orange);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-logo .logo-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--white);
}
.footer-logo .logo-text {
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
}
.footer-logo .logo-text span {
  color: var(--orange);
}
.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 10px;
}
.social-link {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: background 0.2s;
}
.social-link:hover {
  background: var(--orange);
  color: var(--white);
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 20px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-link {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s;
}
.footer-link:hover {
  color: var(--orange);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.88rem;
}
.footer-contact-item .ci-icon {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--orange);
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 0.85rem;
}
.footer-legal {
  display: flex;
  gap: 20px;
}
.footer-legal a {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.2s;
}
.footer-legal a:hover {
  color: var(--white);
}

/* ---------- Mobile Nav Overlay ---------- */
#mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 999;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  padding: 80px 24px 40px;
}
#mobile-nav.open {
  transform: translateX(0);
}
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-nav-link {
  display: block;
  padding: 14px 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
  border-bottom: 1px solid var(--border);
}
.mobile-subnav {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 8px 0 8px 16px;
}
.mobile-subnav a {
  display: block;
  padding: 8px 0;
  font-size: 0.95rem;
  color: var(--gray);
}
#mobile-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

/* ---------- Page Templates ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-alt) 100%);
  padding: 80px 0;
  text-align: center;
}
.page-hero h1 {
  color: var(--white);
  margin-bottom: 16px;
}
.page-hero p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 0.85rem;
}
.breadcrumb a {
  color: var(--orange);
}
.breadcrumb span {
  color: rgba(255, 255, 255, 0.4);
}

.page-content {
  padding: 80px 0;
}

/* Contact Form */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

.contact-info h3 {
  margin-bottom: 24px;
}
.contact-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-item-icon {
  width: 48px;
  height: 48px;
  background: var(--orange-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-item-text h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}
.contact-item-text p {
  font-size: 0.9rem;
  margin: 0;
}

.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
  box-shadow: var(--shadow);
}
.form-title {
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: var(--font);
  color: var(--dark);
  background: var(--white);
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(240, 100, 58, 0.12);
}
.form-group textarea {
  min-height: 130px;
  resize: vertical;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .hero-inner {
    gap: 40px;
  }
  .why-grid {
    gap: 40px;
  }
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    display: none;
  }
  .hero-stats {
    justify-content: flex-start;
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .steps-grid::before {
    display: none;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .pricing-card.featured {
    transform: none;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .faq-inner {
    grid-template-columns: 1fr;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .why-visual {
    order: -1;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .main-nav,
  .header-cta .btn-primary {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .section-pad {
    padding: 60px 0;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .footer-top {
    grid-template-columns: 1fr;
  }
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-stats {
    flex-wrap: wrap;
    gap: 20px;
  }
  .why-visual {
    grid-template-columns: 1fr;
  }
  .stat-card.featured {
    grid-column: span 1;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}
