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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #111111;
  background-color: #ffffff;
}

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

a {
  color: #E8740C;
  text-decoration: underline;
}

a:hover,
a:focus {
  color: #C55E08;
}

:focus-visible {
  outline: 3px solid #E8740C;
  outline-offset: 2px;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes buildWebsite {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.9);
  }
  20% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes cursorBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

@keyframes typeCode {
  from { width: 0; }
  to { width: 100%; }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes popIn {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  70% {
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* ===== SKIP LINK ===== */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: #E8740C;
  color: #ffffff;
  padding: 8px 16px;
  z-index: 10000;
  border-radius: 0 0 4px 4px;
  text-decoration: none;
  font-weight: 600;
}

.skip-link:focus {
  top: 0;
}

/* ===== CONTAINER ===== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  z-index: 1000;
  padding: 0 20px;
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.04);
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.site-logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: #E8740C;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.2s;
}

.site-logo:hover,
.site-logo:focus {
  color: #C55E08;
  transform: scale(1.02);
}

/* ===== NAV ===== */
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 4px;
}

.main-nav a {
  display: block;
  padding: 8px 16px;
  color: #444444;
  text-decoration: none;
  font-weight: 500;
  border-radius: 8px;
  transition: background 0.25s, color 0.25s, transform 0.2s;
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: #E8740C;
  border-radius: 2px;
  transition: width 0.3s, left 0.3s;
}

.main-nav a:hover::after,
.main-nav a:focus::after {
  width: 60%;
  left: 20%;
}

.main-nav a:hover,
.main-nav a:focus {
  background: #fef4eb;
  color: #E8740C;
}

/* ===== HAMBURGER ===== */
.menu-toggle {
  display: none;
  background: none;
  border: 2px solid #333333;
  border-radius: 6px;
  padding: 6px 8px;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s;
}

.menu-toggle:hover {
  border-color: #E8740C;
}

.menu-toggle .bar {
  display: block;
  width: 22px;
  height: 2px;
  background: #333333;
  transition: transform 0.3s, opacity 0.3s, background 0.2s;
}

.menu-toggle:hover .bar {
  background: #E8740C;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    padding: 16px 20px;
  }

  .main-nav.is-open {
    display: block;
    animation: fadeInUp 0.3s ease;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 4px;
  }

  .main-nav a {
    padding: 14px 16px;
    font-size: 1.05rem;
  }

  .main-nav a::after {
    display: none;
  }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s, height 0.5s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: #E8740C;
  color: #ffffff;
  border-color: #E8740C;
  box-shadow: 0 4px 15px rgba(232, 116, 12, 0.3);
}

.btn-primary:hover,
.btn-primary:focus {
  background: #C55E08;
  border-color: #C55E08;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 116, 12, 0.4);
}

.btn-secondary {
  background: transparent;
  color: #E8740C;
  border-color: #E8740C;
}

.btn-secondary:hover,
.btn-secondary:focus {
  background: #E8740C;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(232, 116, 12, 0.3);
}

