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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #1a1a1a;
  background: linear-gradient(135deg, #fff7ed, #ffffff, #eff6ff);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

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

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

/* ===== Navigation ===== */
.nav {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 4px solid #f97316;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 64px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-logo-img {
  width: 40px;
  height: 40px;
  transition: transform 0.3s;
}

.nav-logo:hover .nav-logo-img {
  transform: scale(1.1);
}

.nav-logo-text {
  font-size: 1.5rem;
  font-weight: 900;
  color: #111827;
  letter-spacing: -0.025em;
}

.nav-logo-text span {
  color: #ea580c;
}

.nav-links {
  display: flex;
  gap: 0.25rem;
  list-style: none;
}

.nav-links a {
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  transition: all 0.2s;
  color: #374151;
  font-weight: 500;
}

.nav-links a:hover {
  background: #ffedd5;
}

.nav-links a.active {
  background: #f97316;
  color: white;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  padding: 0.5rem;
  border-radius: 0.5rem;
  cursor: pointer;
}

.nav-mobile-toggle:hover {
  background: #f3f4f6;
}

.nav-mobile-toggle svg {
  width: 24px;
  height: 24px;
  stroke: #111827;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-mobile-menu {
  display: none;
  padding: 1rem 0;
  border-top: 1px solid #e5e7eb;
}

.nav-mobile-menu.open {
  display: block;
}

.nav-mobile-menu a {
  display: block;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  margin-bottom: 0.25rem;
  color: #374151;
  font-weight: 500;
  transition: all 0.2s;
}

.nav-mobile-menu a:hover {
  background: #ffedd5;
}

.nav-mobile-menu a.active {
  background: #f97316;
  color: white;
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  overflow: hidden;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #ea580c, #b91c1c, #111827);
  opacity: 0.95;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-image: url("https://images.unsplash.com/photo-1772418306798-db30a1f8eeb7?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3w3Nzg4Nzd8MHwxfHNlYXJjaHwxfHxmcmlzYmVlJTIwYWN0aW9uJTIwc3BvcnRzfGVufDF8fHx8MTc3MzA3ODQ2Nnww&ixlib=rb-4.1.0&q=80&w=1080&utm_source=figma&utm_medium=referral");
  opacity: 0.15;
}

.hero-content {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 6rem 1rem;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  margin-bottom: 1.5rem;
  background: #facc15;
  color: #111827;
  padding: 0.5rem 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: rotate(-2deg);
  font-weight: 900;
}

.hero-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.hero-logo-img {
  width: 8rem;
  height: 8rem;
  filter: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.25));
}

