/* --- CORE GRID & SCALING --- */
* { box-sizing: border-box; }
body { margin: 0; padding: 0; overflow-x: hidden; width: 100%; }

.container {
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
}
@media(min-width: 1200px) { .container { max-width: 1400px; } }



/* --- NAV BAR (FULL WIDTH) --- */
nav {
    width: 100% !important;
    background: #111; /* Match your image color */
    position: sticky;
    top: 0;
    z-index: 1000;
}



/* Makes top bar reach edges on mobile */
/* --- HAMBURGER & MOBILE DRAWER --- */
@media (max-width: 992px) {
    /* Ensure the hamburger stays on top and visible */
    .menu-toggle {
        display: flex !important;
        flex-direction: column;
        gap: 6px;
        cursor: pointer;
        z-index: 2100;
        position: relative;
        padding: 5px;
    }

    .menu-toggle span {
        width: 28px;
        height: 3px;
        background: #fff;
        border-radius: 4px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        display: block; /* Ensures they render */
    }

    /* Animation: This turns the hamburger into an X */
    .menu-toggle.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
    .menu-toggle.active span:nth-child(2) { opacity: 0; transform: translateX(-10px); }
    .menu-toggle.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

    /* The Slide-out Menu */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: rgba(11, 10, 26, 0.98);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        display: flex !important;
        flex-direction: column;
        padding: 100px 40px;
        transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 2000;
        border-left: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links.active { right: 0; }

    /* Styling items INSIDE the menu */
    .nav-links a, 
    .nav-links .account-link {
        display: flex !important;
        align-items: center;
        color: #fff !important;
        font-size: 18px;
        padding: 15px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        text-decoration: none;
        width: 100%;
        opacity: 1 !important;
        margin: 0 !important;
    }

    /* Hide the original items from the header on mobile */
    .nav-actions > .account-link, 
    .nav-actions .btn-blue { 
        display: none !important; 
    }
}

