/* ─────────────────────────────────────────────
   WebSculpter Agency Site — style.css
   ───────────────────────────────────────────── */

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

:root {
  --gold:     #c9a96e;
  --gold-lt:  #dfc08a;
  --dark:     #0d0d0d;
  --dark-2:   #111111;
  --dark-3:   #1a1a1a;
  --mid:      #2a2a2a;
  --border:   #2e2e2e;
  --text:     #e8e8e8;
  --text-muted: #888;
  --white:    #ffffff;
  --green:    #3ecf8e;
  --red:      #e55;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', -apple-system, sans-serif;

  --radius: 12px;
  --shadow: 0 4px 32px rgba(0,0,0,0.45);
  --container: 1100px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--dark);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

img { display: block; max-width: 100%; }

/* ── UTILITY ─────────────────────────────── */

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

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

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* ── BUTTONS ─────────────────────────────── */

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--dark);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  padding: 13px 26px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

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

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 12px 24px;
  border-radius: 8px;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}

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

.btn-full { width: 100%; justify-content: center; }

/* ── NAV ─────────────────────────────────── */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(13,13,13,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}

.nav.scrolled { border-color: var(--border); }

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.03em;
}
.logo span { color: var(--gold); }

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }

.nav-cta {
  background: var(--gold) !important;
  color: var(--dark) !important;
  font-weight: 700 !important;
  padding: 8px 18px;
  border-radius: 6px;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--gold-lt) !important; }

.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 4px;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  padding: 16px 24px 24px;
  gap: 4px;
}

.mobile-nav a {
  padding: 10px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav.open { display: flex; }

/* ── HERO ────────────────────────────────── */

.hero {
  position: relative;
  padding: 160px 0 120px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(201,169,110,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 60%, rgba(201,169,110,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,169,110,0.12);
  border: 1px solid rgba(201,169,110,0.3);
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 28px;
}

.hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-content h1 span { color: var(--gold); }

.hero-sub {
  max-width: 620px;
  margin: 0 auto 36px;
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-proof {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 18px 32px;
}

.proof-num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.proof-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.proof-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
}

/* ── PROBLEM ─────────────────────────────── */

.problem {
  padding: 100px 0;
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.problem-left h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.2;
}

.problem-left p {
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.7;
}

.problem-left em { color: var(--gold); font-style: normal; font-weight: 600; }

.problem-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cost-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.cost-card.bad { border-color: rgba(221,68,68,0.3); }
.cost-card.good { border-color: rgba(62,207,142,0.3); }

.cost-header {
  padding: 14px 20px;
  font-weight: 700;
  font-size: 0.9rem;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid var(--border);
}

.cost-card.bad .cost-header { color: #e55; }
.cost-card.good .cost-header { color: var(--green); }

.cost-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.cost-val { color: var(--text-muted); }

.cost-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  font-weight: 700;
  background: rgba(255,255,255,0.03);
}

.cost-card.bad .cost-total span:last-child { color: #e55; }
.good-total span:last-child { color: var(--green); }

/* ── WORK / PORTFOLIO ────────────────────── */

.work {
  padding: 100px 0;
}

.portfolio-card {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

/* Browser mockup */
.portfolio-preview {
  background: #1a1a1a;
  border-radius: 16px 0 0 16px;
  overflow: hidden;
  border-right: 1px solid var(--border);
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  background: #252525;
  border-bottom: 1px solid var(--border);
}

.browser-dots { display: flex; gap: 5px; }
.browser-dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #444;
}
.browser-dots span:nth-child(1) { background: #ff5f57; }
.browser-dots span:nth-child(2) { background: #ffbd2e; }
.browser-dots span:nth-child(3) { background: #28c940; }

.browser-url {
  flex: 1;
  background: #1a1a1a;
  border-radius: 4px;
  padding: 4px 10px;
  font-size: 0.72rem;
  color: var(--text-muted);
  font-family: monospace;
  text-align: center;
}

.portfolio-screen {
  background: var(--dark);
}

.screen-hero {
  padding: 20px;
  min-height: 320px;
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1209 100%);
  display: flex;
  flex-direction: column;
}

.screen-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.screen-logo {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.08em;
}
.screen-logo span { color: var(--gold); }

.screen-btn {
  background: var(--gold);
  color: var(--dark);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 4px;
  letter-spacing: 0.04em;
}

.screen-content { flex: 1; }

.screen-sub {
  font-size: 0.6rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-weight: 600;
}

.screen-content h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}
.screen-content h3 em { color: var(--gold); font-style: italic; }

.screen-actions { display: flex; gap: 8px; }

.screen-cta {
  background: var(--gold);
  color: var(--dark);
  font-size: 0.6rem;
  font-weight: 700;
  padding: 7px 12px;
  border-radius: 4px;
  letter-spacing: 0.03em;
}

.screen-ghost {
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  font-size: 0.6rem;
  padding: 7px 12px;
  border-radius: 4px;
}

/* Portfolio info */
.portfolio-info { padding: 40px 40px 40px 8px; }

.portfolio-tag {
  display: inline-block;
  background: rgba(201,169,110,0.15);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
}

.portfolio-info h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 12px;
}

.portfolio-info > p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
  line-height: 1.65;
}

.portfolio-features {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 12px;
  margin-bottom: 28px;
}

.portfolio-features li {
  font-size: 0.83rem;
  color: var(--text-muted);
}

/* ── SERVICES ────────────────────────────── */

.services {
  padding: 100px 0;
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.service-card {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: border-color 0.2s, transform 0.2s;
}

.service-card:hover {
  border-color: rgba(201,169,110,0.4);
  transform: translateY(-3px);
}

.service-icon {
  font-size: 1.75rem;
  margin-bottom: 16px;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── PROCESS ─────────────────────────────── */

.process { padding: 100px 0; }

.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}

.step {
  flex: 1;
  text-align: center;
  padding: 0 24px;
}

.step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: rgba(201,169,110,0.25);
  line-height: 1;
  margin-bottom: 16px;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 10px;
}

.step p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.step-arrow {
  flex-shrink: 0;
  color: var(--gold);
  font-size: 1.5rem;
  margin-top: 28px;
  opacity: 0.5;
}

/* ── PRICING ─────────────────────────────── */

.pricing {
  padding: 100px 0;
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.pricing-card {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
}

.pricing-card.featured {
  border-color: var(--gold);
  transform: scale(1.02);
  background: var(--dark-3);
}

.pricing-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--dark);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 999px;
  white-space: nowrap;
}

.pricing-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 16px;
}

