:root {
  --bg-dark: #0a0c0f;
  --bg-body: #0d0f12;
  --bg-light: #ffffff;
  --card-dark: #14171c;
  --card-light: #f8fafc;
  --accent: #d2fc15;
  --text-white: #ffffff;
  --text-muted: #8a94a6;
  --text-dark: #111827;
  --font-main: "Plus Jakarta Sans", sans-serif;
  --radius-lg: 20px;
  --radius-md: 12px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background: var(--bg-body);
  color: var(--text-white);
  line-height: 1.5;
}

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

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

.container {
  width: min(1440px, calc(100% - 64px));
  margin: 0 auto;
}

.main-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 12, 15, 0.86);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 28px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0;
}

.logo-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(210, 252, 21, 0.38);
  border-radius: 50%;
  background: rgba(210, 252, 21, 0.08);
  color: var(--accent);
}

.logo-mark svg,
.eyebrow svg,
.trust-badge svg,
.stars svg {
  width: 18px;
  height: 18px;
  stroke-width: 2;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 500;
}

.main-nav a {
  transition: color 180ms ease;
}

.main-nav a:hover {
  color: var(--text-white);
}

.main-nav a.active {
  color: var(--accent);
}

.header-action {
  flex: 0 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  font-size: 0.94rem;
  font-weight: 600;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--accent);
  color: var(--text-dark);
  box-shadow: 0 14px 34px rgba(210, 252, 21, 0.18);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-white);
}

.btn-outline:hover {
  border-color: rgba(210, 252, 21, 0.42);
  background: rgba(210, 252, 21, 0.08);
}

.btn-dark {
  background: var(--text-dark);
  color: var(--text-white);
}

.btn-dark:hover {
  background: #000000;
}

.hero-section {
  overflow: hidden;
  padding: 120px 0;
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-body) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.88fr);
  align-items: center;
  gap: 80px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  padding: 10px 14px;
  border: 1px solid rgba(210, 252, 21, 0.2);
  border-radius: 999px;
  background: rgba(210, 252, 21, 0.08);
  color: var(--accent);
  font-size: 0.84rem;
  font-weight: 600;
}

.hero-content h1 {
  max-width: 720px;
  font-size: 5.2rem;
  line-height: 0.98;
  font-weight: 700;
}

.hero-copy {
  max-width: 590px;
  margin-top: 24px;
  color: var(--text-muted);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  gap: 12px;
  width: 100%;
  margin-top: 44px;
}

.trust-badge {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-height: 74px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.035);
  color: var(--text-white);
  font-size: 0.8rem;
  font-weight: 600;
}

.trust-badge svg {
  flex: 0 0 auto;
  color: var(--accent);
}

.hero-visual {
  position: relative;
  min-height: 620px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  background: var(--card-dark);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.42);
}

.hero-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  border-radius: inherit;
  background: linear-gradient(180deg, transparent 42%, rgba(10, 12, 15, 0.62) 100%);
  pointer-events: none;
}

.hero-visual img {
  width: 100%;
  height: 620px;
  border-radius: inherit;
  object-fit: cover;
  object-position: center;
}

.theme-score-card {
  position: absolute;
  right: -30px;
  bottom: 52px;
  z-index: 2;
  width: min(260px, calc(100% - 32px));
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
  background: rgba(20, 23, 28, 0.86);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(18px);
}

.score-label,
.score-text {
  display: block;
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 600;
}

.theme-score-card strong {
  display: block;
  margin-top: 4px;
  color: var(--text-white);
  font-size: 1.05rem;
}

.stars {
  display: flex;
  gap: 4px;
  margin: 14px 0 10px;
  color: var(--accent);
}

.stars svg {
  fill: currentColor;
}

.features-grid {
  padding: 120px 0;
  background: var(--bg-body);
}

.features-inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.feature-card {
  position: relative;
  display: flex;
  min-height: 310px;
  flex-direction: column;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  background: var(--card-dark);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(210, 252, 21, 0.28);
  box-shadow: 0 34px 76px rgba(0, 0, 0, 0.28);
}

