/*
  Brand palette (Lothringer):
  Dark Navy:  #050d50
  Navy:       #004489
  Blue:       #3399CC
  Cyan:       #66CCFF
  Orange:     #F7AA14
  Grey:       #323E48
*/

html {
    font-size: 14px;
    scroll-behavior: smooth;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

body {
    color: #323E48;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.btn:focus, .btn:active:focus, .form-control:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

header {
    background-color: #050d50;
    position: sticky;
    top: 0;
    z-index: 1030;
    box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}

header .navbar {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

header .navbar-brand {
    text-decoration: none;
}

header .brand-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
    display: block;
}

header .brand-tagline {
    font-size: 0.72rem;
    color: #F7AA14;
    display: block;
    letter-spacing: 0.02em;
}

header .navbar-nav .nav-link {
    color: #ffffff;
    font-weight: 500;
    padding-left: 1rem;
    padding-right: 1rem;
}

header .navbar-nav .nav-link:hover {
    color: #66CCFF;
}

header .nav-cta {
    background: #F7AA14;
    color: #050d50 !important;
    font-weight: 700;
    border-radius: 4px;
    padding: 0.35rem 1.1rem !important;
}

header .nav-cta:hover {
    background: #e69b00;
    color: #050d50 !important;
}

.pricing-section {
    background: #f4f6f8;
    padding: 4.5rem 0;
}

.pricing-section h2 {
    color: #050d50;
    font-weight: 700;
}

.pricing-card {
    border: 2px solid #e0e6ed;
    border-radius: 10px;
    background: #fff;
    padding: 2rem 1.75rem;
    height: 100%;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    border-color: #F7AA14;
    box-shadow: 0 8px 30px rgba(247, 170, 20, 0.2);
}

.pricing-card.featured:hover {
    box-shadow: 0 12px 40px rgba(247, 170, 20, 0.3);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #F7AA14;
    color: #050d50;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 1rem;
    border-radius: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.pricing-card .plan-name {
    font-size: 1rem;
    font-weight: 700;
    color: #004489;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.5rem;
}

.pricing-card .plan-price {
    font-size: 2.4rem;
    font-weight: 700;
    color: #050d50;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.pricing-card .plan-price sup {
    font-size: 1.2rem;
    vertical-align: top;
    margin-top: 0.5rem;
}

.pricing-card .plan-period {
    font-size: 0.82rem;
    color: #6c757d;
    margin-bottom: 1rem;
}

@media (max-width: 767px) {
    .pricing-card .plan-name,
    .pricing-card .plan-price,
    .pricing-card .plan-period {
        text-align: center;
    }
}

.pricing-addons-note {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    background: #fff;
    border: 1.5px solid #e0e6ed;
    border-left: 4px solid #3399CC;
    border-radius: 6px;
    padding: 1.1rem 1.25rem;
    font-size: 0.9rem;
    color: #323E48;
    max-width: 720px;
    margin: 2rem auto 0;
}

.pricing-addons-note i {
    font-size: 1.3rem;
    color: #3399CC;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.pricing-addons-note a {
    color: #004489;
    font-weight: 600;
    text-decoration: none;
}

.pricing-addons-note a:hover {
    text-decoration: underline;
}

.pricing-card .plan-desc {
    font-size: 0.9rem;
    color: #323E48;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 1.25rem;
}

.pricing-card .plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.75rem;
}

.pricing-card .plan-features li {
    font-size: 0.9rem;
    color: #323E48;
    padding: 0.35rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    border-bottom: 1px solid #f1f3f5;
}

.pricing-card .plan-features li:last-child {
    border-bottom: none;
}

.pricing-card .plan-features li i {
    color: #3399CC;
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.pricing-card .plan-features li.unavailable {
    color: #adb5bd;
}

.pricing-card .plan-features li.unavailable i {
    color: #dee2e6;
}

.btn-plan {
    width: 100%;
    padding: 0.65rem;
    font-weight: 600;
    border-radius: 4px;
    border: 2px solid #004489;
    color: #004489;
    background: transparent;
    transition: all 0.2s;
}

.btn-plan:hover {
    background: #004489;
    color: #fff;
}

.btn-plan-featured {
    background: #F7AA14;
    border: 2px solid #F7AA14;
    color: #050d50;
}

.btn-plan-featured:hover {
    background: #e69b00;
    border-color: #e69b00;
    color: #050d50;
}

.modal-header {
    background: linear-gradient(135deg, #050d50 0%, #004489 100%);
    color: #fff;
    border-bottom: none;
    padding: 1.5rem 1.75rem 1rem;
}

.modal-header .modal-title {
    font-weight: 700;
    font-size: 1.2rem;
}

.modal-header .btn-close {
    filter: invert(1) grayscale(100%) brightness(200%);
    opacity: 0.8;
}

.modal-header .btn-close:hover {
    opacity: 1;
}

.modal-body {
    padding: 1.75rem;
}

.modal-body .form-label {
    font-weight: 600;
    font-size: 0.88rem;
    color: #323E48;
    margin-bottom: 0.35rem;
}

.modal-body .form-control,
.modal-body .form-select {
    border: 1.5px solid #ced4da;
    border-radius: 4px;
    font-size: 0.93rem;
    padding: 0.55rem 0.85rem;
}

.modal-body .form-control:focus,
.modal-body .form-select:focus {
    border-color: #3399CC;
    box-shadow: 0 0 0 0.15rem rgba(51, 153, 204, 0.2);
}

.modal-footer {
    border-top: 1px solid #e9ecef;
    padding: 1rem 1.75rem;
    gap: 0.75rem;
}

.btn-submit {
    background: #F7AA14;
    border: 2px solid #F7AA14;
    color: #050d50;
    font-weight: 700;
    padding: 0.6rem 2rem;
    border-radius: 4px;
}

.btn-submit:hover {
    background: #e69b00;
    border-color: #e69b00;
    color: #050d50;
}

.alert-success-custom {
    background: #2d8a3e;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 1rem 1.25rem;
    font-size: 0.93rem;
}

.alert-error-custom {
    background: #fff3cd;
    color: #050d50;
    border-left: 4px solid #F7AA14;
    border-radius: 6px;
    padding: 1rem 1.25rem;
    font-size: 0.93rem;
}

.site-footer {
    background: #050d50;
    color: #9aaab8;
    border-top: 3px solid #F7AA14;
    padding: 2.5rem 0;
}

.site-footer a {
    color: #66CCFF;
    text-decoration: none;
}

.site-footer a:hover {
    color: #fff;
}

.site-footer .footer-brand {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
}

.site-footer .footer-tagline {
    font-size: 0.8rem;
    color: #F7AA14;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1060;
    background: #050d50;
    color: #fff;
    padding: 0.85rem 0;
    box-shadow: 0 -3px 16px rgba(0,0,0,0.25);
    font-size: 0.9rem;
}

.cookie-banner a {
    color: #66CCFF;
    text-decoration: underline;
}

.cookie-accept-btn {
    background: #F7AA14;
    color: #050d50;
    font-weight: 600;
    border: none;
}

.cookie-accept-btn:hover {
    background: #e09a0d;
    color: #050d50;
}

.page-hero {
    background: linear-gradient(135deg, #050d50 0%, #004489 100%);
    color: #fff;
    padding: 3.5rem 0 3rem;
}

.page-hero h1 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.page-hero-lead {
    font-size: 1.05rem;
    color: #66CCFF;
    margin: 0;
    max-width: 600px;
}

.btn-outline-navy {
    border: 2px solid #004489;
    color: #004489;
    background: transparent;
    font-weight: 600;
    border-radius: 4px;
    padding: 0.45rem 1.2rem;
    transition: all 0.2s;
}

.btn-outline-navy:hover {
    background: #004489;
    color: #fff;
}

.section-label {
    font-size: 1.6rem;
    font-weight: 700;
    color: #3399CC;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
    display: block;
}

.section-intro {
    color: #323E48;
    font-size: 1.05rem;
}

/* =====================
   CTA SECTION
   ===================== */

.cta-section {
    background: linear-gradient(135deg, #004489 0%, #050d50 100%);
    color: #fff;
    padding: 5rem 0;
    text-align: center;
}

.cta-section h2 {
    font-weight: 700;
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.cta-section .cta-lead {
    color: #66CCFF;
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-cta {
    background: #F7AA14;
    border: 3px solid #fff;
    color: #050d50;
    font-weight: 700;
    padding: 1rem 3rem;
    font-size: 1.15rem;
    border-radius: 50px;
}

.btn-cta:hover {
    background: #e69b00;
    border-color: #e0e0e0;
    color: #050d50;
}

/* =====================
   HERO SECTION
   ===================== */

.hero {
    background: linear-gradient(135deg, #050d50 0%, #004489 100%);
    color: #fff;
    padding: 5.5rem 0 4.5rem;
}

.hero h1 {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

@media (max-width: 767px) {
    .hero h1 {
        font-size: 2rem;
    }
    .btn-primary-cta,
    .btn-secondary-cta {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 410px) {
    .hero .d-flex {
        flex-direction: column;
        align-items: center;
    }
}

.hero .hero-lead {
    font-size: 1.15rem;
    color: #66CCFF;
    margin-bottom: 2rem;
    max-width: 680px;
}

.hero-brand-logo {
    display: block;
    max-height: 160px;
    width: auto;
    opacity: 0.92;
}

.hero-badge {
    display: inline-block;
    background: rgba(247, 170, 20, 0.15);
    border: 1px solid #F7AA14;
    color: #F7AA14;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.3rem 0.9rem;
    border-radius: 2rem;
    margin-bottom: 1.2rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.btn-primary-cta {
    background: #F7AA14;
    border: 2px solid #F7AA14;
    color: #050d50;
    font-weight: 700;
    padding: 0.75rem 2.2rem;
    font-size: 1rem;
    border-radius: 4px;
}

.btn-primary-cta:hover {
    background: #e69b00;
    border-color: #e69b00;
    color: #050d50;
}

.btn-secondary-cta {
    background: transparent;
    border: 2px solid #66CCFF;
    color: #66CCFF;
    font-weight: 600;
    padding: 0.75rem 2.2rem;
    font-size: 1rem;
    border-radius: 4px;
}

.btn-secondary-cta:hover {
    background: rgba(102, 204, 255, 0.12);
    color: #fff;
    border-color: #fff;
}

/* =====================
   HERO PRICE BOX
   ===================== */

.hero-price-box {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    padding: 2rem 2rem;
    min-width: 260px;
}

.hero-price-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 0.55rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.hero-price-row-hosting {
    border-bottom: none;
}

.hero-price-label {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.75);
}

.hero-price-val {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
}

.hero-price-val small {
    font-size: 0.8rem;
    font-weight: 400;
    color: rgba(255,255,255,0.6);
}

.hero-price-note {
    font-size: 0.75rem;
    color: #F7AA14;
    margin-top: 0.9rem;
    text-align: center;
}

/* =====================
   VALUE STRIP
   ===================== */

.value-strip {
    background: #F7AA14;
    padding: 1.4rem 0;
}

.value-strip .value-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: #050d50;
    font-weight: 600;
    font-size: 0.95rem;
}

.value-strip .value-item i {
    font-size: 1.2rem;
}

/* =====================
   MINI SERVICE CARDS
   ===================== */

.mini-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.5rem;
    padding: 1rem 0.5rem;
    border: 1.5px solid #e0e6ed;
    border-radius: 8px;
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
    height: 100%;
}

.mini-card:hover {
    border-color: #3399CC;
    box-shadow: 0 4px 12px rgba(51,153,204,0.12);
}

.mini-card i {
    font-size: 1.5rem;
    color: #3399CC;
}

.mini-card span {
    font-size: 0.8rem;
    font-weight: 600;
    color: #004489;
    line-height: 1.25;
}

/* =====================
   AZURE BANNER
   ===================== */

.azure-banner {
    background: linear-gradient(135deg, #050d50 0%, #004489 100%);
    padding: 2rem 0;
}

.azure-banner-icon {
    font-size: 2.5rem;
    color: #66CCFF;
    flex-shrink: 0;
}

.azure-banner-title {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.2rem;
}

.azure-banner-sub {
    font-size: 0.85rem;
    color: #9aaab8;
}

.azure-banner-stat {
    text-align: center;
}

.azure-banner-stat-val {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.azure-banner-stat-label {
    font-size: 0.72rem;
    color: #9aaab8;
    margin-top: 0.2rem;
}

/* =====================
   HUMAN SUPPORT SECTION
   ===================== */

.human-support-section {
    background: #fff8ec;
    border-top: 3px solid #F7AA14;
    border-bottom: 3px solid #F7AA14;
    padding: 3rem 0;
}

.human-support-inner {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    max-width: 820px;
    margin: 0 auto;
}

.human-support-icon {
    color: #F7AA14;
    flex-shrink: 0;
    align-self: stretch;
    display: flex;
    align-items: center;
    font-size: 5rem;
}

.human-support-section h2 {
    font-size: 1.45rem;
    font-weight: 700;
    color: #050d50;
    margin-bottom: 0.6rem;
}

.human-support-section p {
    color: #323E48;
    font-size: 1rem;
    margin: 0;
    line-height: 1.65;
}

@media (max-width: 575px) {
    .human-support-inner {
        flex-direction: row;
        align-items: baseline;
        gap: 0.75rem;
    }
    .human-support-icon {
        font-size: 1.6rem;
        align-self: auto;
        display: block;
    }
}

/* =====================
   PROCESS SECTION
   ===================== */

.process-section {
    background: #f4f6f8;
    padding: 4.5rem 0;
}

.process-section h2 {
    color: #050d50;
    font-weight: 700;
}

.process-step {
    text-align: center;
    padding: 1rem;
}

.process-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #004489;
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.process-step.gold .process-num {
    background: #F7AA14;
    color: #050d50;
}

.process-step h6 {
    font-weight: 700;
    color: #004489;
    margin-bottom: 0.4rem;
}

.process-step p {
    font-size: 0.88rem;
    color: #6c757d;
    margin: 0;
}

.process-arrow {
    font-size: 1.6rem;
    color: #adb5bd;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: calc((56px) / 2);
}

@media (max-width: 767px) {
    .process-arrow {
        transform: rotate(90deg);
        padding-top: 0;
        padding-bottom: 0.5rem;
    }
}

