/* ================================
   TG SMART SOLUTIONS
   Premium Responsive Styles
================================ */

:root {
  --navy: #08162f;
  --navy-light: #10274d;
  --blue: #1769f5;
  --blue-dark: #0b50cf;
  --blue-light: #edf4ff;

  --text: #0e1b34;
  --text-light: #5d6b83;

  --white: #ffffff;
  --background: #f7f9fc;
  --border: #e3e8f0;

  --green: #0ba47a;
  --purple: #7158dc;

  --shadow-sm: 0 8px 24px rgba(18, 35, 65, 0.06);
  --shadow-md: 0 18px 50px rgba(18, 35, 65, 0.09);
  --shadow-lg: 0 30px 80px rgba(7, 21, 47, 0.13);

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 26px;

  --max-width: 1180px;
}


/* ================================
   RESET
================================ */

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

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  background: var(--background);
  color: var(--text);

  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Helvetica,
    Arial,
    sans-serif;

  font-size: 16px;
  line-height: 1.65;

  -webkit-font-smoothing: antialiased;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.container {
  width: min(var(--max-width), calc(100% - 48px));
  margin: 0 auto;
}


/* ================================
   HEADER / NAVIGATION
================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;

  background: rgba(7, 21, 47, 0.97);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);

  box-shadow: 0 8px 30px rgba(7, 21, 47, 0.16);

  backdrop-filter: blur(16px);
}

.navbar {
  min-height: 84px;

  display: flex;
  align-items: center;

  gap: 28px;
}


/* BRAND */

.brand {
  margin-right: auto;

  display: flex;
  align-items: center;

  gap: 13px;
}

.brand-logo {
  width: 50px;
  height: 50px;

  flex-shrink: 0;

  display: grid;
  place-items: center;

  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 13px;

  background:
    linear-gradient(
      145deg,
      #2477ff,
      #0744b9
    );

  color: var(--white);

  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.04em;

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    0 7px 18px rgba(0, 0, 0, 0.15);
}

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

.brand-name {
  color: var(--white);

  font-size: 1.1rem;
  font-weight: 750;

  line-height: 1.15;
  letter-spacing: -0.02em;
}

.brand-blue {
  color: #4c8dff;
}

.brand-tagline {
  margin-top: 4px;

  color: #aab8d1;

  font-size: 0.72rem;
  font-weight: 500;

  letter-spacing: 0.015em;
}


/* NAV LINKS */

.nav-menu {
  display: flex;
  align-items: center;

  gap: 28px;
}

.nav-link {
  position: relative;

  padding: 30px 0 27px;

  color: #dce5f5;

  font-size: 0.91rem;
  font-weight: 600;

  transition: color 0.2s ease;
}

.nav-link::after {
  position: absolute;

  right: 0;
  bottom: 19px;
  left: 0;

  height: 2px;

  border-radius: 999px;

  background: #4387ff;

  content: "";

  transform: scaleX(0);

  transition: transform 0.2s ease;
}

