:root {
  --cream: #f4efe9;
  --warm-white: #faf8f5;
  --charcoal: #2d2d2d;
  --soft-black: #1a1a1a;
  --gold: #c9a96c;
  --gold-light: #d8be8a;
  --gold-dark: #b8944e;
  --taupe: #9b8b7a;
  --taupe-light: #c4b5a2;
  --sand: #e4d9cd;
  --mist: #efe9e2;
  --cream-dark: #e8ddd0;
  --bg-light: #fcfaf8;
  --shadow: rgba(45,45,45,0.06);
  --shadow-hover: rgba(45,45,45,0.12);
  --radius: 20px;
  --radius-sm: 12px;
  --radius-xs: 8px;
  --transition: 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; font-size: 16px; -webkit-tap-highlight-color: transparent; }

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--bg-light);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

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

.section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  position: relative;
}

.section-tag::before,
.section-tag::after {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin: 0 10px;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.8vw, 2.8rem);
  font-weight: 600;
  color: var(--soft-black);
  line-height: 1.2;
  margin-bottom: 14px;
}

.text-accent { color: var(--gold); }

.section-header p {
  color: #777;
  font-size: 1.02rem;
  line-height: 1.8;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 34px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.2px;
  text-align: center;
  white-space: nowrap;
}

.btn-sm { padding: 10px 22px; font-size: 0.82rem; }
.btn-lg { padding: 18px 40px; font-size: 0.95rem; }

.btn-primary {
  background: var(--gold);
  color: #fff;
}

.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201,169,108,0.35);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.5);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: #fff;
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid var(--sand);
}

.btn-outline-dark:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-full { width: 100%; }

.hidden { display: none !important; }

.animate-fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards;
}

.animate-fade-in:nth-child(1) { animation-delay: 0.1s; }
.animate-fade-in:nth-child(2) { animation-delay: 0.3s; }
.animate-fade-in:nth-child(3) { animation-delay: 0.5s; }
.animate-fade-in:nth-child(4) { animation-delay: 0.7s; }
.animate-fade-in:nth-child(5) { animation-delay: 0.9s; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

#loader {
  position: fixed;
  inset: 0;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.7s, visibility 0.7s;
}

#loader.loaded { opacity: 0; visibility: hidden; pointer-events: none; }

.loader-content { text-align: center; }

.loader-logo {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--soft-black);
  margin-bottom: 6px;
}

.loader-logo span { color: var(--gold); }

.loader-sub {
  font-size: 0.8rem;
  color: var(--taupe);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.loader-bar {
  width: 200px;
  height: 2px;
  background: var(--cream-dark);
  border-radius: 4px;
  overflow: hidden;
  margin: 0 auto;
}

.loader-fill {
  width: 0;
  height: 100%;
  background: var(--gold);
  border-radius: 4px;
  animation: loaderFill 1.6s ease-in-out forwards;
}

@keyframes loaderFill {
  0% { width: 0; }
  50% { width: 65%; }
  100% { width: 100%; }
}

#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 22px 0;
  transition: var(--transition);
}

#navbar.scrolled {
  background: rgba(252,250,248,0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 12px 0;
  box-shadow: 0 2px 40px var(--shadow);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
  transition: var(--transition);
}

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

.logo span { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.3px;
  position: relative;
  padding-bottom: 3px;
}

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

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

#navbar.scrolled .nav-links a:hover,
#navbar.scrolled .nav-links a.active { color: var(--gold); }
.nav-links a:hover,
.nav-links a.active { color: #fff; }

.nav-mobile-cta { display: none; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: var(--gold);
  color: #fff !important;
  border-radius: 2px;
  font-size: 0.82rem;
  font-weight: 600;
  transition: var(--transition);
}

.nav-cta i { font-size: 0.8rem; }

.nav-cta:hover {
  background: var(--gold-dark) !important;
  color: #fff !important;
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

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

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

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?w=1600&q=85') center/cover no-repeat;
  animation: heroZoom 25s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.06); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,26,0.88) 0%, rgba(26,26,26,0.45) 50%, rgba(26,26,26,0.78) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: 120px 0 60px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(201,169,108,0.12);
  border: 1px solid rgba(201,169,108,0.25);
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-bottom: 28px;
  border-radius: 2px;
}