.hero h1 {
  font-size: 3.25rem;
  font-weight: 900;
  color: white;
  margin-bottom: 1.5rem;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.hero h1 span {
  color: #facc15;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

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

.btn-primary {
  background: white;
  color: #ea580c;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  transition: all 0.2s;
  font-weight: 700;
  font-size: 1rem;
}

.btn-primary:hover {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: scale(1.05);
}

.btn-secondary {
  background: #ea580c;
  color: white;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  transition: all 0.2s;
  border: 2px solid white;
  font-weight: 700;
  font-size: 1rem;
}

.btn-secondary:hover {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: scale(1.05);
}

/* ===== Section Shared ===== */
.section {
  padding: 4rem 1rem;
}

.section-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 3rem;
  color: #111827;
}

.section-title span {
  color: #ea580c;
}

/* ===== What is Discball ===== */
.what-section {
  background: white;
}

.what-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.what-text p {
  font-size: 1.125rem;
  color: #374151;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.what-text .warning {
  font-weight: 900;
  color: #ea580c;
}

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

.feature-card {
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.feature-card.orange {
  background: linear-gradient(135deg, #ffedd5, #fed7aa);
}

.feature-card.red {
  background: linear-gradient(135deg, #fee2e2, #fecaca);
}

.feature-card.purple {
  background: linear-gradient(135deg, #fef9c3, #fde68a);
}

.feature-card.blue {
  background: linear-gradient(135deg, #ffedd5, #fecaca);
}

.feature-card svg {
  width: 48px;
  height: 48px;
  margin: 0 auto 0.75rem;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.feature-card.orange svg { stroke: #ea580c; }
.feature-card.red svg { stroke: #dc2626; }
.feature-card.purple svg { stroke: #ca8a04; }
.feature-card.blue svg { stroke: #ea580c; }

.feature-card h3 {
  font-weight: 900;
  color: #111827;
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.875rem;
  color: #374151;
}

/* ===== Ready to Play ===== */
.ready-section {
  background: #f9fafb;
}

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

.link-card {
  background: white;
  padding: 2rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  transition: all 0.2s;
  display: block;
  border-left: 4px solid;
}

.link-card:hover {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: scale(1.05);
}

.link-card.orange-top { border-left-color: #f97316; }
.link-card.red-top { border-left-color: #ef4444; }
.link-card.purple-top { border-left-color: #eab308; }

.link-card-icon {
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.link-card-icon.orange { background: #ffedd5; }
.link-card-icon.red { background: #fee2e2; }
.link-card-icon.purple { background: #fef9c3; }

.link-card-icon svg {
  width: 32px;
  height: 32px;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.link-card-icon.orange svg { stroke: #ea580c; }
.link-card-icon.red svg { stroke: #dc2626; }
.link-card-icon.purple svg { stroke: #ca8a04; }

.link-card h3 {
  font-size: 1.5rem;
  font-weight: 900;
  color: #111827;
  margin-bottom: 0.75rem;
}

.link-card p {
  color: #374151;
  line-height: 1.6;
}

/* ===== CTA Section ===== */
.cta-section {
  background: linear-gradient(to right, #ea580c, #b91c1c);
  padding: 4rem 1rem;
}

.cta-inner {
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
}

.cta-inner h2 {
  font-size: 2.25rem;
  font-weight: 900;
  color: white;
  margin-bottom: 1.5rem;
}

.cta-inner > p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.cta-quote {
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 2rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.cta-quote p {
  color: white;
  font-size: 1.125rem;
  line-height: 1.6;
}

.cta-sanctioned {
  margin-top: 2rem;
}

.cta-sanctioned p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
}

/* ===== Footer ===== */
.footer {
  background: #111827;
  color: white;
  padding: 2rem 1rem;
  margin-top: 4rem;
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-logo-img {
  width: 32px;
  height: 32px;
}

.footer-logo span {
  font-size: 1.25rem;
  font-weight: 900;
}

.footer-tagline {
  color: #9ca3af;
  margin-bottom: 0.5rem;
}

.footer-copyright {
  color: #6b7280;
  font-size: 0.875rem;
}

/* ===== Inner Pages ===== */
.page-container {
  padding: 3rem 1rem;
}

.page-inner {
  max-width: 56rem;
  margin: 0 auto;
}

/* Page Header */
.page-header {
  text-align: center;
  margin-bottom: 3rem;
}

.page-badge {
  display: inline-block;
  color: white;
  padding: 0.5rem 1.5rem;
  margin-bottom: 1rem;
  font-weight: 900;
  font-size: 0.875rem;
}

.page-badge.orange { background: #f97316; }
.page-badge.red { background: #ef4444; }
.page-badge.purple { background: #eab308; color: #111827; }

.page-header h1 {
  font-size: 3rem;
  font-weight: 900;
  color: #111827;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.page-header h1 span.orange { color: #ea580c; }
.page-header h1 span.red { color: #dc2626; }
.page-header h1 span.purple { color: #ca8a04; }

.page-header .subtitle {
  font-size: 1.25rem;
  color: #4b5563;
}

/* Intro Box */
.intro-box {
  padding: 2rem;
  margin-bottom: 3rem;
  border: 2px solid;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.intro-box.orange {
  background: linear-gradient(135deg, #fff7ed, #fef2f2);
  border-color: #fdba74;
}

.intro-box.red {
  background: linear-gradient(135deg, #fef2f2, #fff7ed);
  border-color: #fca5a5;
}

.intro-box.purple {
  background: linear-gradient(135deg, #fefce8, #fff7ed);
  border-color: #fde047;
}

.intro-box p {
  font-size: 1.125rem;
  color: #374151;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.intro-box p:last-child {
  margin-bottom: 0;
}

/* Section with icon heading */
.page-section {
  margin-bottom: 3rem;
}

.section-heading {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.section-heading-icon {
  padding: 0.75rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-heading-icon.orange { background: #f97316; }
.section-heading-icon.red { background: #ef4444; }
.section-heading-icon.purple { background: #a855f7; }
.section-heading-icon.yellow { background: #eab308; }

.section-heading-icon svg {
  width: 24px;
  height: 24px;
  stroke: white;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.section-heading h2 {
  font-size: 1.875rem;
  font-weight: 900;
  color: #111827;
  margin-bottom: 0;
}

/* Card stack */
.card-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-left: 3.5rem;
}

.card {
  background: white;
  padding: 1.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.card h3 {
  font-weight: 900;
  color: #111827;
  margin-bottom: 0.5rem;
}

.card p {
  color: #374151;
  line-height: 1.6;
}

/* Numbered steps */
.step-card {
  background: white;
  padding: 1.5rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  border-left: 4px solid;
}

.step-card.orange-border { border-left-color: #f97316; }
.step-card.red-border { border-left-color: #ef4444; }
.step-card.purple-border { border-left-color: #a855f7; }
.step-card.blue-border { border-left-color: #3b82f6; }
.step-card.green-border { border-left-color: #22c55e; }

.step-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.step-number {
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  flex-shrink: 0;
  font-size: 0.875rem;
}

.step-number.orange { background: #ffedd5; color: #ea580c; }
.step-number.red { background: #fee2e2; color: #dc2626; }
.step-number.purple { background: #f3e8ff; color: #9333ea; }
.step-number.blue { background: #dbeafe; color: #2563eb; }
.step-number.green { background: #dcfce7; color: #16a34a; }

.step-content h3 {
  font-weight: 900;
  color: #111827;
  margin-bottom: 0.5rem;
}

.step-content p {
  color: #374151;
  line-height: 1.6;
}

/* Special rule items */
.special-rule {
  background: white;
  padding: 1rem 1.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.special-rule .emoji {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.special-rule .rule-label {
  font-weight: 900;
  color: #111827;
}

.special-rule .rule-text {
  color: #374151;
  margin-left: 0.5rem;
}

/* Pro tips box */
.tips-box {
  padding: 2rem;
  border: 2px solid #fde68a;
  background: linear-gradient(135deg, #fefce8, #fff7ed);
}

.tips-box li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: #374151;
  line-height: 1.6;
}

.tips-box li:last-child {
  margin-bottom: 0;
}

.tips-box .arrow {
  color: #ea580c;
  font-weight: 900;
  flex-shrink: 0;
}

.tips-box .tip-label {
  font-weight: 900;
}

/* Safety box */
.safety-box {
  background: #fef2f2;
  border: 2px solid #fca5a5;
  padding: 2rem;
}

.safety-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.safety-header svg {
  width: 32px;
  height: 32px;
  stroke: #dc2626;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.safety-box h3 {
  font-size: 1.25rem;
  font-weight: 900;
  color: #111827;
}

.safety-box p {
  color: #374151;
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.safety-box ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.safety-box ul li {
  color: #374151;
}

/* Attribution */
.page-attribution {
  margin-top: 2rem;
  text-align: center;
  color: #6b7280;
  font-size: 0.875rem;
}

/* ===== Ethos Page ===== */
.values-section h2 {
  font-size: 1.875rem;
  font-weight: 900;
  color: #111827;
  margin-bottom: 2rem;
  text-align: center;
}

.value-card {
  background: white;
  padding: 2rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  border-left: 4px solid;
  margin-bottom: 1.5rem;
}

.value-card.yellow-border { border-left-color: #eab308; }
.value-card.red-border { border-left-color: #dc2626; }
.value-card.orange-border { border-left-color: #ea580c; }
.value-card.blue-border { border-left-color: #2563eb; }
.value-card.purple-border { border-left-color: #9333ea; }
.value-card.green-border { border-left-color: #16a34a; }

.value-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.value-icon {
  padding: 0.75rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.value-icon.yellow { background: #fef9c3; }
.value-icon.red { background: #fee2e2; }
.value-icon.orange { background: #ffedd5; }
.value-icon.blue { background: #dbeafe; }
.value-icon.purple { background: #f3e8ff; }
.value-icon.green { background: #dcfce7; }

.value-icon svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.value-icon.yellow svg { stroke: #ca8a04; }
.value-icon.red svg { stroke: #dc2626; }
.value-icon.orange svg { stroke: #ea580c; }
.value-icon.blue svg { stroke: #2563eb; }
.value-icon.purple svg { stroke: #9333ea; }
.value-icon.green svg { stroke: #16a34a; }

.value-card h3 {
  font-size: 1.5rem;
  font-weight: 900;
  color: #111827;
  margin-bottom: 0.5rem;
}

.value-desc-desktop {
  color: #374151;
  line-height: 1.6;
}

.value-desc-mobile {
  display: none;
  color: #374151;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.value-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.value-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: #374151;
  line-height: 1.6;
}

.value-list .bullet {
  font-weight: 900;
  flex-shrink: 0;
}

.bullet.yellow { color: #ca8a04; }
.bullet.red { color: #dc2626; }
.bullet.orange { color: #ea580c; }
.bullet.blue { color: #2563eb; }
.bullet.purple { color: #9333ea; }
.bullet.green { color: #16a34a; }

/* Oath */
.oath-box {
  background: linear-gradient(135deg, #dc2626, #ea580c);
  padding: 2rem;
  color: white;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  margin-bottom: 3rem;
}

.oath-box p {
  font-size: 1.125rem;
  text-align: center;
  font-style: italic;
  line-height: 1.7;
}

/* Closing box */
.closing-box {
  background: #f9fafb;
  padding: 2rem;
  text-align: center;
}

.closing-box h3 {
  font-size: 1.5rem;
  font-weight: 900;
  color: #111827;
  margin-bottom: 1rem;
}

.closing-box p {
  font-size: 1.125rem;
  color: #374151;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.closing-box .highlight {
  font-size: 1.25rem;
  font-weight: 900;
  color: #ea580c;
}

.closing-box .attribution {
  color: #6b7280;
  font-size: 0.875rem;
  margin-top: 1rem;
}

/* ===== FAQ Page ===== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: white;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border-left: 4px solid #fdba74;
  transition: border-color 0.2s;
}

.faq-item:hover {
  border-left-color: #fb923c;
}

.faq-toggle {
  width: 100%;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  font-family: inherit;
  font-size: 1rem;
}

.faq-toggle:hover {
  background: #f9fafb;
}

.faq-toggle span {
  font-weight: 900;
  color: #111827;
  padding-right: 1rem;
}

.faq-toggle svg {
  width: 20px;
  height: 20px;
  stroke: #ea580c;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq-item.open .faq-toggle svg {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 1.5rem 1rem;
  color: #374151;
  border-top: 2px solid #f3f4f6;
  padding-top: 1rem;
  line-height: 1.6;
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-answer ul {
  list-style: none;
  margin: 0.5rem 0;
  padding-left: 1rem;
}

.faq-answer ul li {
  margin-bottom: 0.25rem;
}

.faq-answer ul li .label {
  font-weight: 900;
}

.faq-answer p {
  margin-bottom: 0.5rem;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

/* Still have questions box */
.faq-cta {
  margin-top: 3rem;
  background: linear-gradient(to right, #f97316, #dc2626);
  padding: 2rem;
  text-align: center;
  color: white;
}

.faq-cta h3 {
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.faq-cta p {
  font-size: 1.125rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.faq-cta .faq-cta-sub {
  color: rgba(255, 255, 255, 0.9);
}

.faq-cta .faq-cta-attr {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  margin-top: 1.5rem;
}

/* ===== Responsive ===== */
@media (min-width: 768px) {
  .hero-content {
    padding: 8rem 2rem;
  }

  .hero h1 {
    font-size: 4.5rem;
  }

  .hero-subtitle {
    font-size: 1.5rem;
  }

  .hero-logo-img {
    width: 10rem;
    height: 10rem;
  }

  .section-title {
    font-size: 3rem;
  }

  .section {
    padding: 4rem 2rem;
  }

  .cta-inner h2 {
    font-size: 3rem;
  }
}

@media (max-width: 767px) {
  .nav-links {
    display: none;
  }

  .nav-mobile-toggle {
    display: block;
  }

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

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

  .card-stack {
    padding-left: 0;
  }

  .value-desc-desktop {
    display: none;
  }

  .value-desc-mobile {
    display: block;
  }

  .value-header {
    align-items: center;
  }

  .value-icon {
    padding: 0.5rem;
  }

  .value-icon svg {
    width: 24px;
    height: 24px;
  }
}
