:root {
  --bg: #0a0a0a;
  --panel: #0f0f0f;
  --muted: #121212;
  --accent: #00ff4c;
  --accent-hover: #00e044;
  --accent-soft: rgba(0, 255, 76, 0.22);
  --text: #e9ffe9;
  --sub: #b6e7c8;
  --shadow: 0 0 32px rgba(0, 255, 76, 0.18);
  --shadow-lg: 0 0 48px rgba(0, 255, 76, 0.3);
  --border: rgba(0, 255, 76, 0.2);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 20% 20%, rgba(0, 255, 76, 0.08), transparent 36%),
    radial-gradient(circle at 80% 0%, rgba(0, 255, 76, 0.06), transparent 36%),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  font-weight: 600;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
  padding: 0 16px;
}

/* ============================================
   TOPBAR / HEADER
============================================ */
.topbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(10, 10, 10, 0.95);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.topbar-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 16px 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: var(--transition);
}

.logo-img {
  width: 140px;
  max-height: 42px;
  height: auto;
  object-fit: contain;
}

.logo:hover {
  transform: translateY(-2px);
}

.logo-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  border: 2px solid var(--accent);
  box-shadow: var(--shadow);
  color: var(--accent);
  font-weight: 700;
  transition: var(--transition);
}

.logo:hover .logo-mark {
  box-shadow: var(--shadow-lg);
  transform: scale(1.05);
}

@media (max-width: 720px) {
  .logo-img {
    width: 120px;
    max-height: 36px;
  }
}

.nav {
  display: flex;
  gap: 24px;
  justify-self: center;
  color: var(--sub);
  font-size: 15px;
  font-weight: 500;
}

.nav a {
  padding: 8px 12px;
  position: relative;
  border-radius: 8px;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: var(--transition);
  transform: translateX(-50%);
}

.nav a:hover {
  color: var(--accent);
  background: rgba(0, 255, 76, 0.05);
}

.nav a:hover::after {
  width: 70%;
}

.topbar-actions {
  display: flex;
  gap: 12px;
}

/* ============================================
   BUTTONS
============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 12px;
  background: var(--accent);
  color: #04180b;
  font-weight: 600;
  font-size: 15px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 2px solid var(--accent);
  cursor: pointer;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  background: var(--accent-hover);
}

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

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

.btn-outline:hover {
  background: rgba(0, 255, 76, 0.12);
  box-shadow: var(--shadow);
}

/* ============================================
   UTILITY CLASSES
============================================ */
.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 16px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: rgba(0, 255, 76, 0.08);
  color: var(--accent);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
}

.accent-text {
  color: var(--accent);
  text-shadow: 0 0 16px rgba(0, 255, 76, 0.3);
}

.lead {
  color: var(--sub);
  font-size: 17px;
  line-height: 1.8;
  margin: 16px 0;
}

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

.hero-logo {
  width: 220px;
  max-width: 100%;
  height: auto;
  margin-bottom: 18px;
}

@media (max-width: 720px) {
  .hero-logo {
    width: 180px;
  }
}

/* ============================================
   HERO SECTION
============================================ */
.hero {
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 255, 76, 0.15), transparent 70%);
  filter: blur(80px);
  pointer-events: none;
}

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

.hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 64px;
  align-items: center;
}

.page-hero .hero-grid {
  align-items: flex-start;
}

.hero-copy h1 {
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.1;
  margin: 20px 0 24px;
  font-weight: 700;
}

.hero-copy p {
  color: var(--sub);
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 32px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  margin: 32px 0;
  flex-wrap: wrap;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.hero-stats > div {
  padding: 16px;
  border-radius: 12px;
  background: rgba(0, 255, 76, 0.03);
  border: 1px solid rgba(0, 255, 76, 0.1);
  transition: var(--transition);
}

.hero-stats > div:hover {
  background: rgba(0, 255, 76, 0.08);
  border-color: var(--accent);
  transform: translateY(-4px);
}

.hero-stats strong {
  font-size: 18px;
  display: block;
  margin-bottom: 4px;
  color: var(--accent);
}

.hero-stats span {
  color: var(--sub);
  font-size: 13px;
}

/* ============================================
   PHONE MOCKUP
============================================ */
.hero-mockup {
  display: grid;
  place-items: center;
  perspective: 1000px;
}

.phone {
  width: min(340px, 85vw);
  border-radius: 36px;
  background: var(--panel);
  border: 2px solid var(--border);
  box-shadow: 0 20px 60px rgba(0, 255, 76, 0.25);
  padding: 20px;
  position: relative;
  animation: float 6s ease-in-out infinite;
  transform-style: preserve-3d;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotateY(0deg); }
  50% { transform: translateY(-20px) rotateY(5deg); }
}

.phone-speaker {
  width: 80px;
  height: 6px;
  border-radius: 999px;
  margin: 0 auto 20px;
  background: rgba(255, 255, 255, 0.15);
}