.hero-badge i { font-size: 0.7rem; color: var(--gold); }

.hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.3rem, 5.5vw, 4.2rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  max-width: 560px;
  margin-bottom: 32px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-urgency {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 48px;
}

.hero-urgency i { color: var(--gold); font-size: 0.75rem; }
.hero-urgency strong { color: var(--gold-light); font-weight: 600; }

.hero-stats {
  display: flex;
  gap: 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
}

.stat { text-align: center; }

.stat-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 2px;
}

.stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.3px;
}

#pain-points {
  background: var(--cream);
}

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

.pain-card {
  background: #fff;
  padding: 36px 30px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.03);
  position: relative;
}

.pain-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px var(--shadow-hover);
  border-color: var(--gold);
}

.pain-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--mist);
  border-radius: 10px;
  margin-bottom: 18px;
  font-size: 1.1rem;
  color: var(--gold);
  transition: var(--transition);
}

.pain-card:hover .pain-icon {
  background: var(--gold);
  color: #fff;
}

.pain-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--soft-black);
  margin-bottom: 10px;
}

.pain-card p {
  color: #777;
  font-size: 0.88rem;
  line-height: 1.7;
}

.services-section {
  background: var(--bg-light);
}

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

.service-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.04);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px var(--shadow-hover);
}

.service-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.service-body {
  padding: 28px 26px 30px;
  position: relative;
}

.service-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--mist);
  border-radius: 10px;
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 16px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--gold);
  color: #fff;
}

.service-body h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--soft-black);
  margin-bottom: 10px;
}

.service-body p {
  color: #777;
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.service-cta {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.service-cta i { font-size: 0.7rem; transition: var(--transition); }
.service-cta:hover i { transform: translateX(4px); }
.service-cta:hover { color: var(--gold-dark); }

.services-cta {
  text-align: center;
  margin-top: 48px;
  padding: 36px 40px;
  background: var(--cream);
  border-radius: var(--radius-sm);
}

.services-cta p {
  font-size: 1.02rem;
  color: var(--charcoal);
  margin-bottom: 20px;
}

.why-section {
  background: var(--cream);
}

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

.why-visual {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}

.why-visual img {
  width: 100%;
  border-radius: var(--radius);
}

.why-exp-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-xs);
  box-shadow: 0 8px 30px var(--shadow);
}

.why-exp-num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.why-exp-badge span:last-child {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--charcoal);
  max-width: 100px;
}

.why-content .section-tag {
  display: inline-flex;
  margin-bottom: 12px;
}

.why-content .section-tag::before,
.why-content .section-tag::after { display: none; }

.why-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 600;
  color: var(--soft-black);
  line-height: 1.2;
  margin-bottom: 12px;
}

.why-intro {
  color: #777;
  font-size: 1rem;
  margin-bottom: 32px;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}

.why-item {
  display: flex;
  gap: 16px;
}

.why-check {
  width: 32px;
  height: 32px;
  min-width: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201,169,108,0.12);
  border-radius: 50%;
  color: var(--gold);
  font-size: 0.75rem;
  margin-top: 2px;
}

.why-item h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--soft-black);
  margin-bottom: 4px;
}

.why-item p {
  font-size: 0.85rem;
  color: #777;
  line-height: 1.6;
}

.portfolio-section {
  background: var(--bg-light);
}

.portfolio-filter {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 22px;
  background: transparent;
  border: 1px solid var(--sand);
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  color: #888;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover { border-color: var(--gold); color: var(--gold); }

.filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

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

.portfolio-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: var(--transition);
}

.portfolio-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px var(--shadow-hover);
}

.portfolio-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.portfolio-item:hover .portfolio-image img { transform: scale(1.08); }

.portfolio-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 14px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 2px;
  z-index: 2;
}

.after-badge {
  background: var(--gold);
  color: #fff;
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.3) 50%, transparent 70%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: var(--transition);
}

.portfolio-item:hover .portfolio-overlay { opacity: 1; }