/* Dark section button variants */
.hero .btn-primary {
  background: #ffffff;
  color: #E8740C;
  border-color: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.hero .btn-primary:hover,
.hero .btn-primary:focus {
  background: #fef4eb;
  color: #C55E08;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.hero .btn-secondary {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.7);
}

.hero .btn-secondary:hover,
.hero .btn-secondary:focus {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border-color: #ffffff;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, rgba(120, 50, 0, 0.92) 0%, rgba(180, 85, 10, 0.85) 30%, rgba(232, 116, 12, 0.80) 60%, rgba(160, 70, 5, 0.90) 100%),
              url("../images/hero-bg.png") center center / cover no-repeat;
  color: #f5f5f5;
  padding: 130px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at 30% 50%, rgba(255,255,255,0.06) 0%, transparent 70%),
              radial-gradient(ellipse at 70% 20%, rgba(255,255,255,0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 80px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80'%3E%3Cpath fill='%23ffffff' d='M0,48L80,42.7C160,37,320,27,480,32C640,37,800,59,960,58.7C1120,59,1280,37,1360,26.7L1440,16L1440,80L0,80Z'/%3E%3C/svg%3E") no-repeat bottom center;
  background-size: cover;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: #ffffff;
  line-height: 1.15;
  letter-spacing: -0.02em;
  animation: fadeInUp 0.8s ease;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 36px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-ctas .btn {
  min-width: 180px;
}

/* ===== WEBSITE BUILD ANIMATION ===== */
.hero-animation {
  margin-top: 48px;
  display: flex;
  justify-content: center;
  animation: fadeInUp 1s ease 0.6s both;
}

.build-preview {
  width: 420px;
  max-width: 100%;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.build-browser-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.build-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
}

.build-dot:nth-child(1) { background: #ff605c; }
.build-dot:nth-child(2) { background: #ffbd44; }
.build-dot:nth-child(3) { background: #00ca4e; }

.build-url-bar {
  flex: 1;
  margin-left: 8px;
  height: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  display: flex;
  align-items: center;
  padding: 0 8px;
}

.build-url-text {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.5);
  font-family: monospace;
  overflow: hidden;
  white-space: nowrap;
  animation: typeCode 2s steps(30) 1s both;
}

.build-content {
  padding: 16px;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.build-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  animation: slideDown 0.5s ease 1.5s both;
}

.build-logo-placeholder {
  width: 60px;
  height: 12px;
  background: rgba(232, 116, 12, 0.6);
  border-radius: 3px;
}

.build-nav-dots {
  display: flex;
  gap: 8px;
}

.build-nav-dot {
  width: 24px;
  height: 6px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 3px;
}

.build-hero-block {
  margin-top: 8px;
  animation: buildWebsite 0.8s ease 2s both;
}

.build-title-line {
  height: 14px;
  background: rgba(255, 255, 255, 0.35);
  border-radius: 3px;
  margin-bottom: 6px;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}

.build-subtitle-line {
  height: 8px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
  width: 60%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 12px;
}

.build-btn-placeholder {
  width: 70px;
  height: 18px;
  background: rgba(232, 116, 12, 0.7);
  border-radius: 9px;
  margin: 0 auto;
  animation: popIn 0.5s ease 2.8s both;
}

.build-cards-row {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.build-card {
  flex: 1;
  height: 50px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.build-card:nth-child(1) { animation: buildWebsite 0.6s ease 3s both; }
.build-card:nth-child(2) { animation: buildWebsite 0.6s ease 3.3s both; }
.build-card:nth-child(3) { animation: buildWebsite 0.6s ease 3.6s both; }

.build-card-icon {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(232, 116, 12, 0.5);
}

.build-card-line {
  width: 24px;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
}

.build-cursor {
  position: absolute;
  bottom: 20%;
  right: 25%;
  width: 16px;
  height: 16px;
  z-index: 2;
  animation: float 3s ease-in-out 2s infinite;
}

.build-cursor svg {
  width: 16px;
  height: 16px;
  fill: #ffffff;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }

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

  .hero {
    padding: 80px 20px;
  }

  .build-preview {
    width: 300px;
  }

  .build-cards-row {
    display: none;
  }
}

/* ===== SECTIONS ===== */
.section {
  padding: 96px 20px;
  position: relative;
}

.section-alt {
  background: #fdf8f4;
}

.section-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: #111111;
  letter-spacing: -0.01em;
}

.section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #555555;
  margin-bottom: 56px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== SERVICE CARDS ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
}

.service-card {
  background: #ffffff;
  border: 1px solid #f0e8e0;
  border-radius: 16px;
  padding: 36px 24px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.35s, transform 0.35s, border-color 0.35s;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #E8740C, #F59E3F, #E8740C);
  transform: scaleX(0);
  transition: transform 0.35s ease;
  transform-origin: left;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  box-shadow: 0 12px 40px rgba(232, 116, 12, 0.12);
  transform: translateY(-6px);
  border-color: rgba(232, 116, 12, 0.2);
}

.service-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #fef4eb 0%, #fde8d4 100%);
  border-radius: 16px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover .service-icon {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(232, 116, 12, 0.15);
}

.service-icon svg {
  width: 28px;
  height: 28px;
  stroke: #E8740C;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: #111111;
  font-weight: 700;
}

.service-card p {
  font-size: 0.95rem;
  color: #555555;
  line-height: 1.6;
}

/* ===== PRICING ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-bottom: 36px;
}

.pricing-card {
  background: #ffffff;
  border: 2px solid #f0e8e0;
  border-radius: 20px;
  padding: 40px 28px;
  text-align: center;
  position: relative;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  transition: transform 0.35s, box-shadow 0.35s;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.pricing-card.featured {
  border-color: #E8740C;
  box-shadow: 0 8px 32px rgba(232, 116, 12, 0.12);
  transform: scale(1.03);
}

.pricing-card.featured:hover {
  transform: scale(1.03) translateY(-4px);
  box-shadow: 0 16px 48px rgba(232, 116, 12, 0.18);
}

.pricing-card.featured::before {
  content: "Popular";
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #E8740C, #F59E3F);
  color: #ffffff;
  padding: 5px 22px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(232, 116, 12, 0.3);
}

.pricing-card h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: #111111;
  font-weight: 700;
}

.pricing-price {
  font-size: 2rem;
  font-weight: 800;
  color: #E8740C;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.pricing-card ul {
  list-style: none;
  text-align: left;
  margin-bottom: 28px;
}

.pricing-card li {
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 0.95rem;
  color: #333333;
  padding-left: 28px;
  position: relative;
}

.pricing-card li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: #E8740C;
  font-weight: 700;
  font-size: 1rem;
}

.pricing-note {
  text-align: center;
  font-size: 0.95rem;
  color: #666666;
  font-style: italic;
}

/* ===== ABOUT ===== */
.about-content {
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
}

.about-content p {
  font-size: 1.1rem;
  color: #333333;
  margin-bottom: 20px;
  line-height: 1.8;
}

/* ===== CONTACT ===== */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: start;
}

@media (max-width: 768px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.contact-info h3 {
  font-size: 1.3rem;
  margin-bottom: 14px;
  color: #111111;
  font-weight: 700;
}

.contact-info p {
  color: #444444;
  margin-bottom: 16px;
  line-height: 1.7;
}

.contact-info address {
  font-style: normal;
  color: #444444;
  line-height: 1.7;
  font-size: 1.02rem;
}

/* ===== FORM ===== */
.contact-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  color: #222222;
  font-size: 0.95rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  font-size: 1rem;
  font-family: inherit;
  color: #111111;
  background: #ffffff;
  margin-bottom: 4px;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #E8740C;
  outline: none;
  box-shadow: 0 0 0 4px rgba(232, 116, 12, 0.1);
}

.contact-form textarea {
  resize: vertical;
  min-height: 130px;
}

.form-group {
  margin-bottom: 22px;
}

.form-error {
  color: #c0392b;
  font-size: 0.85rem;
  margin-top: 4px;
  min-height: 1.2em;
}

.form-error:empty {
  display: none;
}

.input-error {
  border-color: #c0392b !important;
  box-shadow: 0 0 0 4px rgba(192, 57, 43, 0.08) !important;
}

.msg-counter {
  font-size: 0.8rem;
  color: #888888;
  text-align: right;
  margin-top: 4px;
}

/* ===== ALERT BANNERS ===== */
.alert {
  padding: 16px 20px;
  border-radius: 12px;
  margin-bottom: 24px;
  font-weight: 500;
  animation: fadeInUp 0.5s ease;
}

.alert-success {
  background: linear-gradient(135deg, #fef4eb, #fde8d4);
  color: #7a3d00;
  border: 1px solid #f5c99b;
}

.alert-error {
  background: linear-gradient(135deg, #fdecea, #fce4ec);
  color: #842029;
  border: 1px solid #f5c2c7;
}

/* ===== FOOTER ===== */
.site-footer {
  background: linear-gradient(180deg, #2a1a0e 0%, #1a0f06 100%);
  color: #cccccc;
  padding: 56px 20px 28px;
  position: relative;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  right: 0;
  height: 60px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60'%3E%3Cpath fill='%23fdf8f4' d='M0,0L80,5.3C160,11,320,21,480,24C640,27,800,21,960,16C1120,11,1280,5,1360,2.7L1440,0L1440,0L0,0Z'/%3E%3C/svg%3E") no-repeat top center;
  background-size: cover;
  pointer-events: none;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}

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

.site-footer h4 {
  color: #ffffff;
  margin-bottom: 14px;
  font-size: 1.1rem;
  font-weight: 700;
}

.site-footer p,
.site-footer address {
  font-style: normal;
  color: #aaaaaa;
  line-height: 1.7;
  font-size: 0.95rem;
}

.site-footer a {
  color: #F5A35C;
  text-decoration: none;
  transition: color 0.2s;
}

.site-footer a:hover,
.site-footer a:focus {
  color: #ffffff;
  text-decoration: underline;
}

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

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

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  text-align: center;
  font-size: 0.9rem;
  color: #666666;
}

.recaptcha-notice {
  font-size: 0.8rem;
  color: #888888;
  margin-top: 12px;
}

.recaptcha-notice a {
  color: #F5A35C;
}

.grecaptcha-badge {
  visibility: hidden !important;
}
