:root {
  --bg: #07080b;
  --surface: #0e1117;
  --surface-2: #131721;
  --line: rgba(255, 255, 255, 0.09);

  --text: #f7f8fb;
  --muted: #9fa6b5;

  --accent: #7c5cff;
  --accent-2: #22d3ee;

  --max: 1180px;
}


* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}


html {
  scroll-behavior: smooth;
}


body {
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

  background:
    radial-gradient(
      circle at 20% 10%,
      rgba(124, 92, 255, 0.08),
      transparent 28rem
    ),
    radial-gradient(
      circle at 85% 22%,
      rgba(34, 211, 238, 0.05),
      transparent 24rem
    ),
    var(--bg);

  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}


a {
  color: inherit;
  text-decoration: none;
}


button,
a {
  -webkit-tap-highlight-color: transparent;
}


/* =========================
   NAVIGATION
   ========================= */


.site-header {
  width: min(calc(100% - 36px), var(--max));
  height: 78px;

  margin: 18px auto 0;
  padding: 0 18px;

  position: sticky;
  top: 18px;
  z-index: 100;

  display: flex;
  align-items: center;
  justify-content: space-between;

  border: 1px solid var(--line);
  border-radius: 18px;

  background: rgba(7, 8, 11, 0.84);
  backdrop-filter: blur(22px);

  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.25);
}


.logo {
  display: flex;
  align-items: center;
}


.logo img {
  display: block;
  width: 215px;
  height: auto;
}


.nav {
  display: flex;
  align-items: center;
  gap: 8px;
}


.nav a {
  padding: 10px 13px;

  color: var(--muted);

  font-size: 0.9rem;

  transition: 0.2s ease;
}


.nav a:hover {
  color: white;
}


.nav .nav-cta {
  margin-left: 8px;

  padding: 11px 18px;

  border-radius: 12px;

  color: white;

  background:
    linear-gradient(
      135deg,
      #1596ff,
      var(--accent)
    );

  box-shadow:
    0 10px 30px rgba(77, 82, 255, 0.24);

  font-weight: 800;
}


.menu-toggle {
  display: none;

  width: 44px;
  height: 44px;

  border: 1px solid var(--line);
  border-radius: 12px;

  background: var(--surface-2);
}


.menu-toggle span {
  display: block;

  width: 20px;
  height: 2px;

  margin: 5px auto;

  background: white;
}


/* =========================
   GENERAL
   ========================= */


.section {
  width: min(calc(100% - 36px), var(--max));

  margin: 0 auto;

  padding: 110px 0;
}


.eyebrow-text {
  display: inline-block;

  margin-bottom: 10px;

  color: #9a89ff;

  font-size: 0.76rem;
  font-weight: 900;

  text-transform: uppercase;
  letter-spacing: 0.12em;
}


.section-heading {
  display: flex;

  justify-content: space-between;
  align-items: end;

  gap: 45px;

  margin-bottom: 48px;
}


.section-heading > div {
  max-width: 690px;
}


.section-heading p {
  max-width: 420px;

  color: var(--muted);
}


.section-heading h2,
.about h2,
.contact h2 {
  font-size:
    clamp(
      2.5rem,
      4.8vw,
      4.7rem
    );

  line-height: 1;

  letter-spacing: -0.055em;
}


/* =========================
   HERO
   ========================= */


.hero {
  min-height: 780px;

  padding-top: 95px;

  display: grid;

  grid-template-columns:
    0.92fr
    1.08fr;

  gap: 70px;

  align-items: center;
}


.eyebrow {
  display: inline-flex;

  align-items: center;

  gap: 9px;

  margin-bottom: 25px;

  padding: 8px 12px;

  border: 1px solid var(--line);
  border-radius: 999px;

  background:
    rgba(255, 255, 255, 0.025);

  color: #c5c9d3;

  font-size: 0.82rem;
  font-weight: 700;
}


.status-dot {
  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: #58e28f;

  box-shadow:
    0 0 0 5px
    rgba(88, 226, 143, 0.09);
}


.hero h1 {
  max-width: 720px;

  font-size:
    clamp(
      3.4rem,
      6.3vw,
      6.4rem
    );

  line-height: 0.97;

  letter-spacing: -0.065em;
}


