/* ═══════════════════════════════════════════════════════════════
   MILICA CONSULTING — main.css
   Brand: Kanit · #3a0c25 burgundy · #7198EF accent · fixed gradient
═══════════════════════════════════════════════════════════════ */

/* ── CSS Custom Properties ─────────────────────────────────── */
:root {
  --color-logo:        #3a0c25;
  --color-text:        #ffffff;
  --color-accent:      #7198EF;
  --color-chevron:     #3a0c25;
  --color-section-bg:  transparent;
  --font-main:         'Kanit', sans-serif;

  --header-height:     80px;
  --section-pad-v:     100px;
  --section-pad-h:     clamp(20px, 5vw, 80px);
  --max-width:         1200px;
  --card-gap:          6px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.47;
  color: var(--color-text);
  background: transparent;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ── Fixed Gradient Background ─────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    125deg,
    #6aaee8 0%,
    #8ab8f0 20%,
    #a8c4f0 40%,
    #c4b0e8 65%,
    #d4a0dc 85%,
    #cc90d4 100%
  );
  background-attachment: fixed;
  background-size: cover;
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: opacity 0.2s ease;
}
a:hover { opacity: 0.8; }

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

ul { list-style: none; }

/* ── Layout Helpers ─────────────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--section-pad-h);
}

.section {
  padding: var(--section-pad-v) var(--section-pad-h);
  background: var(--color-section-bg);
}

.section-heading {
  font-size: 42px;
  font-weight: 600;
  letter-spacing: 8.4px;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 48px;
  line-height: 1.2;
}

/* ── Scroll Reveal ──────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════════
   HEADER
═══════════════════════════════════════════════════════════════ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-height);
  display: flex;
  align-items: center;
  background: transparent;
  transition: backdrop-filter 0.3s ease, background 0.3s ease;
}

#site-header.scrolled {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(100, 140, 200, 0.15);
}

.header-inner {
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--section-pad-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.site-logo svg {
  height: 44px;
  width: auto;
}

.site-logo img {
  height: 44px;
  width: auto;
}

/* Nav */
.primary-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.primary-nav a {
  font-size: 13px;
  font-family: var(--font-main);
  color: var(--color-accent);
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 400;
  white-space: nowrap;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.2s ease;
}

.primary-nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--color-accent);
  transition: width 0.3s ease;
}

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

.primary-nav a:hover { opacity: 1; color: #fff; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--color-accent);
  transition: all 0.3s ease;
  transform-origin: center;
}

.hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.is-open span:nth-child(2) {
  opacity: 0;
}
.hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile overlay */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  background: linear-gradient(
    125deg,
    #6aaee8 0%,
    #8ab8f0 20%,
    #a8c4f0 40%,
    #c4b0e8 65%,
    #d4a0dc 85%,
    #cc90d4 100%
  );
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.mobile-nav-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-overlay a {
  font-size: 18px;
  font-family: var(--font-main);
  color: var(--color-accent);
  letter-spacing: 8.4px;
  text-transform: uppercase;
  font-weight: 600;
}

/* ═══════════════════════════════════════════════════════════════
   SECTION 1 — HERO
═══════════════════════════════════════════════════════════════ */
#hero {
  min-height: 100vh;
  padding-top: var(--header-height);
  display: flex;
  align-items: center;
  background: transparent;
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 80px var(--section-pad-h);
  display: grid;
  grid-template-columns: 60fr 40fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

/* Left Column */
.hero-content { display: flex; flex-direction: column; gap: 24px; }

.hero-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--color-logo);
  background: rgba(58, 12, 37, 0.12);
  border: 1px solid rgba(58, 12, 37, 0.3);
  padding: 8px 20px;
  border-radius: 30px;
  width: fit-content;
}

.hero-name {
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 700;
  color: #fff;
  line-height: 1.05;
  letter-spacing: 1px;
}

.hero-role {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  color: var(--color-accent);
  letter-spacing: 4px;
  line-height: 1.1;
}

.hero-description {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,0.92);
  max-width: 520px;
}

.hero-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 0;
  font-size: 14px;
  color: var(--color-accent);
  align-items: center;
}

.hero-contact a {
  color: var(--color-accent);
  font-size: 14px;
}

