/* Extracted from directadmin.php style block 1 */
/* ── DirectAdmin Blue Theme ── */
:root {
  --color-primary:        #0F6BFF;
  --color-primary-light:  #4D95FF;
  --color-primary-dark:   #0A52CC;
  --color-primary-darker: #072E73;
  --color-secondary:      #1A3A6B;
  --color-secondary-light:#2A5299;
  --color-secondary-dark: #0D1F40;
  --color-accent:         #00C2FF;
  --color-accent-light:   #80E0FF;
  --color-accent-dark:    #0099CC;

  --color-primary-rgb:         15, 107, 255;
  --color-primary-light-rgb:   77, 149, 255;
  --color-primary-dark-rgb:    10,  82, 204;
  --color-primary-darker-rgb:   7,  46, 115;
  --color-secondary-rgb:       26,  58, 107;
  --color-secondary-dark-rgb:  13,  31,  64;
  --color-accent-rgb:           0, 194, 255;

  --border-primary:  rgba(15,107,255,.18);
  --border-secondary:rgba(15,107,255,.10);

  --gradient-horizontal: linear-gradient(90deg,  #0A52CC, #0F6BFF, #00C2FF);
  --gradient-primary:    linear-gradient(135deg, #0D1F40, #0F6BFF, #4D95FF);
  --gradient-card-header:linear-gradient(145deg, #0D1F40, #0A52CC, #0F6BFF);
  --gradient-overlay:    linear-gradient(135deg,
                           rgba(13,31,64,.90),
                           rgba(0,0,0,.80),
                           rgba(15,107,255,.35));

  --shadow-md:   0 10px 20px rgba(15,107,255,.22);
  --shadow-lg:   0 15px 30px rgba(15,107,255,.28);
  --shadow-xl:   0 20px 40px rgba(15,107,255,.16);
  --shadow-glow: 0 0 30px  rgba(15,107,255,.45);
  --shadow-card: 0 30px 50px -15px rgba(15,107,255,.20);
}


/* ── Hero Section ── */
.da-hero {
  position: relative;
  overflow: hidden;
  background: #070F1C;
  padding: 0;
  min-height: 680px;
  display: flex;
  align-items: center;
}

.da-hero__bg {
  position: absolute; inset: 0;
  background-image: url(https://underhost.com/blog/wp-content/uploads/2024/12/tablet-showing-internet-connection-on-screen-2023-11-27-05-04-17-utc-scaled.jpg);
  background-size: cover;
  background-position: center 30%;
  opacity: .18;
}

.da-hero__gradient {
  position: absolute; inset: 0;
  background: linear-gradient(120deg,
    rgba(7,15,28,.97) 0%,
    rgba(13,31,64,.92) 40%,
    rgba(15,107,255,.18) 100%);
}

/* Grid lines decoration */
.da-hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(15,107,255,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,107,255,.07) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

/* Glowing orb */
.da-hero__orb {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15,107,255,.25) 0%, transparent 70%);
  top: -150px; right: -100px;
  pointer-events: none;
}

.da-hero .container { position: relative; z-index: 2; padding: 90px 20px 80px; }

.da-hero__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px;
  background: rgba(15,107,255,.15);
  border: 1px solid rgba(15,107,255,.40);
  border-radius: 50px;
  color: #4D95FF;
  font-size: 12px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 24px;
}

.da-hero__eyebrow span.dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #0F6BFF;
  box-shadow: 0 0 8px #0F6BFF;
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }

.da-hero__title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  margin: 0 0 20px;
  letter-spacing: -1.5px;
}

.da-hero__title em {
  font-style: normal;
  background: linear-gradient(90deg, #0F6BFF, #00C2FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.da-hero__sub {
  font-size: 17px;
  color: rgba(255,255,255,.75);
  line-height: 1.75;
  max-width: 600px;
  margin-bottom: 36px;
}

.da-hero__sub strong { color: #fff; font-weight: 700; }

.da-hero__actions {
  display: flex; gap: 14px; flex-wrap: wrap; align-items: center;
}

.da-btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(90deg, #0A52CC, #0F6BFF);
  color: #fff !important;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border: none;
  box-shadow: 0 8px 24px rgba(15,107,255,.40);
  transition: all .3s ease;
}

.da-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(15,107,255,.55);
  color: #fff !important;
}

.da-btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  color: rgba(255,255,255,.85) !important;
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,.28);
  transition: all .3s ease;
}

