/* ============================================================
   Arrive Point — Computer Systems Design & Related Services
   style.css
   ============================================================ */

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #f0f3fa;
  background-color: #080d1a;
}

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

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

ul {
  list-style: none;
}

/* --- CONTAINER -------------------------------------------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- HELPER CLASSES --------------------------------------- */
.highlight {
  color: #00a88a;
}

/* --- BUTTONS ---------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-primary {
  background-color: #00a88a;
  color: #080d1a;
}

.btn-primary:hover {
  background-color: #00c4a1;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 168, 138, 0.35);
}

.btn-outline {
  background-color: transparent;
  color: #f0f3fa;
  border: 2px solid #233056;
}

.btn-outline:hover {
  border-color: #00a88a;
  color: #00a88a;
  transform: translateY(-2px);
}

/* --- NAVBAR ----------------------------------------------- */
#navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #060a16;
  border-bottom: 1px solid #1b2742;
  padding: 16px 0;
  transition: padding 0.3s ease;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 700;
  color: #f0f3fa;
}

.nav-logo .nav-logo-icon {
  width: 36px;
  height: 36px;
  background-color: #00a88a;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  color: #080d1a;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: #a6b4cc;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: #00a88a;
}

.nav-cta .btn {
  padding: 10px 24px;
  font-size: 14px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background-color: #f0f3fa;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* --- HERO ------------------------------------------------- */
.hero {
  padding: 100px 0 80px;
  background-color: #080d1a;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(0, 168, 138, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(77, 124, 255, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

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

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-content .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(0, 168, 138, 0.12);
  border: 1px solid rgba(0, 168, 138, 0.25);
  color: #00a88a;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 50px;
  width: fit-content;
}

.hero-content .badge-dot {
  width: 8px;
  height: 8px;
  background-color: #00a88a;
  border-radius: 50%;
}

.hero-content h1 {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.15;
  color: #f0f3fa;
}

.hero-content .hero-subtitle {
  font-size: 18px;
  color: #a6b4cc;
  line-height: 1.7;
  max-width: 520px;
}

.hero-content .hero-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
}

.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  position: relative;
}

.hero-float-card {
  background-color: #1b2742;
  border: 1px solid #233056;
  border-radius: 16px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  position: relative;
  z-index: 2;
}

.hero-float-card .hero-card-icon {
  width: 48px;
  height: 48px;
  background-color: rgba(0, 168, 138, 0.18);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #00a88a;
  flex-shrink: 0;
}

.hero-float-card .hero-card-info .hero-card-label {
  font-size: 13px;
  color: #5e6e88;
  font-weight: 500;
}

.hero-float-card .hero-card-info .hero-card-value {
  font-size: 18px;
  font-weight: 700;
  color: #f0f3fa;
}

.hero-card-stack {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-card-stack .icon-card {
  width: 72px;
  height: 72px;
  background-color: #1b2742;
  border: 1px solid #233056;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #4d7cff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.hero-card-stack .icon-card:nth-child(2) {
  color: #f0a818;
  transform: translateY(-10px);
}

.hero-card-stack .icon-card:nth-child(3) {
  color: #f04b7c;
}

.hero-card-stack .icon-card:nth-child(4) {
  color: #00a88a;
  transform: translateY(-10px);
}

.hero-deco-line {
  position: absolute;
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, #00a88a, transparent);
  top: -30px;
  right: -40px;
  z-index: 0;
}

.hero-deco-dots {
  position: absolute;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  bottom: -40px;
  left: -30px;
  z-index: 0;
}

.hero-deco-dot {
  width: 6px;
  height: 6px;
  background-color: #233056;
  border-radius: 50%;
}

/* --- SECTIONS --------------------------------------------- */
.section {
  padding: 100px 0;
}

.section-alt {
  padding: 100px 0;
  background-color: #060a16;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #00a88a;
  margin-bottom: 12px;
}

.section-title {
  font-size: 40px;
  font-weight: 800;
  color: #f0f3fa;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 17px;
  color: #a6b4cc;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* --- SERVICES GRID ---------------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background-color: #1b2742;
  border: 1px solid #233056;
  border-radius: 14px;
  padding: 36px 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  border-color: #00a88a;
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
}

.service-icon.one {
  background-color: rgba(0, 168, 138, 0.15);
  color: #00a88a;
}

.service-icon.two {
  background-color: rgba(77, 124, 255, 0.15);
  color: #4d7cff;
}

.service-icon.three {
  background-color: rgba(240, 168, 24, 0.15);
  color: #f0a818;
}

.service-icon.four {
  background-color: rgba(240, 75, 124, 0.15);
  color: #f04b7c;
}

.service-icon.five {
  background-color: rgba(0, 168, 138, 0.12);
  color: #00a88a;
}

.service-icon.six {
  background-color: rgba(77, 124, 255, 0.12);
  color: #4d7cff;
}

.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #f0f3fa;
}

