:root {
  --bg: #f5f7fb;
  --bg-soft: #eef3f9;
  --surface: rgba(255, 255, 255, 0.9);
  --surface-soft: rgba(247, 250, 253, 0.92);
  --line: rgba(20, 40, 70, 0.1);
  --text: #163047;
  --muted: #5f7286;
  --accent: #2388f2;
  --accent-strong: #116ed3;
  --accent-soft: #e7f2ff;
  --accent-glow: rgba(35, 136, 242, 0.18);
  --shadow: 0 20px 44px rgba(17, 62, 113, 0.09);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --font-display: "Avenir Next", "Trebuchet MS", sans-serif;
  --font-body: "Avenir Next", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top center, rgba(35, 136, 242, 0.08), transparent 26%),
    linear-gradient(180deg, #f7faff 0%, #edf4fb 100%);
  font-family: var(--font-body);
}

.site-bg {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(35, 136, 242, 0.1), transparent 28%),
    radial-gradient(circle at bottom left, rgba(17, 110, 211, 0.08), transparent 24%);
  pointer-events: none;
}

.container {
  width: min(1120px, calc(100% - 28px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247, 250, 255, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.topbar-inner,
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.topbar-inner {
  min-height: 78px;
}

.brand,
.nav a,
.footer a,
.stack-list a {
  text-decoration: none;
}

a {
  color: var(--accent);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.brand-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 0 28px rgba(35, 136, 242, 0.18);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav a.active,
.nav a:hover {
  color: var(--accent);
  background: var(--accent-soft);
}

.hero,
.page-main {
  position: relative;
  z-index: 1;
}

.hero-home {
  padding: 42px 0 20px;
}

.hero-grid,
.page-hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 28px;
  align-items: stretch;
}

.hero-copy,
.feature-card,
.service-card,
.price-box,
.info-card,
.contact-card,
.split-callout,
.image-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(246, 250, 255, 0.9) 100%);
  box-shadow: var(--shadow);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  padding: 34px;
  background:
    radial-gradient(circle at top right, rgba(35, 136, 242, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 249, 255, 0.94) 100%);
  box-shadow:
    0 24px 60px rgba(17, 62, 113, 0.1),
    0 0 0 1px rgba(35, 136, 242, 0.06);
}

.hero-brand-panel {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  width: fit-content;
  max-width: 100%;
  margin-bottom: 18px;
  padding: 12px 14px;
  border: 1px solid rgba(35, 136, 242, 0.16);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(236, 245, 255, 0.88) 100%);
  box-shadow: 0 14px 34px rgba(35, 136, 242, 0.08);
}

.hero-logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 14px;
  box-shadow: 0 0 32px rgba(35, 136, 242, 0.18);
}

.hero-tagline {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.eyebrow,
.photo-label {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-display);
  color: var(--text);
}

h1 {
  max-width: 14ch;
  font-size: clamp(2.05rem, 3.7vw, 3.15rem);
  line-height: 1.06;
}

h2 {
  font-size: clamp(1.45rem, 2.5vw, 2.1rem);
  line-height: 1.15;
}

h3 {
  font-size: 1.2rem;
  line-height: 1.25;
}

.lead,
.feature-card p,
.service-card li,
.price-box p,
.info-card p,
.info-card li,
.contact-card p,
.footer p,
.stack-list a {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

.lead {
  max-width: 58ch;
  margin-top: 16px;
  font-size: 0.99rem;
}

.trust-line {
  margin: 18px 0 0;
  color: var(--accent-strong);
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(17, 110, 211, 0.18);
}

.button-primary {
  color: white;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
}

.button-secondary {
  color: var(--accent);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(35, 136, 242, 0.18);
}

.photo-card {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background-color: #d9e7f4;
  background-size: cover;
  background-position: center center;
  box-shadow:
    var(--shadow),
    0 0 0 1px rgba(35, 136, 242, 0.08),
    0 0 56px rgba(35, 136, 242, 0.1);
}

.small-photo {
  min-height: 280px;
}

.photo-office {
  background-image:
    linear-gradient(180deg, rgba(13, 35, 57, 0.12), rgba(13, 35, 57, 0.38)),
    url("https://images.pexels.com/photos/3747096/pexels-photo-3747096.jpeg?auto=compress&cs=tinysrgb&w=1600");
}

.photo-support {
  background-image:
    linear-gradient(180deg, rgba(13, 35, 57, 0.12), rgba(13, 35, 57, 0.42)),
    url("https://images.pexels.com/photos/3197389/pexels-photo-3197389.jpeg?auto=compress&cs=tinysrgb&w=1600");
}

.photo-server {
  background-image:
    linear-gradient(180deg, rgba(13, 35, 57, 0.14), rgba(13, 35, 57, 0.5)),
    url("https://images.pexels.com/photos/5408005/pexels-photo-5408005.jpeg?auto=compress&cs=tinysrgb&w=1600");
}

.photo-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 28px;
  color: white;
  background: linear-gradient(180deg, transparent 0%, rgba(8, 33, 58, 0.72) 100%);
}