.portfolio-meta {
  display: flex;
  gap: 14px;
  margin-bottom: 8px;
}

.portfolio-meta span {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.3px;
}

.portfolio-meta i { color: var(--gold); margin-right: 4px; font-size: 0.65rem; }

.portfolio-overlay h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}

.portfolio-overlay p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
}

.portfolio-cta {
  text-align: center;
  margin-top: 40px;
}

.stats-section {
  background: var(--soft-black);
  padding: 80px 0;
}

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

.stats-card {
  text-align: center;
  padding: 24px 16px;
  border-right: 1px solid rgba(255,255,255,0.06);
}

.stats-card:last-child { border-right: none; }

.stats-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 6px;
}

.stats-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.5px;
  line-height: 1.4;
}

.testimonials-section {
  background: var(--bg-light);
}

.testimonial-carousel {
  max-width: 780px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.55s ease;
}

.testimonial-card {
  min-width: 100%;
  padding: 40px 44px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.04);
  border-radius: var(--radius);
  transition: var(--transition);
}

.testimonial-card:hover {
  box-shadow: 0 12px 36px var(--shadow-hover);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.testimonial-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.05rem;
  color: #fff;
  flex-shrink: 0;
}

.testimonial-header strong {
  display: block;
  font-size: 0.95rem;
  color: var(--soft-black);
  margin-bottom: 1px;
}

.testimonial-header span {
  font-size: 0.78rem;
  color: #999;
}

.testimonial-rating {
  margin-left: auto;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  background: rgba(201,169,108,0.08);
  padding: 4px 10px;
  border-radius: 4px;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 0.82rem;
  margin-bottom: 18px;
  letter-spacing: 3px;
}

.testimonial-card p {
  font-size: 0.98rem;
  line-height: 1.85;
  color: #555;
  margin-bottom: 18px;
}

.testimonial-project {
  font-size: 0.78rem;
  color: var(--taupe);
  font-weight: 500;
  padding-top: 14px;
  border-top: 1px solid rgba(0,0,0,0.04);
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 32px;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--sand);
  background: #fff;
  color: var(--charcoal);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  font-size: 0.85rem;
}

.carousel-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

.carousel-dots {
  display: flex;
  gap: 8px;
}

.carousel-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cream-dark);
  cursor: pointer;
  transition: var(--transition);
}

.carousel-dots span.active {
  background: var(--gold);
  width: 28px;
  border-radius: 4px;
}

.trust-section {
  background: var(--cream);
}

.trust-wrapper {
  text-align: center;
}

.trust-badges-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.trust-badge-card {
  background: #fff;
  padding: 32px 24px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(0,0,0,0.03);
  transition: var(--transition);
}

.trust-badge-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px var(--shadow-hover);
}

.trust-badge-card i {
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 14px;
}

.trust-badge-card strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--soft-black);
  margin-bottom: 4px;
}

.trust-badge-card span {
  font-size: 0.82rem;
  color: #888;
}

.trust-cta {
  max-width: 600px;
  margin: 0 auto;
}

.trust-cta h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--soft-black);
  margin-bottom: 12px;
}

.trust-cta p {
  color: #777;
  font-size: 1rem;
  margin-bottom: 28px;
}

.faq-section {
  background: var(--bg-light);
}

.faq-wrapper {
  max-width: 780px;
  margin: 0 auto;
}

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

.faq-item {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.04);
  border-radius: var(--radius-xs);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover { border-color: var(--gold); }

.faq-item.active { border-color: var(--gold); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 26px;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--soft-black);
  cursor: pointer;
  text-align: left;
  transition: var(--transition);
}

.faq-question i {
  font-size: 0.8rem;
  color: var(--gold);
  transition: var(--transition);
  flex-shrink: 0;
}

