/* =============================================================================
   CloudSurph Ghost Theme — screen.css
   Design: Magenta (#ff00cc) → Deep Blue/Purple (#333399) gradient
   Font: Open Sans (Google Fonts)
   ============================================================================= */

/* =============================================================================
   1. CSS VARIABLES / DESIGN TOKENS
   ============================================================================= */
:root {
    /* Brand gradients */
    --gradient-hero:    linear-gradient(175deg, #ff00cc 0%, #333399 100%);
    --gradient-alt:     linear-gradient(237deg, #ff00cc 0%, #333399 100%);

    /* Colors */
    --color-magenta:    #ff00cc;
    --color-purple:     #333399;
    --color-nav-btn:    #e91e8c;
    --color-amber:      #ff8f00;
    --color-white:      #ffffff;
    --color-bg-light:   #f5f5f5;
    --color-body:       #333333;
    --color-muted:      #666666;
    --color-border:     #e0e0e0;
    --color-heading:    #000000;
    --color-footer-bg:  #1a1a2e;
    --color-footer-txt: #aaaaaa;

    /* Typography */
    --font-family:      'Open Sans', Arial, sans-serif;
    --font-body:        16px;
    --line-height:      1.6;

    /* Spacing */
    --container-max:    1200px;
    --container-pad:    24px;
    --section-pad-v:    80px;

    /* Effects */
    --radius-sm:        4px;
    --radius-md:        8px;
    --radius-lg:        16px;
    --radius-pill:      50px;
    --shadow-card:      0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-header:    0 2px 12px rgba(0, 0, 0, 0.1);
    --transition:       0.25s ease;
}

/* =============================================================================
   2. RESET & BASE
   ============================================================================= */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: var(--font-body);
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-body);
    line-height: var(--line-height);
    color: var(--color-body);
    background-color: var(--color-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: var(--color-magenta);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover,
a:focus {
    color: var(--color-purple);
    text-decoration: underline;
}

ul,
ol {
    list-style: none;
}

address {
    font-style: normal;
}

/* Focus visible — accessibility */
:focus-visible {
    outline: 3px solid var(--color-magenta);
    outline-offset: 2px;
}

/* =============================================================================
   3. LAYOUT UTILITIES
   ============================================================================= */
.container {
    max-width: var(--container-max);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--container-pad);
    padding-right: var(--container-pad);
}

/* =============================================================================
   4. TYPOGRAPHY HELPERS
   ============================================================================= */

/* Section label — small amber uppercase above headings */
.section-label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-amber);
    margin-bottom: 12px;
}

/* Section heading — large, black on white backgrounds */
.section-heading {
    font-size: clamp(28px, 5vw, 40px);
    font-weight: 800;
    color: var(--color-heading);
    line-height: 1.2;
    margin-bottom: 40px;
}

/* =============================================================================
   5. BUTTONS
   ============================================================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: var(--font-family);
    font-size: 15px;
    font-weight: 700;
    border-radius: var(--radius-pill);
    border: 2px solid transparent;
    cursor: pointer;
    transition: background-color var(--transition),
                color var(--transition),
                border-color var(--transition),
                transform var(--transition),
                box-shadow var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn:hover,
.btn:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    text-decoration: none;
}

/* Magenta filled button */
.btn--magenta {
    background-color: var(--color-nav-btn);
    color: var(--color-white);
    border-color: var(--color-nav-btn);
}
.btn--magenta:hover,
.btn--magenta:focus-visible {
    background-color: var(--color-purple);
    border-color: var(--color-purple);
    color: var(--color-white);
}

/* Gradient button */
.btn--gradient {
    background: var(--gradient-hero);
    color: var(--color-white);
    border-color: transparent;
}
.btn--gradient:hover,
.btn--gradient:focus-visible {
    background: var(--gradient-alt);
    color: var(--color-white);
}

/* White button (on dark/gradient bg) */
.btn--white {
    background-color: var(--color-white);
    color: var(--color-purple);
    border-color: var(--color-white);
}
.btn--white:hover,
.btn--white:focus-visible {
    background-color: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
}

/* White outline button (on dark/gradient bg) */
.btn--white-outline {
    background-color: transparent;
    color: var(--color-white);
    border-color: rgba(255,255,255,0.6);
}
.btn--white-outline:hover,
.btn--white-outline:focus-visible {
    background-color: var(--color-white);
    color: var(--color-purple);
    border-color: var(--color-white);
}

/* Outline button (on white bg) */
.btn--outline {
    background-color: transparent;
    color: var(--color-purple);
    border-color: var(--color-purple);
}
.btn--outline:hover,
.btn--outline:focus-visible {
    background-color: var(--color-purple);
    color: var(--color-white);
}

/* Large hero button size modifier */
.btn--hero {
    padding: 15px 36px;
    font-size: 16px;
}

/* Small nav button */
.btn--nav {
    padding: 8px 20px;
    font-size: 14px;
    border-radius: var(--radius-pill);
}

/* Sliding fill CTA — white → solid magenta slides in from left on hover */
.btn--slide-fill {
    background-image: linear-gradient(to right, var(--color-nav-btn) 50%, var(--color-white) 50%);
    background-size: 200% 100%;
    background-position: right center;
    color: var(--color-nav-btn);
    border: 2px solid var(--color-nav-btn);
    transition: background-position 0.35s ease,
                color 0.35s ease,
                transform var(--transition),
                box-shadow var(--transition);
}

.btn--slide-fill:hover,
.btn--slide-fill:focus-visible {
    background-position: left center;
    color: var(--color-white);
    border-color: var(--color-nav-btn);
}

/* Shimmer sweep CTA — solid magenta with a diagonal glint every ~4s */
.btn--cta-shimmer {
    background-color: var(--color-nav-btn);
    color: var(--color-white);
    border-color: var(--color-nav-btn);
    position: relative;
    overflow: hidden;
}

.btn--cta-shimmer::before {
    content: '';
    position: absolute;
    top: -60%;
    left: 0;
    width: 40%;
    height: 220%;
    background: linear-gradient(
        to right,
        rgba(255,255,255,0)    0%,
        rgba(255,255,255,0.45) 50%,
        rgba(255,255,255,0)    100%
    );
    transform: translateX(-200%) skewX(-20deg);
    animation: btn-shimmer 3.5s linear 1s infinite;
}

@keyframes btn-shimmer {
    0%,
    75%  { transform: translateX(-200%) skewX(-20deg); }
    100% { transform: translateX(450%)  skewX(-20deg); }
}

.btn--cta-shimmer:hover,
.btn--cta-shimmer:focus-visible {
    background-color: var(--color-purple);
    border-color: var(--color-purple);
    color: var(--color-white);
    box-shadow: 0 6px 28px rgba(255, 0, 204, 0.5);
}

.btn--cta-shimmer:hover::before,
.btn--cta-shimmer:focus-visible::before {
    animation-play-state: paused;
}

/* =============================================================================
   6. ANNOUNCEMENT BAR
   ============================================================================= */
.announcement-bar {
    background-color: var(--color-footer-bg);
    color: var(--color-white);
    font-size: 13px;
    padding: 8px 0;
    position: relative;
    z-index: 200;
}

.announcement-bar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.announcement-bar__text {
    font-weight: 600;
    color: var(--color-white);
}

.announcement-bar__actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.announcement-bar__link {
    color: #cccccc;
    text-decoration: none;
    font-size: 13px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    font-family: var(--font-family);
    transition: color var(--transition);
}
.announcement-bar__link:hover,
.announcement-bar__link:focus-visible {
    color: var(--color-white);
    text-decoration: underline;
}

.announcement-bar__dropdown {
    position: relative;
}

.announcement-bar__login-btn {
    display: flex;
    align-items: center;
    gap: 4px;
}

.announcement-bar__dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    min-width: 160px;
    overflow: hidden;
    z-index: 300;
}

