:root {
  --bg: #0d0d12;
  --bg-soft: #15151d;
  --panel: #171821;
  --panel-2: #1c1d27;
  --line: rgba(255,255,255,0.08);
  --text: #f4efe6;
  --muted: #b8b2a8;
  --gold-1: #fff1bd;
  --gold-2: #dcb96f;
  --gold-3: #b98a36;
  --gold-4: #7d5a20;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  --radius: 28px;
  --radius-md: 20px;
  --container: min(1200px, calc(100% - 32px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background:
    radial-gradient(circle at top left, rgba(220,185,111,0.12), transparent 32%),
    radial-gradient(circle at 80% 20%, rgba(255,241,189,0.08), transparent 18%),
    var(--bg);
  color: var(--text);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }

.container { width: var(--container); margin: 0 auto; }
.narrow { max-width: 1040px; }
.section { padding: 110px 0; position: relative; }
.grid-bg {
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 32px 32px;
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(13, 13, 18, 0.78);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand img { height: 34px; width: auto; }
.nav, .socials {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav a {
  font-size: 0.96rem;
  color: var(--muted);
  transition: color .25s ease;
}
.nav a:hover { color: var(--text); }
.socials a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--muted);
  border: 1px solid transparent;
  transition: color .25s ease, border-color .25s ease, background .25s ease, transform .25s ease;
}
.socials a svg { width: 20px; height: 20px; fill: currentColor; }
.socials a:hover { color: var(--gold-2); border-color: rgba(220,185,111,0.3); background: rgba(255,255,255,0.02); transform: translateY(-2px); }

.hero {
  min-height: calc(100vh - 84px);
  display: flex;
  align-items: center;
  overflow: clip;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: 30px;
  padding: 64px 0;
}
.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  color: var(--gold-2);
  margin-bottom: 16px;
}
.hero h1,
.section-head h2 {
  margin: 0;
  line-height: .95;
  letter-spacing: -0.04em;
}
.hero h1 {
  font-size: clamp(3rem, 7vw, 6.3rem);
  max-width: 760px;
}
.hero h1 span,
.section-head h2 { color: var(--gold-2); }
.hero p,
.section-head p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
  max-width: 700px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 28px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 28px;
  border-radius: 18px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn.small { min-height: 50px; padding: 0 22px; }
.btn-primary {
  color: #17120b;
  background: linear-gradient(135deg, var(--gold-1), var(--gold-2) 45%, var(--gold-3));
  box-shadow: 0 12px 30px rgba(185, 138, 54, 0.22);
}
.btn-outline {
  border-color: rgba(220,185,111,0.55);
  color: var(--text);
  background: rgba(255,255,255,0.02);
}
.mini-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
}
.mini-skill-card {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  border-radius: 18px;
  box-shadow: 0 14px 28px rgba(0,0,0,0.24);
}
.mini-skill-card svg { width: 32px; height: 32px; }
.filter-chip {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.02);
  color: var(--text);
  border-radius: 999px;
  padding: 10px 16px;
}

.hero-visual {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
.hero-shape {
  position: absolute;
  width: 340px;
  height: 520px;
  background: linear-gradient(180deg, rgba(255,241,189,0.9), rgba(220,185,111,0.88), rgba(185,138,54,0.82));
  border-radius: 48% 52% 44% 56% / 26% 29% 71% 74%;
  right: 17%;
  top: 14%;
  transform: rotate(14deg);
  z-index: 0;
}
.hero-glow {
  position: absolute;
  right: 6%;
  top: 18%;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(220,185,111,0.32), rgba(220,185,111,0.08) 58%, transparent 72%);
  filter: blur(26px);
  border-radius: 50%;
  z-index: 0;
}
.hero-photo-card {
  position: relative;
  z-index: 1;
  width: min(610px, 100%);
  min-height: 730px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.hero-photo {
  position: relative;
  z-index: 2;
  width: 100%;
  max-height: 720px;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 30px 48px rgba(0,0,0,.55));
}

.stats {
  padding: 36px 0 30px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.01));
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.stat {
  display: flex;
  align-items: baseline;
  gap: 14px;
  justify-content: center;
  padding: 16px;
}
.stat strong {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  color: var(--gold-2);
}
.stat strong::before { content: "+"; margin-right: 4px; }
.stat span {
  max-width: 120px;
  line-height: 1.4;
  color: var(--muted);
}

.section-head {
  margin-bottom: 48px;
}
.section-head h2 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  margin-bottom: 18px;
}
.split-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}
.center-head {
  text-align: center;
}
.center-head p { margin-inline: auto; }