.nav-link:hover {
  color: var(--white);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-link.active {
  color: #6ca1ff;
}


/* MOBILE MENU BUTTON */

.menu-button {
  display: none;

  width: 44px;
  height: 44px;

  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 9px;

  background: rgba(255, 255, 255, 0.06);

  color: var(--white);

  font-size: 1.3rem;
}


/* ================================
   BUTTONS
================================ */

.button {
  min-height: 52px;

  padding: 13px 24px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 10px;

  border-radius: 10px;

  font-size: 0.95rem;
  font-weight: 700;

  line-height: 1;

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

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

.nav-button,
.primary-button,
.form-button {
  border: 1px solid var(--blue);

  background:
    linear-gradient(
      135deg,
      #2475ff,
      #0951d8
    );

  color: var(--white);

  box-shadow:
    0 10px 25px rgba(23, 105, 245, 0.24);
}

.nav-button:hover,
.primary-button:hover,
.form-button:hover {
  box-shadow:
    0 15px 32px rgba(23, 105, 245, 0.31);
}

.nav-button {
  min-height: 46px;

  padding: 12px 21px;

  font-size: 0.89rem;
}

.secondary-button {
  border: 1px solid #c9d6ea;

  background: rgba(255, 255, 255, 0.7);

  color: var(--text);

  box-shadow: var(--shadow-sm);
}

.secondary-button:hover {
  border-color: #a9bddd;
  background: var(--white);
}


/* ================================
   HERO
================================ */

.hero {
  position: relative;

  min-height: 670px;

  padding: 105px 0 90px;

  overflow: hidden;

  display: flex;
  align-items: center;

  background:
    radial-gradient(
      circle at 82% 22%,
      rgba(43, 117, 255, 0.16),
      transparent 27%
    ),
    radial-gradient(
      circle at 10% 90%,
      rgba(82, 143, 255, 0.1),
      transparent 30%
    ),
    linear-gradient(
      180deg,
      #fafcff 0%,
      #f0f5fd 100%
    );
}

.hero-content {
  position: relative;
  z-index: 2;

  text-align: center;
}

.hero-badge {
  width: fit-content;

  margin: 0 auto 26px;
  padding: 8px 15px;

  display: flex;
  align-items: center;

  gap: 7px;

  border: 1px solid #d8e5fa;
  border-radius: 999px;

  background: rgba(237, 244, 255, 0.88);

  color: var(--blue);

  font-size: 0.79rem;
  font-weight: 700;

  letter-spacing: 0.015em;
}

.hero h1 {
  max-width: 900px;

  margin: 0 auto;

  color: var(--text);

  font-size: clamp(3rem, 6vw, 4.9rem);
  font-weight: 780;

  line-height: 1.03;

  letter-spacing: -0.055em;
}

.hero h1 span {
  background:
    linear-gradient(
      135deg,
      #1769f5,
      #438aff
    );

  -webkit-background-clip: text;
  background-clip: text;

  color: transparent;
}

.hero-description {
  max-width: 690px;

  margin: 28px auto 0;

  color: var(--text-light);

  font-size: clamp(1.05rem, 1.8vw, 1.18rem);
  font-weight: 400;

  line-height: 1.7;
}

.hero-buttons {
  margin-top: 34px;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 14px;
}

.hero-benefits {
  margin-top: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 36px;
}

.benefit {
  display: flex;
  align-items: center;

  gap: 8px;

  color: #53647e;

  font-size: 0.9rem;
  font-weight: 550;
}

.benefit span {
  width: 20px;
  height: 20px;

  display: inline-grid;
  place-items: center;

  border-radius: 50%;

  background: #e1ebff;

  color: var(--blue);

  font-size: 0.72rem;
  font-weight: 900;
}

.hero-decoration {
  position: absolute;

  border-radius: 50%;

  pointer-events: none;
}

.decoration-one {
  top: 65px;
  right: -140px;

  width: 410px;
  height: 410px;

  background: rgba(23, 105, 245, 0.06);

  filter: blur(6px);
}

.decoration-two {
  bottom: -180px;
  left: -150px;

  width: 440px;
  height: 440px;

  background: rgba(23, 105, 245, 0.05);

  filter: blur(6px);
}


/* ================================
   GENERAL SECTIONS
================================ */

.section {
  padding: 105px 0;
}

.section-heading {
  max-width: 710px;

  margin: 0 auto 52px;

  text-align: center;
}

.section-label {
  margin-bottom: 13px;

  color: var(--blue);

  font-size: 0.75rem;
  font-weight: 800;

  letter-spacing: 0.13em;

  text-transform: uppercase;
}

.section-heading h2,
.about-content h2,
.contact-copy h2 {
  color: var(--text);

  font-size: clamp(2.15rem, 4vw, 3.25rem);
  font-weight: 750;

  line-height: 1.1;

  letter-spacing: -0.045em;
}

.section-heading > p:last-child {
  max-width: 640px;

  margin: 18px auto 0;

  color: var(--text-light);

  font-size: 1.04rem;

  line-height: 1.7;
}


/* ================================
   SERVICES
================================ */

.services-section {
  background: var(--white);
}

.service-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 22px;
}

.service-card {
  padding: 30px;

  border: 1px solid var(--border);
  border-radius: var(--radius-md);

  background: var(--white);

  box-shadow: var(--shadow-sm);

  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-5px);

  border-color: #c5d5ef;

  box-shadow: var(--shadow-md);
}