.price {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}

.price span {
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--text-muted);
}

.price-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}

.price-features li {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.pricing-note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ── CONTACT ─────────────────────────────── */

.contact {
  padding: 100px 0;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: start;
}

.contact-left h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}

.contact-left > p {
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.7;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
}

.contact-icon { font-size: 1.1rem; }

.contact-item a {
  color: var(--gold);
  transition: color 0.2s;
}
.contact-item a:hover { color: var(--gold-lt); }

/* Contact form */
.contact-form {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group:last-of-type { margin-bottom: 0; }

label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

input, select, textarea {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 10px 14px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

input::placeholder, textarea::placeholder { color: #444; }

input:focus, select:focus, textarea:focus {
  border-color: var(--gold);
}

select { appearance: none; cursor: pointer; }

textarea { resize: vertical; }

.form-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 10px;
}

.success-msg {
  text-align: center;
  color: var(--green);
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 14px;
  padding: 12px;
  background: rgba(62,207,142,0.1);
  border-radius: 8px;
  border: 1px solid rgba(62,207,142,0.25);
}

/* ── FOOTER ──────────────────────────────── */

.footer {
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  padding: 56px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-inner p {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-top: 12px;
  line-height: 1.7;
}

.footer-inner h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.footer-inner ul { list-style: none; }

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

.footer-inner ul a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-inner ul a:hover { color: var(--gold); }

.footer-inner a[href^="mailto"] {
  color: var(--text-muted);
  font-size: 0.875rem;
  transition: color 0.2s;
}
.footer-inner a[href^="mailto"]:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 24px;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ── TOAST ───────────────────────────────── */

.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--dark-3);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  box-shadow: var(--shadow);
  z-index: 9999;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

/* ── ANIMATIONS ──────────────────────────── */

.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ──────────────────────────── */

@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: block; }

  .hero { padding: 120px 0 80px; }

  .problem-grid { grid-template-columns: 1fr; gap: 40px; }

  .portfolio-card { grid-template-columns: 1fr; }
  .portfolio-preview { border-radius: 0; border-right: none; border-bottom: 1px solid var(--border); }
  .portfolio-info { padding: 32px; }
  .portfolio-features { grid-template-columns: 1fr; }

  .services-grid { grid-template-columns: 1fr 1fr; }

  .steps { flex-direction: column; align-items: center; gap: 24px; }
  .step-arrow { transform: rotate(90deg); margin: 0; }
  .step { padding: 0 16px; max-width: 340px; }

  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .pricing-card.featured { transform: none; }

  .contact-inner { grid-template-columns: 1fr; gap: 40px; }

  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .proof-item { padding: 14px 20px; }
  .proof-num { font-size: 1.3rem; }

  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-ghost { justify-content: center; }

  .services-grid { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; }

  .contact-form { padding: 24px 20px; }
}