.premium-overlay {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
}

.hero-spotlight {
  width: min(82%, 400px);
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background: rgba(9, 30, 52, 0.48);
  backdrop-filter: blur(10px);
}

.overlay-copy {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  line-height: 1.6;
}

.photo-overlay h2,
.photo-overlay h3,
.photo-overlay p {
  color: white;
}

.photo-overlay.compact {
  padding: 20px;
}

.section,
.page-hero {
  padding: 18px 0;
}

.section-soft {
  background: linear-gradient(180deg, rgba(233, 242, 251, 0.5), rgba(233, 242, 251, 0));
}

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

.feature-grid,
.contact-grid,
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.wide-card {
  grid-column: 1 / -1;
}

.feature-card,
.price-box,
.info-card,
.contact-card {
  padding: 26px;
}

.cards-photos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.cards-photos .image-panel {
  min-height: 260px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  padding: 26px;
}

.service-card.wide {
  grid-column: 1 / -1;
}

.service-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: start;
  margin-bottom: 16px;
}

.service-head strong,
.monthly {
  color: var(--accent);
  font-weight: 700;
}

ul {
  margin: 0;
  padding-left: 18px;
}

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

.split-callout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
  padding: 28px;
}

.stack-list {
  display: grid;
  gap: 10px;
}

.stack-list a {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, #ffffff 0%, #f5faff 100%);
  box-shadow: 0 10px 24px rgba(17, 62, 113, 0.04);
}

.centered-cta {
  display: flex;
  justify-content: center;
}

.form-wrap {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(35, 136, 242, 0.12), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(246, 250, 255, 0.92) 100%);
  box-shadow:
    0 22px 52px rgba(17, 62, 113, 0.08),
    0 0 0 1px rgba(35, 136, 242, 0.05);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

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

.contact-form span {
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(35, 136, 242, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  font: inherit;
  outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(35, 136, 242, 0.12);
}

.full {
  grid-column: 1 / -1;
}

.form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.form-actions p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.6;
}

.footer {
  margin-top: 28px;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82) 0%, rgba(244, 249, 255, 0.92) 100%);
}

.footer-inner {
  padding: 18px 0;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.footer-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(35, 136, 242, 0.15);
}

.footer-brand p {
  color: var(--text);
  font-weight: 700;
}

.footer-mini {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 500;
}

.footer-contact,
.footer-links {
  display: grid;
  gap: 4px;
}

.footer-contact a,
.footer-links a,
.footer-links span,
.footer-contact span {
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.5;
}

.footer-inner {
  min-height: 76px;
}

@media (max-width: 920px) {
  .hero-grid,
  .page-hero-grid,
  .feature-grid,
  .cards-photos,
  .service-grid,
  .price-grid,
  .info-grid,
  .contact-grid,
  .split-callout,
  .legal-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

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

  .topbar-inner,
  .footer-inner {
    flex-direction: column;
    align-items: start;
    padding: 14px 0;
  }

  .hero-copy {
    min-height: auto;
  }

  .photo-card {
    min-height: 320px;
  }

  .footer-contact,
  .footer-links {
    width: 100%;
  }

  .form-actions {
    flex-direction: column;
    align-items: start;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 18px, 1120px);
  }

  .topbar {
    position: static;
  }

  .topbar-inner {
    gap: 12px;
  }

  .brand {
    width: 100%;
    font-size: 0.98rem;
  }

  .brand-logo {
    width: 42px;
    height: 42px;
  }

  .nav {
    width: 100%;
    justify-content: space-between;
    gap: 8px;
  }

  .nav a {
    flex: 1 1 calc(50% - 8px);
    text-align: center;
    padding: 10px 12px;
    font-size: 0.9rem;
  }

  .hero-home {
    padding-top: 24px;
  }

  .hero-copy,
  .feature-card,
  .service-card,
  .price-box,
  .info-card,
  .contact-card,
  .split-callout,
  .form-wrap {
    padding: 20px;
    border-radius: 22px;
  }

  .hero-brand-panel {
    width: 100%;
    gap: 12px;
    padding: 10px 12px;
    margin-bottom: 16px;
  }

  .hero-logo {
    width: 56px;
    height: 56px;
  }

  .hero-tagline {
    font-size: 0.88rem;
  }

  .photo-card {
    min-height: 240px;
  }

  .small-photo {
    min-height: 220px;
  }

  h1 {
    max-width: none;
    font-size: clamp(1.95rem, 9vw, 2.65rem);
    line-height: 1.08;
  }

  h2 {
    font-size: clamp(1.3rem, 6vw, 1.7rem);
  }

  .lead,
  .trust-line {
    max-width: none;
  }

  .hero-actions,
  .centered-cta {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .hero-spotlight {
    width: 100%;
    padding: 16px;
    border-radius: 18px;
  }

  .overlay-copy {
    font-size: 0.9rem;
  }

  .feature-card,
  .price-box,
  .info-card,
  .contact-card,
  .service-card {
    padding: 18px;
  }

  .service-head {
    flex-direction: column;
    gap: 8px;
  }

  .service-head strong {
    white-space: normal;
  }

  .stack-list a {
    padding: 13px 14px;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    padding: 13px 14px;
  }

  .footer {
    margin-top: 22px;
  }

  .footer-inner {
    gap: 14px;
  }

  .footer-brand {
    align-items: start;
  }

  .footer-logo {
    width: 36px;
    height: 36px;
  }
}

