:root {
  --primary: #1098e8;
  --primary-dark: #0a78bd;
  --primary-light: #e8f6ff;
  --cyan: #22d3ee;
  --green: #10b981;
  --green-soft: #d1fae5;
  --bg: #ffffff;
  --bg-alt: #f5fbff;
  --text: #0f2c3f;
  --muted: #5b7689;
  --border: #e3eef6;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow-sm: 0 4px 16px rgba(16, 152, 232, .08);
  --shadow: 0 12px 40px rgba(16, 152, 232, .12);
  --shadow-lg: 0 24px 60px rgba(16, 152, 232, .18);
  --grad: linear-gradient(135deg, var(--primary) 0%, var(--cyan) 100%);
  --grad-soft: linear-gradient(135deg, #e8f6ff 0%, #e0fbff 50%, #d1fae5 100%);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px
}

body {
  font-family: 'Cairo', 'Poppins', system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

.container {
  width: min(1200px, 92%);
  margin-inline: auto
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: all .3s cubic-bezier(.4, 0, .2, 1);
  font-family: inherit;
  white-space: nowrap;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 16px
}

.btn-sm {
  padding: 8px 18px;
  font-size: 13px
}

.btn-primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 8px 24px rgba(16, 152, 232, .35)
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(16, 152, 232, .45)
}

.btn-ghost {
  background: #fff;
  color: var(--primary);
  border: 2px solid var(--border)
}

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

.btn-white {
  background: #fff;
  color: var(--primary)
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, .15)
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: all .3s;
}

.navbar.scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm)
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 24px
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 20px;
  color: var(--primary)
}

.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--grad);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 18px;
  box-shadow: 0 6px 16px rgba(16, 152, 232, .4);
}

.nav-links {
  display: flex;
  gap: 28px
}

.nav-links a {
  color: var(--text);
  font-weight: 500;
  font-size: 15px;
  transition: color .2s;
  position: relative
}

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

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  right: 0;
  width: 0;
  height: 2px;
  background: var(--grad);
  transition: width .3s;
}

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

.menu-btn {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px
}

.menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .3s
}

.menu-btn.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg)
}

.menu-btn.active span:nth-child(2) {
  opacity: 0
}

.menu-btn.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg)
}


.hero {
  position: relative;
  padding: 140px 0 80px;
  overflow: hidden
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--grad-soft);
  z-index: -1;
}

.hero-bg::before,
.hero-bg::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .5;
}

.hero-bg::before {
  width: 400px;
  height: 400px;
  background: var(--cyan);
  top: -100px;
  right: -100px;
  animation: float 8s ease-in-out infinite
}

.hero-bg::after {
  width: 500px;
  height: 500px;
  background: var(--primary);
  bottom: -200px;
  left: -150px;
  animation: float 10s ease-in-out infinite reverse
}

@keyframes float {

  0%,
  100% {
    transform: translate(0, 0)
  }

  50% {
    transform: translate(30px, -30px)
  }
}

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

.badge {
  display: inline-block;
  padding: 8px 18px;
  background: #fff;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(28px, 4.5vw, 52px);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #0f2c3f 0%, #0a78bd 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  font-size: 17px;
  color: var(--muted);
  margin-bottom: 32px;
  max-width: 560px
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px
}

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap
}

.hero-stats div {
  display: flex;
  flex-direction: column
}

.hero-stats strong {
  font-size: 28px;
  font-weight: 800;
  color: var(--primary)
}

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

.hero-image {
  position: relative
}

.hero-image img {
  border-radius: 30px;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  object-fit: cover;
}

.floating-card {
  position: absolute;
  background: #fff;
  padding: 14px 18px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: bob 3s ease-in-out infinite;
}

.floating-card span {
  font-size: 24px
}

.floating-card strong {
  display: block;
  font-size: 14px;
  font-weight: 700
}

.floating-card small {
  display: block;
  font-size: 11px;
  color: var(--muted)
}

.card-1 {
  top: 30px;
  left: -20px;
  animation-delay: 0s
}

.card-2 {
  bottom: 30px;
  right: -20px;
  animation-delay: 1.5s
}

@keyframes bob {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-10px)
  }
}


.section {
  padding: 90px 0
}

