@font-face {
  font-family: "Space Grotesk";
  src: url("../fonts/SpaceGrotesk.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("../fonts/PlusJakartaSans.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #0B1120;
  --bg-card: #131C31;
  --bg-glass: rgba(19, 28, 49, 0.6);
  --accent1: #FF7A00;
  --accent2: #00D1FF;
  --text: #F8FAFC;
  --text-muted: #94A3B8;
  --border: rgba(255, 255, 255, 0.08);
  --radius: 16px;
  --radius-sm: 8px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  --font-body: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Plus Jakarta Sans', sans-serif;
}

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

html {
  overflow-x: clip;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: clip;
}

main {
  flex: 1;
  overflow-x: clip;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  overflow-x: clip;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

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

header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 17, 32, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  gap: 12px;
  flex-wrap: wrap;
}

.logo {
  min-width: 0;
  flex: 1;
}

.logo a {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.logo img {
  width: 50px;
  height: 50px;
  border-radius: 12px;
}

.logo-line1 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw + 0.5rem, 1.8rem);
  font-weight: 800;
  background: linear-gradient(90deg, var(--accent1), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.02em;
}

.header-notice {
  padding: 6px 16px;
  background: rgba(255, 122, 0, 0.1);
  border: 1px solid rgba(255, 122, 0, 0.3);
  color: var(--accent1);
  border-radius: 100px;
  font-size: clamp(0.7rem, 2vw + 0.25rem, 0.85rem);
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  flex-shrink: 0;
}

.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: clamp(12px, 2vw, 16px) clamp(20px, 4vw, 32px);
  border-radius: 100px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: clamp(0.875rem, 2vw + 0.25rem, 1rem);
  cursor: pointer;
  border: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  max-width: 100%;
}

.btn-primary {
  background: linear-gradient(90deg, var(--accent1), #FF4500);
  color: white;
  box-shadow: 0 8px 20px rgba(255, 122, 0, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(255, 122, 0, 0.4);
}

.btn-primary.light {
  background: white;
  color: var(--bg);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.1);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  color: white;
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent2);
}

.btn-link {
  color: var(--accent2);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-link:hover {
  gap: 12px;
}

.hero {
  position: relative;
  padding: 60px 0;
  overflow: hidden;
}

.hero-bg-shapes {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 209, 255, 0.15), transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
  overflow-x: clip;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.badge {
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.badge.glass {
  background: var(--bg-glass);
  border: 1px solid var(--border);
  backdrop-filter: blur(8px);
  color: var(--text);
}

.badge.glass i {
  color: var(--accent1);
}

.badge.outline {
  border: 1px dashed var(--accent2);
  color: var(--accent2);
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw + 1rem, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.gradient-text {
  background: linear-gradient(90deg, var(--accent1), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-text-alt {
  background: linear-gradient(90deg, #fff, var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  font-size: clamp(0.95rem, 2vw + 0.5rem, 1.15rem);
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 540px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--accent1), var(--accent2));
}

.stat-num {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2rem);
  font-weight: 800;
  color: white;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.hero-form-wrapper {
  position: relative;
}

.form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 32px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent1), var(--accent2));
}

.form-header h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw + 0.5rem, 1.8rem);
  margin-bottom: 8px;
}

.form-header p {
  color: var(--text-muted);
  margin-bottom: 24px;
  font-size: 0.95rem;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
}

.lead-form .btn-primary {
  width: 100%;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.9rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-group label i {
  color: var(--accent2);
  font-size: 0.8rem;
}

.form-group input {
  width: 100%;
  max-width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: white;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus {
  outline: none;
  border-color: var(--accent2);
  background: rgba(0, 209, 255, 0.05);
  box-shadow: 0 0 0 4px rgba(0, 209, 255, 0.1);
}

.form-group input::placeholder {
  color: #475569;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.form-check input {
  margin-top: 4px;
  accent-color: var(--accent1);
  width: 18px;
  height: 18px;
}

.form-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 8px;
}

.form-trust i {
  color: #10B981;
}

section {
  padding: 80px 0;
  position: relative;
  overflow-x: clip;
}

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

.section-tag {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(255, 122, 0, 0.1);
  color: var(--accent1);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3.5vw + 0.5rem, 3.2rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-desc {
  color: var(--text-muted);
  font-size: clamp(0.95rem, 2vw + 0.25rem, 1.1rem);
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  overflow-x: clip;
}

.tech-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.tech-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.tech-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.tech-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.tech-card:hover .tech-img img {
  transform: scale(1.05);
}

.tech-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 6px 12px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.tech-badge.best {
  background: rgba(255, 122, 0, 0.9);
  color: white;
}

.tech-badge.eco {
  background: rgba(16, 185, 129, 0.9);
  color: white;
}

.tech-badge.flex {
  background: rgba(0, 209, 255, 0.9);
  color: var(--bg);
}

.tech-content {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.tech-content h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.tech-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
  flex: 1;
}

.tech-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.tech-features i {
  color: var(--accent2);
  width: 16px;
}

.tech-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.tech-price {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1rem, 2vw + 0.25rem, 1.2rem);
  color: var(--accent1);
}

.subsidies {
  background: linear-gradient(180deg, var(--bg) 0%, #060912 100%);
  position: relative;
}

.sub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
  overflow-x: clip;
}

.sub-card {
  background: var(--bg-glass);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.sub-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent2), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.sub-card:hover {
  border-color: var(--accent2);
  transform: translateY(-4px);
}

.sub-card:hover::after {
  opacity: 1;
}

.sub-icon {
  width: 72px;
  height: 72px;
  background: rgba(0, 209, 255, 0.1);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 2rem;
  color: var(--accent2);
}

.sub-card h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.sub-highlight {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw + 0.5rem, 1.8rem);
  font-weight: 800;
  background: linear-gradient(90deg, var(--accent1), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 12px;
}

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

.sub-banner {
  background: linear-gradient(90deg, rgba(255, 122, 0, 0.1), rgba(0, 209, 255, 0.1));
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  backdrop-filter: blur(8px);
}

.banner-content h4 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw + 0.5rem, 1.8rem);
  margin-bottom: 8px;
}