@media (max-width: 430px) {
  .container {
    width: min(100% - 14px, 1120px);
  }

  .topbar-inner {
    gap: 10px;
    padding: 10px 0;
  }

  .brand {
    gap: 10px;
    font-size: 0.92rem;
  }

  .brand-logo {
    width: 38px;
    height: 38px;
    border-radius: 10px;
  }

  .nav {
    gap: 6px;
  }

  .nav a {
    flex: 1 1 calc(50% - 6px);
    padding: 9px 10px;
    font-size: 0.86rem;
    border-radius: 14px;
  }

  .hero-home,
  .page-hero {
    padding-top: 14px;
  }

  .hero-copy,
  .feature-card,
  .service-card,
  .price-box,
  .info-card,
  .contact-card,
  .split-callout,
  .form-wrap {
    padding: 16px;
    border-radius: 18px;
  }

  .hero-brand-panel {
    gap: 10px;
    padding: 9px 10px;
    border-radius: 16px;
  }

  .hero-logo {
    width: 48px;
    height: 48px;
    border-radius: 12px;
  }

  .hero-tagline {
    font-size: 0.82rem;
    line-height: 1.35;
  }

  .eyebrow,
  .photo-label {
    margin-bottom: 8px;
    font-size: 0.74rem;
    letter-spacing: 0.1em;
  }

  h1 {
    font-size: clamp(1.78rem, 9vw, 2.2rem);
    line-height: 1.06;
  }

  h2 {
    font-size: clamp(1.18rem, 6vw, 1.45rem);
    line-height: 1.12;
  }

  h3 {
    font-size: 1.06rem;
  }

  .lead,
  .feature-card p,
  .service-card li,
  .price-box p,
  .info-card p,
  .info-card li,
  .contact-card p,
  .footer p,
  .stack-list a,
  .footer-contact a,
  .footer-links a,
  .footer-links span,
  .footer-contact span {
    font-size: 0.92rem;
    line-height: 1.6;
  }

  .trust-line {
    margin-top: 14px;
    font-size: 0.9rem;
    line-height: 1.45;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 18px;
  }

  .button {
    min-height: 44px;
    padding: 0 14px;
    font-size: 0.95rem;
  }

  .photo-card {
    min-height: 210px;
  }

  .small-photo {
    min-height: 190px;
  }

  .photo-overlay,
  .photo-overlay.compact {
    padding: 14px;
  }

  .hero-spotlight {
    padding: 14px;
    border-radius: 16px;
  }

  .overlay-copy {
    margin-top: 8px;
    font-size: 0.84rem;
    line-height: 1.5;
  }

  .service-head {
    margin-bottom: 12px;
  }

  ul {
    padding-left: 16px;
  }

  .stack-list {
    gap: 8px;
  }

  .stack-list a {
    padding: 12px;
    border-radius: 14px;
  }

  .contact-form {
    gap: 12px;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    padding: 12px 13px;
    border-radius: 14px;
  }

  .form-actions p {
    font-size: 0.88rem;
  }

  .footer {
    margin-top: 18px;
  }

  .footer-inner {
    gap: 12px;
    min-height: auto;
    padding: 12px 0 18px;
  }

  .footer-brand {
    gap: 10px;
  }

  .footer-logo {
    width: 32px;
    height: 32px;
  }

  .footer-mini {
    font-size: 0.8rem;
  }
}