.feature-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(210, 252, 21, 0.18);
  border-radius: 50%;
  background: rgba(210, 252, 21, 0.08);
  color: var(--accent);
  transition: background 220ms ease, color 220ms ease, transform 220ms ease;
}

.feature-icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 2;
}

.feature-card:hover .feature-icon {
  background: var(--accent);
  color: var(--text-dark);
  transform: scale(1.04);
}

.feature-card h2 {
  margin-top: 28px;
  font-size: 1.35rem;
  font-weight: 700;
}

.feature-card p {
  margin-top: 12px;
  color: var(--text-muted);
  font-size: 0.98rem;
}

.feature-arrow {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  align-self: flex-end;
  margin-top: auto;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-white);
  font-size: 1.28rem;
  font-weight: 600;
  line-height: 1;
  transition: background 220ms ease, border-color 220ms ease, color 220ms ease, transform 220ms ease;
}

.feature-card:hover .feature-arrow,
.feature-arrow:hover {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--text-dark);
  transform: translateX(3px);
}

.docs-categories {
  padding: 120px 0;
  background: var(--bg-light);
  color: var(--text-dark);
}

.docs-categories-inner {
  display: grid;
  grid-template-columns: 0.35fr 0.65fr;
  align-items: start;
  gap: 80px;
}

.docs-intro {
  position: sticky;
  top: 118px;
}

.docs-intro h2 {
  font-size: 2.45rem;
  line-height: 1.08;
  font-weight: 700;
}

.docs-intro p {
  margin-top: 18px;
  color: #5f6878;
  font-size: 1rem;
}

.docs-intro .btn {
  margin-top: 28px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
}

.category-card {
  display: flex;
  min-height: 168px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 24px 18px;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-md);
  background: var(--card-light);
  box-shadow: 0 14px 34px rgba(17, 24, 39, 0.06);
  color: var(--text-dark);
  text-align: center;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.category-card:hover {
  transform: translateY(-6px);
  border-color: rgba(17, 24, 39, 0.16);
  background: var(--bg-light);
  box-shadow: 0 22px 48px rgba(17, 24, 39, 0.12);
}

.category-card svg {
  width: 30px;
  height: 30px;
  color: var(--text-dark);
  stroke-width: 1.9;
  transition: color 220ms ease, transform 220ms ease;
}

.category-card:hover svg {
  color: #93b500;
  transform: scale(1.08);
}

.category-card span {
  font-size: 0.95rem;
  font-weight: 700;
}

.support-form-section {
  padding: 120px 0;
  background: var(--bg-light);
  color: var(--text-dark);
}

.support-form-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  padding: 60px;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-lg);
  background: var(--card-light);
  box-shadow: 0 26px 70px rgba(17, 24, 39, 0.08);
}

.support-info {
  display: flex;
  flex-direction: column;
}

.support-image {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  background: #e5e7eb;
}

.support-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.support-form-inner:hover .support-image img {
  transform: scale(1.035);
}

.support-info h2,
.support-form h2 {
  font-size: 2rem;
  line-height: 1.12;
  font-weight: 700;
}

.support-info h2 {
  margin-top: 30px;
}

.support-info p {
  margin-top: 14px;
  color: #5f6878;
}

.support-badges {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.support-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 82px;
  padding: 16px;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-md);
  background: var(--bg-light);
}

.support-badge-icon {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: rgba(210, 252, 21, 0.18);
  color: #6f8900;
}

.support-badge-icon svg {
  width: 20px;
  height: 20px;
}

.support-badge strong {
  display: block;
  margin-bottom: 3px;
  color: var(--text-dark);
  font-size: 0.88rem;
}

.support-badge span:last-child {
  color: #5f6878;
  font-size: 0.86rem;
  font-weight: 600;
}

.support-form {
  display: grid;
  gap: 16px;
  align-content: start;
  padding: 8px 0;
}

.support-form h2 {
  margin-bottom: 8px;
}

.form-field {
  position: relative;
  display: block;
}

.form-field span {
  display: block;
  margin-bottom: 8px;
  color: var(--text-dark);
  font-size: 0.88rem;
  font-weight: 700;
}

