* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
}

:root {
  --bg-dark: #030711;
  --bg-panel: #0b1224;
  --bg-surface: #0f172a;
  --bg-card: #111b2a;
  --accent: #22e6a8;
  --accent-strong: #38bdf8;
  --text-primary: #f8fafc;
  --text-muted: #94a3b8;
  --border-light: rgba(255, 255, 255, 0.12);
}

body {
  background: radial-gradient(circle at 20% -10%, rgba(34, 230, 168, 0.35), transparent 40%),
    radial-gradient(circle at 80% 0%, rgba(56, 189, 248, 0.25), transparent 45%),
    var(--bg-dark);
  color: var(--text-primary);
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}


.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 4.5%;
  background: rgba(3, 7, 17, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  min-height: 50px;
}

.navbar .logo {
  letter-spacing: 0.05em;
  font-size: 1.4rem;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  cursor: pointer;
  color: var(--text-primary);
  text-decoration: none;
}

.logo span {
  color: var(--accent);
}

.logo:visited {
  color: var(--text-primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  position: relative;
  margin-left: 14px;
  padding: 6px 12px;
  color: var(--text-primary);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.88rem;
}

.nav-links a::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  border-radius: 50px;
  transition: all 0.35s ease;
}

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

.nav-links a:hover::after {
  border-color: rgba(34, 230, 168, 0.4);
}


.menu-btn {
  display: none;
  font-size: 26px;
  cursor: pointer;
  color: var(--accent);
}


.page {
  padding: 80px 10%;
  text-align: center;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.card {
  background: #020617;
  padding: 30px;
  border-radius: 10px;
}


.contact-form {
  max-width: 400px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border-radius: 6px;
  border: none;
}

.site-footer {
  background: linear-gradient(180deg, #050b26, #020616);
  color: #fff;
  padding: 80px 8%;
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 2fr 2fr;
  gap: 60px;
}

/* BRAND */
.logo {
  font-size: 3rem;
  font-weight: 700;
}
.logo span {
  color: var(--accent);
}

.footer-col p {
  color: #cbd5e1;
  line-height: 1.7;
  margin: 15px 0;
}

.small {
  font-size: 0.9rem;
}

.footer-col h4 {
  font-size: 1.4rem;
  margin-bottom: 20px;
}

/* LISTS */
.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
  color: #cbd5e1;
}

.footer-col ul li a {
  color: inherit;
  text-decoration: none;
}

.footer-col ul li a:hover {
  color: var(--accent);
}

/* SOCIALS */
.socials {
  display: flex;
  gap: 12px;
  margin: 25px 0;
}

.socials a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  text-decoration: none;
}

/* BADGE */
.badge {
  width: 100px;
  margin-top: 20px;
}

/* CONTACT */
.highlight {
  color: var(--accent);
  font-weight: 600;
}

address {
  font-style: normal;
  line-height: 1.7;
  color: #cbd5e1;
  margin: 15px 0;
}

.hours {
  margin-top: 20px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding: 60px 6%;
  }

  .logo {
    font-size: 2.5rem;
  }
}



.top-cta {
  background: linear-gradient(120deg, rgba(34, 230, 168, 0.2), rgba(3, 7, 17, 0.9));
  color: var(--text-primary);
  padding: 26px clamp(24px, 6vw, 72px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto 40px;
  max-width: 1100px;
  border-radius: 28px;
  border: 1px solid var(--border-light);
  box-shadow: 0 20px 60px rgba(2, 6, 23, 0.5);
}

.top-cta p {
  font-size: 1.4rem;
  margin: 0;
  font-weight: 500;
  color: var(--text-primary);
}

.top-cta .cta-btn {
  margin-left: 0;
  background: var(--accent);
  color: var(--bg-dark);
  padding: 14px 30px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 12px 25px rgba(34, 230, 168, 0.4);
}

/* HERO SECTION */
.hero {
  width: 100%;
  padding: clamp(90px, 12vw, 140px) 5% clamp(60px, 6vw, 120px);
  background: linear-gradient(135deg, rgba(3, 7, 17, 0.9), rgba(3, 7, 17, 0.75)),
    radial-gradient(circle at 20% -20%, rgba(34, 230, 168, 0.4), transparent 40%),
    url("assets/images/laptop.png") center/cover no-repeat;
  position: relative;
  color: var(--text-primary);
  overflow: hidden;
  margin-top: 0;
  box-sizing: border-box;
  max-width: 100%;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(3, 7, 17, 0.65), rgba(3, 7, 17, 0.4));
  pointer-events: none;
}