.gradient-text {
  display: block;

  color: transparent;

  background:
    linear-gradient(
      100deg,
      #22d3ee 0%,
      #1f8dff 45%,
      #7c5cff 75%,
      #c52cff 100%
    );

  -webkit-background-clip: text;
  background-clip: text;
}


.hero-text {
  max-width: 620px;

  margin-top: 28px;

  color: var(--muted);

  font-size: 1.12rem;
}


.hero-actions {
  display: flex;
  gap: 12px;

  margin-top: 34px;

  flex-wrap: wrap;
}


.button {
  display: inline-flex;

  justify-content: center;
  align-items: center;

  min-height: 52px;

  padding: 0 21px;

  border-radius: 13px;

  font-weight: 800;

  transition: 0.22s ease;
}


.button:hover {
  transform: translateY(-2px);
}


.button-primary {
  color: white;

  background:
    linear-gradient(
      135deg,
      #159bff,
      #425dff,
      #8d36ff
    );

  box-shadow:
    0 14px 40px
    rgba(104, 83, 255, 0.25);
}


.button-secondary {
  border: 1px solid var(--line);

  background:
    rgba(255, 255, 255, 0.035);
}


.hero-points {
  display: flex;

  gap: 26px;

  margin-top: 28px;

  flex-wrap: wrap;

  color: #7f8797;

  font-size: 0.82rem;
  font-weight: 700;
}


.hero-points span::before {
  content: "✓";

  margin-right: 7px;

  color: #6be59b;
}


/* HERO VISUAL */


.hero-visual {
  position: relative;

  min-width: 0;
}


.glow {
  position: absolute;

  border-radius: 50%;

  filter: blur(85px);

  pointer-events: none;
}


.glow-one {
  width: 280px;
  height: 280px;

  left: 8%;
  top: 8%;

  background:
    rgba(124, 92, 255, 0.28);
}


.glow-two {
  width: 230px;
  height: 230px;

  right: 3%;
  bottom: 0;

  background:
    rgba(34, 211, 238, 0.17);
}


.browser {
  position: relative;

  overflow: hidden;

  border:
    1px solid
    rgba(255, 255, 255, 0.12);

  border-radius: 22px;

  background: white;

  box-shadow:
    0 40px 100px
    rgba(0, 0, 0, 0.45),

    0 0 0 8px
    rgba(255, 255, 255, 0.025);
}


.hero-browser {
  transform:
    perspective(1100px)
    rotateY(-4deg)
    rotateX(2deg);
}


.browser-bar {
  height: 44px;

  padding: 0 14px;

  display: flex;
  align-items: center;

  gap: 14px;

  background: #171a20;
}


.browser-dots {
  display: flex;

  gap: 5px;
}


.browser-dots i {
  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: #59606d;
}


.browser-address {
  flex: 1;

  max-width: 260px;

  height: 23px;

  display: flex;
  align-items: center;

  padding-left: 11px;

  border-radius: 7px;

  background: #242832;

  color: #717987;

  font-size: 0.62rem;
}


.hero-demo {
  min-height: 450px;

  padding: 26px;

  color: #f7f8fb;

  background:
    radial-gradient(
      circle at 72% 50%,
      rgba(26, 145, 255, 0.36),
      transparent 18rem
    ),

    radial-gradient(
      circle at 84% 30%,
      rgba(124, 92, 255, 0.25),
      transparent 16rem
    ),

    linear-gradient(
      145deg,
      #07101e,
      #090b14
    );
}


.demo-nav {
  display: grid;

  grid-template-columns:
    1fr repeat(3, 42px);

  gap: 10px;

  align-items: center;
}


.demo-nav strong {
  color: #f5f8ff;

  font-size: 0.85rem;

  letter-spacing: 0.08em;
}


.demo-nav div {
  height: 5px;

  border-radius: 20px;

  background:
    rgba(255, 255, 255, 0.17);
}


.demo-layout {
  min-height: 340px;

  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap: 24px;

  align-items: center;
}


.demo-copy span {
  color: #22d3ee;

  font-size: 0.55rem;
  font-weight: 900;

  letter-spacing: 0.12em;
}


