@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Plus+Jakarta+Sans:wght@500;600;700;800&display=swap");

:root {
  --color-primary: #0774ff;
  --color-primary-dark: #055fd6;
  --color-secondary: #2d3c58;
  --color-secondary-dark: #313149;
  --color-third: #ffc107;
  --color-third-dark: #e6ac00;
  --btc: #4c5671;
  --placeholder: #8d9097;
  --body-bg: #fff;
  --plan-bg: #f6f9ff;
  --border-color: #e9edff;
  --light-border: #d4dcff;
  --success: #26cf4b;
  --danger: #ff0003;
  --primary-gradient: linear-gradient(180deg, #308bff 0%, #1262ff 100%);
  --banner-bg: linear-gradient(180deg, #2d86ff 0%, #033aa7 100%);
  --cta-bg: linear-gradient(92deg, #3990ff 3.85%, #2c73fe 101.14%);
  --sale-bg: linear-gradient(180deg, #0774ff 0%, #033aa7 100%);
  --testimonial-center: linear-gradient(180deg, #0653ec 0%, #0774ff 100%);
  --footer-dark: #0b1b3a;
  --shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 18px 50px rgba(7, 116, 255, 0.12);
  --radius: 8px;
  --radius-lg: 16px;
  --header-h: 86px;
  --container: 1200px;
  --transition: all 0.35s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--btc);
  background: var(--body-bg);
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--color-secondary);
  line-height: 1.25;
}

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

.section {
  padding: 96px 0;
}

.section-sm {
  padding: 72px 0;
}

.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}

.eyebrow {
  display: inline-block;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-head h2,
.section-title {
  font-size: clamp(28px, 3.4vw, 42px);
  margin-bottom: 14px;
}

.muted {
  color: var(--btc);
}

.highlight {
  color: var(--color-third);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 12px 26px;
  border-radius: 6px;
  border: 0;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-yellow {
  background: var(--color-third);
  color: #1a2438;
}

.btn-yellow:hover {
  background: var(--color-third-dark);
  transform: translateY(-1px);
}

.btn-blue {
  background: var(--color-primary);
  color: #fff;
}

.btn-blue:hover {
  background: var(--color-primary-dark);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.7);
}

.btn-outline:hover {
  background: #fff;
  color: var(--color-primary);
}

.btn-outline-blue {
  background: #fff;
  color: var(--color-primary);
  border: 1.5px solid var(--color-primary);
}

.btn-ghost {
  background: transparent;
  color: #fff;
  padding-left: 0;
  padding-right: 0;
}

.btn-ghost:hover {
  color: var(--color-third);
}

.topbar {
  background: #062a73;
  color: #fff;
  font-size: 13px;
}

.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 40px;
  gap: 16px;
}

.topbar a:hover {
  color: var(--color-third);
}

.topbar-promo {
  color: var(--color-third);
  font-weight: 600;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 1px 0 var(--border-color);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo img,
.logo svg {
  width: 44px;
  height: 44px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-text strong {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 22px;
  color: var(--color-secondary);
  font-weight: 800;
}

.logo-text span {
  font-size: 11px;
  color: var(--color-primary);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav > li {
  position: relative;
}

.nav a {
  font-weight: 600;
  font-size: 15px;
  color: var(--color-secondary);
  padding: 8px 0;
}

.nav a:hover,
.nav a.active,
.has-dropdown > a:hover {
  color: var(--color-primary);
}

.has-dropdown > a::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 1.6px solid currentColor;
  border-bottom: 1.6px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  margin-left: 7px;
}

.dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: -18px;
  min-width: 220px;
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: var(--transition);
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown,
.has-dropdown.open .dropdown {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.dropdown a {
  display: block;
  padding: 10px 20px;
  color: var(--btc);
  font-weight: 500;
}

.dropdown a:hover {
  background: var(--plan-bg);
  color: var(--color-primary);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: var(--plan-bg);
  border-radius: 8px;
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--color-secondary);
  position: relative;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-toggle span::before {
  top: -6px;
}

.menu-toggle span::after {
  top: 6px;
}

.hero {
  position: relative;
  background: var(--banner-bg);
  color: #fff;
  padding: 90px 0 130px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='900' height='520' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 420C140 340 240 180 420 220C620 264 720 80 900 140' fill='none' stroke='rgba(255,255,255,.12)' stroke-width='2'/%3E%3Cpath d='M0 300C180 240 280 80 480 140C680 198 760 40 900 90' fill='none' stroke='rgba(255,255,255,.08)' stroke-width='2'/%3E%3C/svg%3E");
  background-size: cover;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}

.hero h1 {
  color: #fff;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  margin: 12px 0 18px;
}

.hero p {
  color: rgba(255, 255, 255, 0.86);
  max-width: 540px;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.play-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 600;
}

.play-link .play {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  display: grid;
  place-items: center;
}

.hero-visual {
  position: relative;
  min-height: 420px;
  display: grid;
  place-items: center;
}

.hero-photo {
  width: min(340px, 78%);
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
  border: 10px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 20px 60px rgba(0, 20, 80, 0.28);
}

.orb {
  position: absolute;
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow-lg);
  display: grid;
  place-items: center;
}

.orb svg {
  width: 28px;
  height: 28px;
}

.orb-1 {
  top: 18%;
  left: 8%;
}
.orb-2 {
  top: 8%;
  right: 18%;
}
.orb-3 {
  bottom: 22%;
  left: 4%;
}
.orb-4 {
  bottom: 12%;
  right: 10%;
}

.hero-cards {
  margin-top: -70px;
  position: relative;
  z-index: 2;
  padding-bottom: 20px;
}

.hero-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.hero-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px 22px;
  box-shadow: var(--shadow-lg);
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--plan-bg);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.icon-box svg {
  width: 26px;
  height: 26px;
}

.hero-card h4,
.feature-card h3,
.service-mini h3 {
  font-size: 18px;
  margin-bottom: 6px;
}

.search-section,
.light-section {
  background: #fff;
}

.search-box {
  background: #fff;
  border: 1px solid var(--light-border);
  box-shadow: var(--shadow-lg);
  border-radius: 18px;
  padding: 28px;
}

.search-row {
  display: grid;
  grid-template-columns: 1fr 160px 150px;
  gap: 12px;
}

.search-row input,
.search-row select,
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  min-height: 56px;
  border: 1px solid var(--light-border);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 15px;
  color: var(--color-secondary);
  outline: none;
  background: #fff;
}

.search-row input:focus,
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(7, 116, 255, 0.12);
}

.tld-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  margin-top: 22px;
  justify-content: center;
}