/* --- PC RECOVERY (Keeps PC layout perfect) --- */
@media (min-width: 993px) {
    .nav-actions { display: flex; align-items: center; }
    .account-link { 
        display: none !important; 
        margin-right: 20px; 
        opacity: 0.8; 
        font-size: 14px; 
        color: #fff;
        text-decoration: none;
    }
    .menu-toggle { display: none !important; }
}



    /* --- PIXEL PERFECT UI SKIN --- */
        :root {
            --bg-dark: #efefefc5;
            --panel-hex: #ffffff;
            --hh-blue: #0095ff;
            --hh-purple: #1879ff;
            --glass-white: rgb(255, 255, 255);
            --text-dim: #000000;
            --text-banner: #ffffff;
            --hh-roadmap: #5fe009cb;
            --poster-title: #3d8bff;
        }

        body {
    background-color: var(--bg-dark, #0b0a1a); 
    background-image: 
        radial-gradient(circle at 50% -20%, #201b4d 0%, transparent 50%),
        url('https://wallpapercave.com/wp/wp12296771.jpg');
    
    background-attachment: fixed; 
    background-size: cover; 
    
    color: #ffffffe5;
    font-family: 'Plus Jakarta Sans', sans-serif;
    margin: 0;
    -webkit-font-smoothing: antialiased;
}

nav {
    padding: 1px 0;
    background: rgba(0, 0, 0, .84);
    backdrop-filter: blur(2px);
    border-bottom: 1px solid rgba(255, 255, 255, .05);
    position: sticky; top: 0; z-index: 1000;
    margin-bottom: 20px;
}

       .nav-inner { 
        display: grid; 
        grid-template-columns: 1fr auto 1fr; /* Creates 3 equal invisible columns */
        align-items: center; 
        width: 100%;    
}

        .logo-box { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 20px; }       
        .nav-links a { color: #fff; text-decoration: none; margin-left: 25px; font-size: 14px; font-weight: 500; opacity: 0.7; transition: 0.2s; }
        .nav-links a:hover { opacity: 1; color: var(--hh-blue); }


.logo-icon {
    width: 50px; /* Added 'px' here */
    height: 60px; 
    display: flex;
    align-items: center;
    justify-content: center;
    /* Clean slate: remove everything else */
    background: none; 
    border-radius: 0;
    border: none;
    margin-top: 10px;
}

.logo-img {
    height: 100%; 
    width: auto;
    display: block;
    object-fit: contain;
}

.cart-container {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 10px;
    text-decoration: none;
    color: #fff;
}

.cart-icon {
    width: 24px;
    height: 24px;
}

.cart-badge {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #5fe009; /* Matches your --hh-roadmap variable */
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Optional: subtle border to make it pop against dark backgrounds */
    border: 2px solid #0b0a1a; 
}





/* CSS STARTS HERE */

/* --- CSS VARIABLES --- */
:root {
    --hh-blue: #1879ff;
    --hh-purple: #a855f7;
    --text-dark: #0f172a;
    --text-muted: #475569;
    --bg-light: #f1f5f9; /* The 'Ice' tint that fixes the white glare */
    --card-white: #ffffff;
}

/* --- MAIN CONTAINER SCOPING --- */
main.container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 60px 40px 80px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

/* --- SECTION HEADERS --- */
.section-header-wrap {
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.category-badge {
    align-self: flex-start;
    padding: 6px 14px;
    background: var(--text-dark);
    color: #ffffff;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: 42px !important;
    font-weight: 950 !important;
    color: var(--text-dark);
    margin: 0 !important;
    letter-spacing: -1.5px;
    border-left: 8px solid var(--hh-blue);
    padding-left: 20px;
}

/* --- GRID SYSTEM --- */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 35px;
    margin-bottom: 80px;
}

/* --- SERVICE CARDS --- */
.service-card {
    background: var(--card-white);
    border: 1px solid #cbd5e1;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    overflow: hidden; /* Important for the images */
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-12px);
    border-color: var(--hh-blue);
    box-shadow: 0 25px 50px -12px rgba(24, 121, 255, 0.15);
}

/* Card Image Handling */
.card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #e2e8f0;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .card-image img {
    transform: scale(1.1);
}

/* Text inside cards */
.card-content {
    padding: 35px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-card h3 {
    font-size: 24px;
    font-weight: 850;
    margin: 0 0 12px 0;
    color: var(--text-dark);
}

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 25px;
}

/* Service Features List */
.card-features {
    list-style: none;
    padding: 20px 0 0 0;
    margin: 0 0 30px 0;
    border-top: 1px solid #f1f5f9;
}

.card-features li {
    font-size: 14px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.card-features li::before {
    content: "";
    width: 6px;
    height: 6px;
    background: var(--hh-blue);
    border-radius: 50%;
}

.service-link {
    font-weight: 800;
    color: var(--hh-blue);
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: auto;
}

/* --- THE HOSTING LAUNCH CARD (The "Bottom Anchor") --- */
.hosting-launch-card {
    background: var(--text-dark); /* Solid dark navy to ground the page */
    color: #ffffff;
    border-radius: 32px;
    padding: 80px 40px;
    text-align: center;
    margin-top: 40px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.2);
}

.countdown-tag {
    background: var(--hh-blue);
    color: #fff;
    padding: 6px 16px;
    border-radius: 100px;
    font-weight: 800;
    font-size: 12px;
    margin-bottom: 25px;
    display: inline-block;
    text-transform: uppercase;
}

.hosting-launch-card h2 {
    color: #ffffff !important;
    font-size: 48px !important;
    font-weight: 900 !important;
    margin-bottom: 15px !important;
    letter-spacing: -2px;
}

.hosting-launch-card p {
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: 18px;
}

/* --- THE PILL FORM --- */
.lead-form {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px;
    border-radius: 16px;
    max-width: 500px;
    margin: 0 auto;
    transition: focus-within 0.3s ease;
}

.lead-form:focus-within {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--hh-blue);
}

.lead-form input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 12px 20px;
    color: #fff;
    font-size: 16px;
    outline: none;
}