.announcement-bar__dropdown-menu a {
    display: block;
    padding: 10px 16px;
    color: var(--color-body);
    font-size: 14px;
    transition: background-color var(--transition);
    text-decoration: none;
}

.announcement-bar__dropdown-menu a:hover {
    background-color: var(--color-bg-light);
    color: var(--color-magenta);
}

.announcement-bar__dropdown.is-open .announcement-bar__dropdown-menu {
    display: block;
}

/* =============================================================================
   7. HEADER
   ============================================================================= */
.site-header {
    background-color: var(--color-white);
    box-shadow: var(--shadow-header);
    position: sticky;
    top: 0;
    z-index: 100;
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 16px;
}

/* Logo */
.site-header__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.site-header__logo-icon {
    display: block;
    width: 40px;
    height: 28px;
}

.site-header__logo-text {
    font-size: 22px;
    font-weight: 800;
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

/* Desktop Nav */
.site-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.site-nav__list {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
}

.site-nav__link {
    display: block;
    padding: 8px 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-body);
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: color var(--transition), background-color var(--transition);
    white-space: nowrap;
}

.site-nav__link:hover,
.site-nav__link:focus-visible {
    color: var(--color-magenta);
    background-color: rgba(255, 0, 204, 0.06);
    text-decoration: none;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm);
}

.hamburger__line {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-body);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}

.hamburger.is-active .hamburger__line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.hamburger.is-active .hamburger__line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.hamburger.is-active .hamburger__line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}
/*SUBMENU*/
/* Ensure the parent is the reference point */
.has-submenu {
    position: relative;
}

/* Hide submenu by default */
.site-nav__submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    min-width: 220px;
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 10px 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
}

/* Show submenu on hover */
.has-submenu:hover .site-nav__submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Submenu Links */
.site-nav__submenu li a {
    display: block;
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.2s;
}

.site-nav__submenu li a:hover {
    background: #f8f8f8;
    color: #ff00cc; /* Using your brand magenta */
}

/* Tiny arrow icon styling */
.arrow {
    font-size: 10px;
    margin-left: 5px;
    display: inline-block;
}
/* Mobile Nav */
.mobile-nav {
    display: none;
    background-color: var(--color-white);
    border-top: 1px solid var(--color-border);
    padding: 16px 0;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.mobile-nav.is-open {
    display: block;
}

.mobile-nav__list {
    display: flex;
    flex-direction: column;
    list-style: none;
}

.mobile-nav__link {
    display: block;
    padding: 12px var(--container-pad);
    font-size: 16px;
    font-weight: 600;
    color: var(--color-body);
    text-decoration: none;
    border-bottom: 0px solid var(--color-border);
    transition: color var(--transition), background-color var(--transition);
}

.mobile-nav__link:last-child {
    border-bottom: none;
}

.mobile-nav__link:hover,
.mobile-nav__link:focus-visible {
    color: var(--color-magenta);
    background-color: rgba(255, 0, 204, 0.04);
    text-decoration: none;
}

.mobile-nav__link--cta {
    color: var(--color-magenta);
    font-weight: 700;
}
/* Layout for link and toggle button */
.mobile-nav__link-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.submenu-toggle {
    background: none;
    border: none;
    color: #000; /* Assuming dark background for mobile nav */
    font-size: 24px;
    padding: 10px 20px;
    cursor: pointer;
}

/* Submenu hidden by default */
.mobile-nav__submenu {
    list-style: none;
    padding-left: 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: rgba(255, 255, 255, 0.05);
}

/* Open State */
.has-mobile-submenu.is-open .mobile-nav__submenu {
    max-height: 500px; /* Adjust based on content */
}

.has-mobile-submenu.is-open .submenu-toggle span {
    display: inline-block;
    transform: rotate(45deg); /* Turns + into x */
    color: #ff00cc; /* Your brand magenta */
}

.mobile-nav__sublink {
    display: block;
    padding: 10px 0;
    color: #000;
    text-decoration: none;
    font-size: 15px;
}
.mobile-nav__sublink:hover{text-decoration:none;}
/* =============================================================================
   8. HERO SECTION
   ============================================================================= */
.payment-img{
  margin: 0 auto;
  text-align: right;
}
 .payment-img img {
  max-width: 180px;
  text-align: right;
  display: inline-block;
  margin: 0;
  padding: 0;
  line-height: 0;
  vertical-align: middle;
}
.hero {
  /* Using ../ to jump out of the 'css' folder and into the 'images' folder */
  background-image:linear-gradient(175deg,rgba(255, 0, 204, 0.7) 0%, 
    rgba(51, 51, 153, 0.7) 100%), url("../images/Cloudsurph-Self-Managed-hosting-and-Fully-managed-hosting.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;  
  padding: 50px 0 40px;
  color: var(--color-white);
  overflow: hidden;
  position: relative;
}

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

.hero__content {
    max-width: 740px;
}

.hero__heading {
    font-size: clamp(24px, 5.5vw, 34px);
    font-weight: 800;
    line-height: 1.15;
    color: var(--color-white);
    margin-bottom: 20px;
}

/* Rotating text container — inline */
.txt-rotate {
    display: inline-block;
    border-right: 3px solid rgba(255,255,255,0.7);
    padding-right: 4px;
    min-width: 2ch;
    color: rgba(255,255,255,0.95);
}

.hero__subtext {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255,255,255,0.9);
    margin-bottom: 28px;
    max-width: 100%;
}

.hero__bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 36px;
}

.hero__bullet {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: rgba(255,255,255,0.92);
    font-weight: 600;
}

.hero__check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background-color: rgba(255,255,255,0.2);
    border-radius: 50%;
    color: var(--color-white);
    font-size: 13px;
    flex-shrink: 0;
}

/* Hero badge SVG */
.hero__badge-wrap {
    flex-shrink: 0;
}

.hero__badge {
    width: 220px;
    height: 220px;
}
.hero__badge-wrap {
  position: absolute;
  right: 5%;
  bottom: 5%;
}
.hero__badge-svg {
    width: 100%;
    height: 100%;
}

.hero__badge-arc-text {
    font-size: 11px;
    font-family: var(--font-family);
    font-weight: 700;
    letter-spacing: 1px;
    fill: rgba(255,255,255,0.7);
}

.hero__badge-num {
    font-size: 48px;
    font-weight: 800;
    font-family: var(--font-family);
    fill: var(--color-white);
}

.hero__badge-label-top,
.hero__badge-label-bot {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    font-family: var(--font-family);
    fill: rgba(255,255,255,0.85);
}

.hero__badge-stars {
    font-size: 14px;
    fill: rgba(255,255,255,0.7);
    font-family: var(--font-family);
}

/* =============================================================================
   9. SERVER PLANS SECTION
   ============================================================================= */
.plans-section {
    padding: var(--section-pad-v) 0;
    background-color: var(--color-white);
    text-align: center;
    border-bottom: 1px solid var(--color-border);
}

.plans-tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 40px;
    border-radius: var(--radius-pill);
    overflow: hidden;
    border: 2px solid var(--color-border);
    display: inline-flex;
}

.plans-tab {
    display: inline-block;
    padding: 12px 32px;
    font-size: 15px;
    font-weight: 700;
    color: var(--color-muted);
    background-color: var(--color-white);
    text-decoration: none;
    transition: background-color var(--transition), color var(--transition);
    cursor: pointer;
}

.plans-tab:hover,
.plans-tab:focus-visible {
    color: var(--color-magenta);
    background-color: rgba(255,0,204,0.05);
    text-decoration: none;
}

.plans-tab--active {
    background: var(--gradient-hero);
    color: var(--color-white);
}

.plans-embed {
    max-width: 90%;
    margin: 0 auto;
}

.plans-embed__note {
    background-color: #fff8e1;
    border-left: 4px solid var(--color-amber);
    padding: 14px 20px;
    margin-bottom: 0px;
    border-radius: var(--radius-sm);
    text-align: left;
    font-size: 14px;
    color: var(--color-body);
}