.faq-item.active .faq-question i { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer { max-height: 400px; }

.faq-answer p {
  padding: 0 26px 20px;
  color: #777;
  font-size: 0.9rem;
  line-height: 1.8;
}

.faq-cta {
  text-align: center;
  margin-top: 36px;
  font-size: 0.92rem;
  color: #888;
}

.faq-cta a { color: var(--gold); font-weight: 600; }
.faq-cta a:hover { text-decoration: underline; }

.contact-section {
  background: var(--cream);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: start;
}

.contact-info .section-tag {
  display: inline-flex;
  margin-bottom: 10px;
}

.contact-info .section-tag::before,
.contact-info .section-tag::after { display: none; }

.contact-info h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 2.8vw, 2.3rem);
  font-weight: 600;
  color: var(--soft-black);
  line-height: 1.2;
  margin-bottom: 14px;
}

.contact-desc {
  color: #777;
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 28px;
}

.contact-desc strong { color: var(--gold); font-weight: 600; }

.contact-offer {
  display: flex;
  gap: 16px;
  padding: 20px 24px;
  background: #fff;
  border-radius: var(--radius-xs);
  margin-bottom: 28px;
  border-left: 3px solid var(--gold);
}

.contact-offer i.fa-gift {
  font-size: 1.4rem;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-offer strong {
  display: block;
  font-size: 0.9rem;
  color: var(--soft-black);
  margin-bottom: 8px;
}

.contact-offer ul { display: flex; flex-direction: column; gap: 6px; }

.contact-offer li {
  font-size: 0.82rem;
  color: #888;
  display: flex;
  align-items: center;
  gap: 6px;
}

.contact-offer li i { color: var(--gold); font-size: 0.75rem; }

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 0;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-detail i {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 10px;
  color: var(--gold);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.contact-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2px;
}

.contact-detail a,
.contact-detail span {
  font-size: 0.9rem;
  color: var(--charcoal);
}

.contact-detail a:hover { color: var(--gold); }

.contact-form-wrapper {
  background: #fff;
  padding: 40px 36px;
  border-radius: var(--radius);
  box-shadow: 0 10px 40px var(--shadow);
}

.form-header {
  text-align: center;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.form-header h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--soft-black);
  margin-bottom: 8px;
}

.form-header p {
  font-size: 0.78rem;
  color: #aaa;
}

.form-header p i { margin-right: 4px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius-xs);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--charcoal);
  background: var(--bg-light);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,169,108,0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: #bbb; }

.form-group textarea { resize: vertical; min-height: 80px; }

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239b8b7a' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
}

.form-checkbox input[type="checkbox"] {
  width: 16px;
  height: 16px;
  min-width: 16px;
  margin-top: 4px;
  accent-color: var(--gold);
}

.form-checkbox label {
  font-size: 0.78rem;
  color: #999;
  margin-bottom: 0;
  cursor: pointer;
}

.form-urgency {
  text-align: center;
  font-size: 0.78rem;
  color: var(--gold);
  margin-top: 14px;
  font-weight: 500;
}

.form-urgency i { margin-right: 4px; }

.form-error {
  color: #d9534f;
  font-size: 0.75rem;
  margin-top: 4px;
  display: block;
}

.form-success {
  text-align: center;
  padding: 50px 20px;
}

.success-icon i {
  font-size: 3.2rem;
  color: var(--gold);
  margin-bottom: 20px;
}

.form-success h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--soft-black);
  margin-bottom: 12px;
}

.form-success p {
  color: #777;
  line-height: 1.8;
  margin-bottom: 20px;
}

.success-waiting {
  font-size: 0.85rem;
  color: #999;
  margin-bottom: 20px;
}

.success-waiting i { margin-right: 6px; color: var(--gold); }

#footer {
  background: var(--soft-black);
  color: rgba(255,255,255,0.6);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand .logo {
  color: #fff;
  display: inline-block;
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.8;
  margin-bottom: 22px;
  color: rgba(255,255,255,0.4);
}



.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 18px;
}

.footer-links li { margin-bottom: 10px; }

.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

.footer-links a:hover { color: var(--gold); padding-left: 4px; }

.footer-contact p {
  margin-bottom: 10px;
  font-size: 0.85rem;
}

.footer-contact i {
  width: 20px;
  color: var(--gold);
  margin-right: 6px;
  text-align: center;
}

.footer-contact a { color: rgba(255,255,255,0.4); }
.footer-contact a:hover { color: var(--gold); }