.service-icon {
  width: 54px;
  height: 54px;

  margin-bottom: 24px;

  display: grid;
  place-items: center;

  border-radius: 13px;

  font-size: 1.35rem;
  font-weight: 700;
}

.blue-icon {
  background: #eaf2ff;
  color: var(--blue);
}

.green-icon {
  background: #e5f8f2;
  color: var(--green);
}

.purple-icon {
  background: #f0edff;
  color: var(--purple);
}

.service-card h3 {
  margin-bottom: 11px;

  color: var(--text);

  font-size: 1.25rem;
  font-weight: 700;

  letter-spacing: -0.02em;
}

.service-card p {
  margin-bottom: 20px;

  color: var(--text-light);

  font-size: 0.94rem;

  line-height: 1.7;
}

.service-card ul {
  list-style: none;
}

.service-card li {
  position: relative;

  margin-top: 10px;
  padding-left: 21px;

  color: #485972;

  font-size: 0.89rem;
}

.service-card li::before {
  position: absolute;

  left: 0;

  color: var(--blue);

  content: "✓";

  font-weight: 800;
}


/* ================================
   ABOUT
================================ */

.about-section {
  background:
    radial-gradient(
      circle at 85% 20%,
      rgba(23, 105, 245, 0.06),
      transparent 26%
    ),
    var(--background);
}

.about-grid {
  display: grid;

  grid-template-columns: 1.1fr 0.9fr;

  gap: 80px;

  align-items: center;
}

.about-content h2 {
  max-width: 650px;
}

.about-content > p:not(.section-label) {
  max-width: 640px;

  margin-top: 21px;

  color: var(--text-light);

  font-size: 1.02rem;

  line-height: 1.75;
}

.text-link {
  margin-top: 28px;

  display: inline-flex;

  color: var(--blue);

  font-size: 0.95rem;
  font-weight: 700;
}

.text-link:hover {
  text-decoration: underline;
}

.about-panel {
  padding: 14px;

  display: grid;

  gap: 13px;

  border: 1px solid #dce4f0;
  border-radius: var(--radius-lg);

  background: rgba(255, 255, 255, 0.72);

  box-shadow: var(--shadow-md);
}

.stat-card {
  padding: 25px;

  border: 1px solid #e4e9f1;
  border-radius: 15px;

  background: var(--white);
}

.stat-card strong {
  display: block;

  margin-bottom: 5px;

  color: var(--text);

  font-size: 1.05rem;
}

.stat-card span {
  color: var(--text-light);

  font-size: 0.9rem;

  line-height: 1.6;
}


/* ================================
   PROCESS
================================ */

.process-section {
  background: var(--white);
}

.process-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 22px;
}

.process-card {
  padding: 30px;

  border: 1px solid var(--border);
  border-radius: var(--radius-md);

  background: var(--white);

  box-shadow: var(--shadow-sm);
}

.process-number {
  width: 44px;
  height: 44px;

  margin-bottom: 22px;

  display: grid;
  place-items: center;

  border-radius: 11px;

  background: var(--blue-light);

  color: var(--blue);

  font-size: 0.77rem;
  font-weight: 800;
}

.process-card h3 {
  margin-bottom: 9px;

  font-size: 1.18rem;
  font-weight: 700;

  letter-spacing: -0.02em;
}

.process-card p {
  color: var(--text-light);

  font-size: 0.94rem;

  line-height: 1.7;
}


/* ================================
   CONTACT
================================ */

.contact-section {
  background:
    radial-gradient(
      circle at 8% 10%,
      rgba(51, 122, 255, 0.22),
      transparent 27%
    ),
    linear-gradient(
      135deg,
      #06142c,
      #102b56
    );

  color: var(--white);
}

.contact-grid {
  display: grid;

  grid-template-columns: 0.85fr 1.15fr;

  gap: 72px;

  align-items: start;
}

