/* ===== IMPORTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-primary: #4F1616;
  --bg-dark: #3a0f0f;
  --bg-darker: #2d0a0a;
  --accent-gold: #F1B243;
  --accent-gold-dark: #d99a2e;
  --accent-gold-light: #f5c76a;
  --text-white: #FFFFFF;
  --text-offwhite: #F8F8F8;
  --text-muted: rgba(255, 255, 255, 0.7);
  --text-subtle: rgba(255, 255, 255, 0.5);
  --gold-line: rgba(241, 178, 67, 0.2);
  --gold-line-hover: rgba(241, 178, 67, 0.4);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.15);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.25);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.35);
  --shadow-glow: 0 0 30px rgba(241, 178, 67, 0.08);
  --font-heading: 'Cinzel', serif;
  --font-body: 'Inter', sans-serif;
  --max-width: 1100px;
  --transition: 0.3s ease;
  --transition-slow: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-offwhite);
  line-height: 1.8;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

ul,
ol {
  list-style: none;
}

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

::selection {
  background: var(--accent-gold);
  color: var(--bg-primary);
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  color: var(--accent-gold);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.02em;
}

h1 {
  font-size: clamp(1.8rem, 4.5vw, 3.4rem);
  line-height: 1.2;
}

h2 {
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  margin-bottom: 1.2rem;
}

h3 {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  margin-bottom: 0.8rem;
}

p {
  margin-bottom: 0.9rem;
  font-size: 1rem;
}

/* ===== CONTAINER ===== */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition: all var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(47, 10, 10, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 10px 0;
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.4);
}

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

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent-gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  flex-shrink: 0;
}

.logo::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-gold), transparent);
}

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

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-offwhite);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  position: relative;
  padding: 4px 0;
  white-space: nowrap;
}

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

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

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent-gold);
}

.nav-links .btn {
  padding: 10px 24px;
  font-size: 0.8rem;
}

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

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--accent-gold);
  transition: all var(--transition);
  border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 15px 36px;
  background: var(--accent-gold);
  color: var(--bg-primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: var(--shadow-md), 0 0 20px rgba(241, 178, 67, 0.12);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn:hover {
  background: var(--accent-gold-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg), 0 0 35px rgba(241, 178, 67, 0.2);
}

.btn:active {
  transform: translateY(0);
}

.btn-outline {
  background: transparent;
  color: var(--accent-gold);
  border: 2px solid var(--accent-gold);
  box-shadow: none;
}

.btn-outline:hover {
  background: var(--accent-gold);
  color: var(--bg-primary);
}

/* ===== SECTIONS ===== */
section {
  padding: 80px 0;
  position: relative;
}

.gold-underline {
  display: inline-block;
  position: relative;
}

.gold-underline::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: var(--accent-gold);
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(241, 178, 67, 0.25);
}

/* ===== HERO SECTION ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at center top, rgba(241, 178, 67, 0.07) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(241, 178, 67, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: linear-gradient(to top, var(--bg-primary), transparent);
  pointer-events: none;
}

.hero-content {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero h1 {
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 25px rgba(241, 178, 67, 0.12);
}

.hero p {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
  line-height: 1.8;
}

.hero .lead {
  font-size: 1.15rem;
  color: var(--text-offwhite);
  font-weight: 400;
  margin-bottom: 1.5rem;
}

.hero .btn {
  margin-top: 1.5rem;
}

/* Sub-page Heroes */
.page-hero {
  min-height: auto;
  padding: 150px 0 70px;
}

.page-hero h1 {
  margin-bottom: 1rem;
}

/* ===== CONTENT SECTIONS ===== */
.content-section {
  background: var(--bg-primary);
}

.content-section.alt {
  background: var(--bg-dark);
}

.content-section.darker {
  background: var(--bg-darker);
}

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

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

/* ===== CHECK LISTS ===== */
.check-list {
  list-style: none;
  padding: 0;
}

.check-list li {
  padding: 8px 0 8px 30px;
  position: relative;
  font-size: 1rem;
  color: var(--text-offwhite);
  transition: transform var(--transition), color var(--transition);
}