.lead-form input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.btn-launch {
    background: #ffffff;
    color: var(--text-dark);
    border: none;
    padding: 0 35px;
    border-radius: 12px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-launch:hover {
    background: var(--hh-blue);
    color: white;
    transform: scale(1.05);
}

.form-note {
    display: block;
    margin-top: 20px;
    color: #64748b;
    font-size: 13px;
}

/* --- RESPONSIVE FIXES --- */
@media (max-width: 768px) {
    /* 1. Container scaling */
    main.container { 
        padding: 40px 20px; 
        margin: 10px; /* Reduced margin to give more room */
        border-radius: 24px; /* Slightly smaller radius for mobile screens */
    }

    /* 2. Typography Scaling (Prevents text overflow) */
    .section-title {
        font-size: 32px !important; /* Scaled down from 42px */
        letter-spacing: -1px;
        padding-left: 15px;
    }

    .hosting-launch-card h2 {
        font-size: 36px !important; /* Scaled down from 48px */
        letter-spacing: -1px;
    }

    /* 3. Grid Adjustment */
    .grid {
        /* Changed 340px to 1fr to ensure cards never exceed screen width */
        grid-template-columns: 1fr; 
        gap: 20px;
        margin-bottom: 40px;
    }

    /* 4. Card Adjustments */
    .card-content {
        padding: 25px; /* Less padding to save horizontal space */
    }

    /* 5. Form Scaling */
    .hosting-launch-card {
        padding: 60px 20px;
    }

    .lead-form { 
        flex-direction: column; 
        background: transparent; 
        border: none; 
        gap: 10px;
    }

    .lead-form input { 
        background: rgba(255,255,255,0.1); 
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 12px; 
        width: 100%;
        box-sizing: border-box; /* Ensures padding doesn't push width past 100% */
    }

    .btn-launch { 
        padding: 18px; 
        width: 100%;
    }
}

/* Extra small screen fix (Phones under 400px wide) */
@media (max-width: 400px) {
    .section-title {
        font-size: 28px !important;
    }
    
    .service-card h3 {
        font-size: 20px;
    }
}



/* Start Of Content */
p {
  color: #334155; /* slate-700 */
}
.section-title {
  color: #020617; /* near-black */
}
.logo-button {
  text-decoration: none;
  color: inherit;
}

.logo-button:visited {
  color: inherit;
}
.category-badge {
    background: linear-gradient(135deg, #1879ff, #0095ff);
}
.service-card {
    cursor: pointer;
}

.service-card::after {
    content: "";
    height: 4px;
    width: 0;
    background: var(--hh-blue);
    transition: width 0.3s ease;
}

.service-card:hover::after {
    width: 100%;
}
a,
a:hover,
a:focus,
a:active,
a:visited {
  text-decoration: none !important;
}
/* ================= ABOUT PAGE SPACING FIX ================= */

/* Limit text width so spacing feels intentional */
.page-card .content-wrap {
  max-width: 820px;
  margin: 0 auto;
}

/* Paragraph rhythm */
.page-card p {
  margin: 0 0 1.4rem 0;
  line-height: 1.7;
}

/* Stronger separation after the hero block */
.page-hero {
  padding-top: 20px;
  margin-bottom: 3rem;
}

/* Add breathing room between logical text groups */
.page-card p + p {
  margin-top: 0.6rem;
}

/* Final location line styling */
.about-location,
.location-text {
  margin-top: 2.5rem;
  font-size: 0.9rem;
  opacity: 0.7;
}
.section-title {
  margin-bottom: 40px !important;
}
.about-location {
  color: #334155; /* slate-700 */
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.location-badge {
  color: #020617; /* near-black */
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
}

.location-text {
  color: #64748b; /* slate-500 */
  margin: 0;
  font-size: 14px;
  opacity: 0.7;
}



























/* THIS IS FOR THE FOOTER ONLY */

@media only screen and (max-width: 768px) {
    /* 1. Hide Trustpilot and Desktop Clutter */
    .trustpilot-header, .stars-row, .tagline, .tagline-sub,.tagline2, .tagline-sub2 { 
        display: none !important; 
    }

    /* 2. Style the Dropdown Headers */
.link-col h3 {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center;
        width: 100%;
        cursor: pointer;
        
        /* The "Nicer" separation */
        padding: 18px 5px !important; 
        margin: 0 !important; /* Resetting margins to use borders for spacing */
        border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* Subtle divider */
        
        font-size: 16px !important;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    /* Add a "+" symbol */
   .link-col h3::after {
        content: '+';
        font-size: 22px;
    }

   .link-col h3::after {
        content: '+';
        font-size: 20px;
        color: #fff;
        transition: transform 0.3s ease;
    }


   .link-col h3.active-header::after {
        content: '−';
        transform: rotate(180deg);
    }

    /* 3. HIDE THE LINKS BY DEFAULT */
    /* Removed !important from display: none to allow .active to override it */
   .link-col ul {
    display: none; 
    list-style: none !important;
    margin: 0 !important;
    padding: 10px 0 20px 0 !important; 
    width: 100%;
    }

    /* 4. SHOW THE LINKS WHEN ACTIVE */
    /* This overrides the display: none above */
    .link-col.active ul {
        display: block !important;
    }

  .link-col ul.show-mobile {
    display: block !important;
  }

   .link-col {
        width: 100%;
        text-align: left !important; /* Forces internal text left */
    }

    /* 5. Center Logo and Payments */
    .footer-container { 
        display: flex;
        flex-direction: column !important; 
        align-items: center !important; 
        text-align: center; /* Changed to center for mobile aesthetic */
    }

    .link-col h3:first-child {
        margin-top: 0 !important;
    }

    .link-col ul + h3 {
        margin-top: 15px !important;
    }

    .link-col li {
        width: 100%;
        text-align: left !important; /* Explicitly align text left */
        padding: 10px 0; /* Vertical spacing for tap targets */
    }

    .link-col li a {
        display: block; /* Makes the whole row clickable */
        width: 100%;
        text-align: left !important;
        text-decoration: none;
        color: rgba(255, 255, 255, 0.7);
        font-size: 15px;
    }

        .socials{
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        text-align: center !important;
        width: 100%;
    }
     .logo-area {
    display: flex !important;
    justify-content: center !important; /* Centers horizontally */
    align-items: center !important;     /* Centers vertically */
    text-align: center !important;
    
    width: 100%;             /* Occupies full width to allow centering */
    margin: 0 0 20px 0 !important; /* Removes the huge negative margin; adds bottom spacing */
    padding: 0 !important;   /* Ensures no internal padding is offsetting the center */
    
    /* Prevents any parent overflow issues */
    position: relative;
    left: 0;
}

    .payment-row {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;   /* Keeps them on one line */
        justify-content: center !important;
        align-items: center !important;
        gap: 8px;                       /* Reduced gap to save space */
        width: 100%;
        padding: 10px 0;
        overflow-x: hidden;             /* Hides overflow if they finally fit */
    }

    /* 2. Target the icons specifically */
    .payment-row img, 
    .payment-row svg,
    .payment-row .payment-icon {
        height: 18px !important;        /* Smaller height for mobile */
        width: auto !important;         /* Maintains aspect ratio */
        flex: 0 0 auto !important;      /* Prevents shrinking/squishing */
        opacity: 0.8;                   /* Optional: makes them look cleaner */
        filter: grayscale(0);           /* Ensures they stay in color */
    }

    /* 3. Social Icons adjustment (if they are in a different row) */
    .socials img, .socials svg {
        height: 20px !important;
        width: auto !important;
    }
}


  :root {
    --bg-color: #0c0d10;
    --text-main: #ffffff;
    --text-muted: #a1a1a1;
    --text-dim: #5c5f66;
    --accent-blue: #0099ff;
    --trust-green: #00b67a;
}

body { margin: 0; background-color: var(--bg-color); }

.footer {
    background-color: var(--bg-color);
    color: var(--text-main);
    padding: 80px 0 40px 0; /* Removed side padding to let max-width handle it */
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

/* 1. THE MAIN GRID - Balanced and centered */
.footer-container {
    display: flex;
    flex-direction: row;
    justify-content: center; /* Changed from space-between for better grouping */
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    gap: 60px; /* Controlled spacing between columns */
    padding: 0 40px;
}

/* 2. THE BRAND COLUMN - Keeping your features intact */
.brand-col { 
    flex: 2; /* Slightly larger to accommodate Trustpilot */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-area {
    display: flex;
    align-items: center; 
    margin-left: -12px;
    padding: 12px;
    /* Gap should be slightly larger since we've removed the dead space */
    gap: 1px;           
    margin-bottom: 5px;
}

.footer-logo-img {
    /* Height is the master control; width: auto prevents stretching */
    height: 90px;        
    width: 90px;  
    margin-top: 10px;     
    display: block;
    object-fit: contain;
}

.logo-text {
    color: #ffffff;
    font-size: 42px;    /* Increased size slightly to match the 80px logo height */
    font-weight: 900;
    font-style: italic;
    letter-spacing: -2px; /* Tighter tracking for that premium "Komado" look */
    text-transform: uppercase;
    margin: 0;
    line-height: 0.8;    /* Pulls the baseline closer to the center */
}

/* 3. LINK COLUMNS - Symmetrical */
.link-col { 
    flex: 1; 
    min-width: 150px;
}

.link-col h3 { 
    font-size: 16px; 
    font-weight: bold; 
    margin-bottom: 25px; 
    color: white;
    text-transform: uppercase;
}

.link-col ul { list-style: none; padding: 0; margin: 0; }
.link-col li { margin-bottom: 12px; }
.link-col a { 
    color: var(--text-muted); 
    text-decoration: none; 
    font-size: 14px; 
    transition: 0.2s; 
}
.link-col a:hover { color: white; }

/* 4. SOCIALS & TRUSTPILOT */
.tagline { color: var(--text-muted); font-size: 14px; font-weight: 600; margin: 0; }
.tagline-sub { color: var(--text-muted); font-size: 14px; margin: 4px 0 25px 0; }

.socials { display: flex; gap: 18px; margin-bottom: 35px; }
.socials svg, .socials img { width: 20px; height: 20px; cursor: pointer; opacity: 0.9; fill: white; }

.trustpilot-header { color: var(--trust-green); font-weight: bold; display: flex; align-items: center; gap: 5px; margin-bottom: 10px; font-size: 18px; }
.stars-row { display: flex; align-items: center; gap: 4px; }
.star-rect { background: var(--trust-green); width: 22px; height: 22px; display: flex; align-items: center; justify-content: center; font-size: 12px; }
.rating-num { font-weight: bold; margin-left: 10px; font-size: 20px; }

/* 5. BOTTOM AREA - Perfectly centered */
.footer-bottom {
    text-align: center;
    padding: 20px;
    background-color: #0b0e11; /* Matching your screenshot */
    color: #8a8d91;
    font-family: sans-serif;
  }
  .payment-label {
    margin-bottom: 15px;
    font-size: 14px;
    font-weight: 600;
  }
  .payment-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px; /* Space between icons */
    flex-wrap: wrap;
    margin-bottom: 20px;
  }

/* Restored payment styles from your code */
.pay-icon {
    max-height: 24px; /* Keeps them all the same height */
    width: auto;
    display: block;
    filter: brightness(0.9); /* Subtly blends them into a dark theme */
    transition: filter 0.2s;
  }
  .pay-icon:hover {
    filter: brightness(1.1);
  }
.amex-pill {
    background: #1e2026;
    border-radius: 4px;
    padding: 6px 14px;
    color: #7a7d85;
    font-weight: 900;
    font-size: 14px;
    border: 1px solid #2d2f36;
}

.copyright {
    font-size: 12px;
    opacity: 0.6;
  }


   .tagline2, .tagline-sub2 { color: var(--text-muted); font-size: 14px; font-weight: 600; margin: 0; 
    margin: 0; /* Removes the default gap entirely */
    padding: 2px 0; /* Optional: gives you precise control over spacing */
    margin-bottom: 12px;
}

.tagline-sub2 a {
    color: #678aff; /* Replace with your preferred hex color */
    text-decoration: none; /* Optional: removes the underline */
}

.tagline-sub2 a:hover {
    color: #c70039; /* Optional: changes color when you hover over it */
}