.light-label {
  color: #7ea9ff;
}

.contact-copy h2 {
  color: var(--white);
}

.contact-copy > p:last-child {
  max-width: 500px;

  margin-top: 20px;

  color: #c1cce0;

  font-size: 1rem;

  line-height: 1.75;
}


/* FORM */

.contact-form {
  padding: 34px;

  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 20px;

  background: rgba(255, 255, 255, 0.08);

  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);

  backdrop-filter: blur(12px);
}

.form-row {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 16px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  margin-bottom: 7px;

  display: block;

  color: #ecf2ff;

  font-size: 0.84rem;
  font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;

  padding: 13px 14px;

  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 9px;

  outline: none;

  background: rgba(255, 255, 255, 0.96);

  color: var(--text);

  font-size: 0.94rem;

  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.contact-form input,
.contact-form select {
  min-height: 49px;
}

.contact-form textarea {
  min-height: 130px;

  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #7aa6ff;

  box-shadow:
    0 0 0 3px rgba(82, 139, 255, 0.18);
}

.form-button {
  width: 100%;

  border: 0;
}

.form-message {
  min-height: 22px;

  margin-top: 14px;

  color: #b9d0ff;

  font-size: 0.88rem;
  font-weight: 600;

  text-align: center;
}


/* ================================
   FOOTER
================================ */

.footer {
  padding: 34px 0;

  background: #040d1d;

  color: #a8b6cc;
}

.footer-content {
  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 30px;
}

.footer strong {
  color: var(--white);

  font-size: 0.95rem;
}

.footer p {
  margin-top: 3px;

  font-size: 0.8rem;
}


/* ================================
   TABLET
================================ */

@media (max-width: 980px) {

  .nav-button {
    display: none;
  }

  .nav-menu {
    gap: 19px;
  }

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

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-panel {
    max-width: 650px;
  }

  .process-grid {
    gap: 16px;
  }
}


/* ================================
   MOBILE
================================ */

@media (max-width: 760px) {

  .container {
    width: min(100% - 32px, var(--max-width));
  }


  /* HEADER */

  .navbar {
    min-height: 72px;
  }

  .brand-logo {
    width: 44px;
    height: 44px;

    font-size: 0.95rem;
  }

  .brand-name {
    font-size: 1rem;
  }

  .brand-tagline {
    display: none;
  }

  .menu-button {
    display: grid;
    place-items: center;
  }

  .nav-menu {
    position: absolute;

    top: 72px;
    right: 0;
    left: 0;

    padding: 10px 24px 22px;

    display: none;
    flex-direction: column;
    align-items: stretch;

    gap: 0;

    background: #07152f;

    border-top: 1px solid rgba(255, 255, 255, 0.08);

    box-shadow: 0 20px 30px rgba(7, 21, 47, 0.18);
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-link {
    padding: 14px 0;

    font-size: 0.95rem;
  }

  .nav-link::after {
    bottom: 8px;
  }


  /* HERO */

  .hero {
    min-height: auto;

    padding: 78px 0 66px;
  }

  .hero-badge {
    margin-bottom: 21px;

    font-size: 0.74rem;
  }

  .hero h1 {
    max-width: 620px;

    font-size: clamp(2.55rem, 11vw, 4rem);

    line-height: 1.04;
    letter-spacing: -0.05em;
  }

  .hero-description {
    margin-top: 22px;

    font-size: 1rem;
  }

  .hero-buttons {
    margin-top: 28px;

    flex-direction: column;

    gap: 11px;
  }

  .hero-buttons .button {
    width: min(100%, 340px);
  }

  .hero-benefits {
    margin-top: 34px;

    flex-direction: column;

    gap: 10px;
  }


  /* SECTIONS */

  .section {
    padding: 78px 0;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .section-heading h2,
  .about-content h2,
  .contact-copy h2 {
    font-size: clamp(2rem, 9vw, 2.65rem);
  }


  /* SERVICES */

  .service-card {
    padding: 25px;
  }


  /* ABOUT */

  .about-grid {
    gap: 36px;
  }

  .stat-card {
    padding: 22px;
  }


  /* PROCESS */

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


  /* CONTACT */

  .contact-grid {
    gap: 34px;
  }

  .contact-form {
    padding: 24px;
  }

  .form-row {
    grid-template-columns: 1fr;

    gap: 0;
  }


  /* FOOTER */

  .footer-content {
    flex-direction: column;

    align-items: flex-start;

    gap: 14px;
  }
}


/* ================================
   SMALL PHONES
================================ */

@media (max-width: 420px) {

  .container {
    width: calc(100% - 28px);
  }

  .hero {
    padding: 64px 0 56px;
  }

  .hero h1 {
    font-size: 2.4rem;
  }

  .section {
    padding: 66px 0;
  }

  .service-card,
  .process-card {
    padding: 22px;
  }

  .contact-form {
    padding: 20px;
  }
}
/* ================================
   TG AI CHAT
================================ */

.tg-chat {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 2000;
}

.tg-chat-toggle {
  min-height: 52px;
  padding: 13px 20px;

  border: 0;
  border-radius: 999px;

  background: linear-gradient(
    135deg,
    #2475ff,
    #0951d8
  );

  color: #ffffff;

  font-size: 0.93rem;
  font-weight: 700;

  box-shadow:
    0 12px 30px rgba(23, 105, 245, 0.32);

  cursor: pointer;

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.tg-chat-toggle:hover {
  transform: translateY(-2px);

  box-shadow:
    0 16px 35px rgba(23, 105, 245, 0.4);
}

.tg-chat-window {
  position: absolute;

  right: 0;
  bottom: 68px;

  width: 370px;
  height: 520px;

  display: none;
  flex-direction: column;

  overflow: hidden;

  border: 1px solid #dce4ef;
  border-radius: 20px;

  background: #ffffff;

  box-shadow:
    0 30px 80px rgba(7, 21, 47, 0.22);
}

.tg-chat-window.open {
  display: flex;
}

.tg-chat-header {
  padding: 17px 18px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  background: #08162f;

  color: #ffffff;
}

.tg-chat-header strong,
.tg-chat-header span {
  display: block;
}

.tg-chat-header strong {
  font-size: 0.95rem;
}

.tg-chat-header span {
  margin-top: 2px;

  color: #8fb2f7;

  font-size: 0.72rem;
}

.tg-chat-close {
  width: 34px;
  height: 34px;

  border: 0;
  border-radius: 8px;

  background: rgba(255, 255, 255, 0.08);

  color: #ffffff;

  cursor: pointer;
}

.tg-chat-messages {
  flex: 1;

  padding: 18px;

  overflow-y: auto;

  background: #f7f9fc;
}

.tg-message {
  max-width: 82%;

  margin-bottom: 12px;
  padding: 11px 13px;

  border-radius: 13px;

  font-size: 0.9rem;
  line-height: 1.5;
}

.tg-bot-message {
  margin-right: auto;

  border: 1px solid #e0e7f1;

  background: #ffffff;

  color: #24324a;
}

.tg-user-message {
  margin-left: auto;

  background: #1769f5;

  color: #ffffff;
}

.tg-chat-form {
  padding: 12px;

  display: flex;

  gap: 8px;

  border-top: 1px solid #e4e9f1;

  background: #ffffff;
}

.tg-chat-form input {
  min-width: 0;

  flex: 1;

  padding: 11px 12px;

  border: 1px solid #dbe3ee;
  border-radius: 10px;

  outline: none;
}

.tg-chat-form input:focus {
  border-color: #7aa6ff;

  box-shadow:
    0 0 0 3px rgba(82, 139, 255, 0.14);
}

.tg-chat-form button {
  padding: 11px 15px;

  border: 0;
  border-radius: 10px;

  background: #1769f5;

  color: #ffffff;

  font-size: 0.86rem;
  font-weight: 700;

  cursor: pointer;
}

@media (max-width: 480px) {

  .tg-chat {
    right: 14px;
    bottom: 14px;
  }

  .tg-chat-window {
    position: fixed;

    right: 14px;
    bottom: 78px;
    left: 14px;

    width: auto;
    height: min(70vh, 520px);
  }
}
/* =================================
   TG COMING SOON
================================= */

.coming-soon-gate {
    position: fixed;
    inset: 0;
    z-index: 99999;

    min-height: 100vh;
    overflow-y: auto;

    padding: 32px 6% 50px;

    background:
        radial-gradient(
            circle at 50% 45%,
            rgba(23, 105, 245, 0.18),
            transparent 35%
        ),
        linear-gradient(
            145deg,
            #020815,
            #07142b 58%,
            #020815
        );

    color: #ffffff;
}

.coming-soon-gate.hidden {
    display: none;
}


.coming-soon-top {
    width: min(1200px, 100%);
    margin: 0 auto;

    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 24px;
}


.coming-soon-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.coming-soon-logo {
    width: 52px;
    height: 52px;

    display: grid;
    place-items: center;

    border: 1px solid #4383ff;
    border-radius: 14px;

    background:
        linear-gradient(
            135deg,
            #1769f5,
            #0a3da5
        );

    font-weight: 800;
    font-size: 1.05rem;
}

.coming-soon-brand strong,
.coming-soon-brand span {
    display: block;
}

.coming-soon-brand strong {
    font-size: 1rem;
    letter-spacing: 0.07em;
}

.coming-soon-brand span {
    margin-top: 3px;

    color: #8fa6ca;
    font-size: 0.72rem;
}


.owner-access-button {
    padding: 12px 18px;

    border: 1px solid #1769f5;
    border-radius: 10px;

    background: rgba(10, 25, 52, 0.7);

    color: #ffffff;

    font-size: 0.86rem;
    font-weight: 700;

    cursor: pointer;
}


.coming-soon-content {
    width: min(920px, 100%);

    margin: 120px auto 0;

    text-align: center;
}

.coming-soon-eyebrow {
    color: #4d8cff;

    font-size: 0.8rem;
    font-weight: 800;

    letter-spacing: 0.17em;
}

.coming-soon-content h1 {
    max-width: 800px;

    margin: 20px auto;

    font-size: clamp(3rem, 7vw, 6.5rem);
    line-height: 0.98;
    letter-spacing: -0.05em;
}

.coming-soon-content h1 span {
    color: #2475ff;
}

.coming-soon-description {
    max-width: 680px;

    margin: 28px auto;

    color: #aab8d0;

    font-size: 1.08rem;
    line-height: 1.8;
}

.launching-soon {
    margin: 35px 0 65px;

    color: #4d8cff;

    font-size: 0.88rem;
    font-weight: 800;

    letter-spacing: 0.18em;
}


.coming-soon-services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 22px;
}

.coming-service {
    padding: 28px 22px;

    border: 1px solid rgba(85, 133, 220, 0.2);
    border-radius: 18px;

    background: rgba(10, 24, 49, 0.55);

    backdrop-filter: blur(10px);
}

.coming-service-icon {
    width: 50px;
    height: 50px;

    margin: 0 auto 18px;

    display: grid;
    place-items: center;

    border: 1px solid #2475ff;
    border-radius: 50%;

    color: #5790ff;

    font-size: 1.15rem;
}

.coming-service h3 {
    margin-bottom: 10px;

    color: #ffffff;

    font-size: 1rem;
}

.coming-service p {
    color: #8fa0bb;

    font-size: 0.87rem;
    line-height: 1.6;
}


/* OWNER LOGIN */

.owner-modal {
    position: fixed;
    inset: 0;

    display: none;
    place-items: center;

    padding: 20px;

    background: rgba(0, 5, 15, 0.72);

    backdrop-filter: blur(10px);
}

.owner-modal.open {
    display: grid;
}

.owner-modal-card {
    position: relative;

    width: min(410px, 100%);

    padding: 38px;

    border: 1px solid rgba(91, 137, 217, 0.25);
    border-radius: 20px;

    background: #0b172b;

    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.45);

    text-align: center;
}

.owner-modal-close {
    position: absolute;

    top: 15px;
    right: 15px;

    border: 0;
    background: transparent;

    color: #8292aa;

    font-size: 1.1rem;

    cursor: pointer;
}

.owner-lock {
    margin-bottom: 16px;

    font-size: 2rem;
}

.owner-modal-card h2 {
    color: #ffffff;
}

.owner-modal-card > p {
    margin: 10px 0 24px;

    color: #9caac0;
}

#owner-login-form {
    display: grid;
    gap: 12px;
}

#owner-password {
    padding: 14px;

    border: 1px solid #263b5e;
    border-radius: 10px;

    background: #081326;

    color: #ffffff;

    outline: none;
}