.plans-embed__frame {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.plans-embed__cta {
    color: var(--color-muted);
    font-size: 15px;
    margin-bottom: 4px;
}

.plans-embed__frame .btn {
    min-width: 240px;
}

/* =============================================================================
   10. WHY CLOUDSURPH / FEATURE CARDS
   ============================================================================= */
.features-section {
    padding: var(--section-pad-v) 0;
    background-color: var(--color-white);
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 16px;
}

.feature-card {
    padding: 40px 28px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    text-align: center;
    transition: box-shadow var(--transition), transform var(--transition);
}

.feature-card:hover {
    box-shadow: var(--shadow-card);
    transform: translateY(-4px);
}

.feature-card__icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
}

.feature-card__icon svg {
    width: 100%;
    height: 100%;
}

.feature-card__title {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-heading);
    margin-bottom: 12px;
}

.feature-card__text {
    font-size: 15px;
    color: var(--color-muted);
    line-height: 1.7;
}

/* =============================================================================
   11. SELF MANAGED VS FULLY MANAGED (GRADIENT SECTION)
   ============================================================================= */
.managed-section {
    background-image:linear-gradient(175deg,rgba(255, 0, 204, 0.7) 0%, 
    rgba(51, 51, 153, 0.7) 100%), url("../images/Cloudsurph-Self-Managed-hosting-and-Fully-managed-hosting.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat; 
    padding: var(--section-pad-v) 0;
    color: var(--color-white);
    text-align: center;
}

.managed-section__heading {
    font-size: clamp(22px, 4vw, 34px);
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 48px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1.3;
}

.managed-section__cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 860px;
    margin: 0 auto 48px;
    text-align: left;
}

.managed-section__col {
    background-color: rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    border: 1px solid rgba(255,255,255,0.2);
}

.managed-section__col-icon {
    font-size: 36px;
    margin-bottom: 12px;
    line-height: 1;
}

.managed-section__col--bad .managed-section__col-icon {
    color: rgba(255,255,255,0.6);
}

.managed-section__col--good .managed-section__col-icon {
    color: #80ff80;
}

.managed-section__col-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 16px;
}

.managed-section__col-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.managed-section__col-list li {
    font-size: 15px;
    color: rgba(255,255,255,0.85);
    padding-left: 16px;
    position: relative;
}

.managed-section__col-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: rgba(255,255,255,0.5);
}

/* =============================================================================
   12. CLOUD MACHINES GRID
   ============================================================================= */
.cloud-machines {
    padding: var(--section-pad-v) 0;
    background-color: var(--color-bg-light);
    text-align: center;
}

.cloud-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 16px;
}

.cloud-card {
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 36px 24px;
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: transform var(--transition), box-shadow var(--transition);
}

.cloud-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(255, 0, 204, 0.12);
}

.cloud-card__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
}

.cloud-card__icon svg {
    width: 100%;
    height: 100%;
}

.cloud-card__title {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-heading);
    margin-bottom: 10px;
}

.cloud-card__text {
    font-size: 14px;
    color: var(--color-muted);
    line-height: 1.65;
}

/* =============================================================================
   13. WORLDWIDE LOCATIONS
   ============================================================================= */
.locations-section {
    padding: var(--section-pad-v) 0;
    background-color: var(--color-white);
    text-align: center;
}

.world-map {
    margin-top: 16px;
}

.world-map__svg {
    width: 100%;
    max-width: 900px;
    height: auto;
    margin: 0 auto 32px;
    display: block;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    background-color: #eef2ff;
    padding: 16px;
}

.map-dot__label {
    font-size: 9px;
    font-family: var(--font-family);
    font-weight: 700;
    fill: #333;
}

.map-dot__pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%   { r: 14; opacity: 0.25; }
    50%  { r: 20; opacity: 0.12; }
    100% { r: 14; opacity: 0.25; }
}

.locations-map {
    margin-top: 32px;
}

.locations-map__img {
    width: 100%;
    max-width: 960px;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: var(--radius-md);
}

.locations-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 8px;
}

.location-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-body);
    background-color: var(--color-bg-light);
    padding: 8px 16px;
    border-radius: var(--radius-pill);
    border: 1px solid var(--color-border);
}

.location-tag__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.location-tag__dot--magenta {
    background-color: var(--color-magenta);
}

.location-tag__dot--blue {
    background-color: var(--color-purple);
}

/* =============================================================================
   14. FAQ SECTION
   ============================================================================= */
.faq-section {
    padding: var(--section-pad-v) 0;
    background-color: var(--color-bg-light);
    text-align: center;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    text-align: left;
    margin-top: 16px;
}

.faq-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Details / Summary accordion */
.faq-item {
    background-color: var(--color-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    overflow: hidden;
    transition: box-shadow var(--transition);
}

.faq-item[open] {
    box-shadow: 0 4px 16px rgba(255, 0, 204, 0.08);
}

.faq-item__question {
    padding: 18px 20px;
    font-size: 16px;
    font-weight: 700;
    color: var(--color-heading);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style: none;
    user-select: none;
    transition: background-color var(--transition);
}

/* Remove default marker in Firefox */
.faq-item__question::-webkit-details-marker {
    display: none;
}

.faq-item__question::after {
    content: '+';
    font-size: 22px;
    font-weight: 400;
    color: var(--color-magenta);
    flex-shrink: 0;
    transition: transform var(--transition);
}

.faq-item[open] > .faq-item__question::after {
    content: '−';
}

.faq-item__question:hover {
    background-color: rgba(255, 0, 204, 0.04);
}

.faq-item__body {
    padding: 4px 20px 20px;
    font-size: 15px;
    color: var(--color-muted);
    line-height: 1.7;
    border-top: 1px solid var(--color-border);
}
.faq-item__body.ron_grid2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding: 10px;
}
.faq-item__body.ron_grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 10px;
}
.faq-item__body a {
    color: var(--color-magenta);
}
.faq-qa{padding:10px;}
.faq-qa__i {
  font-size: 24px;
  color: var(--color-magenta);
}
/*
.faq-qa {
    margin-bottom: 16px;
    padding-top: 16px;
}

.faq-qa:first-child {
    padding-top: 16px;
}
*/
.faq-qa__q {
    font-weight: 700;
    color: var(--color-body);
    margin-bottom: 6px;
    font-size: 14px;
}

.faq-qa__a {
    color: var(--color-muted);
    font-size: 14px;
}

/* =============================================================================
   15. EXPERTS ON DEMAND (GRADIENT SECTION)
   ============================================================================= */
.experts-section {
    background-image:linear-gradient(175deg,rgba(255, 0, 204, 0.7) 0%, 
    rgba(51, 51, 153, 0.7) 100%), url("../images/cloudsurph-VPS-banner-image.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat; 
    padding: var(--section-pad-v) 0;
    text-align: center;
    color: var(--color-white);
}

.experts-section__heading {
    font-size: clamp(22px, 4vw, 36px);
    font-weight: 800;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 20px;
    line-height: 1.3;
}

.experts-section__text {
    max-width: 680px;
    margin: 0 auto 40px;
    font-size: 17px;
    line-height: 1.75;
    color: rgba(255,255,255,0.9);
}

/* =============================================================================
   16. SATISFACTION GUARANTEED
   ============================================================================= */
.satisfaction-section {
    padding: var(--section-pad-v) 0;
    background-color: var(--color-white);
    text-align: center;
}

.satisfaction-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 880px;
    margin: 0 auto;
}

.satisfaction-card {
    
    overflow: hidden;
}

.satisfaction-card__inner {
     background-image:linear-gradient(237deg,rgba(255, 0, 204, 0.7) 0%, 
    rgba(51, 51, 153, 0.7) 100%), url("../images/hosting-company-06.png");
  background-size: cover;
  background-position: left bottom 0px;
  background-repeat: no-repeat; 
  border-radius:24px 24px 24px 24px;
    padding: 48px 36px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    height: 100%;
}