.tld-list li {
  color: var(--color-secondary);
  font-weight: 600;
}

.tld-list span {
  color: var(--color-primary);
  margin-left: 6px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card,
.vps-card,
.cloud-card {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 32px 24px;
  transition: var(--transition);
}

.feature-card:hover,
.vps-card:hover,
.cloud-card:hover,
.service-mini:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.sale-banner {
  background: var(--sale-bg);
  color: #fff;
  border-radius: 20px;
  padding: 42px 48px;
  display: grid;
  grid-template-columns: 1.4fr auto auto;
  gap: 28px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.sale-banner h3 {
  color: #fff;
  font-size: 32px;
  margin: 8px 0 10px;
}

.sale-banner p {
  color: rgba(255, 255, 255, 0.84);
}

.badge-circle {
  width: 132px;
  height: 132px;
  border-radius: 50%;
  border: 8px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
}

.badge-circle strong {
  font-size: 28px;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.services-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
}

.service-feature {
  background: var(--primary-gradient);
  color: #fff;
  border-radius: 20px;
  padding: 42px 36px;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.service-feature h3,
.service-feature h2 {
  color: #fff;
}

.service-feature p {
  color: rgba(255, 255, 255, 0.86);
  margin: 14px 0 28px;
}

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

.service-mini {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  min-height: 180px;
}

.service-mini .go {
  margin-top: auto;
  color: var(--color-primary);
  font-weight: 700;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.check-list li {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  color: var(--color-secondary);
  font-weight: 500;
}

.check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #e8f2ff;
  color: var(--color-primary);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.photo-frame {
  position: relative;
}

.photo-frame img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 24px;
}

.overlap-photos {
  position: relative;
  min-height: 430px;
}

.overlap-photos img {
  border-radius: 20px;
  object-fit: cover;
}

.overlap-photos .main {
  width: 78%;
  height: 360px;
}

.overlap-photos .sub {
  position: absolute;
  width: 52%;
  height: 230px;
  right: 0;
  bottom: 0;
  border: 8px solid #fff;
}

.stat-box {
  position: absolute;
  left: 24px;
  bottom: 24px;
  background: #0b1b3a;
  color: #fff;
  border-radius: 16px;
  padding: 22px 26px;
  min-width: 170px;
}

.stat-box strong {
  display: block;
  font-size: 34px;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.why-item {
  display: flex;
  gap: 16px;
  margin-bottom: 22px;
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.testimonial {
  background: var(--plan-bg);
  border-radius: 18px;
  padding: 32px 28px;
}

.testimonial.featured {
  background: var(--testimonial-center);
  color: #fff;
  transform: scale(1.04);
}

.testimonial.featured h4,
.testimonial.featured p {
  color: #fff;
}

.quote {
  font-size: 42px;
  line-height: 1;
  color: var(--color-primary);
  font-family: Georgia, serif;
}

.testimonial.featured .quote {
  color: var(--color-third);
}

.person {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
}

.person img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.person h4 {
  font-size: 16px;
  margin: 0;
}

.person span {
  font-size: 13px;
  color: var(--placeholder);
}

.testimonial.featured .person span {
  color: rgba(255, 255, 255, 0.75);
}

.partners {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

.partner-pill {
  padding: 10px 18px;
  border: 1px solid var(--border-color);
  border-radius: 999px;
  color: #8a93a8;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
  align-items: center;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  background: transparent;
  border: 0;
  text-align: left;
  padding: 18px 20px;
  font-weight: 700;
  color: var(--color-secondary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 16px;
}

.faq-item .answer {
  display: none;
  padding: 0 20px 18px;
  color: var(--btc);
}

.faq-item.open {
  background: linear-gradient(180deg, rgba(241, 246, 255, 0) 0%, #f1f6ff 100%);
  border-color: #cfe0ff;
}

.faq-item.open .answer {
  display: block;
}

.plus {
  color: var(--color-primary);
  font-size: 22px;
  line-height: 1;
}

.articles {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
}

.article-feature img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 18px;
}

.article-feature h3 {
  margin: 16px 0 8px;
  font-size: 26px;
}

.article-list {
  display: grid;
  gap: 18px;
}

.article-mini {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  align-items: center;
}

.article-mini img {
  width: 110px;
  height: 86px;
  object-fit: cover;
  border-radius: 12px;
}

.cta-banner {
  background: var(--cta-bg);
  border-radius: 18px;
  padding: 42px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  color: #fff;
}

.cta-banner h3 {
  color: #fff;
  font-size: 30px;
}

.site-footer {
  background: var(--footer-dark);
  color: #c5cde0;
  padding-top: 72px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr 1.1fr;
  gap: 36px;
  padding-bottom: 40px;
}

.site-footer .logo-text strong,
.site-footer h4 {
  color: #fff;
}

.site-footer h4 {
  margin-bottom: 18px;
  font-size: 18px;
}

.site-footer p {
  margin: 14px 0 18px;
}

.site-footer a:hover {
  color: var(--color-third);
}

.footer-links li {
  margin-bottom: 10px;
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.socials a {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  color: #fff;
}

.newsletter {
  display: flex;
  gap: 8px;
}

.newsletter input {
  flex: 1;
  min-height: 48px;
  border: 0;
  border-radius: 8px;
  padding: 0 14px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 14px;
}

.legal-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
}

.page-hero {
  background: var(--banner-bg);
  color: #fff;
  padding: 72px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='900' height='360' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 240C160 180 280 40 480 90C680 140 780 20 900 70' fill='none' stroke='rgba(255,255,255,.12)' stroke-width='2'/%3E%3C/svg%3E");
  background-size: cover;
}

.page-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.page-hero h1 {
  color: #fff;
  font-size: clamp(32px, 4.4vw, 56px);
  margin: 10px 0 16px;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.86);
  margin-bottom: 24px;
}

.page-hero .check-list {
  margin-bottom: 22px;
}

.page-hero .check-list li {
  color: #fff;
}

.page-hero .check {
  background: rgba(255, 255, 255, 0.22);
  color: #ffc107;
}

.page-hero img.round {
  width: min(420px, 100%);
  height: 320px;
  object-fit: cover;
  border-radius: 28px;
  justify-self: end;
}

.breadcrumb {
  color: var(--color-third);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: -50px;
  position: relative;
  z-index: 2;
}

.info-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  padding: 28px 24px;
  text-align: center;
}

.info-card h3 {
  margin: 10px 0 6px;
}

.form-card {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 18px;
  padding: 32px;
  box-shadow: var(--shadow);
}

.form-card h3 {
  margin-bottom: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

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

.form-row textarea {
  min-height: 140px;
  resize: vertical;
}

.form-error {
  display: none;
  color: var(--danger);
  font-size: 13px;
  margin-top: 6px;
}

.field.error input,
.field.error select,
.field.error textarea {
  border-color: var(--danger);
}

.field.error .form-error {
  display: block;
}

.consent {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  margin: 8px 0 18px;
}

.consent .form-error {
  flex-basis: 100%;
  margin-left: 26px;
}

.form-success {
  display: none;
  background: #e9f9ee;
  color: #0f7a32;
  border: 1px solid #b6ebc4;
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 16px;
  font-weight: 600;
}

.form-success.show {
  display: block;
}

.pricing-wrap {
  text-align: center;
}

.billing-toggle {
  display: inline-flex;
  background: var(--plan-bg);
  border-radius: 999px;
  padding: 6px;
  margin: 12px 0 40px;
  gap: 4px;
}

.billing-toggle button {
  border: 0;
  background: transparent;
  min-height: 42px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  color: var(--color-secondary);
  cursor: pointer;
}

.billing-toggle button.active {
  background: var(--color-primary);
  color: #fff;
}

.save-tag {
  background: #e8f2ff;
  color: var(--color-primary);
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 12px;
  margin-left: 6px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  text-align: left;
}

.price-card {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 18px;
  padding: 28px 22px;
  position: relative;
}

.price-card.popular {
  border: 2px solid var(--color-third);
  transform: translateY(-8px);
}

.ribbon {
  position: absolute;
  top: 16px;
  right: -8px;
  background: var(--color-third);
  color: #1a2438;
  font-size: 12px;
  font-weight: 800;
  padding: 6px 12px;
  border-radius: 4px 0 0 4px;
}

.price-card .amount {
  font-size: 36px;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--color-secondary);
  margin: 12px 0 4px;
}

.price-card .amount small {
  font-size: 14px;
  color: var(--btc);
  font-weight: 500;
}

.price-card ul {
  margin: 18px 0;
}

.price-card li {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 14px;
}

.plan-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.plan-table th {
  background: var(--color-primary);
  color: #fff;
  text-align: left;
  padding: 16px;
}

.plan-table td {
  padding: 16px;
  border-bottom: 1px solid var(--border-color);
}

.plan-table tr:nth-child(even) td {
  background: var(--plan-bg);
}

.icon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.team-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  text-align: center;
}

.team-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.team-card h3 {
  margin: 16px 0 4px;
}

.team-card p {
  padding-bottom: 20px;
}

.stats-band {
  background: var(--primary-gradient);
  color: #fff;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.stats-grid strong {
  display: block;
  font-size: 36px;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: #fff;
}

.stats-grid span {
  color: rgba(255, 255, 255, 0.86);
}

.map-dots {
  background: var(--plan-bg);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
}

.usa-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.help-cats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.legal {
  max-width: 860px;
  margin: 0 auto;
}

.legal h2,
.legal h3 {
  margin: 28px 0 10px;
}

.legal p,
.legal li {
  margin-bottom: 12px;
}

.legal ul {
  padding-left: 18px;
}

.legal ul li {
  list-style: disc;
}

.bg-soft {
  background: var(--plan-bg);
}

.two-col-checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 28px;
}

.video-modal {
  position: fixed;
  inset: 0;
  background: rgba(8, 18, 40, 0.72);
  display: none;
  place-items: center;
  z-index: 2000;
  padding: 24px;
}

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

.video-modal .panel {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  max-width: 520px;
}

.field label {
  display: block;
  font-weight: 600;
  color: var(--color-secondary);
  margin-bottom: 6px;
  font-size: 14px;
}

@media (max-width: 1100px) {
  .hero-card-grid,
  .feature-grid,
  .pricing-grid,
  .service-grid,
  .icon-grid,
  .team-grid,
  .stats-grid,
  .help-cats,
  .contact-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-layout,
  .testimonials,
  .articles,
  .faq-layout,
  .footer-grid,
  .sale-banner {
    grid-template-columns: 1fr;
  }

  .testimonial.featured {
    transform: none;
  }
}

@media (max-width: 900px) {
  .hero-grid,
  .split,
  .page-hero-grid,
  .form-row,
  .search-row,
  .two-col-checks {
    grid-template-columns: 1fr;
  }

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

  .nav-wrap {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: var(--shadow-lg);
    display: none;
    padding: 12px 20px 20px;
  }

  .nav-wrap.open {
    display: block;
  }

  .nav {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .nav > li {
    border-bottom: 1px solid var(--border-color);
  }

  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    display: none;
    padding-left: 10px;
  }

  .has-dropdown.open .dropdown {
    display: block;
  }

  .hero,
  .page-hero {
    padding: 56px 0 80px;
  }

  .hero-visual {
    min-height: 300px;
  }

  .photo-frame img,
  .overlap-photos .main {
    height: 300px;
  }

  .cta-banner,
  .header-inner {
    flex-wrap: wrap;
  }
}

@media (max-width: 640px) {
  .hero-card-grid,
  .feature-grid,
  .pricing-grid,
  .service-grid,
  .icon-grid,
  .team-grid,
  .stats-grid,
  .help-cats,
  .contact-cards,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .topbar .container {
    justify-content: center;
    text-align: center;
  }

  .topbar-hide-sm {
    display: none;
  }

  .price-card.popular {
    transform: none;
  }

  .article-mini {
    grid-template-columns: 1fr;
  }
}