.demo-copy h3 {
  max-width: 300px;

  margin:
    9px 0 20px;

  font-size:
    clamp(
      1.7rem,
      3vw,
      2.8rem
    );

  line-height: 1;

  letter-spacing: -0.055em;
}


.demo-copy p {
  width: 88%;

  height: 7px;

  margin-top: 8px;

  border-radius: 10px;

  background:
    rgba(255, 255, 255, 0.18);
}


.demo-copy p.short {
  width: 56%;
}


.demo-copy button {
  width: 95px;
  height: 31px;

  margin-top: 22px;

  border: 0;
  border-radius: 7px;

  background:
    linear-gradient(
      135deg,
      #159bff,
      #7c5cff
    );
}


.demo-art {
  position: relative;

  height: 285px;
}


.demo-card {
  position: absolute;

  border-radius: 22px;

  box-shadow:
    0 25px 50px
    rgba(0, 0, 0, 0.3);
}


.card-a {
  width: 72%;
  height: 70%;

  right: 0;
  top: 0;

  background:
    linear-gradient(
      145deg,
      #111a30,
      #344f8c
    );

  transform: rotate(5deg);
}


.card-b {
  width: 64%;
  height: 62%;

  left: 4%;
  bottom: 0;

  background:
    linear-gradient(
      145deg,
      #7766ff,
      #3722cc
    );

  transform: rotate(-8deg);
}


.card-c {
  width: 47%;
  height: 45%;

  right: 2%;
  bottom: 2%;

  background:
    linear-gradient(
      145deg,
      #74f3ff,
      #0a8eff
    );

  transform: rotate(8deg);
}


.floating-card {
  position: absolute;

  display: flex;
  flex-direction: column;

  gap: 2px;

  padding: 14px 16px;

  border:
    1px solid
    rgba(49, 144, 255, 0.28);

  border-radius: 15px;

  background:
    rgba(8, 14, 27, 0.88);

  backdrop-filter: blur(15px);

  box-shadow:
    0 14px 35px
    rgba(0, 0, 0, 0.28);
}


.floating-card strong {
  font-size: 0.88rem;
}


.floating-card span {
  color: var(--muted);

  font-size: 0.68rem;
}


.floating-card-one {
  left: -28px;
  bottom: 48px;
}


.floating-card-two {
  right: -22px;
  top: 80px;
}


/* =========================
   TRUST BAR
   ========================= */


.trust-strip {
  width: 100%;

  padding: 19px 22px;

  display: flex;

  justify-content: center;

  gap: 24px;

  flex-wrap: wrap;

  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);

  color: #727989;

  font-size: 0.7rem;
  font-weight: 800;

  letter-spacing: 0.09em;
}


/* =========================
   PROJECTS
   ========================= */


.project-grid {
  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 22px;
}


.project-card {
  padding: 13px;

  border: 1px solid var(--line);
  border-radius: 24px;

  background:
    rgba(255, 255, 255, 0.025);

  transition: 0.25s ease;
}


.project-card:hover {
  transform: translateY(-6px);

  border-color:
    rgba(86, 120, 255, 0.38);
}


.project-card:nth-child(3) {
  grid-column: span 2;
}


.project-preview {
  min-height: 355px;

  display: grid;
  place-items: center;

  overflow: hidden;

  border-radius: 17px;
}


.dental-preview {
  background:
    linear-gradient(
      145deg,
      #d6edf0,
      #a6d3da
    );
}


.restaurant-preview {
  background:
    linear-gradient(
      145deg,
      #301c15,
      #0e0d0c
    );
}


.property-preview {
  min-height: 430px;

  background:
    linear-gradient(
      145deg,
      #d9d8ce,
      #9aa19b
    );
}


.compact-browser {
  width: 88%;

  border-radius: 13px;

  box-shadow:
    0 25px 50px
    rgba(0, 0, 0, 0.16);
}


.compact-browser .browser-bar {
  height: 32px;
}


.compact-browser .browser-address {
  height: 17px;

  font-size: 0.48rem;
}


.mini-site {
  min-height: 245px;
}


.mini-nav,
.restaurant-nav,
.property-nav {
  display: flex;

  align-items: center;

  justify-content: space-between;
}


