* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: #ffffff;
  background: #020817;
  overflow-x: hidden;
}

.page-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 12% 84%, rgba(0, 193, 255, 0.16), transparent 26%),
    radial-gradient(circle at 84% 8%, rgba(0, 140, 255, 0.12), transparent 22%),
    linear-gradient(90deg, #010716 0%, #020b22 35%, #020a1a 100%);
}

/* =========================
   TOP BAR / BRAND
========================= */
.topbar {
  max-width: 1400px;
  margin: 0 auto;
  padding: 30px 42px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-logo {
  height: 44px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
  transition: transform 0.25s ease, filter 0.25s ease;
}

.brand-logo:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 12px rgba(59, 130, 246, 0.35));
}

.brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brand-text h1 {
  margin: 0;
  font-size: 40px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.brand-text p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
}

.brand-tagline {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
}

.nav {
  display: flex;
  gap: 40px;
  padding-top: 8px;
}

.nav a {
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.nav a:hover {
  opacity: 0.9;
  color: #9fd6ff;
}

.nav a.active {
  color: #9fd6ff;
}

/* =========================
   HOME HERO
========================= */
.hero {
  max-width: 1400px;
  margin: 0 auto;
  padding: 30px 42px 42px;
  min-height: calc(100vh - 100px);
  display: grid;
  grid-template-columns: 1.02fr 1fr;
  gap: 46px;
  align-items: center;
}

.hero-left {
  max-width: 620px;
}

.hero-title {
  margin: 0;
  font-size: 72px;
  line-height: 1.04;
  font-weight: 800;
  letter-spacing: -1.6px;
}

.gradient-text {
  background: linear-gradient(90deg, #8b5cf6 0%, #3b82f6 52%, #22d3ee 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.hero-text {
  margin: 26px 0 0;
  max-width: 600px;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
}

.hero-highlight {
  margin: 14px 0 0;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 700;
  background: linear-gradient(90deg, #8b5cf6 0%, #3b82f6 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.hero-actions {
  margin-top: 30px;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.btn {
  min-width: 230px;
  padding: 18px 26px;
  border-radius: 18px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #ffffff;
  background: linear-gradient(90deg, #8b5cf6 0%, #2563eb 100%);
  border: 1px solid rgba(129, 140, 248, 0.55);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.05) inset,
    0 0 24px rgba(94, 92, 230, 0.34);
}

.btn-secondary {
  color: #ffffff;
  background: rgba(7, 14, 34, 0.45);
  border: 1px solid rgba(255,255,255,0.18);
}

.arrow {
  font-size: 28px;
  line-height: 1;
}

.hero-right {
  width: 100%;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.info-card {
  position: relative;
  background: linear-gradient(180deg, rgba(12, 19, 46, 0.85), rgba(8, 14, 32, 0.93));
  border: 1px solid rgba(122, 138, 180, 0.24);
  border-radius: 28px;
  padding: 26px 26px 24px;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.02),
    0 20px 60px rgba(0, 0, 0, 0.28);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  overflow: hidden;
}

.info-card:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: rgba(151, 174, 255, 0.42);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.03),
    0 26px 70px rgba(0, 0, 0, 0.34),
    0 0 28px rgba(74, 144, 226, 0.16);
}

.info-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -55% -20%;
  height: 140px;
  background: radial-gradient(circle, rgba(79, 172, 254, 0.14), transparent 60%);
  opacity: 0;
  transition: opacity 0.28s ease;
  pointer-events: none;
}

.info-card:hover::after {
  opacity: 1;
}

.info-card-top {
  min-height: 390px;
}

.info-card-wide {
  grid-column: 1 / -1;
  min-height: 290px;
  padding-top: 22px;
}

.glow-purple::before,
.glow-cyan::before {
  content: "";
  position: absolute;
  top: -2px;
  width: 110px;
  height: 4px;
  border-radius: 999px;
  filter: blur(1px);
}

.glow-purple::before {
  left: 52%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, #a855f7, transparent);
}

.glow-cyan::before {
  left: 55%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, #2dd4bf, transparent);
}

.icon-box {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 24px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.03);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.info-card:hover .icon-box {
  transform: scale(1.06) rotate(-3deg);
  box-shadow: 0 0 18px rgba(113, 163, 255, 0.2);
}

.icon-box.purple {
  background: rgba(112, 72, 232, 0.32);
  color: #e2d1ff;
}

.icon-box.green {
  background: rgba(10, 140, 120, 0.32);
  color: #7cfce0;
}

.icon-box.blue {
  background: rgba(19, 90, 179, 0.34);
  color: #5ebcff;
}

.eyebrow {
  margin: 0 0 16px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.4px;
}

.purple-text {
  color: #a855f7;
}

.green-text {
  color: #22e7b8;
}

.blue-text {
  color: #2f9bff;
}

.info-card h3 {
  margin: 0;
  font-size: 31px;
  line-height: 1.04;
  font-weight: 800;
  letter-spacing: -0.7px;
  transition: transform 0.28s ease;
}

.info-card:hover h3 {
  transform: translateX(2px);
}

.info-card p:not(.eyebrow) {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.86);
}