.satisfaction-card__icon {
    font-size: 48px;
    line-height: 1;
}

.satisfaction-card__title {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.3;
}

.satisfaction-card__text {
    font-size: 15px;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
}

/* =============================================================================
   17. BLOG SECTION
   ============================================================================= */
.blog-section {
    padding: var(--section-pad-v) 0;
    background-color: var(--color-bg-light);
    text-align: center;
}

.post-feed {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 48px;
    text-align: left;
}

/* Post Card */
.post-card {
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    transition: transform var(--transition), box-shadow var(--transition);
}

.post-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

.post-card__image-link {
    display: block;
    overflow: hidden;
}

.post-card__image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    transition: transform var(--transition);
}

.post-card:hover .post-card__image {
    transform: scale(1.04);
}

.post-card__content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.post-card__tag {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-magenta);
    margin-bottom: 8px;
    text-decoration: none;
    display: inline-block;
}

.post-card__tag:hover {
    color: var(--color-purple);
}

.post-card__title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 10px;
}

.post-card__title-link {
    color: var(--color-heading);
    text-decoration: none;
    transition: color var(--transition);
}

.post-card__title-link:hover {
    color: var(--color-magenta);
}

.post-card__excerpt {
    font-size: 14px;
    color: var(--color-muted);
    line-height: 1.65;
    flex: 1;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.post-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    color: var(--color-muted);
    border-top: 1px solid var(--color-border);
    padding-top: 12px;
    margin-top: auto;
}

.post-card__date,
.post-card__read-time {
    font-size: 12px;
    color: var(--color-muted);
}

/* Pagination */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 48px;
}

.pagination__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 700;
    color: var(--color-purple);
    border: 2px solid var(--color-purple);
    border-radius: var(--radius-pill);
    text-decoration: none;
    transition: background-color var(--transition), color var(--transition);
}

.pagination__btn:hover {
    background-color: var(--color-purple);
    color: var(--color-white);
    text-decoration: none;
}

.pagination__info {
    font-size: 14px;
    color: var(--color-muted);
}

/* =============================================================================
   18. FOOTER
   ============================================================================= */
.site-footer {
    background-color: var(--color-footer-bg);
    color: var(--color-footer-txt);
}

.site-footer__main {
    padding: 64px 0 48px;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.site-footer__heading {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.site-footer__links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    list-style: none;
}

.site-footer__links a {
    font-size: 14px;
    color: var(--color-footer-txt);
    text-decoration: none;
    transition: color var(--transition);
}

.site-footer__links a:hover,
.site-footer__links a:focus-visible {
    color: var(--color-white);
    text-decoration: underline;
}

.site-footer__address p {
    font-size: 14px;
    color: var(--color-footer-txt);
    line-height: 1.7;
}

.site-footer__email a {
    color: var(--color-footer-txt);
    text-decoration: none;
    transition: color var(--transition);
}

.site-footer__email a:hover {
    color: var(--color-magenta);
}

.site-footer__address a {
    color: var(--color-footer-txt);
    text-decoration: none;
    transition: color var(--transition);
}

.site-footer__address a:hover {
    color: var(--color-white);
}

.site-footer__about-text {
    font-size: 14px;
    color: var(--color-footer-txt);
    line-height: 1.7;
    margin-bottom: 24px;
}

/* "Made in the DMV" circular badge */
.dmv-badge__img {
    width: 90px;
    height: auto;
    display: block;
    margin-top: 12px;
}

/* Footer bottom bar */
.site-footer__bottom {
    background-color: rgba(0,0,0,0.3);
    padding: 16px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.site-footer__bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}

.site-footer__copyright,
.site-footer__ghost {
    font-size: 13px;
    color: var(--color-footer-txt);
}

.site-footer__copyright a,
.site-footer__ghost a {
    color: var(--color-footer-txt);
    text-decoration: none;
    transition: color var(--transition);
}

.site-footer__copyright a:hover,
.site-footer__ghost a:hover {
    color: var(--color-white);
}

/* =============================================================================
   19. SINGLE POST / PAGE
   ============================================================================= */

/* Post full hero header */
.post-full__header {
    background: var(--gradient-hero);
    padding: 50px 0;
    text-align: center;
    color: var(--color-white);
}

.post-full__tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.8);
    background-color: rgba(255,255,255,0.15);
    padding: 4px 14px;
    border-radius: var(--radius-pill);
    margin-bottom: 16px;
    text-decoration: none;
    transition: background-color var(--transition);
}

.post-full__tag:hover {
    background-color: rgba(255,255,255,0.25);
    color: var(--color-white);
    text-decoration: none;
}

.post-full__title {
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 800;
    color: var(--color-white);
    line-height: 1.2;
    margin-bottom: 16px;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}

.post-full__meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-size: 14px;
    color: rgba(255,255,255,0.75);
}

.post-full__image {
    max-height: 100%;
    overflow: hidden;
}

.post-full__image img {
    width: 100%;
    object-fit: cover;
    max-height: 100%;
}

.post-full__content {
    max-width: 780px;
    padding-top: 56px;
    padding-bottom: 56px;
    font-size: 17px;
    line-height: 1.8;
    color: var(--color-body);
}

.post-full__content h2,
.post-full__content h3,
.post-full__content h4 {
    font-weight: 700;
    color: var(--color-heading);
    margin-top: 40px;
    margin-bottom: 16px;
    line-height: 1.3;
}

.post-full__content h2 { font-size: 28px; }
.post-full__content h3 { font-size: 22px; }
.post-full__content h4 { font-size: 18px; }

.post-full__content p {
    margin-bottom: 24px;
}

.post-full__content a {
    color: var(--color-magenta);
    text-decoration: underline;
}

.post-full__content ul,
.post-full__content ol {
    padding-left: 28px;
    margin-bottom: 24px;
}

.post-full__content ul { list-style: disc; }
.post-full__content ol { list-style: decimal; }

.post-full__content li {
    margin-bottom: 8px;
}

.post-full__content blockquote {
    border-left: 4px solid var(--color-magenta);
    padding: 16px 24px;
    margin: 32px 0;
    background-color: rgba(255, 0, 204, 0.04);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-style: italic;
    color: var(--color-muted);
}

.post-full__content code {
    background-color: var(--color-bg-light);
    padding: 2px 6px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-family: 'Courier New', monospace;
    color: var(--color-purple);
}

.post-full__content pre {
    background-color: #1e1e2e;
    color: #cdd6f4;
    padding: 24px;
    border-radius: var(--radius-md);
    overflow-x: auto;
    margin-bottom: 24px;
    font-size: 14px;
    line-height: 1.6;
}

.post-full__content pre code {
    background: none;
    padding: 0;
    color: inherit;
    font-size: inherit;
}

.post-full__content img {
    border-radius: var(--radius-md);
    margin: 24px 0;
}

.post-full__content table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 24px;
    font-size: 15px;
}

.post-full__content th,
.post-full__content td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--color-border);
}

.post-full__content th {
    font-weight: 700;
    background-color: var(--color-bg-light);
    color: var(--color-heading);
}

.post-full__content hr {
    border: none;
    border-top: 2px solid var(--color-border);
    margin: 40px 0;
}

/* Author bio */
.post-full__footer {
    padding-top: 48px;
    padding-bottom: 56px;
    border-top: 1px solid var(--color-border);
}

.post-full__author-bio {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.post-full__author-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    flex-shrink: 0;
    object-fit: cover;
}

.post-full__author-name {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
}

.post-full__author-name a {
    color: var(--color-heading);
    text-decoration: none;
}

.post-full__author-name a:hover {
    color: var(--color-magenta);
}

.post-full__author-desc {
    font-size: 14px;
    color: var(--color-muted);
    line-height: 1.6;
}