.da-btn-outline:hover {
  border-color: rgba(255,255,255,.6);
  color: #fff !important;
  background: rgba(255,255,255,.06);
}

/* Trust strip */
.da-trust-strip {
  display: flex; align-items: center; gap: 28px;
  margin-top: 48px; flex-wrap: wrap;
}

.da-trust-strip__item {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: rgba(255,255,255,.65); font-weight: 600;
}

.da-trust-strip__item i { color: #0F6BFF; font-size: 14px; }

.da-trust-strip__sep {
  width: 4px; height: 4px; border-radius: 50%;
  background: rgba(255,255,255,.2);
}

/* ── Pricing Section ── */
.da-pricing {
  background: #f4f7ff;
  padding: 90px 0 80px;
}

.da-section-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 16px;
  background: rgba(15,107,255,.10);
  border: 1px solid rgba(15,107,255,.25);
  border-radius: 50px;
  color: #0F6BFF;
  font-size: 12px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 16px;
}

.da-section-title {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  color: #0D1F40;
  letter-spacing: -1px;
  margin-bottom: 14px;
  line-height: 1.2;
}

.da-section-title em {
  font-style: normal;
  color: #0F6BFF;
}

.da-section-sub {
  font-size: 16px;
  color: #5a6a85;
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 56px;
}

/* Plan Cards */
.da-plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

@media (max-width: 900px) { .da-plans { grid-template-columns: 1fr; max-width: 480px; } }

.da-plan-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px 32px;
  border: 1.5px solid rgba(15,107,255,.12);
  transition: all .35s ease;
  position: relative;
  overflow: hidden;
}

.da-plan-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0A52CC, #0F6BFF, #00C2FF);
}

.da-plan-card:hover {
  border-color: rgba(15,107,255,.40);
  box-shadow: 0 24px 56px rgba(15,107,255,.14);
  transform: translateY(-6px);
}

.da-plan-card.popular {
  border-color: #0F6BFF;
  box-shadow: 0 20px 48px rgba(15,107,255,.18);
}