.section-alt {
  background: var(--bg-alt)
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px
}

.eyebrow {
  display: inline-block;
  padding: 6px 14px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 14px;
}

.section-head h2 {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.3
}

.section-head p {
  color: var(--muted);
  font-size: 16px
}

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

.cat-card {
  background: #fff;
  padding: 32px 24px;
  border-radius: var(--radius);
  text-align: center;
  transition: all .4s cubic-bezier(.4, 0, .2, 1);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.cat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--c);
  opacity: 0;
  transition: opacity .3s;
  z-index: 0;
}

.cat-card>* {
  position: relative;
  z-index: 1
}

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

.cat-card:hover::before {
  opacity: 1
}

.cat-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: var(--c);
  display: grid;
  place-items: center;
  font-size: 34px;
  margin: 0 auto 16px;
  transition: transform .3s;
}

.cat-card:hover .cat-icon {
  transform: scale(1.1) rotate(-5deg)
}

.cat-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px
}

.cat-card p {
  color: var(--muted);
  font-size: 14px
}

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

.prod-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all .4s;
}

.prod-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: transparent
}

.prod-img {
  aspect-ratio: 1/1;
  background: var(--bg-alt);
  overflow: hidden
}

.prod-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s
}

.prod-card:hover .prod-img img {
  transform: scale(1.08)
}

.prod-body {
  padding: 20px
}

.tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 10px;
}

.prod-body h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px
}

.prod-body p {
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 16px;
  min-height: 36px
}

.prod-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px
}

.price {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary)
}

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

.about-grid h2 {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  margin: 14px 0 18px;
  line-height: 1.3
}

.about-grid p {
  color: var(--muted);
  margin-bottom: 18px
}

.about-grid .lead {
  color: var(--text);
  font-weight: 500
}

.about-card {
  background: var(--grad-soft);
  padding: 40px;
  border-radius: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.ring {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 20px solid rgba(16, 152, 232, .15);
  top: -100px;
  left: -100px;
}

.about-stat {
  background: #fff;
  padding: 24px;
  border-radius: var(--radius);
  text-align: center;
  position: relative;
  z-index: 1
}

.about-stat strong {
  display: block;
  font-size: 32px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1
}

.about-stat span {
  display: block;
  font-size: 13px;
  color: var(--muted);
  margin-top: 6px
}

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

.why-card {
  background: #fff;
  padding: 32px 24px;
  border-radius: var(--radius);
  text-align: center;
  border: 1px solid var(--border);
  transition: all .3s;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: transparent
}

.why-ic {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: var(--grad);
  display: grid;
  place-items: center;
  font-size: 28px;
  margin: 0 auto 16px;
  box-shadow: 0 8px 20px rgba(16, 152, 232, .3);
}

.why-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px
}

.why-card p {
  color: var(--muted);
  font-size: 14px
}

.offer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 24px
}

.offer-card {
  padding: 36px;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  transition: transform .3s
}

.offer-card:hover {
  transform: translateY(-6px)
}

.offer-main {
  background: var(--grad);
  color: #fff;
  box-shadow: var(--shadow-lg);
}

.offer-main::before {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  top: -80px;
  left: -80px;
}

.offer-sec {
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm)
}

.offer-badge {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(255, 255, 255, .25);
  color: #fff;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 14px;
}

.offer-badge.alt {
  background: var(--green-soft);
  color: var(--green)
}

.offer-card h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 8px;
  position: relative
}

.offer-card p {
  margin-bottom: 20px;
  opacity: .95;
  position: relative
}

.offer-sec p {
  color: var(--muted)
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  max-width: 900px;
  margin: 0 auto
}

.contact-card {
  background: #fff;
  padding: 32px;
  border-radius: var(--radius);
  text-align: center;
  border: 1px solid var(--border);
  transition: all .3s;
  display: block;
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: transparent
}

.c-ic {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 28px;
  margin: 0 auto 16px
}

.contact-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px
}

.contact-card p {
  color: var(--muted);
  font-size: 15px
}

.footer {
  background: #0a1f2e;
  color: #fff;
  padding: 60px 0 30px
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: start
}

.logo-light {
  color: #fff !important
}

.footer p {
  color: #94a8b6;
  margin-top: 10px;
  font-size: 14px
}