.banner-content p {
  color: var(--text-muted);
  max-width: 500px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  overflow-x: clip;
}

.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: all 0.3s ease;
  position: relative;
}

.why-card:hover {
  border-color: var(--accent1);
  transform: translateY(-4px);
}

.why-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--accent1), #FF4500);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(255, 122, 0, 0.3);
}

.why-card h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 12px;
}

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

.cta-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  overflow-x: clip;
}

.cta-block {
  padding: 40px;
  background: linear-gradient(135deg, rgba(255, 122, 0, 0.15), rgba(0, 209, 255, 0.05));
  border: 1px solid var(--border);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}

.cta-block h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  line-height: 1.1;
  margin: 16px 0 24px;
}

.cta-block p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 32px;
}

.cta-img {
  width: 100%;
  height: 240px;
  border-radius: var(--radius);
  margin-top: 40px;
  border: 1px solid var(--border);
}

.faq-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.faq-header i {
  color: var(--accent2);
  font-size: 1.5rem;
}

.faq-header h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw + 0.5rem, 1.8rem);
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active {
  border-color: var(--accent1);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  color: white;
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 2vw + 0.25rem, 1.05rem);
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-q i {
  transition: transform 0.3s ease;
  color: var(--accent2);
}

.faq-item.active .faq-q i {
  transform: rotate(45deg);
  color: var(--accent1);
}

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

.faq-item.active .faq-a {
  max-height: 200px;
}

.faq-a p {
  padding: 0 24px 24px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

footer {
  margin-top: auto;
  background: #060912;
  border-top: 1px solid var(--border);
  padding: 48px 0 24px;
  font-size: 0.9rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.footer-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 24px;
  color: var(--text-muted);
}

.info-title {
  grid-column: 1 / -1;
  color: white;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.footer-disclaimer {
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}

.footer-disclaimer p {
  color: #64748B;
  font-size: 0.85rem;
  line-height: 1.7;
  max-width: 900px;
}

.footer-legal {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}

.footer-legal a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: var(--accent2);
}

.footer-copy {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.thanks-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, var(--bg) 0%, #060912 100%);
}

.thanks-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 48px;
  max-width: 600px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.thanks-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent1), var(--accent2));
}

.thanks-icon {
  font-size: 4rem;
  color: #10B981;
  margin-bottom: 16px;
}

.thanks-logo {
  border-radius: 12px;
  margin: 0 auto 24px;
}

.thanks-card h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.2rem);
  margin-bottom: 24px;
  background: linear-gradient(90deg, var(--accent1), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.thanks-text {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 32px;
  text-align: left;
}

.thanks-text p {
  margin-bottom: 12px;
}

.thanks-text strong {
  color: var(--text);
}

.legal-section {
  padding: 60px 0;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  color: var(--text-muted);
  line-height: 1.7;
  word-break: break-word;
}

.legal-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 1.5rem;
  background: linear-gradient(90deg, var(--accent1), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.legal-content h2 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text);
  margin: 2.5rem 0 1rem;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--border);
}

.legal-content h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--accent2);
  margin: 1.5rem 0 0.75rem;
}

.legal-content p, .legal-content li {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.legal-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin: 1rem 0 1.5rem;
}

.legal-content strong {
  color: var(--text);
  font-weight: 600;
}

.hero-grid > *,
.tech-grid > *,
.sub-grid > *,
.why-grid > *,
.cta-faq-grid > *,
.hero-stats > *,
.tech-card,
.sub-card,
.why-card,
.hero-content,
.hero-form-wrapper,
.form-card {
  min-width: 0;
}

@media (max-width: 1024px) {
  .hero-grid, .cta-faq-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

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

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

  .sub-banner {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
    gap: 24px;
  }

  .sub-banner .btn-primary {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .hero-stats {
    grid-template-columns: 1fr;
  }

  .stat-card {
    padding: 16px;
  }

  .cta-block .btn-secondary {
    width: 100%;
  }
}

@media (max-width: 640px) {
  section {
    padding: 60px 0;
  }

  .tech-grid, .sub-grid, .why-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .cta-block {
    padding: 32px 24px;
  }

  .form-card {
    padding: 24px;
  }

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

  .footer-legal {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .footer-legal a {
    text-align: center;
  }

  .thanks-card {
    padding: 32px 24px;
  }

  .legal-content h1 {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }

  .tech-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .form-card {
    padding: 20px 16px;
  }

  .thanks-card {
    padding: 24px 16px;
  }

  .hero {
    padding: 40px 0;
  }

  .stat-card {
    padding: 14px;
  }
}

[data-aos="fade-right"]:not(.aos-animate) {
  transform: translate3d(-32px, 0, 0) !important;
}

[data-aos="fade-left"]:not(.aos-animate) {
  transform: translate3d(32px, 0, 0) !important;
}

[data-aos="zoom-in"]:not(.aos-animate) {
  transform: translate3d(0, 24px, 0) scale(0.96) !important;
}

@media (max-width: 640px) {
  .header-notice {
    word-break: break-all;
  }

  .logo a {
    flex-direction: column;
  }

  .logo a span {
    word-break: break-all;
    min-width: 0;
    flex: 1;
  }

  .footer-info {
    word-break: break-all;
  }
}