.dental-site {
  padding: 15px 19px;

  background: #f9ffff;

  color: #183038;
}


.mini-nav strong {
  font-size: 0.72rem;
}


.mini-links {
  display: flex;

  gap: 8px;
}


.mini-links span {
  width: 28px;
  height: 4px;

  border-radius: 4px;

  background: #cadadd;
}


.mini-nav button {
  padding: 6px 9px;

  border: 0;
  border-radius: 6px;

  background: #1c6570;

  color: white;

  font-size: 0.48rem;
}


.dental-hero {
  min-height: 190px;

  display: grid;

  grid-template-columns:
    1fr 0.85fr;

  gap: 12px;

  align-items: center;
}


.dental-hero small {
  color: #4c8f96;

  font-size: 0.45rem;
  font-weight: 900;
}


.dental-hero h3 {
  max-width: 230px;

  margin: 6px 0 10px;

  font-size: 1.55rem;

  line-height: 1;

  letter-spacing: -0.05em;
}


.dental-hero p {
  width: 90%;

  height: 5px;

  margin-top: 6px;

  border-radius: 6px;

  background: #cbdadd;
}


.dental-hero p.short {
  width: 55%;
}


.dental-hero button {
  width: 62px;
  height: 22px;

  margin-top: 13px;

  border: 0;
  border-radius: 5px;

  background: #1d6570;
}


.dental-shape {
  height: 130px;

  display: grid;
  place-items: center;

  border-radius:
    48% 52% 42% 58% /
    45% 39% 61% 55%;

  background:
    linear-gradient(
      145deg,
      #d2eef0,
      #88c9d1
    );
}


.tooth {
  display: grid;
  place-items: center;

  width: 70px;
  height: 70px;

  border-radius: 20px;

  background: white;

  color: #5fb2bc;

  font-size: 2rem;

  transform: rotate(10deg);

  box-shadow:
    0 14px 35px
    rgba(0, 0, 0, 0.08);
}


.restaurant-site {
  min-height: 280px;

  padding: 18px 22px;

  color: #f5eadb;

  background:
    radial-gradient(
      circle at 75% 55%,
      rgba(237, 112, 44, 0.55),
      transparent 24%
    ),

    linear-gradient(
      115deg,
      #17110e 50%,
      #2d1711 100%
    );
}


.restaurant-nav strong {
  color: #eaa15e;

  font-size: 0.75rem;

  letter-spacing: 0.14em;
}


.restaurant-nav span,
.property-nav span {
  font-size: 0.45rem;

  letter-spacing: 0.08em;
}


.restaurant-content {
  max-width: 240px;

  padding-top: 52px;
}


.restaurant-content small {
  color: #d89255;

  font-size: 0.45rem;
  font-weight: 900;

  letter-spacing: 0.14em;
}


.restaurant-content h3 {
  margin: 8px 0 18px;

  font-family: Georgia, serif;

  font-size: 2rem;

  line-height: 0.96;

  font-weight: 500;
}


.restaurant-content button,
.property-content button {
  padding: 8px 10px;

  border:
    1px solid
    rgba(255, 255, 255, 0.35);

  background: transparent;

  color: inherit;

  font-size: 0.45rem;
}


.property-site {
  min-height: 330px;

  padding: 20px 24px;

  color: #18201d;

  background: #f1f0e8;
}


.property-nav strong {
  font-size: 0.78rem;

  letter-spacing: 0.1em;
}


.property-content {
  min-height: 250px;

  display: grid;

  grid-template-columns:
    0.9fr 1.1fr;

  gap: 20px;

  align-items: center;
}


.property-text small {
  color: #667c6f;

  font-size: 0.46rem;

  font-weight: 900;
}


.property-text h3 {
  max-width: 290px;

  margin: 8px 0 18px;

  font-family: Georgia, serif;

  font-size: 2rem;

  line-height: 1;

  font-weight: 500;
}


.property-content button {
  border-color: #718078;

  color: #23332b;
}