.hero-contact .sep {
  margin: 0 12px;
  color: rgba(113, 152, 239, 0.5);
}

.btn-primary {
  display: inline-block;
  border: 2px solid var(--color-logo);
  color: var(--color-logo);
  background: transparent;
  padding: 14px 40px;
  font: 600 16px/1 var(--font-main);
  letter-spacing: 4px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
  width: fit-content;
  text-decoration: none;
}

.btn-primary:hover {
  background: var(--color-logo);
  color: #fff;
  opacity: 1;
}

/* Right Column — Decorative */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-visual svg {
  width: 100%;
  max-width: 460px;
  height: auto;
  opacity: 0.85;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.6;
}

.scroll-indicator span {
  display: block;
  width: 1px;
  height: 48px;
  background: rgba(58,12,37,0.6);
  animation: scrollPulse 1.8s ease-in-out infinite;
}

.scroll-indicator small {
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--color-logo);
  text-transform: uppercase;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.2; transform: scaleY(0.6); }
  50%       { opacity: 1;   transform: scaleY(1); }
}

/* ═══════════════════════════════════════════════════════════════
   SECTION 2 — WHO I AM
═══════════════════════════════════════════════════════════════ */
#who-i-am {
  background: transparent;
}

.who-i-am-inner {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.who-i-am-inner p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.92);
}

blockquote.styled-quote {
  border-left: 4px solid var(--color-logo);
  padding: 24px 32px;
  margin: 8px 0;
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255,255,255,0.88);
  font-style: italic;
  background: rgba(58, 12, 37, 0.15);
  border-radius: 0 8px 8px 0;
}

/* ═══════════════════════════════════════════════════════════════
   SECTION 3 — PROBLEMS
═══════════════════════════════════════════════════════════════ */
#problems {
  background: transparent;
}

.problems-intro {
  font-size: 16px;
  color: rgba(255,255,255,0.9);
  max-width: 680px;
  margin-bottom: 48px;
  line-height: 1.65;
}

.problems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--card-gap);
  max-width: 830px;
  margin: 0 auto;
}

.problem-card {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  cursor: pointer;
  background: rgba(58, 12, 37, 0.25);
}

.problem-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: transform 0.4s ease, filter 0.4s ease;
}

/* CSS placeholder icon (shown when no image) */
.problem-card .card-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  opacity: 0.85;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.problem-card:hover img {
  transform: scale(1.08);
  filter: grayscale(60%) brightness(1.05);
}

.problem-card:hover .card-icon {
  opacity: 0;
}

.card-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 16px;
  text-align: center;
  color: var(--color-accent);
  font: 600 16px/1.3 var(--font-main);
  background: linear-gradient(to top, rgba(26,18,21,0.7) 0%, transparent 100%);
  z-index: 2;
  transition: opacity 0.3s ease;
}

.problem-card:hover .card-title {
  opacity: 0;
}

.card-desc {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
  background: rgba(58, 12, 37, 0.82);
  color: #fff;
  font: 400 14px/1.5 var(--font-main);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 3;
}

.problem-card:hover .card-desc {
  opacity: 1;
}

/* ═══════════════════════════════════════════════════════════════
   SECTION 4 — SERVICES / HOW I CAN HELP
═══════════════════════════════════════════════════════════════ */
#services {
  background: transparent;
}

/* Timeline connector */
.timeline-connector {
  display: flex;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto 60px;
  padding: 0 var(--section-pad-h);
  gap: 0;
}

.timeline-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-logo);
  flex-shrink: 0;
}

.timeline-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(to right, var(--color-logo), rgba(58,12,37,0.3));
}

.services-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  border-top: 4px solid var(--color-logo);
  background: rgba(58, 12, 37, 0.12);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-card h3 {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 4px;
  color: var(--color-accent);
  text-transform: uppercase;
  line-height: 1.3;
}

.service-card .service-subtitle {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255,255,255,0.85);
  font-style: italic;
}

.service-card p {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255,255,255,0.85);
}

/* Output label */
.output-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  color: var(--color-logo);
  text-transform: uppercase;
  margin-bottom: 4px;
}

/* Process flow */
.process-flow {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  margin: 8px 0;
}

.process-step {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--color-accent);
  text-transform: uppercase;
  white-space: nowrap;
}