.hero .hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
}

.hero h1 {
  font-size: clamp(2.6rem, 4vw, 3.8rem);
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero h1 span {
  color: var(--accent);
}

.hero p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 30px;
  color: var(--text-muted);
}

.hero-eyebrow {
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  margin-bottom: 20px;
  color: var(--accent-strong);
}

.hero-lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 25px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: none;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.btn.primary {
  background: var(--accent);
  color: var(--bg-dark);
  box-shadow: 0 20px 45px rgba(34, 230, 168, 0.25);
}

.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 25px 50px rgba(34, 230, 168, 0.35);
}

.btn.ghost {
  background: rgba(5, 9, 24, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--text-primary);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.65);
}

.btn.ghost:hover {
  border-color: var(--accent);
  color: var(--accent-strong);
  transform: translateY(-2px);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px 24px;
}

.hero-stats strong {
  display: block;
  font-size: 2.4rem;
  color: var(--text-primary);
  font-weight: 700;
}

.hero-stats span {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.hero-story {
  padding: clamp(70px, 8vw, 100px) 8%;
  max-width: 1100px;
  margin: 0 auto;
  color: var(--text-primary);
}

.hero-story .hero-content {
  margin: 0 auto;
  max-width: 780px;
}

.hero-story h2 {
  font-size: clamp(2.4rem, 4vw, 2.8rem);
  line-height: 1.3;
  margin-bottom: 25px;
}

.hero-story p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 18px;
}

.hero-story strong {
  color: var(--accent);
}

.hero-story a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}
.about-services {
  padding: 100px 8%;
  background: #f8fafc;
  border-radius: 40px;
  margin: 70px auto;
  max-width: 1200px;
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.15);
}

.container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: flex-start;
}

/* LEFT TEXT */
.about-text h2 {
  font-size: 2.6rem;
  line-height: 1.2;
  margin-bottom: 25px;
  color: #0f172a;
}

.about-text p {
  font-size: 1rem;
  line-height: 1.7;
  color: #475569;
  margin-bottom: 18px;
}

.about-text .bold {
  font-weight: 700;
  color: #0f172a;
}

.highlight {
  color: var(--accent);
  font-weight: 600;
}

.link {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}

/* RIGHT SERVICES */
.services-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-item {
  display: flex;
  gap: 20px;
  background: var(--bg-surface);
  padding: 26px;
  border-radius: 18px;
  align-items: center;
  border: 1px solid var(--border-light);
  color: var(--text-primary);
  box-shadow: 0 20px 45px rgba(3, 7, 17, 0.5);
}

.service-item h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.service-item p {
  font-size: 0.95rem;
  color: #cbd5e1;
  line-height: 1.6;
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #0b1227;
  font-weight: 700;
  letter-spacing: 0.05em;
  font-size: 0.9rem;
  box-shadow: 0 12px 30px rgba(34, 230, 168, 0.35);
}
.web-solutions {
  padding: 100px 8%;
  background: linear-gradient(160deg, rgba(3, 7, 17, 0.95), rgba(4, 18, 43, 0.95));
  color: var(--text-primary);
  margin-top: 40px;
}

.ws-container h2 {
  font-size: 2.8rem;
  margin-bottom: 50px;
}

/* GRID */
.ws-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.ws-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: #000;
}

.ws-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.75;
  transition: transform 0.5s ease;
}

.ws-card:hover img {
  transform: scale(1.08);
}

/* CONTENT OVERLAY */
.ws-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 22px;
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
}

.ws-content h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.ws-content p {
  font-size: 0.9rem;
  color: #cad2e4;
  line-height: 1.5;
}

.arrow {
  display: inline-block;
  margin-top: 10px;
  font-size: 1.4rem;
  color: var(--accent);
}
.approach {
  padding: 80px 8%;
  background: #ffffff;
}

.approach h2 {
  text-align: center;
  font-size: 3rem;
  font-weight: 600;
  color: #0b0f2b;
  margin-bottom: 60px;
}