.mini-line {
  width: 36px;
  height: 3px;
  border-radius: 999px;
  margin: 16px 0 16px;
  transition: width 0.28s ease;
}

.info-card:hover .mini-line {
  width: 54px;
}

.purple-line {
  background: #8b5cf6;
}

.green-line {
  background: #22e7b8;
}

.blue-line {
  background: #2f9bff;
}

.wide-head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.wide-head .icon-box {
  margin-bottom: 0;
  flex-shrink: 0;
}

.wide-head h3 {
  font-size: 26px;
  line-height: 1.15;
}

.wide-text {
  margin-top: 0;
  max-width: 940px;
}

.feature-row {
  margin-top: 24px;
  padding-top: 8px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 14px;
  border-right: 1px solid rgba(255,255,255,0.12);
}

.feature-item:last-child {
  border-right: none;
}

.feature-item span {
  color: #2f9bff;
  font-size: 26px;
  line-height: 1;
}

.feature-item p {
  margin: 0;
  font-size: 14px !important;
  line-height: 1.35 !important;
  color: rgba(255,255,255,0.92);
}

/* =========================
   SHARED INNER PAGE LAYOUT
========================= */
.inner-page {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 42px 80px;
}

.page-header {
  max-width: 860px;
  margin-bottom: 40px;
}

.page-header h2 {
  margin: 0 0 14px;
  font-size: 52px;
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -1px;
}

.page-header p {
  margin: 0;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
}

/* =========================
   WHAT WE OFFER
========================= */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.offer-card {
  position: relative;
  background: linear-gradient(180deg, rgba(12, 19, 46, 0.85), rgba(8, 14, 32, 0.93));
  border: 1px solid rgba(122, 138, 180, 0.24);
  border-radius: 26px;
  padding: 28px 24px;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.02),
    0 20px 60px rgba(0, 0, 0, 0.24);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  overflow: hidden;
}

.offer-card:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: rgba(151, 174, 255, 0.42);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.03),
    0 26px 70px rgba(0, 0, 0, 0.34),
    0 0 28px rgba(74, 144, 226, 0.16);
}

.offer-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -55% -20%;
  height: 140px;
  background: radial-gradient(circle, rgba(79, 172, 254, 0.14), transparent 60%);
  opacity: 0;
  transition: opacity 0.28s ease;
  pointer-events: none;
}

.offer-card:hover::after {
  opacity: 1;
}

.offer-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 22px;
  background: rgba(19, 90, 179, 0.34);
  color: #5ebcff;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.03);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.offer-card:hover .offer-icon {
  transform: scale(1.06) rotate(-3deg);
  box-shadow: 0 0 18px rgba(113, 163, 255, 0.2);
}

.offer-tag {
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.45px;
  color: #2f9bff;
}

.offer-card h3 {
  margin: 0 0 14px;
  font-size: 30px;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.6px;
}

.offer-line {
  width: 38px;
  height: 3px;
  border-radius: 999px;
  margin: 0 0 18px;
  background: #2f9bff;
  transition: width 0.28s ease;
}

.offer-card:hover .offer-line {
  width: 56px;
}

.offer-card p {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.84);
}