.phone-screen {
  background: linear-gradient(180deg, #091c10 0%, #0b0b0b 100%);
  border-radius: 26px;
  padding: 20px;
  border: 1px solid rgba(0, 255, 76, 0.2);
  min-height: 500px;
}

.screen-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--sub);
  margin-bottom: 20px;
  font-weight: 500;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: var(--shadow);
  animation: pulse 2s ease-in-out infinite;
}

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

.screen-card {
  background: rgba(0, 255, 76, 0.08);
  padding: 16px;
  border-radius: 16px;
  border: 1px solid var(--border);
  margin-bottom: 16px;
}

.screen-card strong {
  font-size: 15px;
  color: var(--accent);
}

.screen-card p {
  margin: 8px 0 12px;
  font-size: 12px;
  color: var(--sub);
}

.screen-progress {
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.screen-progress span {
  display: block;
  height: 100%;
  width: 68%;
  background: linear-gradient(90deg, var(--accent), #00cc3d);
  border-radius: 999px;
  animation: progress 3s ease-in-out infinite;
}

@keyframes progress {
  0% { width: 0%; }
  50% { width: 68%; }
  100% { width: 68%; }
}

.screen-list {
  display: grid;
  gap: 14px;
}

.screen-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.3);
  transition: var(--transition);
}

.screen-row:hover {
  background: rgba(0, 255, 76, 0.05);
}

.screen-row strong {
  font-size: 14px;
  display: block;
  margin-bottom: 2px;
}

.screen-row small {
  display: block;
  color: var(--sub);
  font-size: 11px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(0, 255, 76, 0.5);
  flex-shrink: 0;
}

.phone-footer {
  width: 120px;
  height: 4px;
  border-radius: 999px;
  margin: 18px auto 0;
  background: rgba(255, 255, 255, 0.12);
}

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

.bg-dark {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent);
}

.section-title {
  margin-bottom: 48px;
  max-width: 720px;
}

.section-title.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-title h2 {
  margin: 0 0 16px;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--text);
}

.section-title p {
  margin: 0;
  color: var(--sub);
  font-size: 17px;
  line-height: 1.7;
}

/* ============================================
   LAYOUTS
============================================ */
.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  align-items: center;
}

.panel-card {
  background: var(--panel);
  border-radius: 20px;
  padding: 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.panel-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.panel-card h3 {
  margin: 0 0 16px;
  font-size: 22px;
  color: var(--accent);
}

.panel-card p {
  color: var(--sub);
  line-height: 1.7;
  margin: 12px 0;
}

/* ============================================
   LISTS
============================================ */
.list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
  color: var(--sub);
}

.list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 10px;
  border-radius: 8px;
  transition: var(--transition);
}

.list li:hover {
  background: rgba(0, 255, 76, 0.05);
  padding-left: 16px;
}

.list li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}

/* ============================================
   CARDS
============================================ */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

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

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), transparent);
  opacity: 0;
  transition: var(--transition);
}

.card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}

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

.card h3 {
  margin: 0 0 12px;
  font-size: 20px;
  color: var(--text);
}

.card p {
  color: var(--sub);
  margin: 12px 0;
  line-height: 1.7;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 600;
  margin-top: 16px;
  transition: var(--transition);
}

.card-link:hover {
  gap: 10px;
  text-shadow: 0 0 10px rgba(0, 255, 76, 0.5);
}

/* ============================================
   ICON BOX
============================================ */
.icon-box {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  border: 2px solid var(--accent);
  box-shadow: var(--shadow);
  color: var(--accent);
  margin-bottom: 20px;
  transition: var(--transition);
  background: rgba(0, 255, 76, 0.05);
}

.card:hover .icon-box {
  transform: scale(1.1) rotate(5deg);
  box-shadow: var(--shadow-lg);
}

.icon-box svg {
  width: 28px;
  height: 28px;
}

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

.project-card {
  background: var(--panel);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.project-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: rgba(0, 255, 76, 0.12);
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.status.muted {
  border-color: rgba(0, 255, 76, 0.15);
  background: var(--muted);
  color: var(--sub);
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.tags span {
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--muted);
  color: var(--sub);
  font-size: 12px;
  font-weight: 500;
  border: 1px solid rgba(0, 255, 76, 0.1);
  transition: var(--transition);
}

.tags span:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(0, 255, 76, 0.08);
}

/* ============================================
   STACK GRID
============================================ */
.stack-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.stack-grid span {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--muted);
  color: var(--sub);
  font-size: 13px;
  font-weight: 500;
  transition: var(--transition);
}

.stack-grid span:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(0, 255, 76, 0.08);
  transform: translateY(-2px);
}

.note {
  margin-top: 20px;
  color: var(--sub);
  font-size: 13px;
  font-style: italic;
}

/* ============================================
   CTA BANNER
============================================ */
.cta-section {
  padding: 100px 0;
}

.cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 48px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(0, 255, 76, 0.15), rgba(0, 0, 0, 0.3));
  border: 2px solid var(--accent);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 255, 76, 0.2), transparent 70%);
  filter: blur(80px);
  pointer-events: none;
}