.da-plan-card.popular::before {
  height: 4px;
  background: linear-gradient(90deg, #0F6BFF, #00C2FF);
}

.da-plan__badge {
  position: absolute; top: 20px; right: 20px;
  background: linear-gradient(90deg, #0F6BFF, #00C2FF);
  color: #fff;
  font-size: 11px; font-weight: 800;
  letter-spacing: .8px; text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
}

.da-plan__tier {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: #0F6BFF;
  margin-bottom: 10px;
}

.da-plan__name {
  font-size: 24px; font-weight: 800;
  color: #0D1F40; margin-bottom: 6px;
}

.da-plan__tagline {
  font-size: 13px; color: #7a8aaa;
  margin-bottom: 28px;
}

.da-plan__price {
  display: flex; align-items: flex-end; gap: 4px;
  margin-bottom: 28px;
}

.da-plan__amount {
  font-size: 52px; font-weight: 800;
  color: #0F6BFF; line-height: 1;
  letter-spacing: -2px;
}

.da-plan__currency {
  font-size: 22px; font-weight: 700;
  color: #0F6BFF; margin-bottom: 6px;
}

.da-plan__period {
  font-size: 14px; color: #8a9ab8;
  margin-bottom: 8px;
}

.da-plan__divider {
  height: 1px;
  background: rgba(15,107,255,.10);
  margin: 0 0 24px;
}

.da-plan__features {
  list-style: none; padding: 0; margin: 0 0 32px;
}

.da-plan__features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: #3d4f6b;
  padding: 7px 0;
  border-bottom: 1px solid rgba(15,107,255,.06);
}

.da-plan__features li:last-child { border-bottom: none; }

.da-plan__features li i {
  color: #0F6BFF; margin-top: 2px;
  font-size: 13px; flex-shrink: 0;
}

.da-plan__features li strong { color: #0D1F40; }

.da-plan__cta {
  display: block; text-align: center;
  background: linear-gradient(90deg, #0A52CC, #0F6BFF);
  color: #fff !important;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700; font-size: 15px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(15,107,255,.30);
  transition: all .3s ease;
}

.da-plan__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(15,107,255,.45);
  color: #fff !important;
}

.da-plan__cta--outline {
  background: transparent;
  color: #0F6BFF !important;
  border: 2px solid #0F6BFF;
  box-shadow: none;
}

.da-plan__cta--outline:hover {
  background: #0F6BFF;
  color: #fff !important;
}

/* ── Why DirectAdmin Section ── */
.da-why {
  background: #fff;
  padding: 90px 0;
}

.da-why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

@media (max-width: 900px) { .da-why__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .da-why__grid { grid-template-columns: 1fr; } }

.da-why__card {
  background: #f4f7ff;
  border-radius: 16px;
  padding: 32px 28px;
  border: 1.5px solid rgba(15,107,255,.10);
  transition: all .3s ease;
}

.da-why__card:hover {
  border-color: rgba(15,107,255,.35);
  box-shadow: 0 16px 40px rgba(15,107,255,.12);
  transform: translateY(-4px);
  background: #fff;
}

.da-why__icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, #0A52CC, #0F6BFF);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}

.da-why__icon i { color: #fff; font-size: 20px; }

.da-why__card h3 {
  font-size: 18px; font-weight: 800;
  color: #0D1F40; margin-bottom: 10px;
}

.da-why__card p {
  font-size: 14px; color: #5a6a85; line-height: 1.7; margin: 0;
}

/* ── Features Showcase ── */
.da-features {
  background: linear-gradient(160deg, #070F1C 0%, #0D1F40 100%);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

.da-features::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(15,107,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,107,255,.08) 1px, transparent 1px);
  background-size: 50px 50px;
}

.da-features .container { position: relative; z-index: 1; }

.da-features__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 56px;
}

@media (max-width: 768px) { .da-features__grid { grid-template-columns: 1fr; } }

.da-feature-item {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(15,107,255,.20);
  border-radius: 16px;
  padding: 28px 24px;
  display: flex; gap: 18px;
  transition: all .3s ease;
}

.da-feature-item:hover {
  background: rgba(15,107,255,.10);
  border-color: rgba(15,107,255,.45);
  transform: translateX(4px);
}

.da-feature-item__icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(15,107,255,.20);
  border: 1px solid rgba(15,107,255,.35);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}

.da-feature-item__icon i { color: #4D95FF; font-size: 18px; }

.da-feature-item h4 {
  font-size: 16px; font-weight: 700;
  color: #fff; margin-bottom: 6px;
}

.da-feature-item p { font-size: 13px; color: rgba(255,255,255,.6); line-height: 1.6; margin: 0; }

/* ── Demo CTA Section ── */
.da-demo {
  background: #f4f7ff;
  padding: 80px 0;
}

.da-demo__inner {
  background: linear-gradient(135deg, #0D1F40, #0A52CC);
  border-radius: 24px;
  padding: 64px 56px;
  display: flex; align-items: center;
  gap: 48px;
  position: relative;
  overflow: hidden;
}

.da-demo__inner::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%230F6BFF' fill-opacity='0.07'%3E%3Ccircle cx='20' cy='20' r='1'/%3E%3C/g%3E%3C/svg%3E");
}

.da-demo__img {
  flex-shrink: 0;
  width: 220px;
  position: relative; z-index: 1;
}

.da-demo__img img { width: 100%; filter: drop-shadow(0 20px 40px rgba(0,0,0,.5)); }

.da-demo__text { position: relative; z-index: 1; }

.da-demo__text h2 {
  font-size: 36px; font-weight: 800;
  color: #fff; letter-spacing: -1px;
  margin-bottom: 16px;
}

.da-demo__text h2 em {
  font-style: normal;
  color: #00C2FF;
}

.da-demo__text p {
  font-size: 16px; color: rgba(255,255,255,.75);
  line-height: 1.7; margin-bottom: 28px;
}

.da-demo__actions { display: flex; gap: 14px; flex-wrap: wrap; }

@media (max-width: 768px) {
  .da-demo__inner { flex-direction: column; padding: 40px 28px; gap: 28px; }
  .da-demo__img { width: 140px; }
  .da-demo__text h2 { font-size: 28px; }
}

/* ── Interface Preview ── */
.da-interface {
  background: #fff;
  padding: 80px 0;
}

.da-interface__frame {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(13,31,64,.18);
  border: 1px solid rgba(15,107,255,.12);
  margin-top: 48px;
}

.da-interface__bar {
  background: #0D1F40;
  padding: 12px 20px;
  display: flex; align-items: center; gap: 8px;
}

.da-interface__bar span {
  width: 12px; height: 12px; border-radius: 50%;
}

.da-interface__bar span:nth-child(1) { background: #ff5f57; }
.da-interface__bar span:nth-child(2) { background: #febc2e; }
.da-interface__bar span:nth-child(3) { background: #28c840; }

.da-interface__bar .url {
  width: auto; height: auto; border-radius: 6px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.5);
  font-size: 12px; padding: 4px 14px;
  font-family: 'IBM Plex Mono', monospace;
  margin-left: 10px;
}

.da-interface__frame img {
  width: 100%; display: block;
}

/* ── Migration Section ── */
.da-migration {
  background: linear-gradient(135deg, rgba(15,107,255,.04), rgba(15,107,255,.01));
  padding: 90px 0;
  border-top: 1px solid rgba(15,107,255,.08);
}

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

@media (max-width: 768px) { .da-migration__layout { grid-template-columns: 1fr; } }

.da-migration__img {
  position: relative;
}

.da-migration__img img {
  width: 100%;
  animation: float 6s ease-in-out infinite;
}

.da-migration__free-badge {
  position: absolute;
  top: 20px; right: 20px;
  background: linear-gradient(90deg, #0F6BFF, #00C2FF);
  color: #fff;
  font-size: 13px; font-weight: 800;
  padding: 8px 18px;
  border-radius: 50px;
  letter-spacing: .5px;
  box-shadow: 0 8px 20px rgba(15,107,255,.40);
}

.da-migration__content h2 {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  color: #0D1F40;
  letter-spacing: -1px;
  margin-bottom: 18px;
  line-height: 1.2;
}

.da-migration__content h2 em {
  font-style: normal;
  color: #0F6BFF;
}

.da-migration__content p {
  font-size: 15px; color: #5a6a85;
  line-height: 1.75; margin-bottom: 16px;
}

.da-migration__features {
  display: flex; flex-direction: column; gap: 16px;
  margin: 28px 0 36px;
}

.da-migration__feat {
  display: flex; gap: 14px; align-items: flex-start;
}

.da-migration__feat__icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: linear-gradient(135deg, rgba(15,107,255,.12), rgba(0,194,255,.08));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(15,107,255,.18);
  transition: all .3s ease;
}

.da-migration__feat:hover .da-migration__feat__icon {
  background: linear-gradient(135deg, #0A52CC, #0F6BFF);
}

.da-migration__feat__icon i { color: #0F6BFF; font-size: 16px; }

.da-migration__feat:hover .da-migration__feat__icon i { color: #fff; }

.da-migration__feat h4 {
  font-size: 16px; font-weight: 700;
  color: #0D1F40; margin-bottom: 4px;
}

.da-migration__feat p {
  font-size: 13px; color: #7a8aaa;
  margin: 0; line-height: 1.55;
}

/* ── Comparison Table ── */
.da-compare {
  background: #0D1F40;
  padding: 80px 0;
}

.da-compare__table {
  background: rgba(255,255,255,.04);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(15,107,255,.20);
  margin-top: 48px;
}

.da-compare__head {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  background: rgba(15,107,255,.15);
  border-bottom: 1px solid rgba(15,107,255,.20);
}

.da-compare__head > div {
  padding: 18px 24px;
  font-weight: 800; font-size: 14px;
  color: #fff;
  letter-spacing: .3px;
}

.da-compare__head > div:not(:first-child) {
  text-align: center;
  border-left: 1px solid rgba(15,107,255,.15);
}

.da-compare__head > div.highlight {
  background: rgba(15,107,255,.25);
  color: #4D95FF;
}

.da-compare__row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  border-bottom: 1px solid rgba(15,107,255,.08);
  transition: background .2s;
}

.da-compare__row:last-child { border-bottom: none; }

.da-compare__row:hover { background: rgba(15,107,255,.05); }

.da-compare__row > div {
  padding: 16px 24px;
  font-size: 14px;
  color: rgba(255,255,255,.80);
  display: flex; align-items: center;
}

.da-compare__row > div:not(:first-child) {
  text-align: center;
  justify-content: center;
  border-left: 1px solid rgba(15,107,255,.08);
}

.da-compare__row > div.highlight {
  background: rgba(15,107,255,.08);
  color: #fff;
}

.da-compare__row > div i.fa-check { color: #0F6BFF; }
.da-compare__row > div i.fa-times { color: rgba(255,255,255,.25); }

@media (max-width: 768px) {
  .da-compare__head,
  .da-compare__row { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
  .da-compare__head > div,
  .da-compare__row > div { padding: 12px 10px; font-size: 12px; }
}

/* Responsive helpers */
@media (max-width: 600px) {
  .da-plans { max-width: 100%; }
  .da-demo__inner { padding: 32px 20px; }
}

/* ── Section padding adjustments ── */
.da-section-center { text-align: center; }