/* Generic page */
.page-full__header {
    background: var(--gradient-hero);
    padding: 72px 0 56px;
    text-align: center;
}

.page-full__title {
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 800;
    color: var(--color-white);
}

.page-full__content {
    max-width: 860px;
    padding-top: 56px;
    padding-bottom: 56px;
    font-size: 17px;
    line-height: 1.8;
}

/*Submenu*/
/* =============================================================================
   20. VPS PAGE
   ============================================================================= */
   /*
.vps-hero {
    position: relative;
    background: var(--gradient-hero);
    padding: 50px 0;
    color: var(--color-white);
    text-align: center;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.vps-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.vps-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(175deg, rgba(255,0,204,0.85) 0%, rgba(51,51,153,0.9) 100%);
    z-index: 1;
}
*/
  /* Using ../ to jump out of the 'css' folder and into the 'images' folder */
.vps-hero {
  background-image:linear-gradient(175deg,rgba(255, 0, 204, 0.7) 0%, 
    rgba(51, 51, 153, 0.7) 100%), url("../images/Cloudsurph-Self-Managed-hosting-and-Fully-managed-hosting.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;  
  padding: 50px 0 40px;
  color: var(--color-white);
  overflow: hidden;
  position: relative;
}
.vps-hero__inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
}

.vps-hero__heading {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 800;
    color: var(--color-white);
    line-height: 1.15;
    max-width: 100%;
}

.vps-hero__subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    max-width: 560px;
    line-height: 1.7;
}

.vps-content {
    padding: var(--section-pad-v) 0;
    background-color: var(--color-white);
}

.vps-content__inner {
    max-width: 900px;
    font-size: 17px;
    line-height: 1.8;
    color: var(--color-body);
}

.vps-content__inner h2,
.vps-content__inner h3 {
    font-weight: 700;
    color: var(--color-heading);
    margin-top: 40px;
    margin-bottom: 16px;
}

.vps-content__inner h2 { font-size: 28px; }
.vps-content__inner h3 { font-size: 22px; }

.vps-content__inner p { margin-bottom: 20px; }

.vps-more-cta {  
  background-image:linear-gradient(175deg,rgba(255, 0, 204, 0.7) 0%, 
    rgba(51, 51, 153, 0.7) 100%), url("../images/Cloudsurph-Self-Managed-hosting-and-Fully-managed-hosting.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;  
  padding: 50px 0 40px;
  color: var(--color-white);
  overflow: hidden;
  position: relative;
text-align: center;
}

.vps-more-cta__heading {
    font-size: clamp(22px, 4vw, 34px);
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 16px;
    line-height: 1.3;
}

.vps-more-cta__text {
    max-width: 640px;
    margin: 0 auto 40px;
    font-size: 17px;
    line-height: 1.75;
    color: rgba(255,255,255,0.9);
}

.vps-more-cta__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* =============================================================================
   21. CONTACT PAGE
   ============================================================================= */
.contact-hero {
    background: var(--gradient-hero);
    padding: 96px 0 72px;
    text-align: center;
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.contact-hero__heading {
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 800;
    color: var(--color-white);
    line-height: 1.25;
    margin-bottom: 16px;
}

.contact-hero__subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.7;
}

.contact-reach {
    padding: var(--section-pad-v) 0;
    background-color: var(--color-white);
    text-align: center;
}

.contact-reach__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    max-width: 860px;
    margin: 0 auto;
    text-align: left;
}

.contact-reach__icon {
    margin-bottom: 20px;
}

.contact-reach__col-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-heading);
    margin-bottom: 12px;
}

.contact-reach__col-text {
    font-size: 15px;
    color: var(--color-muted);
    line-height: 1.7;
    margin-bottom: 24px;
}

.contact-reach__address {
    font-size: 15px;
    color: var(--color-body);
    line-height: 1.8;
    margin-bottom: 20px;
}

.contact-reach__col-note {
    font-size: 14px;
    color: var(--color-muted);
    margin-top: 12px;
}

.contact-reach__col-note a {
    color: var(--color-magenta);
}

.contact-content {
    padding: 48px 0;
    background-color: var(--color-bg-light);
}

/* =============================================================================
   22. ARCHIVE PAGES (TAG / AUTHOR)
   ============================================================================= */
.archive-header {
    background: var(--gradient-hero);
    padding: 72px 0 56px;
    text-align: center;
    color: var(--color-white);
}

.archive-header__title {
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 800;
    color: var(--color-white);
    line-height: 1.2;
    margin-bottom: 12px;
}

.archive-header__desc {
    font-size: 17px;
    color: rgba(255,255,255,0.85);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
}

.archive-header__link {
    display: inline-block;
    margin-top: 16px;
    color: rgba(255,255,255,0.8);
    font-weight: 700;
    text-decoration: none;
    transition: color var(--transition);
}

.archive-header__link:hover {
    color: var(--color-white);
}

.archive-header__avatar {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    border: 4px solid rgba(255,255,255,0.4);
}

.archive-feed {
    padding: var(--section-pad-v) 0;
    background-color: var(--color-bg-light);
}

/* =============================================================================
   23. ERROR PAGE
   ============================================================================= */
.error-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding: var(--section-pad-v) 0;
    background: var(--gradient-hero);
    text-align: center;
    color: var(--color-white);
}

.error-page__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.error-page__code {
    font-size: 120px;
    font-weight: 800;
    line-height: 1;
    color: rgba(255,255,255,0.2);
}

.error-page__title {
    font-size: 36px;
    font-weight: 800;
    color: var(--color-white);
}

.error-page__message {
    font-size: 18px;
    color: rgba(255,255,255,0.85);
    max-width: 480px;
    line-height: 1.7;
}
/* =============================================
   Koenig Editor — Required Width Classes
   ============================================= */

.kg-width-wide {
    width: 85vw;
    max-width: 1200px;
    margin: 0 auto;
}

.kg-width-full {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}
.ron_onedollar_btn {
        display: none;
    }