.building {
  height: 210px;

  padding: 18px;

  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 10px;

  background:
    linear-gradient(
      to bottom,
      rgba(255,255,255,.2),
      transparent
    ),

    linear-gradient(
      145deg,
      #73827a,
      #3a4941
    );

  clip-path:
    polygon(
      12% 6%,
      100% 0,
      100% 100%,
      0 100%,
      0 21%
    );
}


.building span {
  background:
    linear-gradient(
      145deg,
      #dfe9df,
      #91a99d
    );

  opacity: 0.65;
}


.project-info {
  display: flex;

  justify-content: space-between;

  gap: 20px;

  padding: 19px 5px 0;
}


.project-info h3 {
  margin-top: 4px;

  font-size: 1.3rem;

  letter-spacing: -0.03em;
}


.project-tag {
  color: #8a91a0;

  font-size: 0.68rem;
  font-weight: 800;

  text-transform: uppercase;

  letter-spacing: 0.08em;
}


.project-number {
  color: #616877;

  font-size: 0.78rem;
}


.project-card > p {
  max-width: 600px;

  padding: 10px 5px 8px;

  color: var(--muted);

  font-size: 0.9rem;
}


.project-link {
  margin: 7px 5px 8px;

  display: inline-flex;

  align-items: center;

  gap: 8px;

  color: #63b8ff;

  font-size: 0.82rem;
  font-weight: 850;

  transition: 0.2s ease;
}


.project-link span {
  transition: transform 0.2s ease;
}


.project-link:hover {
  color: #b893ff;
}


.project-link:hover span {
  transform:
    translate(3px, -3px);
}


.concept-note {
  margin-top: 24px;

  padding: 24px 26px;

  display: flex;

  justify-content: space-between;

  gap: 25px;

  border: 1px solid var(--line);
  border-radius: 18px;

  background:
    linear-gradient(
      90deg,
      rgba(32, 132, 255, 0.08),
      rgba(124, 92, 255, 0.08)
    );
}


.concept-note p {
  max-width: 720px;

  color: var(--muted);
}


/* =========================
   SERVICES
   ========================= */


.services-grid {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 13px;
}


.service-card {
  min-height: 285px;

  padding: 25px;

  border: 1px solid var(--line);
  border-radius: 19px;

  background: var(--surface);

  transition: 0.22s ease;
}


.service-card:hover {
  transform: translateY(-5px);

  border-color:
    rgba(59, 126, 255, 0.25);

  background: var(--surface-2);
}


.service-icon {
  display: grid;
  place-items: center;

  width: 42px;
  height: 42px;

  border-radius: 11px;

  background:
    linear-gradient(
      135deg,
      rgba(34, 211, 238, 0.12),
      rgba(124, 92, 255, 0.16)
    );

  color: #6db9ff;

  font-size: 0.72rem;
  font-weight: 900;
}


.service-card h3 {
  margin-top: 82px;

  font-size: 1.15rem;
}


.service-card p {
  margin-top: 9px;

  color: var(--muted);

  font-size: 0.88rem;
}


/* =========================
   PACKAGES
   ========================= */


.package-grid {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 14px;
}


.package-card {
  position: relative;

  min-height: 470px;

  padding: 30px;

  display: flex;
  flex-direction: column;

  border: 1px solid var(--line);
  border-radius: 21px;

  background: var(--surface);
}


.package-card.featured {
  border-color:
    rgba(70, 108, 255, 0.45);

  background:
    linear-gradient(
      160deg,
      rgba(25, 145, 255, 0.09),
      rgba(124, 92, 255, 0.12),
      rgba(255, 255, 255, 0.03)
    );
}


.package-kicker {
  color: #69b9ff;

  font-size: 0.7rem;
  font-weight: 900;

  letter-spacing: 0.14em;
}


.popular {
  position: absolute;

  right: 20px;
  top: 20px;

  padding: 6px 9px;

  border-radius: 99px;

  background:
    rgba(124, 92, 255, 0.15);

  color: #bdb4ff;

  font-size: 0.57rem;
  font-weight: 900;

  letter-spacing: 0.08em;
}


.package-card h3 {
  margin-top: 42px;

  font-size: 1.55rem;

  letter-spacing: -0.04em;
}


.package-card > p {
  margin-top: 10px;

  color: var(--muted);
}