.foot-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap
}

.foot-links a {
  color: #cbd9e3;
  font-size: 14px;
  transition: color .2s
}

.foot-links a:hover {
  color: #fff
}

.copy {
  grid-column: 1/-1;
  border-top: 1px solid #1a3346;
  padding-top: 20px;
  margin-top: 30px;
  text-align: center;
  font-size: 13px
}

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 32px rgba(37, 211, 102, .5);
  z-index: 99;
  transition: transform .3s;
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1)
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 12px 32px rgba(37, 211, 102, .5), 0 0 0 0 rgba(37, 211, 102, .4)
  }

  50% {
    box-shadow: 0 12px 32px rgba(37, 211, 102, .5), 0 0 0 16px rgba(37, 211, 102, 0)
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all .8s cubic-bezier(.4, 0, .2, 1)
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0)
}

@media (max-width:900px) {
  .nav-links {
    position: fixed;
    top: 70px;
    right: 0;
    left: 0;
    background: #fff;
    flex-direction: column;
    padding: 24px;
    gap: 18px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    transition: transform .3s;
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    transform: translateY(0)
  }

  .menu-btn {
    display: flex
  }

  .nav-cta {
    display: none
  }

  .hero-grid,
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .hero {
    padding: 110px 0 60px
  }

  .hero-image {
    order: -1;
    max-width: 500px;
    margin: 0 auto
  }

  .offer-grid {
    grid-template-columns: 1fr
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center
  }

  .foot-links {
    justify-content: center
  }

  .section {
    padding: 70px 0
  }

  .floating-card {
    padding: 10px 14px
  }

  .floating-card strong {
    font-size: 12px
  }

  .floating-card small {
    font-size: 10px
  }
}

@media (max-width:500px) {
  .hero-stats {
    gap: 20px
  }

  .hero-stats strong {
    font-size: 22px
  }

  .about-card {
    padding: 24px;
    gap: 14px
  }

  .about-stat {
    padding: 16px
  }

  .about-stat strong {
    font-size: 24px
  }
}

.logo-mark-img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 6px 14px rgba(16, 152, 232, .35));
  transition: transform .3s ease;
}

.logo:hover .logo-mark-img {
  transform: rotate(-8deg) scale(1.05);
}

.ic-inline {
  width: 18px;
  height: 18px;
  object-fit: contain;
  vertical-align: middle;
  display: inline-block;
  margin-left: 6px;
}

.ic-light {
  filter: brightness(0) invert(1)
}

.ic-md {
  width: 32px;
  height: 32px;
  object-fit: contain;
  flex-shrink: 0
}

.cat-icon img {
  width: 42px;
  height: 42px;
  object-fit: contain
}

.why-ic img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  filter: brightness(0) invert(1)
}

.c-ic img {
  width: 32px;
  height: 32px;
  object-fit: contain
}

.whatsapp-float img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  filter: brightness(0) invert(1)
}

.more-hint-wrap {
  text-align: center;
  margin-top: 36px;
}

.more-hint {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 15px;
  font-weight: 600;
  border-radius: 999px;
}

.more-hint .ic-inline {
  width: 18px;
  height: 18px;
}

.more-cta {
  margin-top: 48px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 32px;
  background: linear-gradient(135deg, #ffffff 0%, var(--primary-light) 100%);
  border-radius: var(--radius);
  border: 1px dashed var(--primary);
}

.more-cta p {
  color: var(--text);
  font-weight: 600;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}

.more-cta .ic-inline {
  width: 18px;
  height: 18px;
}

.prod-img {
  background: linear-gradient(135deg, #dff0fc 0%, #e6faf0 100%);
}

.to-top {
  position: fixed;
  bottom: 32px;
  left: 28px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  background: var(--grad);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(16, 152, 232, .45);
  opacity: 0;
  visibility: hidden;
  transition: all .35s cubic-bezier(.4, 0, .2, 1);
  z-index: 99;
}

.to-top svg {
  width: 22px;
  height: 22px;
}

.to-top.show {
  opacity: 1;
  visibility: visible;
  /* transform: translateY(0) scale(1); */
}

@media (max-width: 640px) {
  .to-top {
    bottom: 24px;
    left: 18px;
    width: 46px;
    height: 46px;
  }
}