.service-card p {
  font-size: 15px;
  color: #a6b4cc;
  line-height: 1.7;
}

/* --- ABOUT ------------------------------------------------ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text h2 {
  font-size: 36px;
  font-weight: 800;
  color: #f0f3fa;
  line-height: 1.25;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 16px;
  color: #a6b4cc;
  line-height: 1.75;
  margin-bottom: 28px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background-color: #1b2742;
  border-radius: 10px;
  border: 1px solid #233056;
}

.about-feature-icon {
  width: 40px;
  height: 40px;
  background-color: rgba(0, 168, 138, 0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #00a88a;
  flex-shrink: 0;
}

.about-feature div h4 {
  font-size: 15px;
  font-weight: 700;
  color: #f0f3fa;
  margin-bottom: 4px;
}

.about-feature div p {
  font-size: 13px;
  color: #5e6e88;
  margin-bottom: 0;
  line-height: 1.5;
}

.about-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-visual-inner {
  width: 100%;
  height: 400px;
  background-color: #1b2742;
  border-radius: 20px;
  border: 1px solid #233056;
  position: relative;
  overflow: hidden;
}

.about-visual-inner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 168, 138, 0.08) 0%, transparent 60%);
}

/* --- PROCESS ---------------------------------------------- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #00a88a, #4d7cff, #f0a818, #f04b7c);
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 20px;
}

.process-num {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #1b2742;
  border: 3px solid #233056;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 800;
  color: #00a88a;
  margin: 0 auto 20px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.process-step:nth-child(2) .process-num {
  color: #4d7cff;
}

.process-step:nth-child(3) .process-num {
  color: #f0a818;
}

.process-step:nth-child(4) .process-num {
  color: #f04b7c;
}

.process-step:hover .process-num {
  border-color: #00a88a;
  box-shadow: 0 0 30px rgba(0, 168, 138, 0.25);
}

.process-step h3 {
  font-size: 18px;
  font-weight: 700;
  color: #f0f3fa;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 14px;
  color: #a6b4cc;
  line-height: 1.6;
}

/* --- INDUSTRIES ------------------------------------------- */
.industries-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.industry-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #1b2742;
  border: 1px solid #233056;
  border-radius: 50px;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 500;
  color: #f0f3fa;
  transition: all 0.3s ease;
  cursor: default;
}

.industry-tag:hover {
  border-color: #00a88a;
  background-color: rgba(0, 168, 138, 0.08);
}

.industry-dot {
  width: 8px;
  height: 8px;
  background-color: #00a88a;
  border-radius: 50%;
  flex-shrink: 0;
}

.industry-tag:nth-child(3n+2) .industry-dot {
  background-color: #4d7cff;
}

.industry-tag:nth-child(3n+3) .industry-dot {
  background-color: #f0a818;
}

.plus {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #1b2742;
  border: 1px solid #233056;
  font-size: 22px;
  font-weight: 700;
  color: #00a88a;
  transition: all 0.3s ease;
}

.plus:hover {
  background-color: #00a88a;
  color: #080d1a;
  border-color: #00a88a;
}