#owner-login-form button {
    padding: 14px;

    border: 0;
    border-radius: 10px;

    background:
        linear-gradient(
            135deg,
            #2475ff,
            #0b55df
        );

    color: #ffffff;

    font-weight: 700;

    cursor: pointer;
}

.owner-login-message {
    min-height: 18px;

    color: #ff7777;

    font-size: 0.8rem;
}


@media (max-width: 760px) {

    .coming-soon-gate {
        padding: 22px 20px 40px;
    }

    .coming-soon-content {
        margin-top: 85px;
    }

    .coming-soon-services {
        grid-template-columns: 1fr;
    }

    .coming-soon-brand span {
        display: none;
    }

    .owner-access-button {
        padding: 10px 12px;

        font-size: 0.75rem;
    }
}
/* =================================
   PRICING
================================= */

.pricing-section {
  background:
    linear-gradient(
      180deg,
      #f8fbff 0%,
      #ffffff 100%
    );
}

.pricing-section .section-heading {
  max-width: 820px;
  margin: 0 auto 48px;
  text-align: center;
}

.pricing-section .section-heading h2 {
  max-width: 760px;
  margin: 10px auto 14px;

  font-size: clamp(2.3rem, 4vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: -0.05em;

  color: #0b1730;
}

.pricing-section .section-heading h2::after {
  content: "";
}

.pricing-section .section-heading p:last-child {
  max-width: 650px;
  margin: 0 auto;

  color: #66758b;
  font-size: 1rem;
  line-height: 1.7;
}


/* SMALL LABEL ABOVE CARDS */

.pricing-section .section-label {
  color: #1769f5;

  font-size: 0.78rem;
  font-weight: 800;

  letter-spacing: 0.12em;
  text-transform: uppercase;
}


/* GRID */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));

  gap: 18px;

  align-items: stretch;
}