.package-card ul {
  margin: 30px 0;

  padding: 0;

  list-style: none;

  display: grid;

  gap: 12px;

  color: #c6cad3;

  font-size: 0.9rem;
}


.package-card li::before {
  content: "✓";

  margin-right: 9px;

  color: #65df9a;
}


.package-btn {
  margin-top: auto;

  min-height: 48px;

  display: grid;
  place-items: center;

  border: 1px solid var(--line);
  border-radius: 12px;

  font-weight: 850;

  transition: 0.2s ease;
}


.package-btn:hover {
  transform: translateY(-2px);

  border-color:
    rgba(64, 132, 255, 0.6);

  background:
    rgba(30, 104, 255, 0.06);
}


/* =========================
   PROCESS
   ========================= */


.process-list {
  border-top: 1px solid var(--line);
}


.process-step {
  padding: 30px 0;

  display: grid;

  grid-template-columns:
    100px 1fr;

  gap: 20px;

  border-bottom: 1px solid var(--line);
}


.process-step > span {
  color: #55a9ff;

  font-weight: 900;
}


.process-step div {
  display: grid;

  grid-template-columns:
    0.75fr 1fr;

  gap: 30px;

  align-items: start;
}


.process-step h3 {
  font-size: 1.3rem;

  letter-spacing: -0.03em;
}


.process-step p {
  max-width: 600px;

  color: var(--muted);
}


/* =========================
   ABOUT
   ========================= */


.about-card {
  display: grid;

  grid-template-columns:
    0.34fr 1fr;

  overflow: hidden;

  border: 1px solid var(--line);
  border-radius: 26px;

  background: var(--surface);
}


.about-label {
  min-height: 540px;

  display: grid;
  place-items: center;

  background:
    radial-gradient(
      circle at 50% 40%,
      rgba(26, 142, 255, 0.25),
      transparent 25%
    ),

    radial-gradient(
      circle at 45% 55%,
      rgba(124, 92, 255, 0.25),
      transparent 35%
    ),

    linear-gradient(
      145deg,
      #11131a,
      #0b0c10
    );

  border-right: 1px solid var(--line);
}


.about-label span {
  font-size:
    clamp(
      3rem,
      6vw,
      6rem
    );

  font-weight: 900;

  writing-mode: vertical-rl;

  color:
    rgba(255, 255, 255, 0.05);

  letter-spacing: 0.06em;
}


.about-copy {
  padding: 70px;
}


.about-copy p {
  max-width: 700px;

  margin-top: 25px;

  color: var(--muted);

  font-size: 1.03rem;
}


.about-stats {
  margin-top: 52px;

  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 12px;
}


.about-stats div {
  min-height: 130px;

  padding: 19px;

  display: flex;
  flex-direction: column;

  justify-content: end;

  border: 1px solid var(--line);
  border-radius: 15px;

  background:
    rgba(255, 255, 255, 0.025);
}


.about-stats strong {
  font-size: 1.6rem;
}


.about-stats span {
  color: var(--muted);

  font-size: 0.78rem;
}


/* =========================
   FAQ
   ========================= */


.faq-list {
  border-top: 1px solid var(--line);
}


.faq details {
  padding: 23px 2px;

  border-bottom: 1px solid var(--line);
}


.faq summary {
  cursor: pointer;

  font-size: 1.05rem;

  font-weight: 750;

  list-style: none;
}


.faq summary::-webkit-details-marker {
  display: none;
}


.faq summary::after {
  content: "+";

  float: right;

  color: #559dff;

  font-size: 1.5rem;

  font-weight: 400;
}


.faq details[open] summary::after {
  content: "−";
}


.faq details p {
  max-width: 740px;

  margin-top: 12px;

  color: var(--muted);
}


/* =========================
   CONTACT
   ========================= */


.contact-card {
  min-height: 470px;

  padding: 65px;

  display: grid;

  gap: 50px;

  overflow: hidden;

  position: relative;

  border:
    1px solid
    rgba(255, 255, 255, 0.12);

  border-radius: 30px;

  background:
    radial-gradient(
      circle at 85% 45%,
      rgba(34, 211, 238, 0.14),
      transparent 18rem
    ),

    radial-gradient(
      circle at 65% 20%,
      rgba(124, 92, 255, 0.18),
      transparent 20rem
    ),

    #0e1118;
}