.process-arrow {
  margin: 0 8px;
  color: var(--color-logo);
  font-size: 16px;
  flex-shrink: 0;
}

/* Approach bullets */
.approach-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.approach-list li {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  padding-left: 20px;
  position: relative;
}

.approach-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 600;
}

.approach-note {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  font-style: italic;
}

/* Stats */
.stats-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 8px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-number {
  font-size: 28px;
  font-weight: 600;
  color: var(--color-accent);
  letter-spacing: 2px;
}

.stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  line-height: 1.4;
}

/* ═══════════════════════════════════════════════════════════════
   SECTION 5 — WHO I WORK WITH
═══════════════════════════════════════════════════════════════ */
#clients {
  background: transparent;
}

.clients-intro {
  font-size: 16px;
  color: rgba(255,255,255,0.9);
  max-width: 700px;
  margin-bottom: 36px;
  line-height: 1.65;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--card-gap);
  max-width: 600px;
  margin: 48px auto 0;
}

.industry-card {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  cursor: pointer;
  background: rgba(58, 12, 37, 0.25);
}

.industry-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: transform 0.4s ease, filter 0.4s ease;
}

.industry-card:hover img {
  transform: scale(1.08);
  filter: grayscale(60%) brightness(1.05);
}

.industry-card .card-title {
  background: linear-gradient(to top, rgba(26,18,21,0.75) 0%, transparent 100%);
}

.industry-card:hover .card-title {
  opacity: 1;
}

/* ═══════════════════════════════════════════════════════════════
   SECTION 6 — WHY ME
═══════════════════════════════════════════════════════════════ */
#why-me {
  background: transparent;
}

.why-intro {
  font-size: 16px;
  color: rgba(255,255,255,0.9);
  max-width: 700px;
  margin-bottom: 48px;
  line-height: 1.65;
}

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.credential-card {
  overflow: hidden;
}

.credential-header {
  background: var(--color-logo);
  padding: 16px 24px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #fff;
  text-transform: uppercase;
  line-height: 1.4;
}

.credential-body {
  background: rgba(58, 12, 37, 0.15);
  padding: 24px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.88);
}

/* ═══════════════════════════════════════════════════════════════
   SECTION 7 — SUCCESS STORY
═══════════════════════════════════════════════════════════════ */
#success {
  background: transparent;
}

.success-intro {
  font-size: 16px;
  color: rgba(255,255,255,0.9);
  max-width: 720px;
  margin-bottom: 48px;
  line-height: 1.65;
}

.success-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.success-column h3 {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 6px;
  color: var(--color-accent);
  text-transform: uppercase;
  margin-bottom: 28px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(113,152,239,0.3);
}

.success-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.success-list li {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255,255,255,0.88);
  padding-left: 20px;
  position: relative;
}

.success-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 600;
}

/* ═══════════════════════════════════════════════════════════════
   SECTION 8 — CONTACT
═══════════════════════════════════════════════════════════════ */
#contact {
  background: transparent;
}

.contact-intro {
  font-size: 16px;
  color: rgba(255,255,255,0.9);
  max-width: 680px;
  margin-bottom: 48px;
  line-height: 1.65;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: var(--max-width);
  margin: 0 auto;
  align-items: start;
}

/* Contact Form 7 Styling */
.wpcf7-form,
.contact-form-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.wpcf7-form p { margin: 0; }

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea,
.contact-form-wrapper input,
.contact-form-wrapper textarea {
  width: 100%;
  background: rgba(58, 12, 37, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font: 400 16px var(--font-main);
  padding: 14px 20px;
  outline: none;
  transition: border-color 0.2s ease;
  -webkit-appearance: none;
  border-radius: 0;
}

.wpcf7-form input[type="text"]::placeholder,
.wpcf7-form input[type="email"]::placeholder,
.wpcf7-form input[type="tel"]::placeholder,
.wpcf7-form textarea::placeholder,
.contact-form-wrapper input::placeholder,
.contact-form-wrapper textarea::placeholder {
  color: rgba(255,255,255,0.5);
}

.wpcf7-form input[type="text"]:focus,
.wpcf7-form input[type="email"]:focus,
.wpcf7-form input[type="tel"]:focus,
.wpcf7-form textarea:focus {
  border-color: var(--color-accent);
}

.wpcf7-form textarea,
.contact-form-wrapper textarea {
  resize: vertical;
  min-height: 140px;
}

.wpcf7-form input[type="submit"],
.wpcf7-submit {
  width: 100%;
  background: var(--color-logo);
  color: #fff;
  border: none;
  padding: 16px 48px;
  font: 600 16px var(--font-main);
  letter-spacing: 4px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s ease;
  border-radius: 0;
  -webkit-appearance: none;
}

.wpcf7-form input[type="submit"]:hover {
  background: #5a1c35;
}

/* Contact details */
.contact-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 12px;
}

