/* ============================= */
/* GLOBAL STYLES (Original) */
/* ============================= */
body {
  margin: 0;
  font-family: Segoe UI, Arial;
  background: #f8fafc;
  color: #0b132b;
}

/* NAV */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 60px;
  background: #f8fafc;
}
.navbar ul {
  display: flex;
  list-style: none;
  gap: 30px;
}
.navbar a {
  text-decoration: none;
  color: #0b132b;
  font-weight: 500;
}

/* HERO */
.hero {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 120px 40px 80px;
  max-width: 900px;
  margin: auto;
}
.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}
.hero p {
  font-size: 1.1rem;
  color: #475569;
}
.hero-content {
  position: relative;
  z-index: 2;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

/* SECTIONS */
.section {
  padding: 100px 40px;
  text-align: center;
}
.section p {
  max-width: 800px;
  margin: 12px auto;
  color: #475569;
}

/* GRID / CARDS */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 1100px;
  margin: 60px auto 0;
}
.card {
  background: #fff;
  border-radius: 28px;
  padding: 36px;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 60px 120px rgba(0, 0, 0, 0.12);
}
.visual {
  height: 180px;
  border-radius: 22px;
  margin-bottom: 24px;
}
.gradient-1 { background: linear-gradient(135deg, #e0c3fc, #8ec5fc); }
.gradient-2 { background: linear-gradient(135deg, #cfd9df, #e2ebf0); }
.gradient-3 { background: linear-gradient(135deg, #fbc2eb, #a6c1ee); }

/* CONTACT */
.contact {
  min-height: calc(100vh - 120px);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
}
.contact-card {
  background: #fff;
  border-radius: 28px;
  padding: 60px;
  box-shadow: 0 40px 90px rgba(0,0,0,.12);
  max-width: 520px;
  width: 100%;
}

/* FORM */
.field {
  position: relative;
  margin-bottom: 28px;
}
.field input,
.field textarea {
  width: 100%;
  padding: 16px;
  border-radius: 14px;
  border: none;
  background: #f1f5f9;
  font-size: 1rem;
}
.field label {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  color: #94a3b8;
  pointer-events: none;
  transition: .3s;
}
.field input:focus + label,
.field textarea:focus + label,
.field input:not(:placeholder-shown) + label,
.field textarea:not(:placeholder-shown) + label {
  top: -8px;
  font-size: .8rem;
  color: #0b132b;
  background: #fff;
  padding: 0 6px;
}
.contact button {
  width: 100%;
  padding: 16px;
  border-radius: 999px;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  background: linear-gradient(135deg,#8ec5fc,#e0c3fc);
}

/* FOOTER */
.footer {
  padding: 40px;
  text-align: center;
  color: #64748b;
  font-size: .9rem;
}

/* ============================= */
/* MICROSOFT-STYLE ICONS + FLOATING SVGs */
/* ============================= */
.icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 22px;
  background: #eef2ff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.ms-icon {
  width: 44px;
  height: 44px;
}
.ms-icon rect,
.ms-icon path {
  fill: #2563eb;
}
.ms-float {
  position: absolute;
  width: 90px;
  height: 90px;
  fill: #2563eb;
  opacity: 0.15;
  filter: blur(2px);
  animation: drift 26s ease-in-out infinite;
}
.tile { top: 15%; left: 8%; }
.cloud { top: 55%; left: 65%; width: 140px; }
.shield { top: 25%; left: 78%; height: 120px; }
.users { top: 65%; left: 20%; }

@keyframes drift {
  0% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-45px) translateX(25px); }
  100% { transform: translateY(0) translateX(0); }
}

/* FLOATING ANIMATIONS */
.floating {
  animation: float 6s ease-in-out infinite;
}
.delay-1 { animation-delay: 0.5s; }
.delay-2 { animation-delay: 1.2s; }
.delay-3 { animation-delay: 1.8s; }
.delay-4 { animation-delay: 2.4s; }

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
  100% { transform: translateY(0); }
}

/* SUBTLE ANIMATIONS */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease forwards;
}
.fade-delay-1 { animation-delay: .1s; }
.fade-delay-2 { animation-delay: .2s; }
.fade-delay-3 { animation-delay: .3s; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* CTA BUTTONS */
.cta-btn {
  display: inline-block;
  margin-top: 28px;
  padding: 16px 36px;
  border-radius: 999px;
  background: linear-gradient(135deg,#8ec5fc,#e0c3fc);
  color: #0b132b;
  font-weight: 600;
  text-decoration: none;
}

/* ============================= */
/* CATALOG / PRICING PAGE */
/* ============================= */
.price-table-wrapper {
  max-width: 900px;
  margin: 60px auto;
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 40px 90px rgba(0,0,0,.08);
  overflow: hidden;
}
.price-table {
  width: 100%;
  border-collapse: collapse;
}
.price-table thead {
  background: #f1f5f9;
}
.price-table th,
.price-table td {
  padding: 18px 24px;
  text-align: left;
}
.price-table th {
  font-weight: 600;
  font-size: .95rem;
}
.price-table th span {
  font-weight: 400;
  color: #64748b;
  font-size: .8rem;
}
.price-table tbody tr {
  border-bottom: 1px solid #e5e7eb;
}
.price-table tbody tr:last-child {
  border-bottom: none;
}
.price-table tbody tr:hover {
  background: #f8fafc;
}
.price-table td:last-child {
  font-weight: 600;
  color: #0b132b;
}

/* CATALOG CTA */
.catalog-note {
  max-width: 720px;
  margin: 80px auto 0;
  text-align: center;
}
.catalog-note p {
  color: #475569;
  margin-bottom: 32px;
}

/* GUARANTEE BANNER */
.guarantee-banner {
  max-width: 900px;
  margin: 0 auto 70px;
  padding: 34px;
  background: #f8fafc;
  border-radius: 26px;
  box-shadow: 0 25px 60px rgba(0,0,0,.06);
  text-align: center;
}
.price-guarantee strong {
  display: block;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

/* SECURITY SECTION */
.security-section {
  max-width: 1000px;
  margin: 120px auto 0;
  text-align: center;
}
.security-intro {
  max-width: 760px;
  margin: 0 auto 60px;
  color: #475569;
}
.security-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}
.security-card {
  background: #fff;
  padding: 28px 30px;
  border-radius: 22px;
  box-shadow: 0 25px 60px rgba(0,0,0,.07);
  text-align: left;
  position: relative;
}
.security-card h4 {
  margin-bottom: 10px;
}
.tag {
  font-size: .65rem;
  padding: 4px 10px;
  border-radius: 999px;
  margin-right: 6px;
  display: inline-block;
}
.smb { background: #e0f2fe; color: #0369a1; }
.enterprise { background: #ede9fe; color: #5b21b6; }

/* LICENSE MAP */
.license-map {
  margin: 80px auto 40px;
  max-width: 720px;
}
.license-map ul {
  list-style: none;
  padding: 0;
}
.license-map li {
  margin-bottom: 12px;
  color: #334155;
}

/* SECURITY CARD ICON FLOATING */
.security-card .icon-wrap {
  margin-bottom: 20px;
}

.security-card .tags {
  margin-top: 12px;
}

/* Floating delays for staggered animations */
.security-card.smb .floating { animation-delay: 0.5s; }
.security-card.enterprise .floating { animation-delay: 1.2s; }

/* Optional: Slight hover lift for the card */
.security-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 40px 90px rgba(0,0,0,.12);
  transition: transform .3s ease, box-shadow .3s ease;
}