.footer-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding: 10px 22px;
  background: var(--gold);
  color: #fff !important;
  border-radius: 2px;
  font-size: 0.82rem;
  font-weight: 600;
  transition: var(--transition);
}

.footer-cta-btn i { font-size: 0.7rem; color: #fff !important; }

.footer-cta-btn:hover {
  background: var(--gold-dark) !important;
  color: #fff !important;
  transform: translateY(-2px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.2);
}

.footer-bottom i { color: var(--gold); }

.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  background: rgba(26,26,26,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 12px 0;
  transform: translateY(100%);
  transition: var(--transition);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.sticky-bar.visible { transform: translateY(0); }

.sticky-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sticky-text {
  font-size: 0.85rem;
  font-weight: 500;
  color: #fff;
}

.sticky-text i { color: var(--gold); margin-right: 8px; }

.sticky-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sticky-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.7);
  border-radius: 2px;
  font-size: 0.82rem;
  font-weight: 500;
}

.sticky-phone:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.sticky-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  background: var(--gold);
  color: #fff;
  border-radius: 2px;
  font-size: 0.82rem;
  font-weight: 600;
}

.sticky-btn:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
}

@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .pain-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-card:nth-child(3) { border-right: none; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-wrapper { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  .section { padding: 70px 0; }
  .section-header { margin-bottom: 40px; }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--warm-white);
    flex-direction: column;
    padding: 90px 28px 32px;
    gap: 0;
    box-shadow: -8px 0 40px var(--shadow-hover);
    transition: right 0.45s ease;
  }

  .nav-links.open { right: 0; }

  .nav-links a {
    color: var(--charcoal) !important;
    display: block;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0,0,0,0.04);
    width: 100%;
    font-size: 0.9rem;
  }

  .nav-links a::after { display: none; }

  .nav-mobile-cta {
    display: block;
    padding-top: 10px;
    border-bottom: none !important;
  }

  .nav-mobile-cta a {
    border-bottom: none !important;
    text-align: center;
    justify-content: center;
  }

  .hamburger { display: flex; }
  .nav-cta { display: none !important; }

  .hero-content h1 { font-size: 2rem; }
  .hero-content p { font-size: 0.95rem; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .stat { flex: 1; min-width: 70px; }
  .stat-num { font-size: 1.4rem; }
  .hero-urgency { font-size: 0.75rem; }

  .pain-grid { grid-template-columns: 1fr; }
  .pain-card { padding: 28px 24px; }

  .services-grid { grid-template-columns: 1fr; }
  .services-cta { padding: 28px 24px; }
  .services-cta .btn { width: 100%; }

  .why-wrapper { grid-template-columns: 1fr; gap: 36px; }
  .why-visual { order: -1; }

  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-filter { gap: 8px; }
  .filter-btn { padding: 8px 16px; font-size: 0.78rem; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .stats-card { border-right: none; padding: 16px; }
  .stats-card:nth-child(3) { border-right: none; }
  .stats-num { font-size: 1.4rem; }

  .testimonial-card { padding: 28px 24px; }

  .trust-badges-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .trust-badge-card { padding: 24px 18px; }

  .contact-form-wrapper { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-offer { flex-direction: column; gap: 12px; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }

  .sticky-bar { display: none; }

  .section-tag { font-size: 0.65rem; }
  .section-tag::before,
  .section-tag::after { width: 18px; margin: 0 6px; }

  .btn-lg { padding: 16px 28px; font-size: 0.9rem; width: 100%; justify-content: center; }
  .btn { width: 100%; justify-content: center; }
  .why-content .btn { width: auto; }

  .faq-question { padding: 16px 20px; font-size: 0.9rem; }
  .faq-answer p { padding: 0 20px 16px; }

  .form-header h3 { font-size: 1.15rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-content h1 { font-size: 1.7rem; }
  .hero-badge { font-size: 0.68rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-badges-grid { grid-template-columns: 1fr; }
  .contact-offer { padding: 16px 18px; }
  .contact-form-wrapper { padding: 20px 16px; }
}
