@layer base, components, utilities;
@layer base {
  *,
  ::after,
  ::before,
  ::backdrop,
  ::file-selector-button {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0 solid;
  }
  html {
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    tab-size: 4;
    font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
    font-feature-settings: normal;
    font-variation-settings: normal;
    -webkit-tap-highlight-color: transparent;
  }
  h1,
  h2,
  h3 {
    font-size: inherit;
    font-weight: inherit;
  }
  a {
    color: inherit;
    -webkit-text-decoration: inherit;
    text-decoration: inherit;
  }
  b,
  strong {
    font-weight: bolder;
  }
  small {
    font-size: 80%;
  }
  summary {
    display: list-item;
  }

  ul {
    list-style: none;
  }
  img {
    display: block;
    vertical-align: middle;
  }
  img {
    max-width: 100%;
    height: auto;
  }
  button,
  input,
  ::file-selector-button {
    font: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    letter-spacing: inherit;
    color: inherit;
    border-radius: 0;
    background-color: transparent;
    opacity: 1;
  }
  ::file-selector-button {
    margin-inline-end: 4px;
  }
  ::placeholder {
    opacity: 1;
  }
  @supports (not (-webkit-appearance: -apple-pay-button)) or (contain-intrinsic-size: 1px) {
    ::placeholder {
      color: currentcolor;
      @supports (color: color-mix(in lab, red, red)) {
        color: color-mix(in oklab, currentcolor 50%, transparent);
      }
    }
  }
  ::-webkit-search-decoration {
    -webkit-appearance: none;
  }
  ::-webkit-date-and-time-value {
    min-height: 1lh;
    text-align: inherit;
  }
  ::-webkit-datetime-edit {
    display: inline-flex;
  }
  ::-webkit-datetime-edit-fields-wrapper {
    padding: 0;
  }
  ::-webkit-datetime-edit,
  ::-webkit-datetime-edit-year-field,
  ::-webkit-datetime-edit-month-field,
  ::-webkit-datetime-edit-day-field,
  ::-webkit-datetime-edit-hour-field,
  ::-webkit-datetime-edit-minute-field,
  ::-webkit-datetime-edit-second-field,
  ::-webkit-datetime-edit-millisecond-field,
  ::-webkit-datetime-edit-meridiem-field {
    padding-block: 0;
  }
  ::-webkit-calendar-picker-indicator {
    line-height: 1;
  }
  button,
  input:where([type="button"], [type="submit"]),
  ::file-selector-button {
    appearance: button;
  }
  ::-webkit-inner-spin-button,
  ::-webkit-outer-spin-button {
    height: auto;
  }
}
@layer utilities {
  .hidden {
    display: none;
  }
}
*,
*::before,
*::after,
::file-selector-button {
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
}
:root {
  --ivory: #f5f1e9;
  --paper: #fbf8f2;
  --ink: #171714;
  --muted: #6f6b64;
  --line: #d8d1c5;
  --red: #b91c1c;
  --red2: #d52222;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
}
a {
  color: inherit;
  text-decoration: none;
}
a:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 4px;
}
main {
  overflow: hidden;
}
.site-header {
  height: 96px;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: minmax(210px, 1fr) auto minmax(210px, 1fr);
  align-items: center;
  padding: 0 var(--home-pad);
  background: rgba(245, 241, 233, 0.93);
  backdrop-filter: blur(16px);
  position: relative;
  z-index: 10;
}
.brand img {
  width: 178px;
  height: auto;
  display: block;
}
.site-header nav {
  height: 100%;
  display: flex;
}
.site-header nav a {
  display: flex;
  align-items: center;
  padding: 0 25px;
  border-left: 1px solid rgba(216, 209, 197, 0.5);
  font-size: 15px;
  font-weight: 600;
  position: relative;
}
.site-header nav a:last-child {
  border-right: 1px solid rgba(216, 209, 197, 0.5);
}
.site-header nav a:after {
  content: "";
  position: absolute;
  left: 25px;
  right: 25px;
  bottom: 23px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transition: 0.25s;
}
.site-header nav a:hover:after {
  transform: scaleX(1);
}
.account {
  justify-self: end;
  background: var(--red);
  color: white;
  padding: 17px 20px;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  gap: 24px;
  align-items: center;
}
.account span,
.button span {
  font-size: 20px;
}
.eyebrow,
.kicker {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
}
.domain-control .kicker,
.domain-faq-title .kicker,
.domain-final-cta .kicker,
.hosting-standard .kicker {
  font-size: 13px;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 30px;
}
.eyebrow span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 5px rgba(185, 28, 28, 0.1);
}
h1 {
  font-size: clamp(58px, 6.4vw, 102px);
  line-height: 0.91;
  letter-spacing: -0.065em;
  margin: 0;
  font-weight: 700;
}
h1 em {
  font-style: normal;
  font-weight: 400;
}
.lead {
  font-size: 20px;
  line-height: 1.55;
  color: #4e4b45;
  max-width: 600px;
  margin: 35px 0 38px;
}
.hero-actions {
  display: flex;
  gap: 16px;
}
.button {
  height: 60px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 44px;
  border: 1px solid var(--ink);
  font-size: 16px;
  font-weight: 700;
  transition: 0.25s;
}
.button:hover {
  transform: translateY(-2px);
}
.button.primary {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}
.button.primary:hover {
  background: var(--red2);
}
.button.ghost:hover {
  background: var(--ink);
  color: white;
}
.services {
  padding: 125px 4.5vw;
}
.section-head {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 58px;
}
.section-head .kicker {
  grid-column: 1/-1;
  color: var(--red);
  margin: 0 0 -24px;
}
.section-head h2 {
  font-size: clamp(46px, 5vw, 74px);
  line-height: 0.98;
  letter-spacing: -0.05em;
  margin: 0;
}
.section-head > p {
  max-width: 430px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}
footer {
  background: #10100e;
  color: #f2eee6;
  padding: 80px var(--home-pad) 30px;
}
.footer-main {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 60px;
  padding-bottom: 65px;
}
.footer-brand {
  display: inline-flex;
  align-self: start;
  justify-self: start;
  padding: 12px 20px;
  border-radius: 12px;
  background: #fff;
}
.wordmark {
  display: inline-block;
  color: #171714;
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.wordmark-x {
  color: var(--red);
}
.ecosystem-logo-tile .wordmark {
  font-size: 20px;
}
.footer-main > p {
  color: #9c988f;
  line-height: 1.7;
  margin: 0;
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 24px;
}
.footer-links div {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-links strong {
  font-size: 12px;
  letter-spacing: 0.12em;
  color: #77736c;
  margin-bottom: 8px;
}
.footer-links a {
  font-size: 14px;
}
.footer-links a:hover {
  color: #ff5555;
}
.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #43c974;
  display: inline-block;
  margin-right: 7px;
}
.footer-bottom {
  border-top: 1px solid #2d2d29;
  padding-top: 25px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 14px;
  color: #77736c;
  font-size: 12px;
}

.footer-bottom .server-status-pill {
  margin-left: auto;
}

.ecosystem-bar {
  margin-bottom: 40px;
  padding: 26px 30px 30px;
  border: 1px solid #2b2b27;
  border-radius: 20px;
  background: #17171450;
}

.ecosystem-brand {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #2b2b27;
}

.ecosystem-logo-tile {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 62px;
  border-radius: 12px;
  background: #fff;
}

.ecosystem-brand strong {
  display: block;
  margin-bottom: 6px;
  color: #f2eee6;
  font-size: 17px;
}

.ecosystem-brand p {
  color: #9c988f;
  font-size: 13px;
}

.ecosystem-label {
  margin: 0 0 16px;
  color: #77736c;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.ecosystem-grid a {
  display: block;
  padding: 18px 20px;
  border: 1px solid #2b2b27;
  border-radius: 12px;
  background: #1c1c19;
  transition: border-color 0.2s ease;
}

.ecosystem-grid a:hover {
  border-color: #45453f;
}

.ecosystem-grid strong {
  display: block;
  margin-bottom: 6px;
  color: #f2eee6;
  font-size: 15px;
}

.ecosystem-grid strong b {
  color: #6ea8fe;
  font-weight: 700;
}

.ecosystem-grid span {
  color: #8a867e;
  font-size: 13px;
}

.server-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: #1c1c19;
  color: #d8d4cb;
  font-size: 12px;
  font-weight: 600;
}

.server-status-pill i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #43c974;
  box-shadow: 0 0 0 4px rgba(67, 201, 116, 0.18);
}

@keyframes pulse {
  50% {
    opacity: 0.5;
    filter: brightness(1.5);
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }
}
@media (max-width: 1000px) {
  .brand img {
    width: 145px;
  }
  .section-head {
    grid-template-columns: 1fr;
  }
  .footer-main {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-links {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .ecosystem-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 650px) {
  .site-header {
    padding: 0 20px;
  }
  .account {
    padding: 13px;
    font-size: 0;
    gap: 0;
  }
  .account span {
    font-size: 20px;
  }
  h1 {
    font-size: 54px;
  }
  .lead {
    font-size: 17px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .services {
    padding: 85px 20px;
  }
  .section-head {
    gap: 10px;
  }
  .section-head .kicker {
    margin: 0;
  }
  .section-head h2 {
    font-size: 43px;
  }
  .footer-main {
    grid-template-columns: 1fr;
  }
  .footer-links {
    grid-template-columns: 1fr 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }
  .footer-bottom .server-status-pill {
    margin-left: 0;
  }
  .ecosystem-bar {
    padding: 22px 20px 24px;
  }
  .ecosystem-brand {
    flex-direction: column;
    align-items: flex-start;
  }
  .ecosystem-grid {
    grid-template-columns: 1fr;
  }
}
@keyframes pulse {
  50% {
    opacity: 0.5;
  }
}
.catalog-section .kicker {
  color: var(--red);
  margin: 0 0 22px;
}
.catalog-section h2 {
  font-size: clamp(48px, 5vw, 76px);
  line-height: 0.96;
  letter-spacing: -0.055em;
  margin: 0;
}
.catalog-section {
  padding: 125px var(--home-pad);
  background: var(--paper);
}
.catalog-head {
  align-items: start;
}
.plans-block {
  margin-bottom: 110px;
}
.plans-title {
  display: flex;
  gap: 25px;
  align-items: flex-start;
  margin-bottom: 30px;
}
.plans-title > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: var(--red);
  color: white;
  font-weight: 700;
  font-size: 12px;
}
.plans-title h3 {
  font-size: 34px;
  letter-spacing: -0.035em;
  margin: 0 0 5px;
}
.plans-title p {
  margin: 0;
  color: var(--muted);
}
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.plan-card {
  position: relative;
  min-height: 570px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 32px;
  display: flex;
  flex-direction: column;
  transition: 0.25s;
}
.plan-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 50px rgba(33, 27, 19, 0.08);
}
.plan-card.popular {
  border: 2px solid var(--red);
  padding: 31px;
}
.popular-label {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--red);
  color: #fff;
  padding: 8px 12px;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.08em;
}
.plan-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.plan-top > span {
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.13em;
  color: var(--muted);
}
.plan-top small {
  background: #e9e4dc;
  padding: 5px 9px;
}
.plan-card h3 {
  font-size: 42px;
  letter-spacing: -0.05em;
  margin: 45px 0 10px;
}
.price {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}
.price strong {
  font-size: 54px;
  line-height: 1;
  letter-spacing: -0.05em;
}
.price > span {
  font-size: 18px;
  font-weight: 700;
  margin: 5px 0 0 7px;
  display: flex;
  flex-direction: column;
}
.price > span small {
  font-size: 11px;
  color: var(--muted);
  font-weight: 400;
}
.plan-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  flex: 1;
}
.plan-card li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid #eee9e1;
  font-size: 14px;
}
.check {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
}
.plan-button {
  height: 52px;
  background: var(--ink);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  font-weight: 700;
}
.plan-card.popular .plan-button {
  background: var(--red);
}
@media (max-width: 1100px) {
  .plans-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 700px) {
  .catalog-section {
    padding: 80px 20px;
  }
  .plans-grid {
    grid-template-columns: 1fr;
  }
  .plan-card {
    min-height: 535px;
  }
}