.check-list li:hover {
  transform: translateX(4px);
  color: var(--accent-gold-light);
}

.check-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent-gold);
  font-weight: 700;
  font-size: 1rem;
  transition: transform var(--transition);
}

.check-list li:hover::before {
  transform: translateX(3px);
}

/* Centered check list variant */
.check-list-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.check-list-centered li {
  text-align: left;
}

/* ===== HOW IT WORKS / STEPS ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.step-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--gold-line);
  border-radius: 8px;
  padding: 36px 24px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.step-card:hover::before {
  opacity: 1;
}

.step-card:hover {
  background: rgba(241, 178, 67, 0.04);
  border-color: var(--gold-line-hover);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md), var(--shadow-glow);
}

.step-number {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--accent-gold);
  opacity: 0.25;
  margin-bottom: 12px;
  line-height: 1;
  transition: opacity var(--transition);
}

.step-card:hover .step-number {
  opacity: 0.5;
}

.step-card h3 {
  color: var(--accent-gold);
  margin-bottom: 12px;
  font-size: 1.1rem;
}

.step-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
}

/* ===== TAGS ===== */
.tags-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin: 30px 0;
}

.tag {
  padding: 10px 24px;
  border: 1px solid var(--gold-line);
  border-radius: 50px;
  font-size: 0.9rem;
  color: var(--text-offwhite);
  transition: all 0.4s ease;
  font-weight: 400;
}

.tag:hover {
  border-color: var(--accent-gold);
  background: rgba(241, 178, 67, 0.06);
  color: var(--accent-gold);
  box-shadow: 0 0 15px rgba(241, 178, 67, 0.08);
}

/* ===== DIFFERENCE SECTION ===== */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.diff-item {
  text-align: center;
  padding: 24px 16px;
  border-radius: 8px;
  transition: all 0.4s ease;
}

.diff-item:hover {
  background: rgba(241, 178, 67, 0.03);
}

.diff-item p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 0.6rem;
}

.diff-item .highlight {
  color: var(--accent-gold);
  font-weight: 600;
  font-size: 1.05rem;
}

/* ===== CTA SECTION ===== */
.cta-section {
  text-align: center;
  padding: 80px 0;
  background: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-primary) 100%);
  position: relative;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

.cta-section::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(241, 178, 67, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section h2 {
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.cta-section p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 1;
}

.cta-section .btn {
  position: relative;
  z-index: 1;
}

/* ===== SERVICES ===== */
.service-block {
  padding: 50px 0;
  border-bottom: 1px solid var(--gold-line);
}

.service-block:last-of-type {
  border-bottom: none;
}

.service-block h2 {
  margin-bottom: 1rem;
}

.service-block>p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 1.2rem;
  max-width: 680px;
}

.service-block .check-list {
  max-width: 680px;
}

.not-do-section {
  background: rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  padding: 36px;
  margin: 36px 0;
  border: 1px solid rgba(241, 178, 67, 0.08);
}

.not-do-section .check-list li::before {
  content: '✕';
  color: rgba(241, 178, 67, 0.5);
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 750px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--gold-line);
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  cursor: pointer;
  transition: color var(--transition);
  gap: 16px;
}

.faq-question h3 {
  margin-bottom: 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-offwhite);
  transition: color var(--transition);
  flex: 1;
}

.faq-question:hover h3 {
  color: var(--accent-gold);
}

.faq-icon {
  width: 22px;
  height: 22px;
  position: relative;
  flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--accent-gold);
  transition: transform var(--transition);
}

.faq-icon::before {
  width: 14px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  width: 2px;
  height: 14px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-item.active .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

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

.faq-answer-inner {
  padding: 0 0 22px;
}

.faq-answer-inner p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
}

.faq-answer-inner .check-list {
  margin: 8px 0;
}

.faq-answer-inner .check-list li {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 5px 0 5px 26px;
}

/* ===== CONTACT FORM ===== */
.form-wrapper {
  max-width: 700px;
  margin: 0 auto;
}

.contact-form {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--gold-line);
  border-radius: 12px;
  padding: 44px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.contact-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

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