/* Target all tables within your blog post content */
.ron_single table, 
.kg-canvas table {
    width: 100%;
    margin: 32px 0;
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    font-family: inherit;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

/* Header Styling - Using your brand gradient */
.ron_single table thead th,
.kg-canvas table thead th {
    background: linear-gradient(90deg, rgba(255,0,204,1) 0%, rgba(51,51,153,1) 100%);
    color: #ffffff;
    padding: 16px 20px;
    text-align: left;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.05em;
    border: none;
}

/* Cell Styling */
.ron_single table td,
.kg-canvas table td {
    padding: 14px 20px;
    border-bottom: 1px solid #f3f4f6;
    color: #374151;
    font-size: 15px;
    line-height: 1.5;
}

/* Zebra Striping for Rows */
.ron_single table tbody tr:nth-child(even),
.kg-canvas table tbody tr:nth-child(even) {
    background-color: #f9fafb;
}

/* Remove border from the last row */
.ron_single table tbody tr:last-child td,
.kg-canvas table tbody tr:last-child td {
    border-bottom: none;
}

/* First Column Bold Highlight */
.ron_single table td:first-child,
.kg-canvas table td:first-child {
    font-weight: 600;
    color: #111827;
    background-color: rgba(255, 255, 255, 0.5);
}

/* Hover Effect for Rows */
.ron_single table tbody tr:hover,
.kg-canvas table tbody tr:hover {
    background-color: #f3f4f6;
    transition: background-color 0.2s ease;
}

/* Mobile Responsive - Allows table to scroll if too wide */
@media (max-width: 768px) {
    .ron_single, .kg-canvas {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .ron_single table, 
    .kg-canvas table {
        min-width: 500px; /* Prevents text squishing on mobile */
    }
}
/* =============================================================================
   24. RESPONSIVE — 1024px (Large tablets)
   ============================================================================= */
@media (max-width: 1024px) {

    .hero__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero__content {
        max-width: 100%;
    }

    .hero__subtext {
        max-width: 100%;
    }

    .hero__bullets {
        align-items: center;
    }

    .hero__badge-wrap {
        display: none;
    }

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

    .cloud-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .site-footer__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .post-feed {
        grid-template-columns: repeat(2, 1fr);
    }

}

/* =============================================================================
   25. RESPONSIVE — 768px (Tablets)
   ============================================================================= */
@media (max-width: 768px) {

    :root {
        --section-pad-v: 56px;
    }

    /* Header — show hamburger, hide desktop nav */
    .site-nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    /* Announcement bar - stack on mobile */
    .announcement-bar__inner {
        justify-content: center;
        text-align: center;
    }

    .announcement-bar__actions, .ron_onedollar_btn {
        display: inherit !important;
    }
    .payment-img {
        margin: 0 auto;
        text-align: left;
        display: flex;
    }
    .payment-img img {
        max-width: 120px;
    }
    .announcement-bar__actions {        
        gap: 5px;
    }
    .announcement-bar__link{
        font-size: 12px;
    }
    /* Hero */
    .hero {
        padding: 72px 0 56px;
    }

    /* Plans */
    .plans-tabs {
        flex-direction: column;
        border-radius: var(--radius-md);
        width: 100%;
        max-width: 320px;
    }

    .plans-tab {
        text-align: center;
    }

    /* Features */
    .features-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Managed */
    .managed-section__cols {
        grid-template-columns: 1fr;
    }

    /* Cloud grid */
    .cloud-grid {
        grid-template-columns: 1fr 1fr;
    }

    /* FAQ */
    .faq-grid {
        grid-template-columns: 1fr;
    }

    /* Satisfaction */
    .satisfaction-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
    }

    /* Blog feed */
    .post-feed {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .site-footer__grid {
        grid-template-columns: 1fr 1fr;
    }

    /* Contact */
    .contact-reach__grid {
        grid-template-columns: 1fr;
    }

    /* VPS more CTA */
    .vps-more-cta__actions {
        flex-direction: column;
        align-items: center;
    }
}

/* =============================================================================
   26. RESPONSIVE — 480px (Mobile phones)
   ============================================================================= */
@media (max-width: 480px) {

    :root {
        --container-pad: 16px;
        --section-pad-v: 48px;
    }

    .hero {
        padding: 56px 0 48px;
    }

    .hero__heading {
        font-size: 28px;
    }

    .hero__bullets {
        align-items: flex-start;
    }

    /* Cloud grid single column */
    .cloud-grid {
        grid-template-columns: 1fr;
    }

    /* Footer single column */
    .site-footer__grid {
        grid-template-columns: 1fr;
    }

    .site-footer__bottom-inner {
        flex-direction: column;
        text-align: center;
    }

    /* Post full */
    .post-full__content {
        font-size: 16px;
        padding-top: 40px;
        padding-bottom: 40px;
    }

    /* Managed section */
    .managed-section__heading {
        font-size: 20px;
    }

    .btn--hero {
        padding: 13px 24px;
        font-size: 15px;
    }
}

.site-header__logo-image {
    max-height: 40px; /* Match your SVG height */
    width: auto;
    display: block;
}

/* Optional: Add some spacing */
.site-header__logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/*Pricing table*/
/* Container & Tabs */
.ron-pricing-container { padding: 0px 10px 30px; text-align: center; }

.pricing-tabs { 
    display: flex; 
    justify-content: center; 
    gap: 10px; 
    flex-wrap: wrap; 
    margin-bottom: 30px; 
}

.tab-btn {
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    color: white;
    font-weight: bold;
    cursor: pointer;
    background: #333; /* Default inactive */
    transition: 0.3s ease;
}

/* Your Requested Gradient for Active Tab */
.tab-btn.active, .tab-btn:hover {
    background: linear-gradient(90deg, rgba(255,0,204,1) 0%, rgba(51,51,153,1) 100%);
    box-shadow: 0 4px 15px rgba(255,0,204,0.3);
}

/* Layout Logic */
.plan-group { display: none; }
.plan-group.active { display: block; animation: fadeIn 0.5s; }

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
}

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
/* Toggle Styling */
/* Container for alignment */
.pricing-toggle-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 30px 0;
    font-family: inherit;
}

/* Hide the actual checkbox */
.ron-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* The background of the switch */
.ron-switch {
    position: relative;
    display: inline-block;
    width: 54px;
    height: 28px;
}

.ron-slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: #333; /* Dark background like your tabs */
    transition: .4s;
    border-radius: 34px;
}

/* The white circle/knob */
.ron-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

/* When checked: change background to your brand gradient */
input:checked + .ron-slider {
    background: linear-gradient(90deg, rgba(255,0,204,1) 0%, rgba(51,51,153,1) 100%);
}

/* Move the circle to the right */
input:checked + .ron-slider:before {
    transform: translateX(26px);
}

.label-text {
    font-weight: 500;
    color: #444;
}
/* Hide the monthly/quarterly toggle when the Metal tab is active */
.ron-pricing-container:has(.tab-btn[data-plan="metal"].active) .pricing-toggle-container {
    display: none;
}
/* Grid Styling */
.vps-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 20px;
}

.vps-card {
    background: #ffffff;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 25px;
    width: 260px;
    text-align: center;
    transition: 0.3s;
}

.vps-card.featured {
    background: #e10d7a;
    color: #fff;
    transform: scale(1.05);
}
/* Container for the Grid */
.plan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    padding: 20px 0;
}

/* Base Card - White with light border */
.plan-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

/* Featured Card - Magenta border and badge */
.plan-card--featured {
    border: 2px solid #ff00cc;
    box-shadow: 0 10px 30px rgba(255, 0, 204, 0.1);
}

.plan-card__badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff00cc;
    color: #fff;
    padding: 4px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
}

/* Pink Checkmarks for Features */
.plan-card__features {
    list-style: none;
    padding: 0;
    text-align: left;
    margin: 20px 0;
}

.plan-card__features li {
    padding: 8px 0 8px 30px;
    position: relative;
    font-size: 14px;
}

.plan-card__features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ff00cc;
    font-weight: bold;
}

/* Divider Line */
.plan-card__divider {
    height: 1px;
    background: #eee;
    margin: 20px 0;
}
/* single post content with feature image */
.ron_single {
    margin-top:20px;
    overflow: auto; /* Ensures the container expands to fit the floated image */
}

.floated-image {
    float: right;
    width: 40%;        /* Adjust width as needed */
    margin-left: 25px; /* Creates space between text and image */
    margin-bottom: 20px;
    margin-top:20px;
}

.floated-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px; /* Optional styling */
}
/* Targeting the Unordered List */
.ron_single ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem; /* Space for the bullets */
    list-style-type: disc; /* Standard bullet style */
}

/* Targeting individual List Items */
.ron_single ul li {
    margin-bottom: 0.5rem; /* Space between each point */
    padding-left: 0.5rem;
}

/* Handling Nested Lists (lists inside lists) */
.ron_single ul ul {
    margin: 0.5rem 0;
    list-style-type: circle;
}

/* Ensure lists don't overlap the floated image */
.ron_single ul {
    overflow: hidden; /* This keeps bullets from overlapping the floated image area */
    display: block;   /* Standard block behavior */
}
/* --- Post Content Spacing --- */

.ron_single {
    /* Sets a base for the vertical rhythm */
    line-height: 1.75; 
}

/* Paragraph spacing */
.ron_single p {
    margin-top: 0;
    margin-bottom: 1.5rem; /* Consistent gap between blocks of text */
}

/* General Heading Styles */
.ron_single h1, 
.ron_single h2, 
.ron_single h3, 
.ron_single h4, 
.ron_single h5, 
.ron_single h6 {
    color: #000;
    line-height: 1.2;
    margin-top: 2.5rem;   /* Larger gap above to separate sections */
    margin-bottom: 1rem;  /* Smaller gap below to stay close to content */
    font-weight: 700;
}

