/* Corporate Financial Relief - Main Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --bg-primary: #f5f0eb;
  --bg-secondary: #ede7e0;
  --bg-card: #ffffff;
  --bg-card-hover: #faf7f4;
  --gold: #C9A24A;
  --gold-light: #D8BC73;
  --gold-dark: #a8883d;
  --silver: #D9D4CC;
  --silver-dark: #8a847d;
  --shadow: #4A4742;
  --text: #2a2723;
  --text-muted: #5a5550;
  --white: #1a1714;
  --nav-black: #000000;
  --footer-black: #1a1714;
  --max-width: 1200px;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-primary);
  color: var(--text);
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--white);
  font-weight: 500;
  line-height: 1.2;
}

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

a:hover {
  color: var(--gold-light);
}

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

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--nav-black);
  border-bottom: 1px solid rgba(201, 162, 74, 0.15);
  padding: 0.3rem 2rem;
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo img {
  height: 140px;
  width: auto;
}

.nav-logo span {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: #f5f0eb;
  font-weight: 500;
  letter-spacing: 0.5px;
}

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

.nav-links a {
  color: #B8B1A8;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 0.5rem 0;
  position: relative;
}

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

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

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

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

.nav-cta {
  background: var(--gold) !important;
  color: #000 !important;
  padding: 0.6rem 1.5rem !important;
  border-radius: 4px;
  font-weight: 500 !important;
  letter-spacing: 0.5px;
}

.nav-cta:hover {
  background: var(--gold-light) !important;
  transform: translateY(-1px);
}

.nav-cta::after {
  display: none !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background: #D9D4CC;
  transition: var(--transition);
}

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

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

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

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

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(201, 162, 74, 0.05) 0%, transparent 70%);
}

.hero-content {
  max-width: 800px;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  border: 2px solid rgba(201, 162, 74, 0.4);
  padding: 0.6rem 1.8rem;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--gold);
  margin-bottom: 2rem;
  background: rgba(201, 162, 74, 0.05);
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero p {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-transform: uppercase;
}

.btn-primary {
  background: var(--gold);
  color: #000;
  box-shadow: 0 4px 15px rgba(201, 162, 74, 0.2);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 35px rgba(201, 162, 74, 0.4);
  color: #000;
}

.btn-primary:active {
  transform: translateY(-1px) scale(1.01);
  box-shadow: 0 6px 20px rgba(201, 162, 74, 0.3);
}

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

.btn-outline:hover {
  background: rgba(201, 162, 74, 0.15);
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 30px rgba(201, 162, 74, 0.25);
  color: var(--gold);
}

.btn-outline:active {
  transform: translateY(-1px) scale(1.01);
}
/* ===== SECTIONS ===== */
section {
  padding: 100px 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header .overline {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-header h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}

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

/* ===== SERVICES GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.service-card {
  background: #ffffff;
  border: 1px solid rgba(201, 162, 74, 0.12);
  border-radius: 8px;
  padding: 2.5rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover {
  border-color: rgba(201, 162, 74, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}

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

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  background: rgba(201, 162, 74, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--gold);
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-family: 'Playfair Display', serif;
}

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

/* ===== RELIEF FACTORS ===== */
.relief-factors {
  margin-top: 3rem;
  padding: 2.5rem;
  background: #f5f0eb;
  border: 1px solid rgba(201, 162, 74, 0.2);
  border-radius: 8px;
  text-align: center;
}

.relief-factors h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.relief-factors > p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.factors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.factor h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.factor p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: #ffffff;
  border-top: 1px solid rgba(201, 162, 74, 0.1);
  border-bottom: 1px solid rgba(201, 162, 74, 0.1);
  padding: 3rem 2rem;
}

.calc-container {
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}

.calc-header {
  margin-bottom: 2rem;
}

.calc-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #1a1714;
  margin-bottom: 0.5rem;
}

.calc-header p {
  color: #666;
  font-size: 0.95rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.calc-header em {
  color: #999;
  font-size: 0.85rem;
}

.calc-box {
  background: #f5f0eb;
  border: 1px solid rgba(201, 162, 74, 0.2);
  border-radius: 12px;
  padding: 2.5rem;
  max-width: 700px;
  margin: 0 auto;
}

.calc-slider-section {
  margin-bottom: 2rem;
}

.calc-slider-section label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  margin-bottom: 1rem;
}

.calc-input-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.calc-dollar {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--gold);
  font-weight: 700;
}

.calc-input-row input[type="range"] {
  flex: 1;
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  border-radius: 3px;
  background: linear-gradient(to right, var(--gold) 0%, var(--gold) var(--fill, 9%), #ddd var(--fill, 9%), #ddd 100%);
  outline: none;
  cursor: pointer;
}

.calc-input-row input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  cursor: pointer;
  transition: transform 0.15s;
}

.calc-input-row input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

.calc-input-row input[type="range"]::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  cursor: pointer;
}

.calc-amount {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: #1a1714;
  font-weight: 700;
  min-width: 130px;
  text-align: right;
}

.calc-range-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: #999;
}

.calc-results {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 1.5rem 0;
}

.calc-result-item {
  flex: 1;
}

.calc-result-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #888;
  margin-bottom: 0.5rem;
}

.calc-result-value {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: #1a1714;
  margin-bottom: 0.3rem;
}

.calc-result-value.gold {
  color: var(--gold);
}