/* --- STATS ------------------------------------------------ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-card {
  background-color: #1b2742;
  border: 1px solid #233056;
  border-radius: 14px;
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
}

.stat-number {
  font-size: 44px;
  font-weight: 800;
  color: #00a88a;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-card:nth-child(2) .stat-number {
  color: #4d7cff;
}

.stat-card:nth-child(3) .stat-number {
  color: #f0a818;
}

.stat-card:nth-child(4) .stat-number {
  color: #f04b7c;
}

.stat-label {
  font-size: 15px;
  color: #a6b4cc;
  font-weight: 500;
}

.card-label {
  font-size: 13px;
  color: #5e6e88;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.card-stat {
  font-size: 28px;
  font-weight: 800;
  color: #f0f3fa;
}

/* --- TESTIMONIALS ----------------------------------------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background-color: #1b2742;
  border: 1px solid #233056;
  border-radius: 14px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  font-size: 16px;
  color: #f0a818;
}

.testimonial-text {
  font-size: 15px;
  color: #a6b4cc;
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 8px;
  border-top: 1px solid #233056;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #233056;
  flex-shrink: 0;
  overflow: hidden;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-name {
  font-size: 15px;
  font-weight: 700;
  color: #f0f3fa;
}

.testimonial-role {
  font-size: 13px;
  color: #5e6e88;
}

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

.contact-info h2 {
  font-size: 36px;
  font-weight: 800;
  color: #f0f3fa;
  line-height: 1.25;
  margin-bottom: 16px;
}

.contact-info > p {
  font-size: 16px;
  color: #a6b4cc;
  line-height: 1.7;
  margin-bottom: 32px;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-info-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background-color: #1b2742;
  border: 1px solid #233056;
  border-radius: 12px;
  padding: 20px 24px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background-color: rgba(0, 168, 138, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #00a88a;
  flex-shrink: 0;
}

.contact-info-card:nth-child(2) .contact-icon {
  background-color: rgba(77, 124, 255, 0.15);
  color: #4d7cff;
}

.contact-info-card:nth-child(3) .contact-icon {
  background-color: rgba(240, 168, 24, 0.15);
  color: #f0a818;
}

.contact-info-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: #f0f3fa;
  margin-bottom: 2px;
}

.contact-info-card p {
  font-size: 14px;
  color: #a6b4cc;
}

.contact-form {
  background-color: #1b2742;
  border: 1px solid #233056;
  border-radius: 16px;
  padding: 40px 36px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: #f0f3fa;
}

.form-group input,
.form-group select,
.form-group textarea {
  background-color: #080d1a;
  border: 1px solid #233056;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 15px;
  color: #f0f3fa;
  font-family: inherit;
  transition: border-color 0.25s ease;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #00a88a;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #5e6e88;
}

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

.form-submit {
  margin-top: 8px;
}

.form-submit .btn {
  width: 100%;
}

/* --- FOOTER ----------------------------------------------- */
.footer {
  background-color: #060a16;
  border-top: 1px solid #1b2742;
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid #1b2742;
}

.footer-brand .nav-logo {
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 15px;
  color: #a6b4cc;
  line-height: 1.7;
  max-width: 300px;
}

.footer-heading {
  font-size: 16px;
  font-weight: 700;
  color: #f0f3fa;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 14px;
  color: #a6b4cc;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #00a88a;
}

.footer-bottom {
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copy {
  font-size: 14px;
  color: #5e6e88;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-legal a {
  font-size: 14px;
  color: #5e6e88;
  transition: color 0.2s ease;
}

.footer-legal a:hover {
  color: #00a88a;
}

/* --- RESPONSIVE ------------------------------------------- */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .hero-content {
    align-items: center;
  }

  .hero-content .hero-subtitle {
    max-width: 100%;
  }

  .hero-visual {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

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

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .process-steps::before {
    display: none;
  }

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

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

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

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

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

  .nav-toggle {
    display: flex;
  }

  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #060a16;
    border-bottom: 1px solid #1b2742;
    padding: 24px;
    gap: 16px;
  }

  .nav-links.mobile-open + .nav-cta {
    display: block;
    position: absolute;
    top: calc(100% + 200px);
    left: 0;
    right: 0;
    background-color: #060a16;
    padding: 0 24px 24px;
  }

  .container {
    padding: 0 20px;
  }

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

  .hero-content h1 {
    font-size: 36px;
  }

  .hero-content .hero-subtitle {
    font-size: 16px;
  }

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

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

  .section {
    padding: 60px 0;
  }

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

  .section-title {
    font-size: 30px;
  }

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

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

  .about-text h2 {
    font-size: 28px;
  }

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

  .process-steps {
    grid-template-columns: 1fr;
  }

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

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

  .contact-form {
    padding: 28px 20px;
  }

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

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

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 15px;
  }

  .hero-content h1 {
    font-size: 28px;
  }

  .section-title {
    font-size: 26px;
  }

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

  .stat-number {
    font-size: 36px;
  }

  .hero-card-stack {
    gap: 10px;
  }

  .hero-card-stack .icon-card {
    width: 56px;
    height: 56px;
    font-size: 22px;
  }

  .hero-float-card {
    padding: 16px 20px;
  }
}
