* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #ccd2da;
    color: #111827;
    line-height: 1.6;
}

a {
    color: #111827;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

/* HEADER */
.site-header {
    background: linear-gradient(90deg, #111827, #1f2937);
    border-bottom: 1px solid #374151;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
}

.header-inner,
.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 18px 0;
    flex-wrap: wrap;
}

.brand-link {
    font-size: 1.35rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.01em;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.main-nav a {
    color: #f9fafb;
    font-weight: 600;
    opacity: 0.95;
}

.main-nav a:hover {
    opacity: 1;
    text-decoration: none;
}

/* MAIN */
.site-main {
    padding: 36px 0 80px;
}

/* HERO */
.hero {
    padding: 8px 0 28px;
}

.hero-home {
    padding-top: 6px;
}

.hero-content {
    background: #eef2f7;
    border: 1px solid #d7dde5;
    border-radius: 22px;
    padding: 42px;
}

.hero-content-home {
    position: relative;
    overflow: hidden;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, #eef2f7, #dde3ea);
    border: 1px solid #d7dde5;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.hero-content-home::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.35), transparent 28%),
        radial-gradient(circle at bottom left, rgba(17, 24, 39, 0.05), transparent 24%);
    pointer-events: none;
}

.hero-content-home > * {
    position: relative;
    z-index: 1;
}

.eyebrow {
    display: inline-block;
    color: #6b7280;
    font-size: 0.88rem;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
}

.hero h1 {
    margin: 0 0 16px;
    font-size: 3rem;
    line-height: 1.12;
    max-width: 760px;
    color: #111827;
}

.hero-text {
    max-width: 760px;
    color: #374151;
    font-size: 1.08rem;
}

.hero-support-text {
    margin-top: 12px;
    max-width: 760px;
    color: #4b5563;
    font-size: 1rem;
}

.hero-actions {
    margin-top: 28px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* LAYOUT */
.section {
    margin-top: 28px;
}

.grid-3,
.grid-2 {
    display: grid;
    gap: 20px;
    margin-top: 24px;
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* CARDS */
.card {
    background: #ffffff;
    border: 2px solid #94a3b8;
    border-radius: 18px;
    padding: 12px 24px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
}

.card h2,
.card h3 {
    color: #111827;
    margin-top: 0;
}

.card p,
.card li {
    color: #4b5563;
}

.solution-card {
    border: 2px solid #cfd8e3;
    transition: all 0.25s ease;
}

.solution-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 30px rgba(15, 23, 42, 0.10);
    border-color: #94a3b8;
}

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 11px 18px;
    border-radius: 10px;
    border: 1px solid #c7ced8;
    background: #ffffff;
    color: #111827;
    cursor: pointer;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.2s ease;
}

.btn:hover {
    text-decoration: none;
    transform: translateY(-1px);
}

.btn-primary {
    background: linear-gradient(90deg, #111827, #1f2937);
    color: #ffffff;
    border-color: #111827;
    box-shadow: 0 10px 24px rgba(17, 24, 39, 0.15);
}

.btn-secondary {
    background: #f3f4f6;
    border-color: #d1d5db;
    color: #111827;
}

.btn-full {
    width: 100%;
}

/* ALERTS */
.alert {
    padding: 14px 16px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.alert-success {
    background: #ecfdf5;
    border: 1px solid #86efac;
    color: #166534;
}

.alert-error {
    background: #fef2f2;
    border: 1px solid #fca5a5;
    color: #991b1b;
}

/* AUTH */
.auth-wrap {
    display: flex;
    justify-content: center;
    padding: 40px 0;
}

.auth-card {
    width: 100%;
    max-width: 460px;
    background: #e9eef4;
    border: 1px solid #d7dde5;
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.auth-subtitle {
    color: #6b7280;
    margin-bottom: 20px;
}

.auth-form {
    display: grid;
    gap: 12px;
}

.auth-form input[type="text"],
.auth-form input[type="email"],
.auth-form input[type="password"] {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid #cfd6df;
    background: #ffffff;
    color: #111827;
}

.checkbox-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 6px 0 10px;
}

.auth-links {
    margin-top: 18px;
    color: #6b7280;
}

/* LISTS */
.feature-list {
    margin: 14px 0 0;
    padding-left: 20px;
}

/* FOOTER */
footer,
.site-footer {
    margin-top: 40px;
    background: #111827;
    color: #e5e7eb;
    border-top: 1px solid #374151;
}

.footer-inner {
    padding: 28px 0;
}

.footer-muted {
    color: #9ca3af;
}

.footer-brand {
    flex: 0 0 auto;
}

.footer-company {
    flex: 1 1 320px;
    text-align: center;
}

.footer-links {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.footer-links a,
footer a,
.site-footer a {
    color: #f3f4f6;
}

.footer-links a:hover,
footer a:hover,
.site-footer a:hover {
    color: #ffffff;
}

/* CERTIFICATE */
.certificate-card {
    text-align: center;
}

.certificate-preview {
    margin-top: 20px;
    padding: 30px;
    border: 2px dashed #cbd5e1;
    border-radius: 16px;
    background: #f8fafc;
}

/* MOBILE */
@media (max-width: 768px) {
    .header-inner,
    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-company {
        text-align: left;
    }

    .hero {
        padding-top: 0;
    }

    .hero-content,
    .hero-content-home {
        padding: 28px;
        min-height: auto;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-text,
    .hero-support-text {
        font-size: 1rem;
    }
}

/* MOBILE HEADER + FOOTER FIX */
.mobile-nav-toggle {
    display: none;
}

.mobile-menu-button {
    display: none;
}

@media (max-width: 768px) {
    .site-header {
        position: sticky;
        top: 0;
        z-index: 1000;
    }

    .header-inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 16px 0;
        gap: 12px;
    }

    .brand-link {
        font-size: 1.45rem;
        white-space: nowrap;
    }

    .mobile-menu-button {
        display: inline-flex;
        flex-direction: column;
        justify-content: center;
        gap: 6px;
        width: 52px;
        height: 44px;
        padding: 9px 11px;
        border: 1px solid rgba(255,255,255,0.35);
        border-radius: 10px;
        cursor: pointer;
        background: rgba(255,255,255,0.04);
    }

    .mobile-menu-button span {
        display: block;
        height: 3px;
        width: 100%;
        border-radius: 999px;
        background: #f9fafb;
    }

    .main-nav {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        margin-top: 14px;
        padding: 10px 0 4px;
        border-top: 1px solid rgba(255,255,255,0.12);
    }

    .main-nav a {
        display: block;
        padding: 12px 4px;
        font-size: 1rem;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .mobile-nav-toggle:checked ~ .main-nav {
        display: flex;
    }

    .site-main {
        padding-top: 24px;
    }

    .footer-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 14px;
        padding: 24px 0;
    }

    .footer-brand,
    .footer-company {
        width: 100%;
        text-align: center;
    }

    .footer-company {
        flex: unset;
    }

    .footer-links {
        width: 100%;
        justify-content: center;
        gap: 10px 16px;
        line-height: 1.8;
    }

    .footer-links a {
        font-size: 0.95rem;
    }
}

/* CENTERED CONTENT CARDS */
.content-card {
    text-align: center;
}

.content-card h1,
.content-card h2,
.content-card h3,
.content-card p {
    text-align: center;
}

.content-card .hero-actions {
    justify-content: center;
}

/* SERVICES PAGE HERO */
.hero-card {
    background-image: url('/img/hosting-hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(15,23,42,0.65);
}

.hero-card > * {
    position: relative;
    z-index: 2;
}

.hero-card h1,
.hero-card p,
.hero-card .eyebrow {
    color: rgba(255,255,255,0.9) !important;
}

.hero-card h1 {
    text-shadow: 0 3px 10px rgba(0,0,0,0.7);
}

.hero-card p {
    font-size: 1.15rem;
    font-weight: 600;
    text-shadow: 0 2px 8px rgba(0,0,0,0.75);
}

.hero-card .btn-primary {
    background: #6b2130;
    border-color: #6b2130;
    color: #ffffff;
}

/* HOMEPAGE HERO */
.homepage-hero {
    background-image: url('/img/hosting-hero2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 560px;
    padding: 60px !important;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
}

.homepage-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(15,23,42,0.88) 0%,
        rgba(15,23,42,0.72) 38%,
        rgba(15,23,42,0.20) 68%,
        rgba(15,23,42,0.00) 100%
    );
}

.homepage-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 560px;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    text-align: left;
}

.homepage-hero .eyebrow,
.homepage-hero h1,
.homepage-hero .hero-text,
.homepage-hero .hero-support-text {
    color: #ffffff !important;
}

.homepage-hero h1 {
    font-size: 3.2rem;
    line-height: 1.12;
    text-shadow: 0 3px 10px rgba(0,0,0,0.75);
}

.homepage-hero .hero-text,
.homepage-hero .hero-support-text {
    text-shadow: 0 2px 8px rgba(0,0,0,0.75);
}

.homepage-hero .hero-actions {
    justify-content: flex-start;
}

.homepage-hero .btn-primary {
    background: #6b2130;
    border-color: #6b2130;
    color: #ffffff;
}

/* SERVICES HERO */

.services-hero {
    background-image: url('/img/hosting-hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    min-height: 560px;

    display: flex;
    align-items: center;
    justify-content: flex-start;

    padding: 60px !important;

    position: relative;
    overflow: hidden;
}

.services-hero::before {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(
        90deg,
        rgba(15,23,42,0.88) 0%,
        rgba(15,23,42,0.72) 38%,
        rgba(15,23,42,0.20) 68%,
        rgba(15,23,42,0.00) 100%
    );
}

.services-hero .hero-content {
    position: relative;
    z-index: 2;

    max-width: 560px;

    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;

    text-align: left;
}

.services-hero .eyebrow,
.services-hero h1,
.services-hero .hero-text {
    color: #ffffff !important;
}

.services-hero h1 {
    font-size: 3.2rem;
    line-height: 1.12;
    text-shadow: 0 3px 10px rgba(0,0,0,0.75);
}

.services-hero .hero-text {
    font-size: 1.15rem;
    font-weight: 500;
    line-height: 1.8;
    text-shadow: 0 2px 8px rgba(0,0,0,0.75);
}

.services-hero .hero-actions {
    justify-content: flex-start;
}

.services-hero .btn-primary {
    background: #6b2130;
    border-color: #6b2130;
    color: #ffffff;
}

/* ABOUT HERO */
.about-hero {
    background-image: url('/img/about-hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 560px;
    padding: 60px !important;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(15,23,42,0.88) 0%,
        rgba(15,23,42,0.72) 38%,
        rgba(15,23,42,0.20) 68%,
        rgba(15,23,42,0.00) 100%
    );
}

.about-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 560px;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    text-align: left;
}

.about-hero .eyebrow,
.about-hero h1,
.about-hero .hero-text {
    color: #ffffff !important;
}

.about-hero h1 {
    font-size: 3.2rem;
    line-height: 1.12;
    text-shadow: 0 3px 10px rgba(0,0,0,0.75);
}

.about-hero .hero-text {
    font-size: 1.15rem;
    font-weight: 500;
    line-height: 1.8;
    text-shadow: 0 2px 8px rgba(0,0,0,0.75);
}

.about-hero .hero-actions {
    justify-content: flex-start;
}

.about-hero .btn-primary {
    background: #6b2130;
    border-color: #6b2130;
    color: #ffffff;
}

.faq-hero{
    background: linear-gradient(
        135deg,
        #1e293b,
        #0f172a
    );
    color:#fff;
    text-align:center;
    padding:50px 40px;
}

.faq-hero .eyebrow{
    color:rgba(255,255,255,0.85);
    letter-spacing:2px;
    font-weight:700;
    margin-bottom:18px;
}

.faq-hero h1{
    color:#fff;
    margin-bottom:20px;
    font-size:3rem;
}

.faq-intro{
    color:#ffffff !important;
    max-width:850px;
    margin:0 auto;
    line-height:1.8;
    font-size:1.05rem;
}

.contact-hero{
    background: linear-gradient(
        135deg,
        #1e293b,
        #0f172a
    );
    text-align:center;
    padding:50px 40px;
    color:#fff;
}

.contact-hero .eyebrow{
    color:#ffffff;
    letter-spacing:2px;
    font-weight:700;
    margin-bottom:18px;
}

.contact-hero h1{
    color:#ffffff;
    margin-bottom:20px;
    font-size:3rem;
}

.contact-intro,
.contact-subtext{
    color:#ffffff !important;
    max-width:850px;
    margin:0 auto 15px auto;
    line-height:1.8;
}

.contact-hero .hero-actions{
    justify-content:center;
    margin-top:30px;
}

.contact-hero .btn-primary{
    background:#a63d5d;
    border-color:#a63d5d;
}

.contact-hero .btn-primary:hover{
    background:#8f314e;
    border-color:#8f314e;
}

.policy-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 22px auto;
  border-radius: 50%;
  background: #9b123c;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(155, 18, 60, 0.35);
}

.policy-icon i {
  color: #ffffff;
  font-size: 52px;
  line-height: 1;
}

.faq-hero .eyebrow {
  margin-bottom: 14px;
  letter-spacing: 4px;
}

/* LOGIN & REGISTER CARDS */

.hosting-auth-card{
    background: linear-gradient(
        135deg,
        #1e293b,
        #0f172a
    );

    color:#ffffff;

    border:2px solid #334155;

    border-radius:18px;

    box-shadow:0 12px 30px rgba(15,23,42,0.25);

    padding:40px;
}

.hosting-auth-card h1{
    color:#ffffff;
}

.hosting-auth-card .auth-subtitle{
    color:rgba(255,255,255,0.85) !important;
}

.hosting-auth-card label{
    color:#ffffff;
}

.hosting-auth-card input{
    background:#ffffff;
    border:1px solid #d1d5db !important;
    color:#111827;
}

.hosting-auth-card input:focus{
    outline:none;
    border-color:#a63d5d !important;
    box-shadow:0 0 0 3px rgba(166,61,93,0.20);
}

.hosting-auth-card .btn-primary{
    background:#a63d5d;
    border-color:#a63d5d;
    color:#ffffff;
}

.hosting-auth-card .btn-primary:hover{
    background:#8f314e;
    border-color:#8f314e;
}

.hosting-auth-card .auth-links,
.hosting-auth-card .auth-links a{
    color:rgba(255,255,255,0.85);
}

.hosting-auth-card .auth-links a:hover{
    color:#ffffff;
}

.hosting-auth-card hr,
.hosting-auth-card .divider{
    border-color:rgba(255,255,255,0.15);
}

.hosting-auth-card p,
.hosting-auth-card .auth-links,
.hosting-auth-card .auth-links a {
    color: #ffffff !important;
}

.hosting-auth-card .eyebrow {
    color: rgba(255,255,255,0.85) !important;
}

.hosting-auth-card .auth-links a:hover {
    color: #ffffff !important;
}

.register-link {
    color: #d14f73 !important;
    font-weight: 700;
}

.register-link:hover {
    color: #e67d9b !important;
}

.auth-link-buttons {
    display: grid;
    gap: 10px;
    margin-top: 18px;
}

.auth-link-buttons a {
    display: block;
    padding: 10px 14px;
    border-radius: 10px;
    text-align: center;
    color: #ffffff !important;
    font-weight: 700;
    border: 1px solid rgba(255,255,255,0.28);
    background: rgba(255,255,255,0.06);
}

.auth-link-buttons a:hover {
    background: #a63d5d;
    border-color: #a63d5d;
    color: #ffffff !important;
}

.quote-section {
    margin-bottom: 1.5rem;
    padding: 2rem;
}

.quote-section h2 {
    margin-bottom: 1rem;
    color: #222;
}

.quote-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.quote-section input,
.quote-section select,
.quote-section textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #d8d8d8;
    border-radius: 8px;
    font-size: 14px;
}

.quote-section textarea {
    min-height: 150px;
    resize: vertical;
}

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0.75rem;
}

.checkbox-grid label {
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
}

.service-option {
    position: relative;
    display: block;
    padding: 22px;
    border: 2px solid #d1d5db;
    border-radius: 16px;
    background: #ffffff;
    cursor: pointer;
    transition: all 0.2s ease;
}

.service-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.service-option span {
    display: block;
    font-size: 32px;
    margin-bottom: 10px;
}

.service-option strong {
    display: block;
    color: #111827;
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.service-option small {
    display: block;
    color: #555;
    line-height: 1.5;
}

.service-option:hover {
    transform: translateY(-3px);
    border-color: #9b123c;
    box-shadow: 0 12px 24px rgba(15,23,42,0.12);
}

.service-option:has(input:checked) {
    border-color: #9b123c;
    background: #fff1f5;
    box-shadow: 0 12px 24px rgba(155,18,60,0.18);
}

.service-check {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 26px;
    height: 26px;
    border: 2px solid #d1d5db;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    color: transparent;
    background: #ffffff;
    transition: all 0.2s ease;
}

.service-option:has(input:checked) .service-check {
    background: #9b123c;
    border-color: #9b123c;
    color: #ffffff;
}

.client-menu-btn.active{
    background:#6b2130;
    color:#ffffff !important;
    border:1px solid #8f314e;
    box-shadow:0 2px 8px rgba(124,29,29,0.35);
}

.client-menu-btn:hover{
    background:#7c1d1d;
}