.form-group {
  position: relative;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 6px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.form-group .required {
  color: var(--accent-gold);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--gold-line);
  border-radius: 6px;
  color: var(--text-offwhite);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  transition: all var(--transition);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-subtle);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent-gold);
  background: rgba(241, 178, 67, 0.04);
  box-shadow: 0 0 0 3px rgba(241, 178, 67, 0.08);
}

.form-group select {
  cursor: pointer;
  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='%23F1B243' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}

.form-group select option {
  background: var(--bg-dark);
  color: var(--text-offwhite);
}

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

.form-actions {
  margin-top: 28px;
  text-align: center;
}

.btn-submit {
  min-width: 240px;
}

.btn-submit .btn-loader {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid var(--bg-primary);
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.form-message {
  margin-top: 20px;
  padding: 14px 18px;
  border-radius: 6px;
  font-size: 0.9rem;
  text-align: center;
  font-weight: 500;
  animation: fadeInUp 0.4s ease;
}

.form-message.success {
  background: rgba(76, 175, 80, 0.1);
  border: 1px solid rgba(76, 175, 80, 0.25);
  color: #81c784;
}

.form-message.error {
  background: rgba(244, 67, 54, 0.1);
  border: 1px solid rgba(244, 67, 54, 0.25);
  color: #ef9a9a;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

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

/* ===== CONTACT INFO ===== */
.contact-info-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--gold-line);
  border-radius: 8px;
  padding: 36px;
  text-align: center;
  max-width: 480px;
  margin: 30px auto;
  transition: all 0.4s ease;
}

.contact-info-box:hover {
  border-color: var(--gold-line-hover);
  box-shadow: var(--shadow-glow);
}

.contact-info-box p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.contact-info-box a {
  color: var(--accent-gold);
  font-weight: 500;
}

.contact-info-box a:hover {
  color: var(--accent-gold-light);
}

.contact-info-box .note {
  font-size: 0.85rem;
  color: var(--text-subtle);
  font-style: italic;
  margin-top: 8px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-darker);
  padding: 50px 0 24px;
  border-top: 1px solid var(--gold-line);
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}

.footer-brand .logo {
  font-size: 1.3rem;
  margin-bottom: 10px;
  display: inline-block;
}

.footer-brand p {
  color: var(--text-subtle);
  font-size: 0.85rem;
  font-style: italic;
}

.footer-links h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
  color: var(--accent-gold);
}

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

.footer-links ul li a {
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: all var(--transition);
}

.footer-links ul li a:hover {
  color: var(--accent-gold);
  padding-left: 3px;
}

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

.footer-bottom p {
  color: var(--text-subtle);
  font-size: 0.8rem;
  margin-bottom: 0;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered reveals */
.steps-grid .reveal:nth-child(2) {
  transition-delay: 0.12s;
}

.steps-grid .reveal:nth-child(3) {
  transition-delay: 0.24s;
}

.diff-grid .reveal:nth-child(2) {
  transition-delay: 0.12s;
}

.diff-grid .reveal:nth-child(3) {
  transition-delay: 0.24s;
}

/* ===== SEPARATOR ===== */
.separator {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-line), transparent);
  margin: 0;
}

/* ===== UTILITIES ===== */
.emphasis {
  color: var(--accent-gold);
  font-weight: 600;
}

.italic-note {
  font-style: italic;
  color: var(--text-muted);
}

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

.mt-1 {
  margin-top: 1rem;
}

.mt-2 {
  margin-top: 2rem;
}

.mt-3 {
  margin-top: 3rem;
}

.mb-1 {
  margin-bottom: 1rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.mb-3 {
  margin-bottom: 3rem;
}

.statement-block {
  text-align: center;
  padding: 30px 0;
}

.statement-block p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 0.6rem;
}

.statement-block .emphasis {
  font-size: 1.15rem;
  display: block;
  margin-top: 0.8rem;
}

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