.approach h2 span {
  color: var(--accent);
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.approach-card {
  border: 1px solid #e6ebf1;
  border-radius: 12px;
  padding: 40px 32px;
  transition: all 0.3s ease;
  background: #fff;
}

.approach-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

.approach-card img {
  width: 42px;
  margin-bottom: 20px;
}

.approach-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #0b0f2b;
}

.approach-card h3 span {
  color: var(--accent);
}

.approach-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: #5b6475;
}
.wp-dev {
  padding: 90px 8%;
  background: #ffffff;
}

.wp-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.wp-content {
  flex: 1;
}

.wp-content h2 {
  font-size: 3.8rem;
  line-height: 1.15;
  font-weight: 500;
  color: #0b0f2b;
  margin-bottom: 30px;
}

.wp-content h2 span {
  color: var(--accent);
}

.wp-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #4f566b;
  margin-bottom: 22px;
}

.wp-content .highlight {
  color: var(--accent);
  font-weight: 500;
}

.wp-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 16px 38px;
  background: var(--accent);
  color: #ffffff;
  border-radius: 40px;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.wp-btn:hover {
  background: var(--accent-strong);
  transform: translateY(-2px);
}

/* IMAGE */
.wp-image {
  flex: 1;
  text-align: right;
}

.wp-image img {
  width: 100%;
  max-width: 520px;
}
.introducing {
  padding: 90px 8%;
  background: #ffffff;
}

.introducing-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 70px;
}

.introducing-content {
  flex: 1.2;
}

.introducing-content h2 {
  font-size: 3.6rem;
  font-weight: 500;
  color: #0b0f2b;
  margin-bottom: 30px;
}

.introducing-content h2 span {
  color: var(--accent);
}

.introducing-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #4f566b;
  margin-bottom: 22px;
}

.highlight {
  color: var(--accent);
  font-weight: 500;
}

/* IMAGE */
.introducing-image {
  flex: 1;
  text-align: right;
}

.introducing-image img {
  width: 100%;
  max-width: 420px;
}
.why-octave {
  padding: 100px 8%;
  background: radial-gradient(circle at top, #0f143a, #05071e);
  text-align: center;
}

.why-octave h2 {
  font-size: 3rem;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 70px;
}

.why-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
}

.why-card {
  background: #ffffff;
  padding: 40px 30px 45px;
  border-radius: 6px;
  position: relative;
  text-align: left;
}

.why-card::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  background: var(--accent);
  border-radius: 0 0 6px 6px;
}

.why-card h3 {
  font-size: 1.6rem;
  color: #0b0f2b;
  margin-bottom: 18px;
}

.why-card h3 span {
  color: var(--accent);
}

.why-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: #5b6075;
}
.reviews {
  padding: 100px 6%;
  background: #f9fafc;
  text-align: center;
}

.reviews-header {
  margin-bottom: 60px;
}