.form-field svg {
  position: absolute;
  left: 16px;
  top: 43px;
  width: 18px;
  height: 18px;
  color: #8a94a6;
  pointer-events: none;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid #d9dee7;
  border-radius: var(--radius-md);
  background: var(--bg-light);
  color: var(--text-dark);
  font: inherit;
  font-weight: 500;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.form-field input {
  height: 54px;
  padding: 0 16px 0 48px;
}

.form-field textarea {
  min-height: 148px;
  resize: vertical;
  padding: 16px 16px 16px 48px;
}

.form-field-message svg {
  top: 44px;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #98a2b3;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: #9fbe11;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(210, 252, 21, 0.18);
}

.support-submit {
  width: 100%;
  gap: 10px;
  margin-top: 4px;
  border: 0;
  cursor: pointer;
  font-weight: 600;
}

.support-submit svg {
  width: 18px;
  height: 18px;
}

.site-footer {
  padding: 78px 0 0;
  background: var(--bg-dark);
  color: var(--text-white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.85fr 0.85fr 1.15fr;
  gap: 44px;
}

.footer-brand p,
.footer-newsletter p {
  margin-top: 18px;
  color: var(--text-muted);
  font-size: 0.94rem;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.social-links a {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.035);
  color: var(--text-muted);
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.social-links a:hover {
  transform: translateY(-2px);
  border-color: rgba(210, 252, 21, 0.42);
  background: rgba(210, 252, 21, 0.1);
  color: var(--accent);
}

.social-links svg {
  width: 18px;
  height: 18px;
}

.footer-column h2 {
  font-size: 0.98rem;
  font-weight: 700;
}

.footer-column nav {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.footer-column nav a {
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 180ms ease, transform 180ms ease;
}

.footer-column nav a:hover {
  color: var(--text-white);
  transform: translateX(3px);
}

.newsletter-form {
  margin-top: 22px;
}

.newsletter-form label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.newsletter-field {
  display: grid;
  grid-template-columns: 1fr 52px;
  gap: 10px;
}

.newsletter-field input {
  min-width: 0;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.045);
  color: var(--text-white);
  font: inherit;
  font-weight: 500;
  outline: none;
  padding: 0 16px;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.newsletter-field input::placeholder {
  color: #727c8d;
}

.newsletter-field input:focus {
  border-color: rgba(210, 252, 21, 0.52);
  box-shadow: 0 0 0 4px rgba(210, 252, 21, 0.1);
}

.newsletter-field button {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 0;
  border-radius: var(--radius-md);
  background: var(--accent);
  color: var(--text-dark);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.newsletter-field button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(210, 252, 21, 0.18);
}

.newsletter-field button svg {
  width: 20px;
  height: 20px;
}

.footer-bottom {
  margin-top: 64px;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

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

.updates-section {
  padding: 120px 0;
  background: var(--bg-body);
}

.updates-container {
  width: min(1000px, calc(100% - 64px));
  margin: 0 auto;
}

.updates-container h1 {
  max-width: 720px;
  font-size: 3rem;
  line-height: 1.08;
  font-weight: 700;
}

.updates-timeline {
  display: grid;
  gap: 24px;
  margin-top: 44px;
}

.version-card {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  background: var(--card-dark);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.version-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 92px;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--text-dark);
  font-weight: 700;
}

.version-card h2 {
  font-size: 1.22rem;
  font-weight: 700;
}

.version-card time {
  display: block;
  margin-top: 6px;
  color: var(--text-muted);
  font-size: 0.94rem;
  font-weight: 600;
}

.contact-section {
  padding: 120px 0;
  background: var(--bg-light);
  color: var(--text-dark);
}

.contact-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  padding: 60px;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-lg);
  background: var(--card-light);
  box-shadow: 0 26px 70px rgba(17, 24, 39, 0.08);
}

.contact-info h1 {
  font-size: 2.45rem;
  line-height: 1.08;
  font-weight: 700;
}

.contact-info p {
  margin-top: 18px;
  color: #5f6878;
}

.contact-badges {
  display: grid;
  gap: 14px;
  margin-top: 32px;
}

.contact-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 84px;
  padding: 18px;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-md);
  background: var(--bg-light);
}