.quote-layout {
  grid-template-columns:
    0.75fr 1.25fr;

  align-items: start;
}


.quote-intro {
  position: sticky;

  top: 115px;
}


.quote-intro h2 {
  font-size:
    clamp(
      2.6rem,
      4.6vw,
      4.8rem
    );

  line-height: 1;

  letter-spacing: -0.055em;
}


.quote-intro p {
  margin-top: 22px;

  color: var(--muted);
}


.contact-details {
  margin-top: 34px;

  display: grid;

  gap: 4px;
}


.contact-details span {
  margin-top: 15px;

  color: #777f90;

  font-size: 0.68rem;
  font-weight: 850;

  text-transform: uppercase;

  letter-spacing: 0.11em;
}


.contact-details a,
.contact-details strong {
  font-size: 0.92rem;
}


.contact-details a {
  color: #69b9ff;
}


.quote-form {
  position: relative;

  z-index: 3;

  padding: 28px;

  border: 1px solid var(--line);
  border-radius: 20px;

  background:
    rgba(7, 8, 11, 0.55);

  backdrop-filter: blur(12px);
}


.form-grid {
  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap: 14px;
}


.quote-form label {
  display: grid;

  gap: 7px;

  color: #c9ced7;

  font-size: 0.75rem;
  font-weight: 800;
}


.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;

  padding: 13px 14px;

  border: 1px solid var(--line);
  border-radius: 10px;

  background: #0d1016;

  color: white;

  font: inherit;

  outline: none;
}


.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color:
    rgba(48, 135, 255, 0.7);

  box-shadow:
    0 0 0 3px
    rgba(48, 135, 255, 0.08);
}


.quote-form fieldset {
  margin: 18px 0;

  padding: 18px;

  border: 1px solid var(--line);
  border-radius: 13px;
}


.quote-form legend {
  padding: 0 7px;

  color: #c9ced7;

  font-size: 0.75rem;
  font-weight: 850;
}


.check-grid {
  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap: 10px;
}


.check-grid label {
  display: flex;

  align-items: center;

  gap: 9px;

  font-weight: 650;

  color: #a9afbb;
}


.check-grid input {
  width: 16px;
  height: 16px;

  accent-color: #4888ff;
}


.quote-submit {
  width: 100%;

  margin-top: 18px;

  border: 0;

  cursor: pointer;

  color: white;
}


.form-note {
  display: block;

  margin-top: 10px;

  color: #777f90;

  font-size: 0.7rem;

  text-align: center;
}


/* =========================
   FOOTER
   ========================= */


footer {
  width: min(calc(100% - 36px), var(--max));

  margin: 0 auto;

  padding: 32px 0 42px;

  display: grid;

  grid-template-columns:
    1fr 1.3fr auto auto;

  gap: 24px;

  align-items: center;

  border-top: 1px solid var(--line);

  color: var(--muted);

  font-size: 0.82rem;
}


.footer-logo img {
  width: 190px;
}


.footer-links {
  display: flex;

  gap: 18px;
}


footer p a {
  color: #69b9ff;
}


.copyright {
  white-space: nowrap;
}


/* =========================
   ANIMATIONS
   ========================= */


.reveal {
  opacity: 0;

  transform:
    translateY(24px);

  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}


.reveal.visible {
  opacity: 1;

  transform:
    translateY(0);
}


/* =========================
   TABLET
   ========================= */


@media (max-width: 980px) {

  .hero {
    min-height: auto;

    grid-template-columns: 1fr;

    gap: 70px;
  }


  .hero-copy {
    max-width: 780px;
  }


  .hero-visual {
    max-width: 760px;
  }


  .services-grid,
  .package-grid {
    grid-template-columns:
      repeat(2, 1fr);
  }


  .project-grid {
    grid-template-columns: 1fr;
  }


  .project-card:nth-child(3) {
    grid-column: auto;
  }


  .property-preview {
    min-height: 355px;
  }


  .about-card {
    grid-template-columns:
      0.25fr 1fr;
  }


  .about-copy {
    padding: 52px 42px;
  }


  .about-stats {
    grid-template-columns: 1fr;
  }


  .quote-layout {
    grid-template-columns: 1fr;
  }


  .quote-intro {
    position: static;
  }


  footer {
    grid-template-columns:
      1fr 1fr;
  }

}