.logo-dot {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.logo-dot .circle {
  width: 44px;
  height: 44px;
  border: 5px solid #0b0f2b;
  border-radius: 50%;
  color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
}

.logo-dot .dot {
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
  margin-left: -5px;
  margin-top: 22px;
}

.reviews h2 {
  font-size: 2.8rem;
  color: #0b0f2b;
  font-weight: 500;
}

.review-cards {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 22px;
  margin-bottom: 40px;
}

.review-card {
  background: #fff;
  border: 1px solid #e4e6eb;
  padding: 22px 18px;
  border-radius: 10px;
  text-align: left;
  font-size: 0.9rem;
}

.review-card .stars {
  color: #fbbc04;
  font-size: 1rem;
  margin-bottom: 10px;
}

.review-card p {
  color: #1f2937;
  line-height: 1.5;
  margin-bottom: 10px;
}

.review-card a {
  color: var(--accent);
  font-weight: 500;
  text-decoration: none;
}

.review-users {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
  margin-bottom: 40px;
}

.review-users .user {
  font-weight: 500;
  color: #0b0f2b;
}

.google-reviews {
  display: flex;
  justify-content: center;
  color: var(--accent);
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
}
.contact-hero {
  background: linear-gradient(120deg, #050a2a, #0b1240);
  padding: 90px 8%;
  color: #fff;
}

.contact-hero h1 {
  font-size: 3.2rem;
  font-weight: 500;
}

.contact-hero span {
  color: var(--accent);
}

.contact-hero p {
  margin-top: 15px;
  line-height: 1.6;
  opacity: 0.9;
}

/* BOX */
.contact-wrapper {
  padding: 80px 6%;
  background: #f6f7f9;
}

.contact-box {
  background: #fff;
  border-radius: 12px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

/* LEFT */
.contact-info {
  padding: 40px;
  background: #f2f3f5;
}

.contact-info h3,
.contact-info h4 {
  color: #0b0f2b;
  margin-bottom: 20px;
}

.contact-info span {
  color: var(--accent);
}

.info-item {
  display: flex;
  gap: 12px;
  margin-bottom: 15px;
  color: #1f2937;
}

/* FORM */
.contact-form {
  padding: 40px;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 0.95rem;
}

.contact-form textarea {
  height: 140px;
  resize: none;
}

.contact-form button {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 14px 32px;
  border-radius: 30px;
  cursor: pointer;
  font-size: 0.95rem;
}

.contact-form button:hover {
  background: var(--accent-strong);
}

/* TOAST */
#toast {
  position: fixed;
  top: 100px;
  right: 800px;
  background: #222;
  color: #fff;
  padding: 14px 22px;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

#toast.show {
  opacity: 1;
  transform: translateY(0);
}

#toast.success {
  background: #28a745;
}

#toast.error {
  background: #dc3545;
}


/* RESPONSIVE */
@media (max-width: 900px) {
  .contact-box {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .form-row {
    flex-direction: column;
  }

  .contact-hero h1 {
    font-size: 2.4rem;
  }
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .review-cards {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .review-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .reviews h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 480px) {
  .review-cards {
    grid-template-columns: 1fr;
  }
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .why-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .why-octave h2 {
    font-size: 2.3rem;
  }

  .why-cards {
    grid-template-columns: 1fr;
  }

  .why-card {
    padding: 35px 25px 40px;
  }
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .introducing-content h2 {
    font-size: 3rem;
  }
}

@media (max-width: 900px) {
  .introducing-container {
    flex-direction: column;
    text-align: left;
  }

  .introducing-image {
    text-align: center;
  }

  .introducing-image img {
    max-width: 360px;
  }
}

@media (max-width: 480px) {
  .introducing {
    padding: 60px 6%;
  }

  .introducing-content h2 {
    font-size: 2.4rem;
  }

  .introducing-content p {
    font-size: 1rem;
  }
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .wp-content h2 {
    font-size: 3rem;
  }
}

@media (max-width: 900px) {
  .wp-container {
    flex-direction: column;
    text-align: left;
  }

  .wp-image {
    text-align: center;
  }

  .wp-image img {
    max-width: 420px;
  }
}

@media (max-width: 480px) {
  .wp-dev {
    padding: 60px 6%;
  }

  .wp-content h2 {
    font-size: 2.4rem;
  }
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .approach-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .approach {
    padding: 60px 6%;
  }

  .approach h2 {
    font-size: 2.2rem;
  }

  .approach-grid {
    grid-template-columns: 1fr;
  }
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .ws-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .ws-grid {
    grid-template-columns: 1fr;
  }

  .ws-container h2 {
    font-size: 2.2rem;
  }
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .about-text h2 {
    font-size: 2rem;
  }

  .service-item {
    flex-direction: column;
  }
}


@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.8rem;
  }

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

@media (max-width: 768px) {
  .nav-links {
    display: none;
    gap: 10px;
    position: absolute;
    height: 100vh;
    top: 60px;
    z-index: 10000;
    width: 100%;
    right: 0%;
    background: #020617;
    flex-direction: column;
    padding: 20px;
  }

  .menu-btn {
    display: block;
    color: var(--accent);
  }
}

@media (max-width: 1024px) {
  .navbar {
    padding: 10px 4%;
  }

  .nav-links a {
    margin-left: 12px;
    padding: 8px 12px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 80px 4% 70px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

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

  .top-cta {
    flex-direction: column;
    gap: 14px;
    text-align: center;
    padding: 20px;
  }

  .top-cta .cta-btn {
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
  }
}
