/* ============================================================
   AdiOashol — Coming Soon
   Refined rose-gold palette, glassmorphism, premium typography
   ============================================================ */

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

:root {
  /* Brand palette — warm, feminine, premium */
  --rose-50: #fff5f3;
  --rose-100: #ffe4dd;
  --rose-200: #ffc4b6;
  --rose-400: #f4837a;
  --rose-500: #e85f6c;
  --rose-600: #c94767;
  --plum-700: #6b2453;
  --plum-900: #2a0e2c;

  --gold-300: #e9c79a;
  --gold-500: #c69963;

  --cream: #fbf6ef;
  --ink: #1f1224;
  --ink-soft: #4b3a52;
  --muted: #8a7a90;
  --line: rgba(31, 18, 36, 0.08);

  /* Surfaces */
  --bg: #fdfaf6;
  --surface: #ffffff;
  --surface-tint: rgba(255, 255, 255, 0.7);

  /* Gradients */
  --grad-warm: linear-gradient(135deg, #ff8a7e 0%, #e85f6c 55%, #c94767 100%);
  --grad-rose: linear-gradient(135deg, #ffd1c4 0%, #f4837a 100%);
  --grad-plum: linear-gradient(135deg, #6b2453 0%, #2a0e2c 100%);
  --grad-text: linear-gradient(120deg, #c94767 0%, #6b2453 100%);

  /* Shadows */
  --shadow-sm: 0 2px 6px rgba(42, 14, 44, 0.06);
  --shadow-md: 0 12px 30px rgba(42, 14, 44, 0.08);
  --shadow-lg: 0 30px 60px rgba(42, 14, 44, 0.12);

  /* Radius */
  --r-sm: 12px;
  --r-md: 20px;
  --r-lg: 28px;

  /* Type */
  --font-sans:
    "Plus Jakarta Sans", "Hind Siliguri", "Segoe UI", system-ui, sans-serif;
  --font-bn: "Hind Siliguri", "Plus Jakarta Sans", system-ui, sans-serif;
  --font-display: "Cormorant Garamond", "Hind Siliguri", Georgia, serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-bn);
  color: var(--ink);
  line-height: 1.65;
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

::selection {
  background: var(--rose-200);
  color: var(--plum-900);
}

/* ===== Decorative backdrop ===== */
.page-backdrop {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
  background:
    radial-gradient(1200px 600px at 90% -10%, #ffe4dd 0%, transparent 60%),
    radial-gradient(900px 600px at -10% 30%, #fff0e6 0%, transparent 65%),
    radial-gradient(800px 800px at 50% 110%, #f6e6d8 0%, transparent 60%),
    var(--bg);
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.55;
  animation: drift 22s ease-in-out infinite;
}

.orb-1 {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, #ffb1a0, transparent 70%);
  top: -120px;
  right: -100px;
}

.orb-2 {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, #f3c79b, transparent 70%);
  bottom: 20%;
  left: -120px;
  animation-duration: 28s;
  animation-direction: reverse;
}

.orb-3 {
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, #d8a8c4, transparent 70%);
  top: 55%;
  left: 45%;
  animation-duration: 26s;
}

@keyframes drift {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -25px) scale(1.05);
  }
  66% {
    transform: translate(-25px, 30px) scale(0.97);
  }
}

.grain {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.18 0 0 0 0 0.07 0 0 0 0 0.17 0 0 0 0.05 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* ===== Navigation ===== */
.navbar {
  position: fixed;
  inset: 0 0 auto 0;
  height: 76px;
  background: rgba(253, 250, 246, 0.72);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid var(--line);
  z-index: 1000;
  animation: slideDown 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.navbar.scrolled {
  background: rgba(253, 250, 246, 0.92);
  box-shadow: var(--shadow-sm);
}

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

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--plum-700);
}

.logo-img {
  height: 52px;
  width: auto;
  display: block;
  transition: transform 0.25s ease;
}

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

.logo-img-footer {
  height: 72px;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 15px;
  font-weight: 500;
}

.nav-links a {
  color: var(--ink-soft);
  transition: color 0.2s ease;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--grad-warm);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.nav-links a:hover {
  color: var(--rose-600);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--ink);
  color: #fff !important;
  padding: 9px 18px;
  border-radius: 999px;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.nav-cta:hover {
  background: var(--plum-700);
  transform: translateY(-2px);
}

.nav-cta::after {
  display: none;
}

/* ===== Hero ===== */
.hero {
  margin-top: 76px;
  min-height: calc(100vh - 76px);
  display: grid;
  place-items: center;
  position: relative;
  padding: 80px 24px 100px;
  border-bottom: 1px solid var(--line);
}

.hero-content {
  text-align: center;
  max-width: 900px;
  animation: fadeInUp 1s cubic-bezier(0.2, 0.7, 0.2, 1);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.coming-soon-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid var(--rose-200);
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--rose-600);
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
  animation: pulse-in 0.9s ease-out 0.2s both;
}

@keyframes pulse-in {
  from {
    transform: scale(0.85);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.pulse {
  width: 9px;
  height: 9px;
  background: var(--rose-500);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(232, 95, 108, 0.5);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(232, 95, 108, 0.5);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(232, 95, 108, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(232, 95, 108, 0);
  }
}

.hero-title {
  font-family: var(--font-bn);
  font-size: clamp(34px, 7vw, 84px);
  font-weight: 700;
  color: var(--plum-900);
  margin-bottom: 24px;
  line-height: 1.2;
  word-break: break-word;
}

.title-line {
  display: block;
}

.title-word {
  display: inline-block;
  padding: 0 7px;
  animation: wordIn 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.title-line:nth-child(1) .title-word:nth-child(1) {
  animation-delay: 0.05s;
}
.title-line:nth-child(1) .title-word:nth-child(2) {
  animation-delay: 0.15s;
}
.title-line:nth-child(2) .title-word:nth-child(1) {
  animation-delay: 0.25s;
}
.title-line:nth-child(2) .title-word:nth-child(2) {
  animation-delay: 0.35s;
}

.title-accent {
  background: var(--grad-warm);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
  font-family: var(--font-display);
  font-weight: 600;
  position: relative;
}

.title-accent::after {
  content: "";
  position: absolute;
  left: 6%;
  right: 6%;
  bottom: 6px;
  height: 6px;
  background: var(--grad-rose);
  opacity: 0.35;
  border-radius: 6px;
  filter: blur(2px);
}

@keyframes wordIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-subtitle {
  font-size: clamp(15px, 1.5vw, 18px);
  color: var(--ink-soft);
  margin: 0 auto 40px;
  max-width: 640px;
  font-weight: 500;
  animation: fadeInUp 1s ease-out 0.55s both;
}

/* Countdown */
.countdown {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  padding: 18px 24px;
  border-radius: var(--r-md);
  margin-bottom: 36px;
  box-shadow: var(--shadow-md);
  animation: fadeInUp 1s ease-out 0.7s both;
}

.count-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 64px;
}

.count-num {
  font-family: var(--font-sans);
  font-size: clamp(28px, 3.6vw, 40px);
  font-weight: 800;
  color: var(--plum-900);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.count-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  margin-top: 6px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.count-sep {
  font-size: 28px;
  color: var(--rose-400);
  font-weight: 300;
  margin-top: -16px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 32px;
  border: none;
  border-radius: 999px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
  position: relative;
  overflow: hidden;
}

.btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.25s ease;
}

.btn-primary {
  background: var(--grad-warm);
  color: #fff;
  box-shadow: 0 12px 28px rgba(201, 71, 103, 0.35);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(201, 71, 103, 0.45);
}

.btn-primary:hover svg {
  transform: translateX(4px);
}

.cta-container {
  animation: fadeInUp 1s ease-out 0.85s both;
}

/* ===== Section header ===== */
.section-header {
  text-align: center;
  margin-bottom: 70px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose-600);
  background: var(--rose-100);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.eyebrow-light {
  background: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.95);
}

.section-title {
  font-family: var(--font-bn);
  font-size: clamp(32px, 4.4vw, 52px);
  font-weight: 700;
  color: var(--plum-900);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.section-subtitle {
  font-size: 17px;
  color: var(--ink-soft);
  font-weight: 500;
}

/* ===== Entrepreneurs ===== */
.entrepreneurs {
  padding: 110px 24px 0px;
  max-width: 1200px;
  margin: 0 auto;
}

.entrepreneurs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 32px;
}

.entrepreneur-card {
  background: var(--surface);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  transition:
    transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.45s ease;
  display: flex;
  flex-direction: column;
}

.entrepreneur-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 4;
  overflow: hidden;
  background: linear-gradient(135deg, #ffe4dd 0%, #f3c79b 100%);
}

.entrepreneur-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.entrepreneur-card:hover .entrepreneur-image {
  transform: scale(1.06);
}

.card-content {
  padding: 28px 28px 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.entrepreneur-name {
  font-family: var(--font-bn);
  font-size: 24px;
  font-weight: 700;
  color: var(--plum-900);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.entrepreneur-role {
  font-size: 13px;
  color: var(--rose-600);
  font-weight: 600;
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}

.entrepreneur-bio {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 22px;
  flex: 1;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--rose-50);
  color: var(--rose-600);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    color 0.25s ease;
}

.social-icon svg {
  width: 16px;
  height: 16px;
}

.social-icon:hover {
  background: var(--grad-warm);
  color: #fff;
  transform: translateY(-3px);
}

/* ===== Features ===== */
.features {
  padding: 110px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
}

.feature-item {
  text-align: left;
  padding: 32px 28px;
  background: var(--surface);
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--grad-warm);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.feature-item > * {
  position: relative;
  z-index: 1;
}

.feature-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
  color: #fff;
}

.feature-item:hover::before {
  opacity: 1;
}

.feature-item:hover h3,
.feature-item:hover p {
  color: #fff;
}

.feature-item:hover .feature-icon {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--rose-50);
  color: var(--rose-600);
  margin-bottom: 18px;
  transition:
    background 0.3s ease,
    color 0.3s ease;
}

.feature-icon svg {
  width: 26px;
  height: 26px;
}

.feature-item h3 {
  font-size: 18px;
  color: var(--plum-900);
  margin-bottom: 8px;
  font-weight: 700;
  transition: color 0.3s ease;
}

.feature-item p {
  color: var(--ink-soft);
  font-size: 14.5px;
  line-height: 1.65;
  transition: color 0.3s ease;
}

/* ===== Newsletter ===== */
.newsletter {
  padding: 100px 24px;
  background: var(--grad-plum);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.newsletter::before {
  content: "";
  position: absolute;
  inset: -50% -10% auto auto;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232, 95, 108, 0.4), transparent 60%);
  filter: blur(40px);
  pointer-events: none;
}

.newsletter::after {
  content: "";
  position: absolute;
  inset: auto auto -50% -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(198, 153, 99, 0.35),
    transparent 60%
  );
  filter: blur(40px);
  pointer-events: none;
}

.newsletter-content {
  max-width: 620px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.newsletter-content h2 {
  font-family: var(--font-bn);
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 700;
  margin: 14px 0 14px;
  letter-spacing: -0.02em;
}

.newsletter-content p {
  font-size: 17px;
  margin-bottom: 32px;
  opacity: 0.9;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 6px;
  border-radius: 999px;
  backdrop-filter: blur(12px);
}

.newsletter-input {
  flex: 1;
  padding: 13px 22px;
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: 15px;
  color: #fff;
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.newsletter-input:focus {
  outline: none;
}

.newsletter .btn-primary {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.newsletter-note {
  font-size: 13px;
  opacity: 0.7;
  font-weight: 500;
  margin: 0 !important;
}

/* ===== Footer ===== */
.footer {
  background: var(--plum-900);
  color: rgba(255, 255, 255, 0.78);
  padding: 70px 24px 28px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto 50px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
}

.footer-brand p {
  margin-top: 14px;
  font-size: 14.5px;
  line-height: 1.7;
  max-width: 420px;
  color: rgba(255, 255, 255, 0.6);
}

.logo-footer {
  color: #fff;
}

.footer-section h4 {
  margin-bottom: 16px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-section p {
  font-size: 14.5px;
  margin-bottom: 8px;
  max-width: 250px;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s ease;
}

.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.55;
}

.contact-icon {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--rose-200);
  display: grid;
  place-items: center;
}

.contact-icon svg {
  width: 16px;
  height: 16px;
}

.footer-section a:hover {
  color: var(--rose-200);
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social .social-icon {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-social .social-icon:hover {
  background: var(--grad-warm);
  border-color: transparent;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-tag {
  font-style: italic;
  color: rgba(255, 255, 255, 0.5);
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .nav-links {
    gap: 16px;
    font-size: 14px;
  }
  .nav-links a:not(.nav-cta) {
    display: none;
  }

  .countdown {
    gap: 4px;
    padding: 14px 16px;
  }
  .count-cell {
    min-width: 52px;
  }

  .entrepreneurs {
    padding-top: 80px;
    padding-bottom: 0px;
  }
  .features {
    padding-top: 80px;
    padding-bottom: 60px;
  }

  .section-header {
    margin-bottom: 50px;
  }

  .entrepreneurs-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
  }

  .image-wrapper {
    aspect-ratio: 1 / 1;
  }

  .newsletter-form {
    flex-direction: column;
    background: transparent;
    border: none;
    padding: 0;
    backdrop-filter: none;
    gap: 12px;
  }
  .newsletter-input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    padding: 14px 22px;
  }
  .newsletter-form .btn-primary {
    width: 100%;
  }

  .logo-img-footer {
    height: 60px;
  }
}

@media (max-width: 480px) {
  .nav-container {
    padding: 0 18px;
    gap: 12px;
  }
  .logo-img {
    height: 42px;
  }

  .nav-cta {
    padding: 8px 14px;
    font-size: 13px;
  }

  .hero {
    padding: 50px 18px 70px;
  }

  .coming-soon-badge {
    font-size: 12px;
    padding: 8px 14px;
    margin-bottom: 22px;
  }

  .hero-subtitle {
    margin-bottom: 32px;
  }

  .countdown {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 12px;
    padding: 14px 12px;
    width: 100%;
    max-width: 360px;
  }
  .count-sep {
    display: none;
  }
  .count-cell {
    min-width: 60px;
    flex: 1 1 22%;
  }

  .btn {
    padding: 13px 24px;
    font-size: 14px;
  }

  .entrepreneurs,
  .features {
    padding-left: 18px;
    padding-right: 18px;
  }

  .card-content {
    padding: 22px;
  }

  .feature-item {
    padding: 26px 22px;
  }

  .newsletter {
    padding: 80px 18px;
  }

  .newsletter-content h2 {
    font-size: 28px;
  }

  .newsletter-content p {
    font-size: 15px;
  }

  .footer {
    padding: 56px 18px 24px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 36px;
  }

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

  .logo-img-footer {
    height: 56px;
  }
}

@media (max-width: 360px) {
  .hero-title {
    font-size: 30px;
  }
  .count-num {
    font-size: 24px;
  }
  .count-cell {
    min-width: 54px;
  }
}

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