/* =========================
   MOBILE
   ========================= */


@media (max-width: 760px) {

  .site-header {
    height: 68px;

    top: 10px;

    margin-top: 10px;
  }


  .logo img {
    width: 172px;
  }


  .menu-toggle {
    display: block;
  }


  .nav {
    position: absolute;

    left: 0;
    right: 0;
    top: 78px;

    padding: 14px;

    display: none;

    flex-direction: column;

    align-items: stretch;

    border: 1px solid var(--line);
    border-radius: 16px;

    background:
      rgba(10, 12, 17, 0.98);

    backdrop-filter: blur(20px);
  }


  .nav.open {
    display: flex;
  }


  .nav a {
    padding: 12px 10px;
  }


  .nav .nav-cta {
    margin: 4px 0 0;

    text-align: center;
  }


  .section {
    padding: 78px 0;
  }


  .hero {
    padding-top: 70px;
  }


  .hero h1 {
    font-size:
      clamp(
        3.05rem,
        15vw,
        4.8rem
      );
  }


  .hero-text {
    font-size: 1rem;
  }


  .hero-actions {
    flex-direction: column;
  }


  .button {
    width: 100%;
  }


  .hero-points {
    gap: 13px;

    flex-direction: column;
  }


  .hero-browser {
    transform: none;
  }


  .hero-demo {
    min-height: 365px;

    padding: 18px;
  }


  .demo-layout {
    min-height: 290px;

    grid-template-columns: 1fr;
  }


  .demo-art,
  .floating-card {
    display: none;
  }


  .trust-strip {
    gap: 11px;

    padding: 16px;

    font-size: 0.62rem;
  }


  .section-heading {
    align-items: start;

    flex-direction: column;

    gap: 16px;
  }


  .project-preview,
  .property-preview {
    min-height: 270px;
  }


  .compact-browser {
    width: 94%;
  }


  .mini-site {
    min-height: 205px;
  }


  .restaurant-site {
    min-height: 230px;
  }


  .property-site {
    min-height: 230px;

    padding: 15px;
  }


  .property-content {
    min-height: 180px;

    grid-template-columns: 1fr;
  }


  .building {
    display: none;
  }


  .restaurant-content {
    padding-top: 42px;
  }


  .dental-hero h3,
  .restaurant-content h3,
  .property-text h3 {
    font-size: 1.5rem;
  }


  .dental-shape {
    height: 105px;
  }


  .tooth {
    width: 52px;
    height: 52px;
  }


  .concept-note {
    flex-direction: column;
  }


  .services-grid,
  .package-grid,
  .form-grid,
  .check-grid {
    grid-template-columns: 1fr;
  }


  .service-card {
    min-height: auto;
  }


  .service-card h3 {
    margin-top: 45px;
  }


  .package-card {
    min-height: auto;
  }


  .process-step {
    grid-template-columns:
      52px 1fr;
  }


  .process-step div {
    grid-template-columns: 1fr;

    gap: 8px;
  }


  .about-card {
    grid-template-columns: 1fr;
  }


  .about-label {
    min-height: 110px;

    border-right: 0;
    border-bottom: 1px solid var(--line);
  }


  .about-label span {
    writing-mode: horizontal-tb;

    font-size: 3rem;
  }


  .about-copy {
    padding: 34px 23px;
  }


  .contact-card.quote-layout {
    padding: 30px 20px;
  }


  .quote-form {
    padding: 20px;
  }


  footer {
    grid-template-columns: 1fr;

    text-align: left;
  }


  .footer-logo img {
    width: 190px;
  }

}


@media (max-width: 430px) {

  .site-header,
  .section,
  footer {
    width:
      min(
        calc(100% - 24px),
        var(--max)
      );
  }


  .logo img {
    width: 158px;
  }


  .dental-hero {
    grid-template-columns: 1fr;
  }


  .dental-shape {
    display: none;
  }

}