/* CARD */

.pricing-card {
  position: relative;

  display: flex;
  flex-direction: column;

  min-height: 100%;

  padding: 28px 24px 24px;

  border: 1px solid #dfe6f0;
  border-radius: 18px;

  background: #ffffff;

  box-shadow:
    0 10px 35px rgba(20, 42, 76, 0.06);

  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.pricing-card:hover {
  transform: translateY(-6px);

  border-color: #b9c9df;

  box-shadow:
    0 20px 50px rgba(20, 42, 76, 0.11);
}


/* ICON */

.pricing-card::before {
  content: "▣";

  width: 52px;
  height: 52px;

  margin: 0 auto 18px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background: #eef5ff;

  color: #1769f5;

  font-size: 1.25rem;
  font-weight: 800;
}

.pricing-card:nth-child(2)::before {
  content: "◎";
}

.pricing-card:nth-child(3)::before {
  content: "✦";
}

.pricing-card:nth-child(4)::before {
  content: "♕";
}


/* CARD TOP */

.pricing-card-top {
  min-height: 145px;

  text-align: center;
}

.pricing-card-top h3 {
  margin-bottom: 12px;

  color: #0b1730;

  font-size: 1.18rem;
  font-weight: 800;

  letter-spacing: -0.03em;
}

.pricing-card-top p {
  max-width: 230px;

  margin: 0 auto;

  color: #627188;

  font-size: 0.88rem;
  line-height: 1.65;
}


/* PRICE */

.pricing-price {
  display: flex;
  justify-content: center;
  align-items: flex-start;

  margin-top: 12px;

  color: #0b1730;
}

.price-dollar {
  margin-top: 8px;
  margin-right: 3px;

  font-size: 1rem;
  font-weight: 700;
}

.pricing-price strong {
  font-size: 3.1rem;
  font-weight: 850;

  line-height: 1;

  letter-spacing: -0.055em;
}

.price-period {
  margin-top: 25px;
  margin-left: 5px;

  color: #66758b;

  font-size: 0.82rem;
  font-weight: 600;
}

.setup-price {
  margin-top: 10px;

  text-align: center;

  color: #40536d;

  font-size: 0.84rem;
  font-weight: 600;
}


/* DIVIDER */

.pricing-features {
  margin: 22px 0 28px;
  padding-top: 20px;

  flex: 1;

  border-top: 1px solid #e6ebf2;

  list-style: none;
}

.pricing-features li {
  position: relative;

  margin-top: 12px;
  padding-left: 22px;

  color: #40516a;

  font-size: 0.84rem;
  line-height: 1.5;
}

.pricing-features li::first-letter {
  color: #1769f5;
}


/* BUTTON */

.pricing-button {
  width: 100%;

  padding: 13px 16px;

  border: 1px solid #1769f5;
  border-radius: 9px;

  background: #ffffff;

  color: #1769f5;

  font-size: 0.88rem;
  font-weight: 800;

  text-align: center;

  box-shadow: none;
}

.pricing-button:hover {
  background: #eef5ff;

  color: #1258cc;
}


/* FEATURED PLAN */

.pricing-featured {
  border: 2px solid #1769f5;

  box-shadow:
    0 18px 45px rgba(23, 105, 245, 0.13);
}

.pricing-featured::before {
  background: #e9f2ff;
}

.pricing-featured .pricing-price,
.pricing-featured .pricing-price strong {
  color: #1769f5;
}

.popular-badge {
  position: absolute;

  top: -13px;
  left: 50%;

  transform: translateX(-50%);

  padding: 7px 16px;

  border-radius: 999px;

  background: #1769f5;

  color: #ffffff;

  font-size: 0.67rem;
  font-weight: 850;

  letter-spacing: 0.08em;

  white-space: nowrap;
}

.featured-button {
  border-color: #1769f5;

  background: #1769f5;

  color: #ffffff;

  box-shadow:
    0 10px 24px rgba(23, 105, 245, 0.18);
}

.featured-button:hover {
  background: #1059d4;

  color: #ffffff;
}


/* NOTES STRIP */

.pricing-notes {
  margin-top: 38px;
  padding: 28px;

  display: grid;
  grid-template-columns: repeat(3, 1fr);

  gap: 0;

  border: 1px solid #dfe7f2;
  border-radius: 18px;

  background:
    linear-gradient(
      90deg,
      #f7faff,
      #eef5ff,
      #f7faff
    );
}

.pricing-notes p {
  position: relative;

  margin: 0;
  padding: 0 28px;

  color: #56667d;

  font-size: 0.84rem;
  line-height: 1.65;

  text-align: left;
}

.pricing-notes p + p {
  margin-top: 0;

  border-left: 1px solid #d9e3f0;
}

.pricing-notes p::before {
  display: block;

  margin-bottom: 8px;

  color: #1769f5;

  font-size: 1.2rem;
  font-weight: 800;
}

.pricing-notes p:nth-child(1)::before {
  content: "↻  Updates Included";
}

.pricing-notes p:nth-child(2)::before {
  content: "✦  AI Usage";
}

.pricing-notes p:nth-child(3)::before {
  content: "✓  No Long-Term Contracts";
}

.pricing-notes strong {
  color: #16263e;
}


/* TABLET */

@media (max-width: 1100px) {

  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}


/* MOBILE */

@media (max-width: 700px) {

  .pricing-section .section-heading {
    margin-bottom: 34px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;

    gap: 20px;
  }

  .pricing-card {
    padding: 28px 24px;
  }

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

  .pricing-price {
    margin-top: 24px;
  }

  .pricing-notes {
    grid-template-columns: 1fr;

    padding: 10px 24px;
  }

  .pricing-notes p {
    padding: 20px 0;
  }

  .pricing-notes p + p {
    border-top: 1px solid #d9e3f0;
    border-left: 0;
  }

}