/* =========================
   ABOUT
========================= */
.about-wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: stretch;
  margin-top: 20px;
}

.about-card,
.about-side-card {
  background: linear-gradient(180deg, rgba(12, 19, 46, 0.85), rgba(8, 14, 32, 0.93));
  border: 1px solid rgba(122, 138, 180, 0.24);
  border-radius: 28px;
  padding: 30px 28px;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.02),
    0 20px 60px rgba(0, 0, 0, 0.24);
}

.about-card p,
.about-side-card p {
  margin: 0 0 18px;
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.84);
}

.about-card p:last-child,
.about-side-card p:last-child {
  margin-bottom: 0;
}

.about-highlight {
  font-weight: 800;
  background: linear-gradient(90deg, #8b5cf6 0%, #3b82f6 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.about-stat {
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.about-stat:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.about-stat h4 {
  margin: 0 0 8px;
  font-size: 24px;
  font-weight: 800;
}

.about-stat p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,0.72);
}

/* =========================
   CONTACT
========================= */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 20px;
}

.contact-card,
.contact-form-box {
  background: linear-gradient(180deg, rgba(12, 19, 46, 0.85), rgba(8, 14, 32, 0.93));
  border: 1px solid rgba(122, 138, 180, 0.24);
  border-radius: 28px;
  padding: 30px 28px;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.02),
    0 20px 60px rgba(0, 0, 0, 0.24);
}

.contact-card h3,
.contact-form-box h3 {
  margin: 0 0 16px;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.contact-card p {
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255,255,255,0.84);
}

.contact-list {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.contact-item {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}

.contact-item span {
  display: block;
}

.contact-label {
  margin-bottom: 6px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.45px;
  color: #2f9bff;
}

.contact-value {
  font-size: 16px;
  color: rgba(255,255,255,0.92);
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: #ffffff;
  border-radius: 16px;
  padding: 16px 18px;
  font-size: 15px;
  outline: none;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255,255,255,0.45);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(94, 146, 255, 0.5);
  box-shadow: 0 0 0 4px rgba(59,130,246,0.12);
  background: rgba(255,255,255,0.06);
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-note {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.62);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1280px) {
  .hero-title {
    font-size: 62px;
  }

  .info-card-top {
    min-height: 360px;
  }

  .topbar,
  .hero {
    padding-left: 28px;
    padding-right: 28px;
  }

  .inner-page {
    padding-left: 28px;
    padding-right: 28px;
  }
}

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero-left {
    max-width: 100%;
  }

  .hero-title {
    font-size: 56px;
  }

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

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

  .page-header h2 {
    font-size: 44px;
  }
}

@media (max-width: 760px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    gap: 22px;
    flex-wrap: wrap;
  }

  .hero-title {
    font-size: 42px;
    letter-spacing: -1px;
  }

  .hero-text,
  .hero-highlight {
    font-size: 17px;
  }

  .info-grid,
  .offer-grid {
    grid-template-columns: 1fr;
  }

  .info-card-wide {
    grid-column: auto;
  }

  .info-card-top {
    min-height: auto;
  }

  .wide-head {
    flex-direction: column;
  }

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

  .feature-item {
    border-right: none;
    padding: 0;
  }

  .btn {
    min-width: 100%;
  }

  .inner-page {
    padding: 24px 28px 60px;
  }

  .page-header h2 {
    font-size: 36px;
    letter-spacing: -0.6px;
  }

  .page-header p {
    font-size: 16px;
  }

  .offer-card h3,
  .contact-card h3,
  .contact-form-box h3 {
    font-size: 26px;
  }

  .about-card,
  .about-side-card,
  .contact-card,
  .contact-form-box,
  .offer-card {
    padding: 24px 22px;
  }

  .brand-logo {
    height: 36px;
  }

  .brand-text h1 {
    font-size: 32px;
  }

  .brand-text p,
  .brand-tagline {
    font-size: 13px;
    margin-top: 6px;
    white-space: normal;
  }
}

.offer-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.offer-card-link .offer-card {
  height: 100%;
}
.contact-value a {
  color: inherit;
  text-decoration: none;
  font-weight: 600;
}

.contact-value a:hover {
  color: #22dfb3;
  text-decoration: underline;
}