.service-list {
  border-top: 1px solid var(--line);
}
.service-row {
  display: grid;
  grid-template-columns: 80px minmax(200px, 1fr) 1.2fr 56px;
  align-items: center;
  gap: 22px;
  padding: 34px 16px;
  border-bottom: 1px solid var(--line);
  transition: background .25s ease, transform .25s ease;
}
.service-row:hover {
  background: rgba(255,255,255,0.02);
  transform: translateY(-2px);
}
.service-index {
  font-size: 1.4rem;
  color: var(--gold-2);
  font-weight: 700;
}
.service-row h3 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
}
.service-row p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}
.service-arrow {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  font-size: 1.4rem;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}
.filter-chip.active {
  background: linear-gradient(135deg, rgba(255,241,189,.96), rgba(220,185,111,.92));
  color: #17120b;
  border-color: transparent;
}
.project-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}
.project-card {
  display: block;
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .28s ease, border-color .28s ease;
}
.project-card:hover {
  transform: translateY(-8px);
  border-color: rgba(220,185,111,0.38);
}
.project-thumb {
  position: relative;
  min-height: 330px;
  padding: 22px;
  display: flex;
  align-items: end;
  background:
    linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.48)),
    radial-gradient(circle at top left, rgba(255,255,255,0.11), transparent 36%);
}
.thumb-one { background-color: #1c1a24; }
.thumb-two { background-color: #101115; }
.thumb-three { background-color: #1b1b22; }
.thumb-four { background-color: #15161b; }
.project-thumb::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 18px;
  border: 1px dashed rgba(255,255,255,0.14);
}
.project-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--gold-1);
  font-size: .85rem;
}
.project-overlay-text {
  position: relative;
  z-index: 2;
  max-width: 270px;
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.35;
}
.project-info {
  padding: 24px 22px 26px;
}
.project-info h3 { margin: 0 0 8px; font-size: 1.4rem; }
.project-info p { margin: 0; color: var(--muted); }

.skills-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  margin-top: 40px;
}
.skill-card {
  padding: 28px 18px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.025), rgba(255,255,255,.01));
  text-align: center;
}
.skill-card h3 { margin: 16px 0 0; font-size: 1.1rem; }
.skill-icon {
  width: 82px;
  height: 82px;
  margin: 0 auto;
  border-radius: 22px;
  display: grid;
  place-items: center;
  font-weight: 700;
  letter-spacing: -0.03em;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
}
.skill-icon.ps { background: #001e36; color: #31a8ff; font-size: 2rem; }
.skill-icon.css { background: #0f2e55; color: #53a8ff; font-size: 1.6rem; }
.skill-icon.js { background: #2e2508; color: #f7df1e; font-size: 1.6rem; }
.skill-icon.canva, .skill-icon.wp { background: transparent; color: inherit; font-size: 0; }
.skill-icon.figma {
  position: relative;
  width: 82px;
  height: 82px;
  background: #171a21;
}
.skill-icon.figma .dot {
  position: absolute;
  width: 22px;
  height: 22px;
  border-radius: 11px;
}
.skill-icon.figma .red { background:#f24e1e; left: 20px; top: 10px; }
.skill-icon.figma .purple { background:#a259ff; left: 20px; top: 30px; }
.skill-icon.figma .teal { background:#1abcfe; left: 20px; top: 50px; }
.skill-icon.figma .blue { background:#0acf83; left: 40px; top: 10px; }
.skill-icon.figma .green { background:#ff7262; left: 40px; top: 30px; border-radius: 0 11px 11px 0; }

.contact-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 28px;
}
.contact-cards {
  display: grid;
  gap: 16px;
  align-content: start;
}
.contact-card,
.contact-form {
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
}
.contact-card {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 22px;
}
.contact-card small {
  display: block;
  color: var(--muted);
  margin-bottom: 6px;
}
.contact-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--gold-2);
  border: 1px solid rgba(220,185,111,0.35);
  background: rgba(255,255,255,0.02);
  font-size: 1.35rem;
}
.contact-form {
  padding: 30px;
}
.contact-form h3 {
  margin: 0 0 24px;
  font-size: 2.1rem;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
label span {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
}
input, textarea {
  width: 100%;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #12131a;
  color: var(--text);
  padding: 15px 16px;
  outline: none;
}
input:focus, textarea:focus {
  border-color: rgba(220,185,111,0.45);
  box-shadow: 0 0 0 4px rgba(220,185,111,0.08);
}
.full-width { grid-column: 1 / -1; }
.contact-form .btn { margin-top: 18px; }

.footer {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
}
.footer-name {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: clamp(4rem, 18vw, 16rem);
  letter-spacing: -0.06em;
  font-weight: 700;
  color: rgba(255,255,255,0.03);
  pointer-events: none;
  white-space: nowrap;
}
.footer-inner {
  position: relative;
  z-index: 1;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.footer-brand img { height: 42px; }
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}
.footer-inner p {
  color: var(--muted);
  margin: 0;
}
.footer-inner p span { color: var(--gold-2); }

.back-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--gold-1), var(--gold-2), var(--gold-3));
  color: #17120b;
  font-size: 1.35rem;
  box-shadow: 0 20px 35px rgba(0,0,0,.35);
}

@media (max-width: 1100px) {
  .hero-grid,
  .contact-grid,
  .split-head,
  .service-row,
  .project-grid,
  .stats-grid,
  .skills-grid {
    grid-template-columns: 1fr;
  }
  .hero-visual { min-height: auto; }
  .hero-photo-card { min-height: auto; }
  .split-head { align-items: start; }
  .service-row { padding-inline: 0; }
}

@media (max-width: 820px) {
  .nav-wrap { flex-wrap: wrap; justify-content: center; padding: 16px 0; }
  .nav, .socials { gap: 16px; flex-wrap: wrap; justify-content: center; }
  .hero { min-height: auto; }
  .hero-grid { padding-top: 34px; }
  .hero h1 { line-height: 1.02; }
  .hero-visual { order: -1; }
  .hero-photo-card { width: min(360px, 100%); }
  .hero-shape { width: 270px; height: 270px; left: 2%; top: 26%; }
  .section { padding: 84px 0; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-inner { min-height: 260px; }
}

.project-card.is-hidden { display: none; }
.project-thumb.has-image { background-size: cover; background-position: center top; }
.skill-icon svg { width: 54px; height: 54px; }

@media (max-width: 980px) {
  .hero-grid,
  .contact-grid,
  .split-head,
  .service-row {
    grid-template-columns: 1fr;
  }
  .split-head { align-items: start; }
  .hero-visual {
    min-height: 560px;
    justify-content: center;
  }
  .hero-shape { right: 50%; transform: translateX(50%) rotate(14deg); top: 8%; }
  .hero-glow { right: 50%; transform: translateX(50%); }
  .hero-photo-card { min-height: 560px; width: min(460px, 100%); }
  .project-grid,
  .skills-grid,
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .nav-wrap { flex-wrap: wrap; justify-content: center; padding: 16px 0; }
  .nav, .socials { gap: 18px; }
  .hero { min-height: auto; }
  .hero-grid { padding: 38px 0 28px; }
  .hero h1 { font-size: clamp(2.8rem, 15vw, 4.6rem); }
  .hero-visual { min-height: 430px; }
  .hero-shape { width: 240px; height: 340px; top: 6%; }
  .hero-glow { width: 220px; height: 220px; top: 18%; }
  .hero-photo-card { min-height: 420px; width: min(320px, 100%); }
  .project-grid,
  .skills-grid,
  .stats-grid,
  .form-grid { grid-template-columns: 1fr; }
  .service-row { padding-inline: 0; }
}


.packages {
  position: relative;
}
.packages::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top center, rgba(220,185,111,.08), transparent 42%);
  pointer-events: none;
}
.packages-head p { max-width: 720px; }
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.package-card {
  position: relative;
  padding: 30px;
  border-radius: 30px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.015));
  box-shadow: var(--shadow);
  overflow: hidden;
}
.package-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255,241,189,.12), transparent 36%);
  pointer-events: none;
}
.package-card:hover {
  transform: translateY(-8px);
  border-color: rgba(220,185,111,.4);
}
.package-tag {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(220,185,111,.24);
  background: rgba(255,255,255,.03);
  color: var(--gold-1);
  font-size: .88rem;
  margin-bottom: 22px;
}
.package-card h3 {
  margin: 0 0 20px;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: .95;
}
.package-list {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: grid;
  gap: 12px;
}
.package-list li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
}
.package-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold-2);
}
.package-price {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -.04em;
  margin-bottom: 26px;
  color: var(--gold-2);
}
.package-btn { width: 100%; }
.featured-main {
  border-color: rgba(220,185,111,.34);
  background: linear-gradient(180deg, rgba(255,241,189,.06), rgba(255,255,255,.02));
}
.packages-help {
  margin: 28px 0 0;
  text-align: center;
}
.packages-help a {
  color: var(--gold-1);
  text-decoration: underline;
  text-underline-offset: 4px;
  font-weight: 500;
}
.floating-whatsapp,
.back-top {
  position: fixed;
  right: 20px;
  display: grid;
  place-items: center;
  box-shadow: 0 20px 35px rgba(0,0,0,.35);
}
.floating-whatsapp {
  bottom: 86px;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: linear-gradient(135deg, #2ad56b, #15a34a);
  color: white;
  z-index: 90;
}
.floating-whatsapp svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}
.contact-card { transition: transform .25s ease, border-color .25s ease, background .25s ease; }
.contact-card:hover { transform: translateY(-4px); border-color: rgba(220,185,111,.3); }
@media (max-width: 980px) {
  .packages-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .floating-whatsapp,
  .back-top { right: 14px; }
  .floating-whatsapp { bottom: 78px; width: 54px; height: 54px; }
}