/* ===== TABLET (max 992px) ===== */
@media (max-width: 992px) {
  section {
    padding: 60px 0;
  }

  .hero {
    padding: 110px 0 70px;
  }

  .page-hero {
    padding: 120px 0 50px;
  }

  .steps-grid,
  .diff-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .steps-grid .step-card:last-child {
    grid-column: 1 / -1;
    max-width: 400px;
    margin: 0 auto;
  }

  .diff-grid .diff-item:last-child {
    grid-column: 1 / -1;
    max-width: 400px;
    margin: 0 auto;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .footer-brand {
    grid-column: 1 / -1;
    text-align: center;
  }

  .footer-links {
    text-align: center;
  }

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

  .contact-form {
    padding: 36px;
  }
}

/* ===== MOBILE NAV BREAKPOINT (max 768px) ===== */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 260px;
    height: 100vh;
    height: 100dvh;
    background: rgba(47, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 90px 32px 32px;
    gap: 24px;
    transition: right 0.4s ease;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
  }

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

  .nav-links a {
    font-size: 0.95rem;
  }

  .nav-links .btn {
    width: 100%;
    text-align: center;
    padding: 14px 20px;
  }

  section {
    padding: 50px 0;
  }

  .hero {
    min-height: auto;
    padding: 100px 0 50px;
  }

  .hero h1 {
    font-size: 1.7rem;
  }

  .hero .lead {
    font-size: 1.05rem;
  }

  .hero-content {
    max-width: 100%;
  }

  .page-hero {
    padding: 110px 0 40px;
  }

  .steps-grid,
  .diff-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .steps-grid .step-card:last-child,
  .diff-grid .diff-item:last-child {
    grid-column: auto;
    max-width: none;
  }

  .step-card {
    padding: 28px 20px;
  }

  .btn {
    padding: 13px 28px;
    font-size: 0.85rem;
  }

  .tags-grid {
    gap: 10px;
  }

  .tag {
    padding: 9px 18px;
    font-size: 0.82rem;
  }

  .not-do-section {
    padding: 24px 20px;
  }

  .contact-info-box {
    padding: 28px 20px;
  }

  .section-header {
    margin-bottom: 36px;
  }

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

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

  .footer-content {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }

  .footer-brand {
    grid-column: auto;
  }
}

/* ===== SMALL MOBILE (max 480px) ===== */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  h1 {
    font-size: 1.45rem;
  }

  h2 {
    font-size: 1.15rem;
  }

  .logo {
    font-size: 1.15rem;
  }

  .hero {
    padding: 90px 0 40px;
  }

  .hero h1 {
    font-size: 1.4rem;
  }

  .hero .lead {
    font-size: 0.95rem;
  }

  .page-hero {
    padding: 100px 0 36px;
  }

  section {
    padding: 40px 0;
  }

  .btn {
    padding: 12px 24px;
    font-size: 0.8rem;
    width: 100%;
  }

  .step-card {
    padding: 22px 16px;
  }

  .step-number {
    font-size: 2rem;
  }

  .contact-form {
    padding: 22px 14px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 11px 12px;
    font-size: 0.9rem;
  }

  .faq-question h3 {
    font-size: 0.95rem;
  }

  .tags-grid {
    gap: 8px;
  }

  .tag {
    padding: 8px 14px;
    font-size: 0.78rem;
  }

  .section-header {
    margin-bottom: 28px;
  }

  .gold-underline::after {
    width: 40px;
  }
}

/* ===== VERY SMALL (max 360px) ===== */
@media (max-width: 360px) {
  .container {
    padding: 0 12px;
  }

  h1 {
    font-size: 1.25rem;
  }

  h2 {
    font-size: 1.05rem;
  }

  .logo {
    font-size: 1.05rem;
  }

  .hero h1 {
    font-size: 1.25rem;
  }

  .hero .lead {
    font-size: 0.88rem;
  }

  .hero p {
    font-size: 0.88rem;
  }

  .hero {
    padding: 85px 0 36px;
  }

  .page-hero {
    padding: 90px 0 30px;
  }

  .nav-links {
    width: 240px;
    padding: 80px 24px 24px;
    gap: 20px;
  }

  .step-card {
    padding: 20px 14px;
  }

  .contact-form {
    padding: 18px 12px;
  }
}