.calc-result-sub {
  font-size: 0.85rem;
  color: #777;
  line-height: 1.4;
}

.calc-divider {
  width: 1px;
  height: 80px;
  background: rgba(201, 162, 74, 0.3);
  flex-shrink: 0;
}

.calc-disclaimer {
  font-size: 0.75rem;
  color: #999;
  margin-top: 1.5rem;
  line-height: 1.5;
  font-style: italic;
}

.calc-disclaimer a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 700;
  font-style: normal;
}

.calc-disclaimer a:hover {
  text-decoration: underline;
}

/* ===== WHY US / FEATURES ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

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

.feature {
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(201, 162, 74, 0.1);
}

.feature h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--white);
  font-family: 'Playfair Display', serif;
}

.feature p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ===== CTA SECTION ===== */
.cta-section {
  text-align: center;
  background: linear-gradient(180deg, var(--bg-primary) 0%, rgba(201, 162, 74, 0.06) 50%, var(--bg-primary) 100%);
}

.cta-section h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 1rem;
}

.cta-section p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 1.1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== PROCESS STEPS ===== */
.process-steps {
  counter-reset: step;
  max-width: 800px;
  margin: 0 auto;
}

.process-step {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  align-items: flex-start;
  counter-increment: step;
}

.step-number {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--gold);
}

.step-content h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  font-family: 'Playfair Display', serif;
}

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

/* ===== ABOUT PAGE ===== */
.about-hero {
  padding-top: 140px;
  padding-bottom: 60px;
  text-align: center;
}

.about-hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
}

.about-hero p {
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 4rem;
}

.value-item {
  padding: 2rem;
  background: #ffffff;
  border: 1px solid rgba(201, 162, 74, 0.12);
  border-radius: 8px;
}

.value-item h4 {
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.value-item p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.contact-detail {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.contact-detail .icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(201, 162, 74, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  font-size: 1rem;
}

.contact-detail h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--silver-dark);
  margin-bottom: 0.2rem;
  font-family: 'Inter', sans-serif;
}

.contact-detail p, .contact-detail a {
  color: var(--text);
  font-size: 1rem;
}

.contact-form {
  background: #ffffff;
  border: 1px solid rgba(201, 162, 74, 0.12);
  border-radius: 8px;
  padding: 2.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--silver-dark);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.8rem 1rem;
  background: #f5f0eb;
  border: 1px solid rgba(201, 162, 74, 0.2);
  border-radius: 4px;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(201, 162, 74, 0.1);
}

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

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

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

.faq-item {
  border-bottom: 1px solid rgba(201, 162, 74, 0.1);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  text-align: left;
  padding: 1.5rem 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

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

.faq-question .arrow {
  font-size: 1.2rem;
  color: var(--gold);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question .arrow {
  transform: rotate(180deg);
}

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

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

/* ===== AFFILIATE ===== */
.affiliate-hero {
  padding-top: 140px;
  text-align: center;
  padding-bottom: 60px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.benefit-card {
  background: #ffffff;
  border: 1px solid rgba(201, 162, 74, 0.12);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
}

.benefit-card .icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(201, 162, 74, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
  color: var(--gold);
}

.benefit-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

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

/* ===== FOOTER ===== */
.footer {
  background: var(--footer-black);
  border-top: 1px solid rgba(201, 162, 74, 0.1);
  padding: 60px 2rem 30px;
}

.footer-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3rem;
}

.footer-brand img {
  height: auto;
  width: 100%;
  max-width: 300px;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: #B8B1A8;
  font-size: 0.9rem;
  max-width: 300px;
  line-height: 1.7;
}

.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

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

.footer-col ul li {
  margin-bottom: 0.6rem;
}

.footer-col ul a {
  color: #B8B1A8;
  font-size: 0.9rem;
}

.footer-col ul a:hover {
  color: var(--gold);
}

.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(201, 162, 74, 0.08);
  text-align: center;
}

.footer-bottom p {
  color: #d9d4cc;
  font-size: 0.8rem;
}

.footer-bottom p a {
  color: #d9d4cc;
  text-decoration: none;
}

.footer-bottom p a:hover {
  color: var(--gold);
}

.footer-divider {
  margin: 0 0.5rem;
  color: #d9d4cc;
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  padding: 160px 2rem 60px;
  text-align: center;
  position: relative;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center top, rgba(201, 162, 74, 0.03) 0%, transparent 60%);
}

.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
  position: relative;
}

.page-hero p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
  position: relative;
}

.gold-line {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem auto 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 110px;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.97);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
  }

  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .hero {
    padding: 120px 1.5rem 60px;
    min-height: auto;
  }

  section {
    padding: 60px 1.5rem;
  }

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

  .factors-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

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

  .process-step {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .calc-results {
    flex-direction: column;
    gap: 1rem;
  }

  .calc-divider {
    width: 80px;
    height: 1px;
  }

  .calc-result-value {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .calc-box {
    padding: 1.5rem;
  }

  .calc-amount {
    font-size: 1.4rem;
    min-width: 100px;
  }

  .calc-header h2 {
    font-size: 1.5rem;
  }

  .calc-result-value {
    font-size: 1.6rem;
  }

  .nav-container {
    height: 80px;
  }

  .nav-logo img {
    height: 100px;
  }

  .nav-logo span {
    font-size: 0.9rem;
  }
}