/* Remove top margin from the very first element so there's no weird gap at the top */
.ron_single > *:first-child {
    margin-top: 0;
}

/* Specific Heading Sizes for Hierarchy */
.ron_single h1 { font-size: 2.5rem; }
.ron_single h2 { font-size: 2rem; }
.ron_single h3 { font-size: 1.75rem; }
.ron_single h4 { font-size: 1.5rem; }
.ron_single h5 { font-size: 1.25rem; }
.ron_single h6 { font-size: 1.1rem; }

/* Mobile adjustments */
@media (max-width: 768px) {
    .ron_single h1 { font-size: 2rem; }
    .ron_single h2 { font-size: 1.75rem; }
    .ron_single p { margin-bottom: 1.25rem; }
}
/* Responsive adjustment for mobile */
@media (max-width: 768px) {
    .floated-image {
        float: none;
        width: 100%;
        margin-left: 0;
    }
}
/* =============================================================================
   27. PLAN / PRICING SECTIONS (Product Pages)
   ============================================================================= */
.plan-section {
    padding: var(--section-pad-v) 0;
    text-align: center;
    background-color: var(--color-white);
}

.plan-section--gradient {
    background: var(--gradient-hero);
    color: var(--color-white);
}

.plan-section__heading {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 800;
    color: var(--color-heading);
    margin-bottom: 40px;
    line-height: 1.25;
}

.plan-section--gradient .plan-section__heading {
    color: var(--color-white);
}

.plan-section__sub {
    font-size: 16px;
    color: var(--color-muted);
    max-width: 660px;
    margin: -24px auto 40px;
    line-height: 1.7;
}

.plan-grid {
    display: grid;
    gap: 24px;
    align-items: start;
}

.plan-grid--3 {
    grid-template-columns: repeat(3, 1fr);
    max-width: 900px;
    margin: 0 auto;
}

.plan-grid--4 {
    grid-template-columns: repeat(4, 1fr);
}

.plan-grid--5 {
    grid-template-columns: repeat(5, 1fr);
}

.plan-card {
    background: var(--color-white);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 32px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}

.plan-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    transform: translateY(-4px);
}

.plan-card--featured {
    border-color: var(--color-magenta);
    box-shadow: 0 8px 32px rgba(255,0,204,0.2);
    position: relative;
}

.plan-card--featured::before {
    content: 'POPULAR';
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-magenta);
    color: var(--color-white);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 4px 14px;
    border-radius: var(--radius-pill);
    white-space: nowrap;
}

.plan-card__name {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.plan-card__price {
    font-size: 40px;
    font-weight: 800;
    color: var(--color-heading);
    line-height: 1;
    margin-bottom: 4px;
}

.plan-card__price-currency {
    font-size: 22px;
    font-weight: 700;
    vertical-align: super;
    line-height: 1;
}

.plan-card__period {
    font-size: 13px;
    color: var(--color-muted);
    margin-bottom: 5px;
}

.plan-card__divider {
    height: 1px;
    background-color: var(--color-border);
    margin: 0 0 20px;
}

.plan-card__features {
    list-style: none;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin-bottom: 24px;
    flex: 1;
}

.plan-card__features li {
    font-size: 13px;
    color: var(--color-body);
    padding-left: 18px;
    position: relative;
}

.plan-card__features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-magenta);
    font-weight: 700;
}

.plan-card__btn {
    display: block;
    margin-top: auto;
    width: 100%;
}

/* Plan cards on gradient backgrounds */
.plan-section--gradient .plan-card {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2);
}

.plan-section--gradient .plan-card:hover {
    background: rgba(255,255,255,0.18);
    border-color: rgba(255,255,255,0.4);
}

.plan-section--gradient .plan-card--featured {
    background: rgba(255,255,255,0.22);
    border-color: rgba(255,255,255,0.8);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.plan-section--gradient .plan-card--featured::before {
    background: var(--color-white);
    color: var(--color-purple);
}

.plan-section--gradient .plan-card__name {
    background: none;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: rgba(255,255,255,0.75);
    background-clip: initial;
}

.plan-section--gradient .plan-card__price {
    color: var(--color-white);
}

.plan-section--gradient .plan-card__period {
    color: rgba(255,255,255,0.7);
}

.plan-section--gradient .plan-card__divider {
    background-color: rgba(255,255,255,0.2);
}

.plan-section--gradient .plan-card__features li {
    color: rgba(255,255,255,0.88);
}

.plan-section--gradient .plan-card__features li::before {
    color: rgba(255,255,255,0.9);
}

/* =============================================================================
   28. DARK FEATURE STRIP (Servers That Just Work)
   ============================================================================= */
.dark-strip {
    background-color: #14142a;
    padding: var(--section-pad-v) 0;
    color: var(--color-white);
    text-align: center;
}

.dark-strip__heading {
    font-size: clamp(20px, 3.5vw, 28px);
    font-weight: 800;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 48px;
    line-height: 1.3;
}

.dark-strip__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    text-align: center;
}
.ron_grid4 .dark-strip__grid {grid-template-columns: repeat(4, 1fr);gap: 20px;text-align: center;}
.ron_grid2 .dark-strip__grid {grid-template-columns: repeat(2, 1fr);gap: 30px;text-align: center;}
.ron_video-container lite-youtube { min-height: 300px !important; }
.ron_ul {
  overflow: hidden;
  display: block;
  margin: 1.5rem 0;
  padding-left: 1.5rem;
  list-style-type: disc;
}
.ron_ul li {
  margin-bottom: 0.5rem;
  padding-left: 0.5rem;
}
.ron_icon {
  font-size: 18px;
  border-radius: 50%;
  background: #f0c;
  height: 48px;
  width: 48px;
  margin: 0 auto;
  margin-bottom: 0px;
  line-height: 44px;
  margin-bottom: 20px;
}
.ron_comparison-table {
    max-width: 1000px;
    margin: 40px auto;
    font-family: sans-serif;
}

.ron_comparison-table {
    text-align: center;
    color: #34495e;
    text-transform: uppercase;
    font-size: 24px;
    margin-bottom: 30px;
    font-weight: 700;
}

.ron_comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border: 1px solid #eee;
}

.ron_comparison-table th {
    padding: 20px;
    text-align: center;
    color: #555;
    font-size: 14px;
    font-weight: 600;
    border-bottom: 1px solid #eee;
}

.ron_comparison-table td {
    padding: 15px 20px;
    border-bottom: 1px solid #f9f9f9;
    color: #666;
    font-size: 14px;
}

/* First column (Text) alignment */
.ron_comparison-table td:first-child {
    text-align: left;
    width: 60%;
}

/* Icon columns alignment */
.ron_comparison-table td:nth-child(2),
.ron_comparison-table td:nth-child(3) {
    text-align: center;
    width: 20%;
    font-size: 24px; /* Icon size */
}

/* Styling the Font Awesome Icons */
.ron_comparison-table .fa-square-check {
    color: #000; /* Black as per design */
}

.ron_comparison-table .fa-circle-minus {
    color: #000;
    opacity: 0.8;
}

/* Hover effect */
.ron_comparison-table tr:hover {
    background-color: #fcfcfc;
}

/* Mobile Responsive */
@media (max-width: 600px) {
    .ron_comparison-table th, .ron_comparison-table td {
        padding: 10px 5px;
        font-size: 12px;
    }
    .ron_comparison-table td:nth-child(2),
    .ron_comparison-table td:nth-child(3) {
        font-size: 18px;
    }
}
.dark-strip__item {
    padding: 28px 24px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    background: rgba(255,255,255,0.03);
    margin-bottom: 20px;
}

.dark-strip__item-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-magenta);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.dark-strip__item-text {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
}

/* =============================================================================
   29. HOSTING INTRO SECTION
   ============================================================================= */
.hosting-intro {
    padding: var(--section-pad-v) 0;
    background-color: var(--color-white);
}

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