.multi-header {
  position: sticky;
  top: 0;
  z-index: 50;
  overflow: visible;
  padding-right: var(--home-pad);
  padding-left: var(--home-pad);
  background: #fff;
}

/* Eski tek sayfa menü kurallarını sıfırla */
.multi-header .top-nav a {
  height: auto;
  min-height: 44px;
  padding: 0 15px;
  border: 0;
  border-radius: 12px;
}

.multi-header .top-nav a::after {
  display: none;
}

.multi-header .dropdown a {
  display: grid;
  min-height: 0;
  padding: 12px;
  border: 0;
}

.multi-header .dropdown > small {
  display: block;
  padding: 8px 12px 10px;
}

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

.top-nav > a,
.drop-trigger {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 0 15px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-weight: 400;
  cursor: pointer;
  white-space: nowrap;
}

.top-nav > a:hover,
.drop-trigger:hover,
.nav-drop:focus-within .drop-trigger {
  background: var(--soft);
  color: var(--red);
}

.drop-trigger::after {
  width: 6px;
  height: 6px;
  margin: -4px 0 0 9px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  content: "";
  transform: rotate(45deg);
}

.nav-drop {
  position: relative;
}
.nav-drop > button.drop-trigger {
  appearance: none;
  border: 0;
  background: transparent;
  cursor: pointer;
}

/* Product detail pages */
.product-page {
  background: var(--ivory);
}
.product-hero {
  display: grid;
  min-height: 560px;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 7vw;
  padding: 120px var(--home-pad) 85px;
}
.product-hero h1 {
  max-width: 820px;
  margin: 22px 0;
  font-size: clamp(54px, 6.2vw, 94px);
  line-height: 0.98;
  letter-spacing: -0.045em;
}
.product-hero h1 em {
  color: var(--red);
  font-style: normal;
  font-weight: inherit;
}
.product-hero .lead {
  max-width: 670px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}
.product-summary {
  padding: 45px;
  background: var(--ink);
  color: #fff;
}
.product-summary small {
  color: #b8b2aa;
  letter-spacing: 0.12em;
}
.product-summary strong {
  display: block;
  margin: 18px 0 8px;
  font-size: clamp(28px, 3vw, 45px);
  line-height: 1.08;
}
.product-summary p {
  margin: 0;
  color: #b8b2aa;
  line-height: 1.7;
}
.product-pricing {
  padding: 100px var(--home-pad);
  background: #e8e2d8;
}
.product-pricing-head {
  max-width: 860px;
  margin-bottom: 48px;
}
.product-pricing-head h2 {
  margin: 12px 0 18px;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1;
  letter-spacing: -0.04em;
}
.product-pricing-head > p:last-child {
  max-width: 700px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.product-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.product-card {
  display: flex;
  min-height: 510px;
  flex-direction: column;
  padding: 34px 30px 28px;
  background: #fff;
}
.product-card.popular {
  border-top: 5px solid var(--red);
}
.product-card > small {
  color: var(--red);
  font-weight: 700;
  letter-spacing: 0.1em;
}
.product-card h3 {
  margin: 18px 0 10px;
  font-size: clamp(27px, 2.5vw, 38px);
}
.product-card .product-price {
  margin-bottom: 20px;
  font-size: 30px;
  font-weight: 700;
}
.product-card .product-price span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
}
.product-card ul {
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}
.product-card li {
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  line-height: 1.45;
}
.product-card li::before {
  margin-right: 8px;
  color: var(--red);
  content: "✓";
  font-weight: 700;
}
.product-card > a {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding: 0 18px;
  background: var(--ink);
  color: #fff;
  font-weight: 700;
}
.product-card.popular > a {
  background: var(--red);
}
.product-note {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 13px;
}
@media (max-width: 1000px) {
  .product-hero,
  .product-grid,
  .product-grid.two {
    grid-template-columns: 1fr;
  }
  .product-hero {
    padding-top: 150px;
  }
}
@media (max-width: 760px) {
  .product-hero,
  .product-pricing {
    padding-right: var(--home-pad);
    padding-left: var(--home-pad);
  }
  .product-hero h1 {
    font-size: 48px;
  }
  .product-summary {
    padding: 30px;
  }
  .product-card {
    min-height: 0;
  }
}

.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: 310px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(20, 18, 16, 0.15);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-7px);
  transition:
    opacity 160ms ease,
    transform 160ms ease,
    visibility 160ms;
}

.dropdown::before {
  position: absolute;
  top: -12px;
  right: 0;
  left: 0;
  height: 14px;
  content: "";
}

.nav-drop:hover .dropdown,
.nav-drop:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  display: grid;
  gap: 2px;
  padding: 11px 12px;
  border-radius: 11px;
  color: var(--ink);
  font-weight: 600;
}

.dropdown a:hover,
.dropdown a:focus-visible {
  background: var(--soft);
  color: var(--red);
}

.dropdown small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.status-button {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 15px;
  border: 1px solid #b9ddc7;
  border-radius: 999px;
  background: #eefaf2;
  color: #176337 !important;
  font-weight: 700;
}

.status-button::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #29a85a;
  box-shadow: 0 0 0 4px rgba(41, 168, 90, 0.12);
  content: "";
}

.home-hero {
  position: relative;
  display: grid;
  min-height: 0;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  align-items: center;
  gap: 5vw;
  padding: 90px var(--home-pad);
  overflow: hidden;
  background: #fbfaf7;
}

.home-hero::before {
  position: absolute;
  top: -180px;
  right: -120px;
  width: 650px;
  height: 650px;
  border: 1px solid rgba(185, 28, 28, 0.12);
  border-radius: 50%;
  content: "";
}

.home-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 790px;
  padding-right: 0;
}

.home-hero .eyebrow {
  font-size: 13px;
}

.home-hero h1 {
  font-size: clamp(60px, 7vw, 108px);
}

.home-hero h1 em {
  color: var(--red);
  font-weight: 400;
}

.home-hero-visual {
  position: relative;
  z-index: 1;
  aspect-ratio: 4 / 3.6;
  overflow: hidden;
  border-radius: 22px;
  box-shadow: 0 30px 70px rgba(66, 54, 38, 0.14);
}

.home-hero-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-hero-mark {
  position: absolute;
  top: clamp(2px, 0.6vw, 10px);
  left: clamp(220px, 22vw, 370px);
  z-index: 2;
  display: flex;
  width: 126px;
  height: 126px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 14px 34px rgba(66, 54, 38, 0.12);
}

.home-hero-mark span {
  color: var(--red);
  font-size: 33px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.home-hero-mark small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.service-promise {
  display: grid;
  grid-template-columns: 115px minmax(340px, 0.95fr) minmax(360px, 1.05fr);
  align-items: center;
  gap: 2.2vw;
  padding: 72px var(--home-pad);
  background: var(--ink);
  color: #fff;
}

.promise-number {
  display: grid;
  width: 112px;
  height: 112px;
  place-items: center;
  border: 1px solid #42423d;
  border-radius: 50%;
  color: var(--red2);
  font-size: 70px;
  font-weight: 400;
}

.promise-copy .kicker {
  margin: 0 0 18px;
  color: var(--red2);
}

.promise-copy h2 {
  margin: 0;
  font-size: clamp(38px, 4.5vw, 66px);
  line-height: 1.08;
  font-weight: 400;
  letter-spacing: -0.055em;
}

.promise-detail {
  padding-left: 4vw;
  border-left: 1px solid #393936;
}

.promise-detail p {
  margin: 0 0 20px;
  color: #aaa59d;
  font-size: 17px;
  line-height: 1.7;
}

.promise-detail strong {
  display: block;
  max-width: 620px;
  font-size: 18px;
  line-height: 1.55;
}

.promise-detail a {
  display: inline-flex;
  align-items: center;
  gap: 25px;
  margin-top: 30px;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--red2);
  font-weight: 700;
}

.home-services {
  padding: 110px var(--home-pad);
  background: var(--ivory);
}

.home-trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding-left: var(--home-pad);
  padding-right: var(--home-pad);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.home-trust-strip div {
  display: flex;
  min-height: 82px;
  align-items: center;
  gap: 15px;
  padding: 0 28px;
  border-right: 1px solid var(--line);
}

.home-trust-strip div:last-child {
  border-right: 0;
}

.home-trust-strip span,
.infra-grid span {
  color: var(--red);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.12em;
}

.home-trust-strip strong {
  font-size: 14px;
}

.domain-search {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 8vw;
  padding: 70px var(--home-pad);
  background: #fff;
}

.domain-search-copy .kicker {
  color: var(--red);
  font-size: 13px;
}

.domain-search-copy h2 {
  margin: 16px 0 24px;
  font-size: clamp(23px, 2.4vw, 33px);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.04em;
}