.cta-banner h2 {
  margin: 0 0 12px;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
}

.cta-banner p {
  margin: 0;
  color: var(--sub);
  font-size: 16px;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* ============================================
   CONTACT
============================================ */
.contact {
  padding-bottom: 100px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  align-items: start;
}

.contact-info {
  display: grid;
  gap: 20px;
  margin-top: 28px;
}

.contact-info > div {
  padding: 16px;
  border-radius: 12px;
  background: rgba(0, 255, 76, 0.03);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.contact-info > div:hover {
  background: rgba(0, 255, 76, 0.08);
  border-color: var(--accent);
}

.contact-info strong {
  display: block;
  margin-bottom: 6px;
  color: var(--accent);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-info span {
  display: block;
  color: var(--sub);
  font-size: 15px;
}

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

.contact-info a:hover {
  text-decoration: underline;
}

.contact-form {
  display: grid;
  gap: 20px;
  background: var(--panel);
  padding: 36px;
  border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
  font-weight: 500;
}

.contact-form input,
.contact-form textarea {
  background: var(--muted);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 16px;
  color: var(--text);
  font-family: inherit;
  font-size: 15px;
  transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0, 255, 76, 0.15);
  background: rgba(0, 255, 76, 0.03);
}

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

.check {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--sub);
  cursor: pointer;
}

.check input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: var(--accent);
}

.form-note {
  margin: 0;
  font-size: 12px;
  color: var(--sub);
  line-height: 1.6;
  padding: 12px;
  background: rgba(0, 255, 76, 0.03);
  border-radius: 8px;
  border: 1px solid rgba(0, 255, 76, 0.1);
}

.form-note a {
  color: var(--accent);
  font-weight: 500;
}

.form-note a:hover {
  text-decoration: underline;
}

/* ============================================
   FOOTER
============================================ */
.footer {
  border-top: 1px solid var(--border);
  padding: 64px 0 0;
  background: rgba(9, 9, 9, 0.98);
  margin-top: 80px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 48px;
  color: var(--sub);
  font-size: 14px;
  margin-bottom: 48px;
}

.footer-brand strong {
  color: var(--text);
  font-size: 20px;
  display: block;
  margin-bottom: 12px;
}

.footer-logo {
  width: 200px;
  max-width: 100%;
  height: auto;
  margin-bottom: 16px;
}

.footer-brand p {
  margin: 12px 0;
  line-height: 1.7;
}

.footer-location {
  color: var(--accent);
  font-weight: 500;
  margin-top: 16px;
}

.footer-links h4,
.footer-contact h4 {
  color: var(--text);
  font-size: 16px;
  margin-bottom: 16px;
  font-weight: 600;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a,
.footer-contact a {
  color: var(--sub);
  transition: var(--transition);
  padding: 4px 0;
  display: block;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--accent);
  padding-left: 8px;
}

.footer-contact {
  display: grid;
  gap: 10px;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  text-align: center;
  color: var(--sub);
  font-size: 13px;
}

.footer-bottom p {
  margin: 0;
}

/* ============================================
   LEGAL PAGES
============================================ */
.legal {
  max-width: 820px;
  color: var(--sub);
  line-height: 1.8;
  margin: 0 auto;
}

.legal h2 {
  margin: 48px 0 16px;
  color: var(--text);
  font-size: 28px;
  font-weight: 700;
}

.legal h2:first-child {
  margin-top: 0;
}

.legal h3 {
  margin: 32px 0 12px;
  color: var(--text);
  font-size: 20px;
}

.legal p {
  margin: 16px 0;
}

.legal ul {
  margin: 16px 0;
  padding-left: 24px;
}

.legal ul li {
  margin: 8px 0;
}

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

.service-card {
  background: var(--panel);
  padding: 36px;
}

.service-card h3 {
  font-size: 24px;
  margin-bottom: 16px;
  color: var(--accent);
}

.service-card h4 {
  margin: 24px 0 12px;
  color: var(--text);
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.service-card ul {
  margin: 12px 0;
}

.service-card p {
  margin: 12px 0;
  line-height: 1.7;
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1100px) {
  .footer-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 980px) {
  .topbar-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 16px;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .topbar-actions {
    width: 100%;
    justify-content: center;
  }

  .hero-grid,
  .split,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .cta-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 36px;
  }

  .cta-buttons {
    width: 100%;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media (max-width: 640px) {
  .topbar-actions {
    flex-direction: column;
    gap: 10px;
  }

  .topbar-actions .btn {
    width: 100%;
  }

  .hero {
    padding: 80px 0 60px;
  }

  .section {
    padding: 60px 0;
  }

  .card-grid,
  .project-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .hero-cta,
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

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

  .panel-card,
  .contact-form {
    padding: 24px;
  }
}

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

.section {
  animation: fadeIn 0.6s ease-out;
}

/* ============================================
   ACCESSIBILITY
============================================ */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
  border-radius: 4px;
}

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