.contact-badge-icon {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: rgba(210, 252, 21, 0.18);
  color: #6f8900;
}

.contact-badge-icon svg {
  width: 20px;
  height: 20px;
}

.contact-badge strong {
  display: block;
  margin-bottom: 3px;
  color: var(--text-dark);
  font-size: 0.9rem;
}

.contact-badge span:last-child {
  color: #5f6878;
  font-size: 0.9rem;
  font-weight: 600;
}

.contact-form {
  display: grid;
  gap: 16px;
  align-content: start;
}

.contact-submit {
  width: 100%;
  margin-top: 4px;
  border: 0;
  cursor: pointer;
  font-weight: 600;
}

.success-section {
  min-height: 72vh;
  background: var(--bg-body);
}

.success-layout {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 0;
}

.success-container {
  display: flex;
  width: min(600px, calc(100% - 64px));
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  animation: successFadeIn 700ms ease both;
}

.success-card {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  padding: 64px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  background: var(--card-dark);
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.success-icon {
  display: grid;
  width: 82px;
  height: 82px;
  place-items: center;
  border: 1px solid rgba(210, 252, 21, 0.28);
  border-radius: 50%;
  background: rgba(210, 252, 21, 0.12);
  color: var(--accent);
}

.success-icon svg {
  width: 38px;
  height: 38px;
  stroke-width: 2.2;
}

.success-card h1 {
  margin-top: 28px;
  font-size: 2.8rem;
  line-height: 1.08;
  font-weight: 700;
}

.success-card p {
  max-width: 620px;
  margin-top: 18px;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.success-card .btn {
  margin-top: 32px;
  min-height: 54px;
  padding: 0 30px;
  font-size: 0.98rem;
  font-weight: 600;
}

@keyframes successFadeIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

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

@media (max-width: 1020px) {
  .header-inner {
    flex-wrap: wrap;
    padding: 18px 0;
  }

  .main-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

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

  .hero-content h1 {
    font-size: 4.25rem;
  }

  .hero-visual {
    min-height: auto;
  }

  .theme-score-card {
    right: 22px;
  }

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

  .feature-card {
    min-height: 260px;
  }

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

  .docs-intro {
    position: static;
  }

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

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

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

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

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, 1440px);
  }

  .hero-section {
    padding: 80px 0;
  }

  .header-action {
    display: none;
  }

  .hero-content h1 {
    font-size: 2.9rem;
  }

  .hero-actions,
  .hero-actions .btn {
    width: 100%;
  }

  .trust-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-visual img {
    height: 480px;
  }

  .theme-score-card {
    right: 16px;
    bottom: 18px;
  }

  .features-grid {
    padding: 80px 0;
  }

  .feature-card {
    padding: 26px;
  }

  .docs-categories {
    padding: 80px 0;
  }

  .docs-intro h2 {
    font-size: 2.15rem;
  }

  .support-form-section {
    padding: 80px 0;
  }

  .support-form-inner {
    padding: 32px;
  }

  .support-badges {
    grid-template-columns: 1fr;
  }

  .support-info h2,
  .support-form h2 {
    font-size: 1.72rem;
  }

  .site-footer {
    padding-top: 56px;
  }

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

  .footer-bottom {
    margin-top: 44px;
  }

  .updates-container {
    width: min(100% - 28px, 1000px);
  }

  .updates-container h1 {
    font-size: 2.35rem;
  }

  .version-card {
    grid-template-columns: 1fr;
  }

  .contact-section {
    padding: 80px 0;
  }

  .contact-inner {
    padding: 32px;
  }

  .contact-info h1 {
    font-size: 2.15rem;
  }

  .success-section {
    min-height: auto;
  }

  .success-layout {
    padding: 80px 0;
  }

  .success-card {
    padding: 36px 24px;
  }

  .success-card h1 {
    font-size: 2.2rem;
  }
}

@media (max-width: 440px) {
  .main-nav {
    gap: 18px;
    font-size: 0.84rem;
  }

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

  .hero-content h1 {
    font-size: 2.28rem;
  }

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