:root {
  --bg: #0f1115;
  --bg-soft: #171b22;
  --panel: #1d222b;
  --panel-2: #232a35;
  --text: #f5f7fb;
  --muted: #b8c0cc;
  --line: rgba(255, 255, 255, 0.08);
  --gold: #d6a85f;
  --gold-dark: #b98c47;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.32);
  --radius: 20px;
  --max: 1160px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: linear-gradient(180deg, #0f1115 0%, #10141a 100%);
  color: var(--text);
  line-height: 1.65;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  width: min(var(--max), 92%);
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: 100vh;
  background:
    linear-gradient(135deg, rgba(15, 17, 21, 0.88), rgba(15, 17, 21, 0.72)),
    radial-gradient(circle at top right, rgba(214, 168, 95, 0.12), transparent 30%),
    url("https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=1600&q=80")
    center/cover no-repeat;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(214, 168, 95, 0.12), transparent 28%),
    linear-gradient(to bottom, rgba(255,255,255,0.02), rgba(255,255,255,0));
  pointer-events: none;
}

.navbar {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
}

.brand {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a {
  color: rgba(255,255,255,0.86);
  font-weight: 500;
  transition: 0.25s ease;
}

.nav-links a:hover {
  color: var(--gold);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  color: var(--white);
  font-size: 1.8rem;
  cursor: pointer;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 34px;
  align-items: center;
  min-height: calc(100vh - 88px);
  padding: 30px 0 70px;
}

.eyebrow,
.section-label,
.mini-label,
.portfolio-tag,
.pricing-badge {
  text-transform: uppercase;
  letter-spacing: 1.8px;
  font-size: 0.78rem;
  font-weight: 700;
}

.eyebrow,
.section-label,
.mini-label,
.portfolio-tag {
  color: var(--gold);
}

.hero-copy h1 {
  font-size: clamp(2.8rem, 6vw, 5.3rem);
  line-height: 1.02;
  max-width: 760px;
  margin: 16px 0 18px;
}

.hero-text {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.08rem;
  margin-bottom: 28px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-badges {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-badges span {
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
  border-radius: 999px;
  color: #e6e8ec;
  font-size: 0.95rem;
}

.hero-card {
  background: rgba(27, 32, 41, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.hero-card-top h3 {
  font-size: 1.6rem;
  line-height: 1.2;
  margin-top: 12px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 28px 0;
}

.hero-stats div {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 16px;
  text-align: center;
}

.hero-stats strong {
  display: block;
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 4px;
}

.hero-stats span {
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-contact-box {
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.hero-contact-box p {
  color: var(--muted);
  margin-bottom: 10px;
}

.hero-contact-box strong {
  color: var(--text);
  margin-right: 8px;
}

.section {
  padding: 96px 0;
}

.section-dark {
  background: linear-gradient(180deg, rgba(255,255,255,0.015), rgba(255,255,255,0.01));
}

.center {
  text-align: center;
}

.narrow {
  max-width: 720px;
  margin-inline: auto;
}

.section h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.1;
  margin: 14px 0 16px;
}

.section-text {
  color: var(--muted);
  font-size: 1.02rem;
}

.trust-strip {
  margin-top: -44px;
  position: relative;
  z-index: 4;
}

.trust-grid,
.services-grid,
.portfolio-grid,
.pricing-grid,
.about-grid,
.contact-grid {
  display: grid;
  gap: 22px;
}

.trust-grid {
  grid-template-columns: repeat(3, 1fr);
}

.trust-card,
.service-card,
.portfolio-card,
.pricing-card,
.about-panel,
.contact-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.02));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.trust-card {
  padding: 28px;
}

.trust-card h3 {
  margin-bottom: 10px;
}

.trust-card p {
  color: var(--muted);
}

.services-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 42px;
}

.service-card {
  padding: 28px;
}

.service-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(214, 168, 95, 0.12);
  color: var(--gold);
  font-weight: 800;
  margin-bottom: 18px;
}

.service-card h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.service-card p {
  color: var(--muted);
}

.featured-service {
  border-color: rgba(214, 168, 95, 0.3);
  transform: translateY(-6px);
}

.portfolio-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 42px;
}

.portfolio-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 290px;
  padding: 28px;
}

.portfolio-content h3 {
  font-size: 1.3rem;
  margin: 12px 0 12px;
}

.portfolio-content p {
  color: var(--muted);
}

.pricing-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 42px;
}

.pricing-card {
  padding: 30px;
}

.pricing-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.price {
  color: var(--gold);
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 18px;
}

.pricing-card ul li {
  color: var(--muted);
  margin-bottom: 12px;
  padding-left: 18px;
  position: relative;
}

.pricing-card ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--gold);
}

.featured-pricing {
  border-color: rgba(214, 168, 95, 0.3);
  transform: translateY(-8px);
}

.pricing-badge {
  display: inline-block;
  color: #111;
  background: var(--gold);
  padding: 6px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.about-grid {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: start;
}

.about-panel {
  padding: 28px;
}

.about-panel h3 {
  margin-bottom: 14px;
}

.about-panel ul li {
  color: var(--muted);
  margin-bottom: 12px;
  padding-left: 18px;
  position: relative;
}

.about-panel ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--gold);
}

.cta-section {
  padding-top: 38px;
}

.cta-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  background: linear-gradient(135deg, #1a1f28, #232a35);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 34px;
  box-shadow: var(--shadow);
}

.contact-grid {
  grid-template-columns: 1fr 0.95fr;
  align-items: center;
}

.contact-card {
  padding: 30px;
}

.contact-card p {
  color: var(--muted);
  margin-bottom: 12px;
}

.contact-card strong {
  color: var(--text);
}

.contact-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 14px;
  font-weight: 700;
  transition: 0.25s ease;
}

.btn-primary {
  background: var(--gold);
  color: #111;
}

.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
}

.btn-secondary {
  border: 1px solid rgba(255,255,255,0.16);
  color: var(--white);
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.small-btn {
  margin-top: 24px;
  width: fit-content;
}

.footer {
  padding: 24px 0;
  border-top: 1px solid var(--line);
  background: rgba(0,0,0,0.18);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.95rem;
}

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 999;
  background: #25d366;
  color: white;
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.28);
}

@media (max-width: 1050px) {
  .hero-grid,
  .about-grid,
  .contact-grid,
  .cta-box {
    grid-template-columns: 1fr;
  }

  .trust-grid,
  .services-grid,
  .portfolio-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .cta-box {
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    position: relative;
    z-index: 20;
  }

  .nav-links {
    position: absolute;
    top: 76px;
    right: 4%;
    width: 230px;
    display: none;
    flex-direction: column;
    gap: 14px;
    padding: 18px;
    border-radius: 18px;
    background: rgba(21, 25, 32, 0.98);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .nav-links.show {
    display: flex;
  }

  .hero-grid {
    padding-top: 20px;
  }

  .hero-copy h1 {
    font-size: clamp(2.2rem, 10vw, 3.5rem);
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 78px 0;
  }

  .trust-strip {
    margin-top: 0;
  }
}