.hosting-intro__heading {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 800;
    color: var(--color-heading);
    margin-bottom: 24px;
    text-align: center;
}

.hosting-intro__body {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-body);
    margin-bottom: 20px;
}

.hosting-intro__subtitle {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-heading);
    margin: 32px 0 12px;
}

.hosting-intro__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
    padding-left: 8px;
}

.hosting-intro__list li {
    font-size: 15px;
    color: var(--color-body);
    padding-left: 20px;
    position: relative;
}

.hosting-intro__list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-magenta);
    font-weight: 700;
}

/* =============================================================================
   30. TRUST STRIP (3-col info cards)
   ============================================================================= */
.trust-strip {
    padding: var(--section-pad-v) 0;
    background-color: var(--color-bg-light);
}

.trust-strip__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.trust-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    border: 1px solid var(--color-border);
    transition: box-shadow var(--transition);
}

.trust-card:hover {
    box-shadow: var(--shadow-card);
}

.trust-card__icon {
    font-size: 40px;
    margin-bottom: 16px;
    line-height: 1;
    display: block;
}

.trust-card__title {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-heading);
    margin-bottom: 12px;
}

.trust-card__text {
    font-size: 14px;
    color: var(--color-muted);
    line-height: 1.7;
}

/* =============================================================================
   31. "UNDECIDED?" CTA BANNER
   ============================================================================= */
.undecided-cta {  
  background-image:linear-gradient(175deg,rgba(255, 0, 204, 0.7) 0%, 
    rgba(51, 51, 153, 0.7) 100%), url("../images/Cloudsurph-Self-Managed-hosting-and-Fully-managed-hosting.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;  
  padding: 50px 0 40px;
  color: var(--color-white);
  overflow: hidden;
  position: relative;
text-align: center;
}

.undecided-cta__heading {
    font-size: clamp(20px, 3.5vw, 28px);
    font-weight: 800;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 8px;
    line-height: 1.3;
}

.undecided-cta__sub {
    font-size: 16px;
    color: rgba(255,255,255,0.85);
    max-width: 500px;
    margin: 0 auto 28px;
    line-height: 1.6;
}

/* =============================================================================
   32. CONTACT HERO — PHOTO BG SUPPORT
   ============================================================================= */
.contact-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.contact-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(175deg, rgba(10,5,40,0.78) 0%, rgba(51,51,153,0.85) 100%);
    z-index: 1;
}

.contact-hero__inner {
    position: relative;
    z-index: 2;
}

/* =============================================================================
   34. $1 VPS PROMO PAGE
   ============================================================================= */

/* White hero with gradient text */
.dollar-hero {
    background-color: var(--color-white);
    padding: 80px 0 56px;
    text-align: center;
    border-bottom: 1px solid var(--color-border);
}

.dollar-hero__eyebrow {
    display: block;
    font-size: clamp(15px, 2vw, 20px);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.dollar-hero__sub {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-body);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 16px;
}

.dollar-hero__heading {
    font-size: clamp(28px, 5vw, 52px);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

/* Dollar Plans Section */
.dollar-plans {
    padding: var(--section-pad-v) 0;
    background: var(--color-white);
    text-align: center;
}

.dollar-plans__heading {
    font-size: clamp(22px, 3.5vw, 32px);
    font-weight: 800;
    color: var(--color-heading);
    margin-bottom: 28px;
}

/* Monthly / Quarterly pill toggle */
.dollar-toggle {
    display: inline-flex;
    background: var(--color-bg-light);
    border-radius: var(--radius-pill);
    padding: 4px;
    margin-bottom: 40px;
    gap: 2px;
    border: 1px solid var(--color-border);
}

.dollar-toggle__btn {
    padding: 10px 32px;
    font-size: 14px;
    font-weight: 700;
    border: none;
    border-radius: var(--radius-pill);
    cursor: pointer;
    background: transparent;
    color: var(--color-muted);
    transition: background var(--transition), color var(--transition), box-shadow var(--transition);
    font-family: var(--font-family);
}

.dollar-toggle__btn.is-active {
    background: var(--gradient-hero);
    color: var(--color-white);
    box-shadow: 0 2px 12px rgba(255,0,204,0.3);
}

/* Promo Cards Grid */
.promo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

/* Individual promo card */
.promo-card {
    border-radius: var(--radius-lg);
    padding: 28px 18px 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    color: var(--color-white);
}

.promo-card--hdd {
    background: linear-gradient(160deg, #2d1b69 0%, #4a2080 100%);
}

.promo-card--ssd {
    background: linear-gradient(160deg, #ff00cc 0%, #cc0099 100%);
}

.promo-card--windows {
    background: linear-gradient(160deg, #1a1a4e 0%, #2a2a80 100%);
}

.promo-card--unbeatable {
    background: linear-gradient(160deg, #1e0d3c 0%, #3a1466 100%);
}

.promo-card__badge {
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-white);
    margin-bottom: 2px;
}

.promo-card__stock {
    font-size: 11px;
    color: rgba(255,255,255,0.6);
    font-style: italic;
    margin-bottom: 16px;
}

.promo-card__icon {
    font-size: 28px;
    line-height: 1;
    margin-bottom: 12px;
}

.promo-card__price {
    font-size: 44px;
    font-weight: 800;
    color: var(--color-white);
    line-height: 1;
    margin-bottom: 2px;
}

.promo-card__price-currency {
    font-size: 22px;
    font-weight: 700;
    vertical-align: super;
    line-height: 1;
}

.promo-card__period-label {
    font-size: 18px;
    font-weight: 700;
}

.promo-card__renews {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 16px;
}

.promo-card__divider {
    height: 1px;
    background: rgba(255,255,255,0.18);
    margin: 0 0 14px;
}

.promo-card__features {
    list-style: none;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 22px;
    flex: 1;
}

.promo-card__features li {
    font-size: 12px;
    color: rgba(255,255,255,0.82);
    padding-left: 16px;
    position: relative;
    line-height: 1.5;
}

.promo-card__features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: rgba(255,255,255,0.7);
    font-weight: 700;
}

.promo-card__btn {
    display: block;
    width: 100%;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.35);
    color: var(--color-white);
    padding: 11px;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    transition: background-color var(--transition), color var(--transition);
    font-family: var(--font-family);
    cursor: pointer;
    margin-top: auto;
}

.promo-card__btn:hover,
.promo-card__btn:focus-visible {
    background: rgba(255,255,255,0.28);
    color: var(--color-white);
    text-decoration: none;
}

/* SSD card has a white button since the bg is bright magenta */
.promo-card--ssd .promo-card__btn {
    background: rgba(255,255,255,0.9);
    color: #cc0099;
    border-color: transparent;
}

.promo-card--ssd .promo-card__btn:hover,
.promo-card--ssd .promo-card__btn:focus-visible {
    background: var(--color-white);
    color: var(--color-purple);
}

.dollar-plans__note {
    font-size: 13px;
    color: var(--color-muted);
    font-style: italic;
    margin-top: 8px;
}

/* =============================================================================
   33. RESPONSIVE — NEW SECTIONS
   ============================================================================= */
@media (max-width: 1024px) {
    .plan-grid--4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .plan-grid--5 {
        grid-template-columns: repeat(3, 1fr);
    }

    .promo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .plan-grid--3 {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }

    .plan-grid--4 {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }

    .plan-grid--5 {
        grid-template-columns: repeat(2, 1fr);
    }

    .dark-strip__grid {
        grid-template-columns: 1fr;
    }

    .trust-strip__grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }

    .hosting-intro__inner {
        padding: 0 8px;
    }
}

@media (max-width: 480px) {
    .plan-grid--5 {
        grid-template-columns: 1fr;
    }

    .promo-grid {
        grid-template-columns: 1fr;
        max-width: 360px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* =============================================================================
   END OF FILE
   ============================================================================= */