.domain-search-copy > p:last-child {
  max-width: 560px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.domain-search-form {
  padding: 34px;
  border: 1px solid var(--line);
  background: var(--ivory);
  box-shadow: 0 28px 80px rgba(66, 54, 38, 0.09);
}

.domain-search-form > label {
  display: block;
  margin-bottom: 13px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.domain-search-form > div {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  min-height: 68px;
  border: 1px solid var(--ink);
  background: #fff;
}

.domain-search-form span {
  align-self: center;
  padding-left: 20px;
  color: var(--muted);
  font-weight: 500;
}

.domain-search-form input[type="text"] {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 0 10px 0 3px;
  background: transparent;
  color: var(--ink);
  font-weight: 500;
  font-size: 19px;
}

.domain-search-form button {
  min-width: 145px;
  border: 0;
  background: var(--red);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
}

.domain-search-form button:hover {
  background: var(--red2);
}

.domain-search-form small {
  display: block;
  margin-top: 16px;
  color: var(--muted);
  line-height: 1.6;
}

.home-section-title {
  margin-bottom: 55px;
}

.home-section-title .kicker,
.home-why .kicker {
  color: var(--red);
}

.home-section-title h2,
.home-why h2 {
  margin: 15px 0 0;
  font-size: clamp(44px, 5vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

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

.home-service-grid > a {
  display: flex;
  min-height: 340px;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.28);
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.home-service-grid > a:hover {
  background: #fff;
  transform: translateY(-5px);
}

.home-service-grid figure {
  position: relative;
  margin: -30px -30px 22px;
  overflow: hidden;
}

.home-service-grid figure img {
  display: block;
  width: 100%;
  height: 148px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.home-service-grid > a:hover figure img {
  transform: scale(1.04);
}

.home-service-grid figure span {
  position: absolute;
  left: 14px;
  bottom: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(23, 23, 20, 0.16);
}

.home-service-grid span {
  color: var(--red);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
}

.home-service-grid h3 {
  margin: 0 0 12px;
  font-size: 34px;
  letter-spacing: -0.04em;
}

.home-service-grid p {
  max-width: 240px;
  flex: 1;
  color: var(--muted);
  line-height: 1.6;
}

.home-service-grid b {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.home-why {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: end;
  gap: 10vw;
  padding: 70px 7vw;
  background: #e8e2d8;
}

.home-infrastructure {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 7vw;
  padding: 85px 7vw;
  background: #fff;
}

.infra-intro {
  align-self: start;
}

.infra-intro .kicker,
.migration-copy .kicker {
  color: var(--red);
}

.infra-intro h2 {
  margin: 16px 0 25px;
  font-size: clamp(43px, 5vw, 70px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.migration-copy h2 {
  margin: 16px 0 25px;
  font-size: clamp(39px, 4.6vw, 66px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.05em;
}

.infra-intro > p:last-child,
.migration-copy > p {
  max-width: 590px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.infra-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.infra-grid article {
  min-height: 235px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.infra-grid h3 {
  margin: 45px 0 10px;
  font-size: 22px;
  letter-spacing: -0.025em;
}

.infra-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.founder-story {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  align-items: center;
  gap: 7vw;
  padding: 120px var(--home-pad);
  overflow: hidden;
  background: #f4efe6;
}

.founder-photo {
  position: relative;
  padding: 52px 0 0 52px;
}

.founder-photo::before {
  position: absolute;
  top: -65px;
  left: -65px;
  width: 340px;
  height: 340px;
  border: 42px solid rgba(185, 28, 28, 0.1);
  border-radius: 50%;
  content: "";
}

.founder-photo img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  aspect-ratio: 1.32;
  border-radius: 28px;
  object-fit: cover;
  box-shadow: 0 35px 90px rgba(52, 42, 29, 0.16);
}

.founder-year {
  position: absolute;
  z-index: 2;
  right: -24px;
  bottom: -34px;
  display: flex;
  min-width: 230px;
  align-items: center;
  gap: 15px;
  padding: 20px 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 20px 55px rgba(52, 42, 29, 0.14);
}

.founder-year strong {
  color: var(--red);
  font-size: 32px;
  letter-spacing: -0.05em;
}

.founder-year span {
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.12em;
}

.founder-copy {
  position: relative;
  z-index: 2;
}

.founder-copy .kicker {
  color: var(--red);
  font-size: 13px;
}

.founder-copy h2 {
  max-width: 820px;
  margin: 16px 0 30px;
  font-size: clamp(23px, 2.4vw, 33px);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.04em;
}

.founder-copy > p:not(.kicker) {
  max-width: 650px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.founder-copy blockquote {
  max-width: 620px;
  margin: 30px 0;
  padding: 22px 0 22px 25px;
  border-left: 3px solid var(--red);
  font-size: 21px;
  font-weight: 700;
  line-height: 1.45;
}

.founder-signature {
  display: flex;
  align-items: center;
  gap: 18px;
}

.founder-signature strong {
  font-size: 15px;
}

.founder-signature span {
  padding-left: 18px;
  border-left: 1px solid var(--line);
  color: var(--red);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.home-migration {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
  background: var(--ink);
  color: #fff;
}

.migration-visual {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  border-right: 1px solid #353530;
  background:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 55px 55px;
}

.migration-visual i {
  position: absolute;
  width: 145px;
  height: 145px;
  border: 1px solid #5b5750;
  background: rgba(255, 255, 255, 0.035);
  transform: rotate(45deg);
}

.migration-visual i:nth-child(1) {
  top: 75px;
  left: 13%;
}
.migration-visual i:nth-child(2) {
  top: 175px;
  left: 41%;
}
.migration-visual i:nth-child(3) {
  top: 270px;
  left: 69%;
}

.migration-visual::after {
  position: absolute;
  top: 50%;
  right: 10%;
  left: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red2), transparent);
  box-shadow: 0 0 20px rgba(213, 34, 34, 0.65);
  content: "";
}

.migration-visual span {
  position: absolute;
  right: 28px;
  bottom: 25px;
  color: #77736c;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.18em;
}

.migration-copy {
  align-self: center;
  padding: 75px var(--home-pad);
}

.migration-copy > p {
  color: #aaa59d;
}

.migration-copy ul {
  margin: 30px 0 38px;
  padding: 0;
  list-style: none;
}

.migration-copy li {
  padding: 13px 0;
  border-bottom: 1px solid #353530;
}

.migration-copy li::before {
  margin-right: 12px;
  color: var(--red2);
  content: "✓";
}

.home-why > p {
  max-width: 560px;
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.7;
}

.domain-page,
.email-price-section {
  padding: 95px 0;
}

.domain-page {
  padding: 0;
  background: var(--ivory);
}

/* Hosting page */
.hosting-page {
  background: var(--ivory);
}
.hosting-hero {
  display: grid;
  min-height: 720px;
  grid-template-columns: minmax(0, 0.92fr) minmax(470px, 1.08fr);
  align-items: center;
  gap: 6vw;
  padding: 78px var(--home-pad);
  background: radial-gradient(circle at 4% 7%, rgba(213, 34, 34, 0.08), transparent 25%), #fff;
}
.hosting-hero-copy {
  max-width: 760px;
}
.hosting-hero-copy h1 {
  margin: 18px 0 25px;
  font-size: clamp(58px, 6.2vw, 92px);
  line-height: 0.92;
  letter-spacing: -0.065em;
}
.hosting-hero-copy h1 em {
  color: var(--red);
  font-weight: 400;
  font-size: 0.62em;
}
.hosting-hero-copy .lead {
  max-width: 675px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}
.hosting-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.hosting-hero-actions .ghost {
  border-color: var(--line);
  color: var(--ink);
}
.hosting-hero-points {
  display: flex;
  gap: 0;
  margin-top: 32px;
  border-top: 1px solid var(--line);
}
.hosting-hero-points span {
  padding: 17px 25px 0 0;
  margin-right: 25px;
  border-right: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}
.hosting-hero-points span:last-child {
  border: 0;
}
.hosting-hero-points b {
  display: block;
  color: var(--ink);
  font-size: 16px;
}
.hosting-hero-visual {
  position: relative;
  min-height: 540px;
  margin: 0;
  overflow: hidden;
  border-radius: 42px 0 42px 42px;
  background: var(--red);
  box-shadow: 0 35px 90px rgba(132, 14, 19, 0.25);
}
.hosting-hero-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hosting-page-nav {
  position: sticky;
  top: 96px;
  z-index: 35;
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  overflow-x: auto;
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}
.hosting-page-nav a {
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}
.hosting-page-nav a:hover {
  background: var(--ink);
  color: #fff;
}
.hosting-page-nav a:last-child {
  background: var(--red);
  color: #fff;
}
.hosting-intro {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  align-items: end;
  gap: 8vw;
  padding: 105px var(--home-pad) 45px;
  background: var(--ivory);
}
.hosting-intro .kicker,
.hosting-standard .kicker,
.hosting-platforms .kicker,
.hosting-migration .kicker,
.hosting-faq .kicker {
  color: var(--red);
}
.hosting-intro h2,
.hosting-standard h2,
.hosting-platforms h2,
.hosting-migration h2,
.hosting-faq h2 {
  margin: 14px 0 0;
  font-size: clamp(42px, 5vw, 70px);
  line-height: 0.97;
  letter-spacing: -0.055em;
}
.hosting-standard header h2 .line-sub {
  font-size: 0.68em;
}
.hosting-intro > p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}
.hosting-catalog {
  padding-top: 50px;
  background: var(--ivory);
}
.hosting-catalog .plans-block:last-of-type {
  margin-bottom: 35px;
}
.hosting-price-note {
  margin: 0;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}
.hosting-standard {
  padding: 110px var(--home-pad);
  background: #fff;
}
.hosting-standard header {
  display: grid;
  grid-template-columns: 0.48fr 1.52fr;
  gap: 5vw;
}
.hosting-standard header h2 {
  margin-top: 0;
  max-width: 1000px;
}
.hosting-standard-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 60px;
  border-block: 1px solid var(--line);
}
.hosting-standard-grid article {
  min-height: 285px;
  padding: 28px;
  border-right: 1px solid var(--line);
}
.hosting-standard-grid article:last-child {
  border-right: 0;
}
.hosting-standard-grid span {
  color: var(--red);
  font-weight: 700;
  font-size: 12px;
}
.hosting-standard-grid h3 {
  margin: 72px 0 12px;
  font-size: 23px;
}
.hosting-standard-grid p {
  color: var(--muted);
  line-height: 1.65;
}
.hosting-platforms {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 7vw;
  padding: 110px var(--home-pad);
  background: #e8e2d8;
}
.hosting-platform-copy > p:last-child {
  max-width: 550px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}
.hosting-platform-links {
  border-top: 1px solid #bdb5aa;
}
.hosting-platform-links a {
  display: grid;
  grid-template-columns: 145px 1fr auto;
  align-items: center;
  min-height: 125px;
  gap: 20px;
  border-bottom: 1px solid #bdb5aa;
}
.hosting-platform-links small {
  color: var(--red);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.1em;
}
.hosting-platform-links strong {
  font-size: 24px;
}
.hosting-platform-links span {
  color: var(--muted);
  font-size: 13px;
}
.hosting-platform-links a:hover strong {
  color: var(--red);
}
.hosting-migration {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 8vw;
  padding: 110px var(--home-pad);
  background: var(--ink);
  color: #fff;
}
.hosting-migration .kicker {
  color: var(--red2);
}
.hosting-migration > div:last-child > p:not(.kicker) {
  max-width: 700px;
  color: #aaa59d;
  font-size: 17px;
  line-height: 1.75;
}
.hosting-migration .button {
  margin-top: 18px;
}
.hosting-migration-mark {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid #3a3a36;
  background:
    linear-gradient(#292925 1px, transparent 1px), linear-gradient(90deg, #292925 1px, transparent 1px);
  background-size: 42px 42px;
}
.hosting-migration-mark:before {
  position: absolute;
  left: 12%;
  right: 12%;
  top: 50%;
  height: 1px;
  background: #77736c;
  content: "";
}
.hosting-migration-mark i {
  position: absolute;
  top: calc(50% - 23px);
  width: 46px;
  height: 46px;
  border: 1px solid var(--red2);
  border-radius: 50%;
  background: var(--ink);
}
.hosting-migration-mark i:nth-child(1) {
  left: 12%;
}
.hosting-migration-mark i:nth-child(2) {
  left: 44%;
}
.hosting-migration-mark i:nth-child(3) {
  right: 12%;
}
.hosting-migration-mark b {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--red2);
  font-size: 72px;
  font-weight: 400;
}
.hosting-faq {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 8vw;
  padding: 110px var(--home-pad);
  background: #fff;
}
.hosting-faq > div:first-child {
  position: sticky;
  top: 130px;
}

.domain-hero-v2 {
  display: grid;
  min-height: 720px;
  grid-template-columns: minmax(0, 0.96fr) minmax(480px, 1.04fr);
  align-items: center;
  gap: 6vw;
  padding: 75px var(--home-pad);
  background: radial-gradient(circle at 5% 5%, rgba(213, 34, 34, 0.08), transparent 25%), #fff;
}

.domain-hero-copy {
  max-width: 760px;
}

.domain-hero-copy h1 {
  font-size: clamp(58px, 6.4vw, 94px);
}

.domain-hero-copy h1 em {
  font-size: 0.76em;
}

.domain-hero-copy .lead {
  max-width: 650px;
  margin: 28px 0 30px;
}

.domain-hero-search {
  max-width: 720px;
}

.domain-hero-search > label {
  display: block;
  margin-bottom: 10px;
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.domain-hero-search > div {
  display: grid;
  min-height: 72px;
  grid-template-columns: auto minmax(0, 1fr) auto;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 15px 45px rgba(43, 32, 18, 0.1);
}

.domain-hero-search span {
  align-self: center;
  padding-left: 22px;
  color: var(--muted);
  font-weight: 700;
}

.domain-hero-search input {
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 0 15px 0 4px;
  background: transparent;
  color: var(--ink);
  font-weight: 700;
  font-size: 19px;
}

.domain-hero-search button {
  min-width: 145px;
  border: 0;
  background: var(--ink);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
}

.domain-hero-search button:hover {
  background: var(--red);
}

.domain-hero-extensions {
  display: grid;
  max-width: 720px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 16px;
  overflow: hidden;
  border-radius: 13px;
  background: var(--red);
  color: #fff;
}

.domain-hero-extensions span {
  padding: 16px 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 10px;
  line-height: 1.35;
}

.domain-hero-extensions span:last-child {
  border-right: 0;
}

.domain-hero-extensions strong {
  display: block;
  margin-bottom: 3px;
  font-size: 20px;
}

.domain-hero-visual {
  position: relative;
  min-height: 550px;
  overflow: hidden;
  border-radius: 42px 0 42px 42px;
  background: var(--red);
  box-shadow: 0 35px 90px rgba(132, 14, 19, 0.25);
}

.domain-hero-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
}

.domain-page-nav {
  position: sticky;
  top: 96px;
  z-index: 35;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-height: 68px;
  overflow-x: auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

.domain-page-nav a {
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.domain-page-nav a:hover {
  background: var(--ink);
  color: #fff;
}

.domain-page-nav a:last-child {
  background: var(--red);
  color: #fff;
}

.domain-section-heading .kicker,
.domain-control .kicker,
.domain-final-cta .kicker {
  color: var(--red);
}

.domain-section-heading h2,
.domain-control h2,
.domain-final-cta h2 {
  margin: 16px 0 24px;
  font-size: clamp(42px, 5vw, 70px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.domain-extension-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)) minmax(220px, 1.2fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--ivory);
}

.domain-extension-strip > div,
.domain-extension-strip > a {
  display: flex;
  min-height: 110px;
  flex-direction: column;
  justify-content: center;
  padding: 22px 26px;
  border-right: 1px solid var(--line);
}

.domain-extension-strip > div strong {
  margin-bottom: 7px;
  font-size: 25px;
  letter-spacing: -0.04em;
}

.domain-extension-strip > div span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.domain-extension-strip > a {
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  border-right: 0;
  background: var(--red);
  color: #fff;
  font-weight: 700;
}

.domain-paths {
  padding: 110px var(--home-pad);
  background: radial-gradient(circle at 88% 8%, rgba(213, 34, 34, 0.08), transparent 22%), var(--ivory);
}

.domain-section-heading {
  margin-bottom: 55px;
}

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

.domain-path-grid article {
  display: flex;
  min-height: 570px;
  flex-direction: column;
  padding: 42px;
  border: 1px solid var(--line);
  background: #fff;
}

.domain-path-grid article + article {
  border-left: 0;
}

.domain-path-grid article > span {
  color: var(--red);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.14em;
}

.domain-path-grid h3 {
  max-width: 560px;
  margin: 70px 0 20px;
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.domain-path-grid p {
  max-width: 570px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.domain-path-grid ul {
  margin: 25px 0 35px;
  padding: 0;
  list-style: none;
}

.domain-path-grid li {
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
}

.domain-path-grid li::before {
  margin-right: 11px;
  color: var(--red);
  content: "✓";
}

.domain-path-grid article > a {
  display: flex;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid currentColor;
  font-weight: 700;
}

.domain-path-grid .domain-path-dark {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

.domain-path-dark p {
  color: #aaa59d;
}

.domain-path-dark li {
  border-color: #393936;
}

.domain-control {
  padding: 110px var(--home-pad);
  background:
    linear-gradient(rgba(23, 23, 20, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 23, 20, 0.04) 1px, transparent 1px), #fff;
  background-size: 54px 54px;
}

.domain-control > div:first-child {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  align-items: start;
  gap: 4vw;
}

.domain-control > div:first-child h2 {
  margin-top: 0;
  max-width: 950px;
}

.domain-control-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 55px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.domain-control-grid article {
  min-height: 270px;
  padding: 28px;
  border-right: 1px solid var(--line);
}

.domain-control-grid article:last-child {
  border-right: 0;
}

.domain-control-grid span {
  color: var(--red);
  font-weight: 700;
  font-size: 11px;
}

.domain-control-grid h3 {
  margin: 65px 0 12px;
  font-size: 23px;
}

.domain-control-grid p {
  color: var(--muted);
  line-height: 1.6;
}

.domain-final-cta {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
  padding: 95px var(--home-pad);
  background: #e8e2d8;
}

.domain-hosting-bonus {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) auto;
  align-items: center;
  gap: 45px;
  padding: 80px var(--home-pad);
  background: var(--ink);
  color: #fff;
}

.bonus-mark {
  display: grid;
  width: 100px;
  height: 100px;
  place-items: center;
  border: 1px solid #494943;
  border-radius: 50%;
  color: var(--red2);
  font-size: 62px;
  font-weight: 400;
}

.domain-hosting-bonus .kicker {
  color: var(--red2);
}

.domain-hosting-bonus h2 {
  margin: 12px 0 14px;
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.domain-hosting-bonus p:last-child {
  margin: 0;
  color: #aaa59d;
  font-size: 17px;
}

.domain-hosting-bonus p strong {
  color: #fff;
}

.domain-hosting-bonus .button.ghost {
  border-color: #5a5a54;
}

.domain-faq {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: start;
  gap: 8vw;
  padding: 110px var(--home-pad);
  background: #fff;
}

.domain-faq-title {
  position: sticky;
  top: 130px;
}

.domain-faq-title .kicker {
  color: var(--red);
}

.domain-faq-title h2 {
  margin: 16px 0 24px;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.domain-faq-title > p:last-child {
  max-width: 480px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.domain-faq-list {
  border-top: 1px solid var(--line);
}

.domain-faq-list details {
  border-bottom: 1px solid var(--line);
}

.domain-faq-list summary {
  display: flex;
  min-height: 86px;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
  list-style: none;
}

.domain-faq-list summary::-webkit-details-marker {
  display: none;
}

.domain-faq-list summary span {
  color: var(--red);
  font-size: 25px;
  font-weight: 400;
}

.domain-faq-list details[open] summary span {
  transform: rotate(45deg);
}

.domain-faq-list details p {
  max-width: 760px;
  margin: -5px 45px 28px 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.domain-final-cta h2 {
  max-width: 900px;
  margin-bottom: 0;
}

.email-plan-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.email-plan-grid article {
  min-height: 270px;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
}

.email-plan-grid h3 {
  margin: 0 0 22px;
  font-size: 29px;
}

.email-plan-grid .price {
  font-size: 33px;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.per-month,
.pending-price,
.platform-price {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.pending-price,
.platform-price {
  display: inline-flex;
  padding: 8px 10px;
  border-radius: 9px;
  background: var(--soft);
}

.system-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 42px;
  padding: 25px 28px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
}

@media (max-width: 1100px) {
  .email-plan-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .multi-header {
    height: auto;
    min-height: 78px;
    padding-block: 10px;
  }

  .multi-header .top-nav {
    display: flex;
    grid-column: 1 / -1;
    width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
  }

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

  .home-infrastructure {
    grid-template-columns: 1fr;
  }

  .founder-story {
    grid-template-columns: 1fr;
    gap: 85px;
  }

  .domain-search {
    grid-template-columns: 1fr;
  }

  .domain-control > div:first-child {
    grid-template-columns: 1fr;
  }

  .domain-hero-v2 {
    grid-template-columns: 1fr;
  }

  .domain-hero-visual {
    min-height: 500px;
  }

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

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

  .domain-extension-strip > div:nth-child(2) {
    border-right: 0;
  }

  .domain-extension-strip > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .domain-extension-strip > a {
    grid-column: 1 / -1;
  }

  .domain-hosting-bonus {
    grid-template-columns: 100px 1fr;
  }

  .domain-hosting-bonus .button {
    grid-column: 2;
    justify-self: start;
  }

  .domain-faq {
    grid-template-columns: 1fr;
  }

  .domain-faq-title {
    position: static;
  }

  .domain-control-grid article:nth-child(2) {
    border-right: 0;
  }

  .domain-control-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

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

  .promise-detail {
    grid-column: 2;
    padding: 25px 0 0;
    border-top: 1px solid #393936;
    border-left: 0;
  }
}

@media (max-width: 760px) {
  .multi-header {
    padding-right: 20px;
    padding-left: 20px;
  }

  .home-hero {
    min-height: 0;
    grid-template-columns: 1fr;
    padding: 70px 20px 65px;
  }

  .home-hero h1 {
    font-size: 54px;
  }

  .home-hero-mark {
    width: 92px;
    height: 92px;
    top: 4px;
    left: 168px;
  }

  .home-hero-mark span {
    font-size: 24px;
  }

  .home-hero-mark small {
    font-size: 9px;
  }

  .home-hero-copy {
    padding-right: 0;
  }

  .home-hero-visual {
    border-radius: 16px;
  }

  .service-promise {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 65px 20px;
  }

  .promise-number {
    width: 80px;
    height: 80px;
    font-size: 52px;
  }

  .promise-detail {
    grid-column: auto;
  }

  .home-services {
    padding: 80px 20px;
  }

  .domain-paths,
  .domain-control,
  .domain-final-cta,
  .domain-hosting-bonus,
  .domain-faq {
    padding: 80px 20px;
  }

  .domain-hero-v2 {
    grid-template-columns: 1fr;
    gap: 45px;
    padding: 65px 20px;
  }

  .domain-hero-copy h1 {
    font-size: 54px;
  }

  .domain-hero-search > div {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .domain-hero-search button {
    grid-column: 1 / -1;
    min-height: 54px;
  }

  .domain-hero-extensions {
    grid-template-columns: 1fr;
  }

  .domain-hero-extensions span {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  }

  .domain-hero-extensions span:last-child {
    border-bottom: 0;
  }

  .domain-hero-visual {
    min-height: 390px;
    border-radius: 28px 0 28px 28px;
  }

  .domain-page-nav {
    top: 128px;
    justify-content: flex-start;
    padding: 0 14px;
  }

  .domain-path-grid,
  .domain-control-grid {
    grid-template-columns: 1fr;
  }

  .domain-path-grid article {
    min-height: 520px;
    padding: 28px;
  }

  .domain-path-grid article + article {
    border-top: 0;
    border-left: 1px solid var(--ink);
  }

  .domain-path-grid h3 {
    margin-top: 48px;
    font-size: 42px;
  }

  .domain-control-grid article,
  .domain-control-grid article:nth-child(2) {
    min-height: 220px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .domain-control-grid article:last-child {
    border-bottom: 0;
  }

  .domain-control-grid h3 {
    margin-top: 42px;
  }

  .domain-final-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .domain-extension-strip {
    grid-template-columns: 1fr 1fr;
  }

  .domain-extension-strip > div {
    min-height: 95px;
    padding: 18px;
  }

  .domain-extension-strip > a {
    min-height: 72px;
  }

  .domain-hosting-bonus {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .domain-hosting-bonus .button {
    grid-column: auto;
  }

  .domain-faq-list summary {
    min-height: 76px;
    font-size: 16px;
  }

  .domain-search {
    gap: 35px;
    padding: 80px 20px;
  }

  .domain-search-form {
    padding: 20px;
  }

  .domain-search-form > div {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .domain-search-form button {
    grid-column: 1 / -1;
    min-height: 54px;
  }

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

  .home-trust-strip div:nth-child(2) {
    border-right: 0;
  }

  .home-trust-strip div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .home-infrastructure {
    padding: 80px 20px;
  }

  .founder-story {
    gap: 75px;
    padding: 80px 20px;
  }

  .founder-photo {
    padding: 25px 0 0 15px;
  }

  .founder-photo img {
    aspect-ratio: 1.08;
    border-radius: 20px;
  }

  .founder-photo::before {
    top: -25px;
    left: -70px;
    width: 250px;
    height: 250px;
    border-width: 30px;
  }

  .founder-year {
    right: 10px;
    bottom: -42px;
  }

  .founder-copy h2 {
    font-size: 30px;
  }

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

  .infra-grid article {
    min-height: 210px;
  }

  .home-migration {
    grid-template-columns: 1fr;
  }

  .migration-visual {
    min-height: 340px;
    border-right: 0;
    border-bottom: 1px solid #353530;
  }

  .migration-copy {
    padding: 75px 20px;
  }

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

  .home-service-grid > a {
    min-height: 290px;
  }

  .home-service-grid h3 {
    margin-top: 0;
  }

  .home-why {
    grid-template-columns: 1fr;
    gap: 35px;
    padding: 80px 20px;
  }

  .email-plan-grid {
    grid-template-columns: 1fr;
  }

  .dropdown {
    position: fixed;
    top: 128px;
    right: 14px;
    left: 14px;
    width: auto;
  }

  .system-callout {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 1100px) {
  .hosting-hero {
    grid-template-columns: 1fr;
    padding-top: 70px;
  }
  .hosting-hero-visual {
    min-height: 480px;
  }
  .hosting-standard-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .hosting-standard-grid article:nth-child(2) {
    border-right: 0;
  }
  .hosting-standard-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
  .hosting-platforms,
  .hosting-migration,
  .hosting-faq {
    grid-template-columns: 1fr;
  }
  .hosting-faq > div:first-child {
    position: static;
  }
}

@media (max-width: 760px) {
  .hosting-hero {
    min-height: 0;
    gap: 45px;
    padding: 65px 20px;
  }
  .hosting-hero-copy h1 {
    font-size: clamp(50px, 15vw, 68px);
  }
  .hosting-hero-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .hosting-hero-actions .button {
    justify-content: space-between;
  }
  .hosting-hero-points {
    justify-content: space-between;
  }
  .hosting-hero-points span {
    padding-right: 12px;
    margin-right: 12px;
  }
  .hosting-hero-visual {
    min-height: 330px;
    border-radius: 26px 0 26px 26px;
  }
  .hosting-page-nav {
    top: 72px;
    justify-content: flex-start;
    padding: 0 12px;
  }
  .hosting-intro {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 75px 20px 25px;
  }
  .hosting-catalog {
    padding: 40px 20px 75px;
  }
  .hosting-standard,
  .hosting-platforms,
  .hosting-migration,
  .hosting-faq {
    padding: 80px 20px;
  }
  .hosting-standard header {
    grid-template-columns: 1fr;
  }
  .hosting-standard-grid {
    grid-template-columns: 1fr;
  }
  .hosting-standard-grid article,
  .hosting-standard-grid article:nth-child(2) {
    min-height: 220px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .hosting-standard-grid article:last-child {
    border-bottom: 0;
  }
  .hosting-standard-grid h3 {
    margin-top: 45px;
  }
  .hosting-platform-links a {
    grid-template-columns: 1fr auto;
    padding: 22px 0;
  }
  .hosting-platform-links small {
    grid-column: 1/-1;
  }
  .hosting-platform-links span {
    font-size: 0;
  }
  .hosting-migration-mark {
    min-height: 300px;
  }
}

/* Email page */
.email-page {
  background: var(--ivory);
}
.email-hero {
  display: grid;
  min-height: 720px;
  grid-template-columns: minmax(0, 0.92fr) minmax(470px, 1.08fr);
  align-items: center;
  gap: 6vw;
  padding: 78px var(--home-pad);
  background: radial-gradient(circle at 4% 7%, rgba(213, 34, 34, 0.08), transparent 25%), #fff;
}
.email-hero-copy {
  max-width: 760px;
}
.email-hero-copy h1 {
  margin: 18px 0 25px;
  font-size: clamp(58px, 6.2vw, 92px);
  line-height: 0.92;
  letter-spacing: -0.065em;
}
.email-hero-copy h1 em {
  color: var(--red);
  font-weight: 400;
}
.email-hero-copy .lead {
  max-width: 690px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}
.email-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.email-hero-actions .ghost {
  border-color: var(--line);
  color: var(--ink);
}
.email-hero-points {
  display: flex;
  margin-top: 32px;
  border-top: 1px solid var(--line);
}
.email-hero-points span {
  padding: 17px 25px 0 0;
  margin-right: 25px;
  border-right: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}
.email-hero-points span:last-child {
  border: 0;
}
.email-hero-points b {
  display: block;
  color: var(--ink);
  font-size: 16px;
}
.email-hero-visual {
  position: relative;
  min-height: 540px;
  margin: 0;
  overflow: hidden;
  border-radius: 42px 0 42px 42px;
  background: var(--red);
  box-shadow: 0 35px 90px rgba(132, 14, 19, 0.25);
}
.email-hero-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.email-page-nav {
  position: sticky;
  top: 96px;
  z-index: 35;
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  overflow-x: auto;
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}
.email-page-nav a {
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}
.email-page-nav a:hover {
  background: var(--ink);
  color: #fff;
}
.email-page-nav a:last-child {
  background: var(--red);
  color: #fff;
}
.email-intro {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: end;
  gap: 8vw;
  padding: 105px var(--home-pad);
  background: var(--ivory);
}
.email-intro .kicker,
.email-core .kicker,
.email-access .kicker,
.email-platform-section .kicker,
.email-migration .kicker,
.email-faq .kicker {
  color: var(--red);
}
.email-intro h2,
.email-core h2,
.email-access h2,
.email-platform-section h2,
.email-migration h2,
.email-faq h2 {
  margin: 14px 0 0;
  font-size: clamp(42px, 5vw, 70px);
  line-height: 0.97;
  letter-spacing: -0.055em;
}
.email-intro > p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}
.email-core {
  padding: 110px var(--home-pad);
  background: #fff;
}
.email-core header {
  display: grid;
  grid-template-columns: 0.48fr 1.52fr;
  gap: 5vw;
}
.email-core header h2 {
  max-width: 1000px;
  margin-top: 0;
}
.email-core-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 60px;
  border-block: 1px solid var(--line);
}
.email-core-grid article {
  min-height: 300px;
  padding: 28px;
  border-right: 1px solid var(--line);
}
.email-core-grid article:last-child {
  border-right: 0;
}
.email-core-grid span {
  color: var(--red);
  font-weight: 700;
  font-size: 11px;
}
.email-core-grid h3 {
  margin: 72px 0 12px;
  font-size: 23px;
}
.email-core-grid p {
  color: var(--muted);
  line-height: 1.65;
}
.email-pricing {
  padding: 110px var(--home-pad);
  background: #e8e2d8;
}
.email-pricing .email-plan-grid {
  gap: 10px;
}
.email-pricing .email-plan-grid article {
  min-height: 570px;
  border-radius: 0;
  background: #fff;
}
.email-pricing .email-plan-grid article > p span {
  color: var(--muted);
}
.email-pricing .email-plan-grid ul {
  margin-top: 22px;
  padding: 0;
  list-style: none;
}
.email-pricing .email-plan-grid li {
  display: flex;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
}
.email-pricing .email-plan-grid article > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 52px;
  margin-top: auto;
  padding: 0 17px;
  background: var(--ink);
  color: #fff;
  font-weight: 700;
}
.email-pricing .email-plan-grid article.popular > a {
  background: var(--red);
}
.email-price-note {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 12px;
}
.email-access {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 8vw;
  padding: 110px var(--home-pad);
  background: var(--ink);
  color: #fff;
}
.email-access-copy > p:last-child {
  max-width: 560px;
  color: #aaa59d;
  font-size: 17px;
  line-height: 1.7;
}
.email-device-list {
  border-top: 1px solid #3c3c37;
}
.email-device-list div {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  align-items: center;
  min-height: 105px;
  border-bottom: 1px solid #3c3c37;
}
.email-device-list span {
  color: var(--red2);
  font-weight: 700;
  font-size: 11px;
}
.email-device-list strong {
  font-size: 24px;
}
.email-device-list small {
  color: #aaa59d;
}
.email-platform-section {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 7vw;
  padding: 110px var(--home-pad);
  background: var(--ivory);
}
.email-platform-heading {
  position: sticky;
  top: 140px;
  align-self: start;
}
.email-platform-heading > p:last-child {
  max-width: 500px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}
.email-platform-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.email-platform-grid article {
  display: flex;
  min-height: 430px;
  flex-direction: column;
  padding: 32px;
  border: 1px solid var(--line);
  background: #fff;
}
.email-platform-grid article:nth-child(even) {
  border-left: 0;
}
.email-platform-grid article:nth-child(n + 3) {
  border-top: 0;
}
.email-platform-grid article > span {
  color: var(--red);
  font-weight: 700;
  font-size: 11px;
}
.email-platform-grid article > small {
  margin-top: 55px;
  color: var(--muted);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.08em;
}
.email-platform-grid h3 {
  margin: 12px 0 15px;
  font-size: 34px;
  letter-spacing: -0.045em;
}
.email-platform-grid p {
  color: var(--muted);
  line-height: 1.65;
}
.email-platform-grid .platform-price {
  margin-top: auto;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  font-size: 12px;
  font-weight: 700;
}
.email-platform-grid a {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
}
.email-platform-grid a:hover {
  color: var(--red);
}
.email-migration {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 8vw;
  padding: 110px var(--home-pad);
  background: #e8e2d8;
}
.email-migration > div:last-child > p:not(.kicker) {
  max-width: 700px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}
.email-migration .button {
  margin-top: 18px;
}
.email-migration-visual {
  display: grid;
  min-height: 420px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 25px;
  padding: 40px;
  border: 1px solid #c3baae;
  background:
    linear-gradient(rgba(23, 23, 20, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 23, 20, 0.04) 1px, transparent 1px), #f5f1ea;
  background-size: 38px 38px;
}
.email-migration-visual > div {
  text-align: center;
}
.email-migration-visual span {
  display: block;
  margin-bottom: 16px;
  color: var(--muted);
  font-weight: 700;
  font-size: 10px;
}
.email-migration-visual i {
  display: block;
  width: 110px;
  height: 78px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  transform: rotate(-5deg);
}
.email-migration-visual > div:last-child i {
  border-color: var(--red);
  transform: rotate(5deg);
}
.email-migration-visual > b {
  color: var(--red);
  font-size: 50px;
  font-weight: 400;
}
.email-faq {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 8vw;
  padding: 110px var(--home-pad);
  background: #fff;
}
.email-faq > div:first-child {
  position: sticky;
  top: 130px;
  align-self: start;
}
.email-status {
  margin: 0;
}

@media (max-width: 1100px) {
  .email-hero {
    grid-template-columns: 1fr;
    padding-top: 70px;
  }
  .email-hero-visual {
    min-height: 480px;
  }
  .email-core-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .email-core-grid article:nth-child(2) {
    border-right: 0;
  }
  .email-core-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
  .email-platform-section,
  .email-migration,
  .email-faq {
    grid-template-columns: 1fr;
  }
  .email-platform-heading,
  .email-faq > div:first-child {
    position: static;
  }
}

@media (max-width: 760px) {
  .email-hero {
    min-height: 0;
    gap: 45px;
    padding: 65px 20px;
  }
  .email-hero-copy h1 {
    font-size: clamp(50px, 15vw, 68px);
  }
  .email-hero-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .email-hero-actions .button {
    justify-content: space-between;
  }
  .email-hero-points {
    justify-content: space-between;
  }
  .email-hero-points span {
    padding-right: 10px;
    margin-right: 10px;
  }
  .email-hero-visual {
    min-height: 330px;
    border-radius: 26px 0 26px 26px;
  }
  .email-page-nav {
    top: 72px;
    justify-content: flex-start;
    padding: 0 12px;
  }
  .email-intro {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 75px 20px;
  }
  .email-core,
  .email-pricing,
  .email-access,
  .email-platform-section,
  .email-migration,
  .email-faq {
    padding: 80px 20px;
  }
  .email-core header {
    grid-template-columns: 1fr;
  }
  .email-core-grid {
    grid-template-columns: 1fr;
  }
  .email-core-grid article,
  .email-core-grid article:nth-child(2) {
    min-height: 220px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .email-core-grid article:last-child {
    border-bottom: 0;
  }
  .email-core-grid h3 {
    margin-top: 45px;
  }
  .email-device-list div {
    grid-template-columns: 50px 1fr;
    padding: 18px 0;
  }
  .email-device-list small {
    grid-column: 2;
    margin-top: 5px;
  }
  .email-platform-grid {
    grid-template-columns: 1fr;
  }
  .email-platform-grid article,
  .email-platform-grid article:nth-child(even),
  .email-platform-grid article:nth-child(n + 3) {
    min-height: 390px;
    border: 1px solid var(--line);
    border-bottom: 0;
  }
  .email-platform-grid article:last-child {
    border-bottom: 1px solid var(--line);
  }
  .email-migration-visual {
    min-height: 300px;
    padding: 22px;
    gap: 12px;
  }
  .email-migration-visual i {
    width: 70px;
    height: 52px;
  }
}

/* Company page — simplified narrative */
.company-v2 {
  background: #fff;
}
.company-v2-hero {
  min-height: 500px;
  padding: 105px var(--home-pad) 95px;
  background: radial-gradient(circle at 88% 12%, rgba(213, 34, 34, 0.09), transparent 27%), #fff;
}
.company-v2-hero .eyebrow {
  margin-bottom: 32px;
}
.company-v2-hero h1 {
  max-width: 1120px;
  margin: 0;
  font-size: clamp(52px, 5.3vw, 76px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.05em;
}
.company-v2-hero h1 strong {
  color: var(--red);
  font-weight: 500;
}
.company-v2-hero > p:last-child {
  max-width: 640px;
  margin: 38px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.65;
}
.company-v2-story {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: 7vw;
  padding: 105px var(--home-pad);
  background: #e8e2d8;
}
.company-v2-story figure {
  position: relative;
  margin: 0;
  padding: 34px 0 0 28px;
}
.company-v2-story figure img {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  aspect-ratio: 1.18;
  object-fit: cover;
  border-radius: 26px 0 26px 26px;
  box-shadow: 0 26px 65px rgba(49, 35, 19, 0.14);
}
.company-v2-ring {
  position: absolute;
  z-index: 1;
  top: -18px;
  left: -28px;
  width: 230px;
  height: 230px;
  border: 30px solid var(--red);
  border-radius: 50%;
}
.company-v2-story figcaption {
  position: relative;
  z-index: 3;
  width: max-content;
  margin: -20px 24px 0 auto;
  padding: 16px 22px;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 15px;
  font-weight: 700;
}
.company-v2-story figcaption span {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
}
.company-v2-story .kicker,
.company-v2-timeline .kicker {
  color: var(--red);
  font-size: 13px;
  line-height: 1.5;
}
.company-v2-story h2 {
  max-width: 700px;
  margin: 16px 0 30px;
  font-size: clamp(40px, 4.3vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}
.company-v2-copy {
  max-width: 700px;
}
.company-v2-copy p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}
.company-v2-story blockquote {
  max-width: 700px;
  margin: 28px 0 0;
  padding: 22px 0 0;
  border-top: 1px solid #bcb3a7;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.55;
}
.company-v2-signature {
  margin: 22px 0 0;
  font-size: 15px;
  font-weight: 700;
}
.company-v2-signature span {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
}
.company-v2-timeline {
  display: grid;
  grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1.35fr);
  gap: 7vw;
  padding: 95px var(--home-pad);
  background: #fff;
}
.company-v2-timeline-title h2 {
  margin: 14px 0 0;
  font-size: clamp(38px, 3.8vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}
.company-v2-years {
  border-top: 1px solid var(--line);
}
.company-v2-years article {
  display: grid;
  min-height: 125px;
  grid-template-columns: 105px 1fr;
  align-items: center;
  gap: 25px;
  border-bottom: 1px solid var(--line);
}
.company-v2-years article > strong {
  color: var(--red);
  font-size: 22px;
}
.company-v2-years h3 {
  margin: 0 0 5px;
  font-size: 20px;
}
.company-v2-years p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

@media (max-width: 1000px) {
  .company-v2-story,
  .company-v2-timeline {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .company-v2-hero,
  .company-v2-story,
  .company-v2-timeline {
    padding: 75px 20px;
  }
  .company-v2-hero {
    min-height: 0;
  }
  .company-v2-hero h1 {
    font-size: clamp(44px, 12vw, 58px);
    line-height: 1.08;
  }
  .company-v2-hero h1 br {
    display: none;
  }
  .company-v2-hero > p:last-child {
    margin-top: 28px;
    font-size: 17px;
  }
  .company-v2-story {
    gap: 65px;
  }
  .company-v2-story figure {
    padding: 22px 0 0 12px;
  }
  .company-v2-ring {
    top: -15px;
    left: -45px;
    width: 190px;
    height: 190px;
    border-width: 24px;
  }
  .company-v2-story h2 {
    font-size: 40px;
  }
  .company-v2-story figcaption {
    margin-right: 8px;
  }
  .company-v2-years article {
    grid-template-columns: 76px 1fr;
    gap: 15px;
  }
}

/* Email page refinements */
.email-hero-actions {
  gap: 18px;
}
.email-hero-actions .button {
  min-width: 220px;
}
.email-hero-points {
  gap: 28px;
  padding-top: 18px;
}
.email-hero-points span {
  min-width: 120px;
  margin: 0;
  padding: 0 28px 0 0;
}
.email-core header {
  grid-template-columns: 0.62fr 1.38fr;
  align-items: start;
}
.email-core header .kicker {
  margin: 10px 0 0;
  font-size: 16px;
  line-height: 1.5;
}
.email-core header h2 {
  max-width: 850px;
}
.email-pricing .section-head {
  display: block;
  max-width: 1040px;
  margin-bottom: 50px;
}
.email-pricing .section-head .kicker {
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.5;
}
.email-pricing .section-head h2 {
  margin: 0;
}
.email-pricing-copy {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}
.email-pricing .email-plan-grid article {
  display: flex;
  min-height: 500px;
  flex-direction: column;
}
.email-pricing .email-plan-grid article > p {
  margin-bottom: 8px;
}
.email-pricing .email-plan-grid ul {
  margin: 14px 0 22px;
}
.email-faq {
  grid-template-columns: 0.92fr 1.08fr;
}
.email-faq .kicker {
  margin-bottom: 18px;
  font-size: 16px;
  line-height: 1.5;
}
.email-faq h2 {
  margin-top: 0;
  font-size: clamp(40px, 4.2vw, 62px);
  white-space: nowrap;
}

@media (max-width: 1100px) {
  .email-core header {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .email-core header .kicker {
    margin: 0;
  }
  .email-faq {
    grid-template-columns: 1fr;
  }
  .email-faq h2 {
    white-space: normal;
  }
}

@media (max-width: 760px) {
  .email-hero-actions .button {
    min-width: 0;
  }
  .email-hero-points {
    gap: 0;
  }
  .email-hero-points span {
    min-width: 0;
    padding-right: 10px;
  }
  .email-pricing .email-plan-grid article {
    min-height: 0;
  }
}

/* Backup page */
.backup-page {
  background: var(--ivory);
}
.backup-hero {
  display: grid;
  min-height: 720px;
  grid-template-columns: minmax(0, 0.92fr) minmax(470px, 1.08fr);
  align-items: center;
  gap: 6vw;
  padding: 78px var(--home-pad);
  background: radial-gradient(circle at 4% 7%, rgba(213, 34, 34, 0.08), transparent 25%), #fff;
}
.backup-hero-copy {
  max-width: 780px;
}
.backup-hero-copy h1 {
  margin: 18px 0 25px;
  font-size: clamp(58px, 6.2vw, 92px);
  line-height: 0.92;
  letter-spacing: -0.065em;
}
.backup-hero-copy h1 em {
  color: var(--red);
  font-weight: 500;
}
.backup-hero-copy .lead {
  max-width: 690px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}
.backup-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 30px;
}
.backup-hero-actions .button {
  min-width: 220px;
}
.backup-hero-actions .ghost {
  border-color: var(--line);
  color: var(--ink);
}
.backup-hero-points {
  display: flex;
  gap: 28px;
  margin-top: 32px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.backup-hero-points span {
  min-width: 120px;
  padding-right: 28px;
  border-right: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}
.backup-hero-points span:last-child {
  border: 0;
}
.backup-hero-points b {
  display: block;
  color: var(--ink);
  font-size: 16px;
}
.backup-hero-visual {
  position: relative;
  min-height: 540px;
  margin: 0;
  overflow: hidden;
  border-radius: 42px 0 42px 42px;
  background: var(--red);
  box-shadow: 0 35px 90px rgba(132, 14, 19, 0.25);
}
.backup-hero-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.backup-page-nav {
  position: sticky;
  top: 96px;
  z-index: 35;
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  overflow-x: auto;
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}
.backup-page-nav a {
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}
.backup-page-nav a:hover {
  background: var(--ink);
  color: #fff;
}
.backup-page-nav a:last-child {
  background: var(--red);
  color: #fff;
}
.backup-intro {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: end;
  gap: 8vw;
  padding: 105px var(--home-pad);
}
.backup-intro .kicker,
.backup-process .kicker,
.backup-plans .kicker,
.backup-restore .kicker,
.backup-faq .kicker,
.backup-final .kicker {
  color: var(--red);
}
.backup-intro h2,
.backup-process h2,
.backup-plans h2,
.backup-restore h2,
.backup-faq h2,
.backup-final h2 {
  margin: 14px 0 0;
  font-size: clamp(42px, 5vw, 70px);
  line-height: 0.97;
  letter-spacing: -0.055em;
}
.backup-intro > p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}
.backup-solutions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.backup-solutions article {
  display: flex;
  min-height: 650px;
  flex-direction: column;
  padding: 55px var(--home-pad);
  background: #fff;
}
.backup-solutions article + article {
  border-left: 1px solid var(--line);
  background: #e8e2d8;
}
.backup-solutions article > span {
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
}
.backup-solutions h2 {
  max-width: 620px;
  margin: 75px 0 22px;
  font-size: clamp(40px, 4.4vw, 64px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}
.backup-solutions p {
  max-width: 600px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}
.backup-solutions ul {
  margin: 22px 0 35px;
  padding: 0;
  list-style: none;
}
.backup-solutions li {
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
}
.backup-solutions li:before {
  margin-right: 10px;
  color: var(--red);
  content: "✓";
  font-weight: 700;
}
.backup-solutions a {
  display: flex;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--ink);
  font-weight: 700;
}
.backup-process {
  padding: 110px var(--home-pad);
  background: var(--ink);
  color: #fff;
}
.backup-process .kicker {
  color: var(--red2);
}
.backup-process header {
  display: grid;
  grid-template-columns: 0.48fr 1.52fr;
  gap: 5vw;
}
.backup-process header h2 {
  margin-top: 0;
}
.backup-process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 60px;
  border-block: 1px solid #3c3c37;
}
.backup-process-grid article {
  min-height: 285px;
  padding: 30px;
  border-right: 1px solid #3c3c37;
}
.backup-process-grid article:last-child {
  border-right: 0;
}
.backup-process-grid span {
  color: var(--red2);
  font-size: 11px;
  font-weight: 700;
}
.backup-process-grid h3 {
  margin: 70px 0 13px;
  font-size: 25px;
}
.backup-process-grid p {
  color: #aaa59d;
  line-height: 1.65;
}
.backup-plans {
  padding: 110px var(--home-pad);
  background: #fff;
}
.backup-data-plans {
  background: #e8e2d8;
}
.backup-plans-heading {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: end;
  gap: 7vw;
  margin-bottom: 50px;
}
.backup-plans-heading > p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}
.backup-plan-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.backup-plan-grid article {
  position: relative;
  display: flex;
  min-height: 500px;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--line);
  background: #fff;
}
.backup-plan-grid article + article {
  border-left: 0;
}
.backup-plan-grid article.popular {
  z-index: 2;
  border: 2px solid var(--red);
  padding: 29px;
}
.backup-plan-grid article > small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.backup-plan-grid article > strong {
  margin: 50px 0 4px;
  font-size: 46px;
  letter-spacing: -0.05em;
}
.backup-plan-grid h3 {
  margin: 0 0 12px;
  font-size: 22px;
}
.backup-plan-grid p {
  min-height: 45px;
  color: var(--muted);
}
.backup-plan-grid ul {
  margin: 10px 0 25px;
  padding: 0;
  list-style: none;
}
.backup-plan-grid li {
  display: flex;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}
.backup-plan-grid a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 52px;
  margin-top: auto;
  padding: 0 17px;
  background: var(--ink);
  color: #fff;
  font-weight: 700;
}
.backup-plan-grid article.popular a {
  background: var(--red);
}
.backup-restore {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 8vw;
  padding: 110px var(--home-pad);
  background: var(--ink);
  color: #fff;
}
.backup-restore .kicker {
  color: var(--red2);
}
.backup-restore > div:last-child > p:not(.kicker) {
  max-width: 700px;
  color: #aaa59d;
  font-size: 17px;
  line-height: 1.75;
}
.backup-restore .button {
  margin-top: 18px;
}
.backup-restore-visual {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid #3a3a36;
  background:
    linear-gradient(#292925 1px, transparent 1px), linear-gradient(90deg, #292925 1px, transparent 1px);
  background-size: 42px 42px;
}
.backup-restore-visual:before {
  position: absolute;
  left: 16%;
  right: 16%;
  top: 50%;
  height: 1px;
  background: #77736c;
  content: "";
}
.backup-restore-visual i {
  position: absolute;
  top: calc(50% - 26px);
  width: 52px;
  height: 52px;
  border: 1px solid var(--red2);
  border-radius: 50%;
  background: var(--ink);
}
.backup-restore-visual i:nth-child(1) {
  left: 16%;
}
.backup-restore-visual i:nth-child(2) {
  left: calc(50% - 26px);
}
.backup-restore-visual i:nth-child(3) {
  right: 16%;
}
.backup-restore-visual b {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--red2);
  font-size: 82px;
  font-weight: 400;
}
.backup-faq {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 8vw;
  padding: 110px var(--home-pad);
  background: #fff;
}
.backup-faq > div:first-child {
  position: sticky;
  top: 130px;
  align-self: start;
}
.backup-faq .kicker {
  margin-bottom: 18px;
  font-size: 16px;
}
.backup-faq h2 {
  margin-top: 0;
  font-size: clamp(40px, 4.2vw, 62px);
  white-space: nowrap;
}
.backup-final {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
  padding: 90px var(--home-pad);
  background: #e8e2d8;
}
.backup-final h2 {
  font-size: clamp(40px, 4.6vw, 64px);
}
.backup-final > div > p:last-child {
  color: var(--muted);
  font-size: 17px;
}

@media (max-width: 1100px) {
  .backup-hero {
    grid-template-columns: 1fr;
    padding-top: 70px;
  }
  .backup-hero-visual {
    min-height: 480px;
  }
  .backup-process header {
    grid-template-columns: 1fr;
  }
  .backup-plan-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .backup-plan-grid article:nth-child(3) {
    border-left: 1px solid var(--line);
  }
  .backup-plan-grid article:nth-child(n + 3) {
    border-top: 0;
  }
  .backup-restore,
  .backup-faq {
    grid-template-columns: 1fr;
  }
  .backup-faq > div:first-child {
    position: static;
  }
  .backup-faq h2 {
    white-space: normal;
  }
}

@media (max-width: 760px) {
  .backup-hero {
    min-height: 0;
    gap: 45px;
    padding: 65px 20px;
  }
  .backup-hero-copy h1 {
    font-size: clamp(50px, 15vw, 68px);
  }
  .backup-hero-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .backup-hero-actions .button {
    min-width: 0;
    justify-content: space-between;
  }
  .backup-hero-points {
    gap: 0;
    justify-content: space-between;
  }
  .backup-hero-points span {
    min-width: 0;
    padding-right: 10px;
  }
  .backup-hero-visual {
    min-height: 330px;
    border-radius: 26px 0 26px 26px;
  }
  .backup-page-nav {
    top: 72px;
    justify-content: flex-start;
    padding: 0 12px;
  }
  .backup-intro {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 75px 20px;
  }
  .backup-solutions {
    grid-template-columns: 1fr;
  }
  .backup-solutions article {
    min-height: 560px;
    padding: 70px 20px;
  }
  .backup-solutions article + article {
    border-top: 1px solid var(--line);
    border-left: 0;
  }
  .backup-solutions h2 {
    margin-top: 50px;
  }
  .backup-process,
  .backup-plans,
  .backup-restore,
  .backup-faq,
  .backup-final {
    padding: 80px 20px;
  }
  .backup-process-grid {
    grid-template-columns: 1fr;
  }
  .backup-process-grid article {
    min-height: 220px;
    border-right: 0;
    border-bottom: 1px solid #3c3c37;
  }
  .backup-process-grid article:last-child {
    border-bottom: 0;
  }
  .backup-process-grid h3 {
    margin-top: 45px;
  }
  .backup-plans-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .backup-plan-grid {
    grid-template-columns: 1fr;
  }
  .backup-plan-grid article,
  .backup-plan-grid article:nth-child(3),
  .backup-plan-grid article:nth-child(n + 3) {
    min-height: 0;
    border: 1px solid var(--line);
    border-bottom: 0;
  }
  .backup-plan-grid article:last-child {
    border-bottom: 1px solid var(--line);
  }
  .backup-restore-visual {
    min-height: 300px;
  }
  .backup-final {
    align-items: stretch;
    flex-direction: column;
  }
}

/* Company page */

/* xgrup unified layout and typography system */
:root {
  --site-width: 100%;
  --site-gutter: clamp(24px, 4vw, 64px);
  --display: clamp(52px, 5.6vw, 84px);
  --section-title: clamp(38px, 4vw, 58px);
  --card-title: clamp(24px, 2.2vw, 34px);
  /* ================================================================
     ⚠️ SABİT DEĞER — DEĞİŞTİRMEDEN ÖNCE İKİ KEZ DÜŞÜN
     --home-max, sitenin genişlik standardıdır (kardeş siteler +
     20i.com referans alınarak 31 Tem 2026'da belirlendi). Bu değeri
     değiştirirsen TÜM ana sayfa bölümleri ve header etkilenir.
     Ayrıca: bu dosyada ".home-hero", ".site-header" gibi seçiciler
     için birden fazla tekrar eden/çakışan kural bulunabiliyor
     (geçmişte olduğu gibi) — yeni bir kural eklerken mutlaka
     `grep -n "selector-adı"` ile dosyada başka bir yerde aynı
     seçicinin tekrar tanımlanmadığını kontrol et.
     ================================================================ */
  --home-max: 1320px;
  --home-pad: max(7vw, calc((100% - var(--home-max)) / 2));
}

html,
body {
  max-width: 100%;
  overflow-x: clip;
}
body {
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
button,
input {
  font: inherit;
}

/* Only real Poppins files are used. */
p,
li,
summary,
figcaption,
input,
button,
a {
  font-weight: 400;
}
strong,
b {
  font-weight: 600;
}
.kicker,
.eyebrow,
.popular-label,
.plan-top,
.account,
.button,
.plan-button,
.site-header nav a,
.dropdown a,
.footer-links strong {
  font-weight: 600;
}
h1,
h2,
h3 {
  font-weight: 600;
}

h1,
.home-hero h1,
.hosting-hero h1,
.email-hero h1,
.backup-hero h1,
.domain-hero-v2 h1,
.company-v2-hero h1 {
  font-size: var(--display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.045em;
  text-wrap: balance;
}
h1 em,
h1 strong {
  font-weight: 400;
}

h2,
.section-head h2,
.home-section-title h2,
.infra-intro h2,
.migration-copy h2,
.home-why h2,
.hosting-intro h2,
.hosting-standard h2,
.hosting-platforms h2,
.hosting-migration h2,
.hosting-faq h2,
.email-intro h2,
.email-core h2,
.email-pricing h2,
.email-access h2,
.email-platform-section h2,
.email-migration h2,
.email-faq h2,
.backup-intro h2,
.backup-solutions h2,
.backup-process h2,
.backup-plans h2,
.backup-restore h2,
.backup-faq h2,
.backup-final h2,
.domain-section-heading h2,
.domain-control h2,
.domain-final-cta h2,
.domain-faq-title h2,
.company-v2-story h2,
.company-v2-timeline h2 {
  font-size: var(--section-title);
  font-weight: 600;
  line-height: 1.14;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

h3,
.plan-card h3,
.email-plan-grid h3,
.backup-plan-grid h3,
.email-core-grid h3,
.hosting-standard-grid h3,
.domain-control-grid h3 {
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.lead {
  font-size: clamp(16px, 1.25vw, 19px);
  font-weight: 400;
  line-height: 1.65;
  max-width: 680px;
}
.kicker,
.eyebrow {
  line-height: 1.45;
  letter-spacing: 0.13em;
}

/* Header: same content line as every page. */
.site-header {
  width: 100%;
  height: 92px;
  margin: 0 auto;
  padding-left: var(--home-pad);
  padding-right: var(--home-pad);
  grid-template-columns: 190px minmax(0, 1fr) 190px;
  background: transparent;
}
.site-header .brand {
  justify-self: start;
}
.site-header .brand img {
  width: 172px;
}
.site-header .top-nav {
  justify-self: center;
}
.site-header nav a {
  padding: 0 clamp(15px, 1.4vw, 23px);
  font-size: clamp(15px, 1.2vw, 17px);
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
}
.site-header nav a::after {
  left: 18px;
  right: 18px;
}
.nav-toggle-input,
.nav-toggle-label {
  display: none;
}
.account {
  justify-self: end;
  width: 190px;
  padding: 15px 17px;
  justify-content: space-between;
  font-size: 14px;
  line-height: 1.2;
  white-space: nowrap;
}
.dropdown {
  min-width: 270px;
  padding: 14px 0;
}
.dropdown small {
  font-size: 11px;
  font-weight: 600;
}
.dropdown a,
.dropdown a strong {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
}

.home-hero,
.service-promise,
.home-trust-strip,
.domain-search,
.home-services,
.home-infrastructure,
.founder-story,
.home-migration,
.home-why,
.hosting-hero,
.email-hero,
.backup-hero,
.domain-hero-v2,
.hosting-intro,
.email-intro,
.backup-intro,
.company-v2-hero,
.company-v2-story,
.company-v2-timeline {
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}

.home-hero {
  min-height: 0;
  padding: 90px var(--home-pad);
}
.home-hero-copy {
  max-width: 760px;
}

.plan-card,
.email-plan-grid article,
.backup-plan-grid article,
.email-core-grid article,
.hosting-standard-grid article,
.domain-control-grid article,
.infra-grid article {
  min-width: 0;
}
.plan-card p,
.plan-card li,
.email-plan-grid p,
.email-plan-grid li,
.backup-plan-grid p,
.backup-plan-grid li,
.email-core-grid p,
.hosting-standard-grid p,
.domain-control-grid p,
.infra-grid p {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.65;
}
.price strong,
.email-plan-grid > article > strong,
.backup-plan-grid article > strong {
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.035em;
}
.plans-grid,
.email-plan-grid,
.backup-plan-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.email-plan-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.email-plan-grid article:nth-child(n + 4) {
  margin-top: 24px;
}

.hosting-page-nav,
.email-page-nav,
.backup-page-nav,
.domain-page-nav {
  overflow-x: auto;
  scrollbar-width: thin;
}
.hosting-page-nav a,
.email-page-nav a,
.backup-page-nav a,
.domain-page-nav a {
  flex: 0 0 auto;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
  white-space: nowrap;
}

.company-v2-hero {
  padding-top: 90px;
  padding-bottom: 90px;
}
.company-v2-hero h1 {
  max-width: 1080px;
}
.company-v2-story article {
  min-width: 0;
}
.company-v2-copy p,
.company-v2-story blockquote,
.company-v2-years p {
  line-height: 1.7;
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: 165px minmax(0, 1fr) 165px;
  }
  .site-header .brand img {
    width: 155px;
  }
  .site-header nav a {
    padding: 0 12px;
    font-size: 17px;
  }
  .account {
    width: 165px;
    padding: 13px;
    font-size: 13px;
  }
  .plans-grid,
  .email-plan-grid,
  .backup-plan-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1000px) {
  :root {
    --site-gutter: 24px;
  }
  .site-header {
    grid-template-columns: 1fr auto auto;
    align-items: center;
    column-gap: 12px;
    height: 78px;
  }
  .nav-toggle-input {
    display: none;
  }
  .nav-toggle-label {
    display: flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
  .nav-toggle-label span {
    position: relative;
    display: block;
    width: 22px;
    height: 2px;
    background: var(--ink);
    transition: background 0.15s ease;
  }
  .nav-toggle-label span::before,
  .nav-toggle-label span::after {
    position: absolute;
    left: 0;
    width: 22px;
    height: 2px;
    background: var(--ink);
    content: "";
    transition: transform 0.2s ease;
  }
  .nav-toggle-label span::before {
    top: -7px;
  }
  .nav-toggle-label span::after {
    top: 7px;
  }
  .nav-toggle-input:checked ~ .nav-toggle-label span {
    background: transparent;
  }
  .nav-toggle-input:checked ~ .nav-toggle-label span::before {
    top: 0;
    transform: rotate(45deg);
  }
  .nav-toggle-input:checked ~ .nav-toggle-label span::after {
    top: 0;
    transform: rotate(-45deg);
  }
  .site-header .top-nav {
    position: fixed;
    top: 78px;
    left: 0;
    right: 0;
    z-index: 45;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 24px 50px rgba(20, 18, 16, 0.14);
    transition:
      max-height 0.25s ease,
      padding 0.25s ease;
  }
  .nav-toggle-input:checked ~ .top-nav {
    max-height: 80vh;
    padding: 14px 20px 24px;
    overflow-y: auto;
  }
  .top-nav > a,
  .drop-trigger {
    width: 100%;
    justify-content: space-between;
  }
  .nav-drop {
    position: static;
  }
  .dropdown {
    position: static;
    display: none;
    width: 100%;
    margin: 2px 0 10px;
    border: 0;
    box-shadow: none;
    background: var(--soft, #f4efe6);
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .nav-drop:focus-within .dropdown {
    display: block;
  }
  .account {
    width: auto;
  }
  .home-hero {
    min-height: auto;
    padding-top: 72px;
    padding-bottom: 80px;
  }
}

@media (max-width: 680px) {
  :root {
    --site-gutter: 20px;
    --display: clamp(42px, 12vw, 56px);
    --section-title: clamp(34px, 9vw, 46px);
  }
  body {
    font-size: 15px;
  }
  h1,
  .home-hero h1,
  .hosting-hero h1,
  .email-hero h1,
  .backup-hero h1,
  .domain-hero-v2 h1,
  .company-v2-hero h1 {
    line-height: 1.12;
    letter-spacing: -0.035em;
  }
  .lead {
    font-size: 17px;
    line-height: 1.6;
  }
  .plans-grid,
  .email-plan-grid,
  .backup-plan-grid {
    grid-template-columns: 1fr;
  }
  .email-plan-grid article:nth-child(n + 4) {
    margin-top: 0;
  }
  .company-v2-hero {
    padding-top: 64px;
    padding-bottom: 64px;
  }
  .footer-links {
    grid-template-columns: 1fr 1fr;
  }
}

/* latin-ext */
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(../fonts/poppins-b2409418.woff2) format("woff2");
  unicode-range:
    U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF,
    U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(../fonts/poppins-e1fdbc36.woff2) format("woff2");
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329,
    U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(../fonts/poppins-aba1f567.woff2) format("woff2");
  unicode-range:
    U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF,
    U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(../fonts/poppins-f8670f5c.woff2) format("woff2");
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329,
    U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(../fonts/poppins-41bcef72.woff2) format("woff2");
  unicode-range:
    U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF,
    U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(../fonts/poppins-2b08170a.woff2) format("woff2");
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329,
    U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(../fonts/poppins-9d552f73.woff2) format("woff2");
  unicode-range:
    U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF,
    U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(../fonts/poppins-4cd3c705.woff2) format("woff2");
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329,
    U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
.backup-solutions.single-solution {
  grid-template-columns: 1fr;
}


/* Üst menü başlıklarının kalınlığı paragraf metninden bir tık koyudur. */
.multi-header .top-nav > a,
.multi-header .top-nav > .nav-drop > .drop-trigger {
  font-weight: 400;
}

/* Teklif formu */
.offer-page {
  padding: 150px var(--home-pad) 90px;
  min-height: 75vh;
  background: #f6f9fc;
}

.offer-shell {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 64px;
  align-items: start;
}

.offer-copy h1 { margin: 12px 0 18px; }
.offer-copy > p { color: #5f6b7a; line-height: 1.75; }
.offer-contact { display: grid; gap: 8px; margin-top: 36px; }
.offer-contact a { color: #087f5b; text-decoration: none; }

.offer-form {
  display: grid;
  gap: 18px;
  padding: 34px;
  border: 1px solid #dfe7ef;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 20px 60px rgba(26, 44, 68, .08);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.offer-form label { display: grid; gap: 8px; color: #263445; font-size: 14px; font-weight: 500; }
.offer-form input, .offer-form select, .offer-form textarea {
  width: 100%;
  border: 1px solid #ccd7e2;
  border-radius: 10px;
  padding: 13px 14px;
  background: #fff;
  color: #172231;
  font: inherit;
}
.offer-form textarea { resize: vertical; }
.offer-form input:focus, .offer-form select:focus, .offer-form textarea:focus {
  outline: 2px solid rgba(14, 151, 112, .18);
  border-color: #0e9770;
}
.offer-form .button { border: 0; cursor: pointer; justify-self: start; }
.form-note { margin: 0; color: #738091; font-size: 12px; }
.hp-field { position: absolute !important; left: -10000px !important; }

.form-status {
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 14px;
}
.form-status.success { color: #086c50; background: #e8f8f2; }
.form-status.error { color: #a33a32; background: #fff0ee; }

@media (max-width: 820px) {
  .offer-page { padding-top: 120px; }
  .offer-shell { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .offer-form { padding: 24px; }
}

.backup-solutions.single-solution {
  grid-template-columns: minmax(0, 1fr);
}

/* Üst menüdeki beş ana başlık birebir aynı tipografi değerlerini kullanır. */
.multi-header .top-nav > a,
.multi-header .top-nav > .nav-drop > .drop-trigger {
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(15px, 1.2vw, 17px);
  font-weight: 400;
  line-height: 1;
}

/* İletişim sayfası */
.contact-page {
  padding: 142px var(--site-gutter) 90px;
  background: #f6f9fc;
}

.contact-intro {
  width: min(1120px, 100%);
  margin: 0 auto 42px;
}

.contact-intro h1 {
  max-width: 760px;
  margin: 12px 0 16px;
}

.contact-intro p {
  margin: 0;
  color: #5f6b7a;
  font-size: 17px;
}

.contact-shell {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 46px;
  align-items: start;
}

.contact-details {
  display: grid;
  gap: 18px;
}

.contact-card {
  padding: 28px;
  border: 1px solid #dfe7ef;
  border-radius: 20px;
  background: #fff;
}

.contact-label {
  display: block;
  margin-bottom: 14px;
  color: #0e9770;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
}

.contact-mail {
  color: #172231;
  font-size: 21px;
  font-weight: 600;
  text-decoration: none;
}

.contact-card address {
  color: #4c5969;
  font-style: normal;
  line-height: 1.75;
}

.map-link {
  display: inline-flex;
  gap: 8px;
  margin-top: 18px;
  color: #087f5b;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}

.contact-map {
  width: min(1120px, 100%);
  height: 390px;
  margin: 46px auto 0;
  overflow: hidden;
  border: 1px solid #dfe7ef;
  border-radius: 22px;
  background: #e8eef4;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 820px) {
  .contact-page { padding-top: 112px; }
  .contact-shell { grid-template-columns: 1fr; }
  .contact-map { height: 320px; }
}

/* Paket onay sayfası */
.package-confirm {
  display: flex;
  justify-content: center;
  padding: 150px var(--home-pad) 120px;
  min-height: 60vh;
  background: var(--ivory);
}

.package-confirm-card {
  width: min(560px, 100%);
  padding: 48px 44px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  text-align: center;
  box-shadow: 0 30px 70px rgba(66, 54, 38, 0.1);
}

.package-confirm-check {
  display: flex;
  width: 52px;
  height: 52px;
  margin: 0 auto 22px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-size: 22px;
  font-weight: 700;
}

.package-confirm-card .kicker {
  margin: 0 0 10px;
  color: var(--red);
}

.package-confirm-card h1 {
  margin: 0;
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.package-confirm-price {
  margin-top: 14px;
  color: var(--ink);
}

.package-confirm-price strong {
  font-size: 28px;
  font-weight: 700;
}

.package-confirm-price span {
  margin-left: 3px;
  color: var(--muted);
  font-size: 15px;
}

.package-confirm-note {
  margin: 26px 0 30px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  text-align: left;
}

.package-confirm-note p {
  margin: 0 0 12px;
}

.package-confirm-note p:last-child {
  margin-bottom: 0;
}

.package-confirm-note b {
  color: var(--ink);
}

.package-confirm-continue {
  width: 100%;
}

.package-confirm-back {
  display: inline-block;
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
}

.package-confirm-back:hover {
  color: var(--ink);
}

@media (max-width: 650px) {
  .package-confirm {
    padding: 110px 20px 80px;
  }
  .package-confirm-card {
    padding: 34px 24px;
  }
}

/* ================================================================
   KESİN DÜZELTME (2 satırlık başlıklar) — dosyanın başka yerlerinde
   aynı seçiciler (örn. ".hosting-hero h1", genel "h2" birleşik
   kuralı) daha SONRA tanımlandığı ve "text-wrap: balance" içerdiği
   için önceki font-size kuralları eziliyordu. Bu blok EN SONDA
   olduğu ve !important kullandığı için artık kazanıyor.
   ================================================================ */
.hosting-hero-copy h1 {
  font-size: 52px !important;
  text-wrap: wrap !important;
}
.hosting-hero-copy h1 em {
  font-size: 34px !important;
}
.domain-faq-title h2 {
  font-size: 45px !important;
  text-wrap: wrap !important;
}
.hosting-intro h2 {
  font-size: 44px !important;
  text-wrap: wrap !important;
}
.hosting-intro h2 .line-sub {
  font-size: 21px !important;
}
.hosting-faq h2 {
  font-size: 42px !important;
  text-wrap: wrap !important;
}