.contact-detail-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-detail-item .detail-icon {
  font-size: 20px;
}

.contact-detail-item .detail-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  color: var(--color-logo);
  text-transform: uppercase;
}

.contact-detail-item .detail-value {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  word-break: break-word;
}

.contact-detail-item .detail-value a {
  color: rgba(255,255,255,0.85);
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════ */
#site-footer {
  background: rgba(58, 12, 37, 0.3);
  border-top: 1px solid rgba(58, 12, 37, 0.5);
  padding: 40px var(--section-pad-h);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-logo svg,
.footer-logo img {
  height: 36px;
  width: auto;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: center;
}

.footer-nav a {
  font-size: 13px;
  letter-spacing: 6px;
  color: var(--color-accent);
  text-transform: uppercase;
  font-weight: 400;
}

.footer-copyright {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 1px;
}

/* ═══════════════════════════════════════════════════════════════
   PAGE TEMPLATES (page.php, single.php, 404.php)
═══════════════════════════════════════════════════════════════ */
.page-content-wrap {
  padding-top: calc(var(--header-height) + 60px);
  padding-bottom: 80px;
  min-height: 70vh;
}

.page-content-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 var(--section-pad-h);
}

.page-content-inner h1 {
  font-size: 42px;
  font-weight: 600;
  letter-spacing: 4px;
  color: #fff;
  margin-bottom: 32px;
  line-height: 1.2;
}

.page-content-inner h2 { font-size: 28px; color: var(--color-accent); margin: 32px 0 16px; }
.page-content-inner h3 { font-size: 22px; color: #fff; margin: 24px 0 12px; }

.page-content-inner p,
.page-content-inner li {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.88);
  margin-bottom: 16px;
}

.page-content-inner ul,
.page-content-inner ol {
  padding-left: 24px;
}

.page-content-inner ul li { list-style: disc; }
.page-content-inner ol li { list-style: decimal; }

/* 404 */
.error-404-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  text-align: center;
  gap: 24px;
  padding: calc(var(--header-height) + 40px) var(--section-pad-h) 80px;
}

.error-404-wrap h1 {
  font-size: clamp(80px, 15vw, 160px);
  font-weight: 700;
  color: rgba(58,12,37,0.35);
  line-height: 1;
  letter-spacing: 8px;
}

.error-404-wrap h2 {
  font-size: 32px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 4px;
}

.error-404-wrap p {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  max-width: 480px;
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════════ */

/* 1024px */
@media (max-width: 1024px) {
  :root {
    --section-pad-v: 80px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-content { align-items: center; }
  .hero-tag { align-self: center; }
  .hero-description { text-align: left; }
  .hero-contact { justify-content: center; }
  .btn-primary { align-self: center; }

  .hero-visual { display: none; }

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

  .success-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

/* 768px */
@media (max-width: 768px) {
  :root {
    --section-pad-v: 64px;
    --section-pad-h: 20px;
  }

  .section-heading {
    font-size: 28px;
    letter-spacing: 5px;
  }

  /* Nav → hamburger */
  .primary-nav { display: none; }
  .hamburger   { display: flex; }

  .problems-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .industry-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
  }

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

  .contact-details {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-nav {
    gap: 16px;
  }

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

/* 480px */
@media (max-width: 480px) {
  :root {
    --section-pad-v: 48px;
  }

  .hero-name { font-size: 40px; }
  .hero-role { font-size: 26px; }

  .problems-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 0 auto;
  }

  .section-heading {
    font-size: 22px;
    letter-spacing: 4px;
  }

  .process-flow {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .process-arrow { transform: rotate(90deg); align-self: center; }

  .footer-nav { flex-direction: column; gap: 12px; }
}
