/* CSS Reset & Variables aligned with Logo Palette */
:root {
    --brand-blue: #0066CC;       /* Matching the vibrant W and crest accents */
    /* --brand-gray: #707273; */      /* Matching the corporate text color */
    --brand-gray: #696969;       /* Matching the corporate text color */
    --tech-dark: #1C1E21;        /* Midnight text base */
    --surface-light: #F8F9FA;    /* Soft backdrop gray */
    --border-color: #E2E5E8;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--tech-dark);
    background-color: #FFFFFF;
}
h1, h2, h3, h4 {
    font-family: 'Archivo', "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    color: var(--tech-dark);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Fixed Navigation Header */
header {
    background-color: #FFFFFF;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
}
.brand-logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}
.logo-img {
    height: 48px; /* Perfectly scales the wide banner logo layout */
    width: auto;
    display: block;
}
.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}
.nav-links a {
    text-decoration: none;
    color: var(--brand-gray);
    font-weight: 600;
    font-size: 15px;
    transition: color 0.2s ease;
}
.nav-links a:hover {
    color: var(--brand-blue);
}
.cta-nav {
    background-color: var(--brand-blue);
    color: #FFFFFF !important;
    padding: 12px 24px;
    border-radius: 4px;
    transition: opacity 0.2s ease !important;
}
.cta-nav:hover {
    opacity: 0.9;
}

/* Hero Landing Component */
.hero {
    background: linear-gradient(145deg, #FFFFFF 0%, var(--surface-light) 100%);
    border-bottom: 1px solid var(--border-color);
    padding: 110px 0;
    text-align: center;
}
.hero h1 {
    font-size: 44px;
    letter-spacing: -0.5px;
    margin-bottom: 24px;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}
.hero p {
    font-size: 19px;
    color: var(--brand-gray);
    max-width: 720px;
    margin: 0 auto 40px auto;
}
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}
.btn-primary {
    background-color: var(--brand-blue);
    color: #FFFFFF;
    padding: 16px 32px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.2s;
}
.btn-primary:hover {
    opacity: 0.9;
}
.btn-secondary {
    border: 2px solid var(--brand-gray);
    color: var(--tech-dark);
    padding: 14px 32px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}
.btn-secondary:hover {
    background-color: var(--brand-gray);
    color: #FFFFFF;
}

/* Modular Segment Layouts */
.section-padding {
    padding: 90px 0;
}
.section-title {
    text-align: center;
    font-size: 34px;
    margin-bottom: 16px;
}
.section-subtitle {
    text-align: center;
    color: var(--brand-gray);
    margin-bottom: 60px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

/* Specialized Solutions Blocks */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}
.service-card {
    background: #FFFFFF;
    padding: 45px 35px;
    border-radius: 6px;
    border: 1px solid var(--border-color);
    transition: transform 0.2s, border-color 0.2s;
}
.service-card:hover {
    transform: translateY(-4px);
    border-color: var(--brand-blue);
}
.service-icon {
    font-size: 34px;
    color: var(--brand-blue);
    margin-bottom: 24px;
}
.service-card h3 {
    font-size: 21px;
    margin-bottom: 14px;
}
.service-card p {
    color: var(--brand-gray);
    font-size: 15px;
}

/* Dual Action Panels matching Brand Contrast */
.solutions-split {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    border-top: 1px solid var(--border-color);
}
.solution-panel {
    padding: 90px 70px;
}
.panel-gray {
    background-color: var(--surface-light);
    border-right: 1px solid var(--border-color);
}
.panel-blue {
    background-color: var(--tech-dark);
    color: #FFFFFF;
}
.panel-blue h2, .panel-blue h3 {
    color: #FFFFFF;
}
.panel-blue p {
    color: #A0AEC0;
}
.solution-panel h3 {
    color: var(--brand-blue);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}
.solution-panel h2 {
    font-size: 30px;
    margin-bottom: 20px;
}
.solution-panel p {
    margin-bottom: 35px;
    font-size: 16px;
}

/* Structured Footer */
footer {
    background-color: var(--tech-dark);
    color: #A0AEC0;
    padding: 70px 0 40px 0;
    font-size: 14px;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}
.footer-col h4 {
    color: #FFFFFF;
    margin-bottom: 24px;
    font-size: 16px;
    letter-spacing: 0.5px;
}
.footer-col ul {
    list-style: none;
}
.footer-col ul li {
    margin-bottom: 12px;
}
.footer-col ul li a {
    color: #A0AEC0;
    text-decoration: none;
    transition: color 0.2s;
}
.footer-col ul li a:hover {
    color: #FFFFFF;
}
.footer-bottom {
    border-top: 1px solid #2D3136;
    padding-top: 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Screen Adaptations */
@media(max-width: 768px) {
    .nav-links { display: none; }
    .solutions-split { grid-template-columns: 1fr; }
    .solution-panel { padding: 50px 24px; }
    .hero h1 { font-size: 34px; }
}

/* Scoped Styles for Tier Service Blocks */
.tier-section {
    padding: 80px 0;
    background-color: #FFFFFF;
    border-bottom: 1px solid #E2E5E8;
}
.tier-section.alt-bg {
    background-color: #F8F9FA;
}
.tier-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.tier-meta {
    font-family: 'Archivo', sans-serif;
    color: #0066CC; /* Brand Cobalt Blue */
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    margin-bottom: 12px;
}
.tier-title {
    font-family: 'Archivo', sans-serif;
    font-size: 36px;
    color: #1C1E21;
    margin-bottom: 20px;
    line-height: 1.2;
}
.tier-description {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 16px;
    color: #707273; /* Brand Slate Gray */
    margin-bottom: 30px;
    line-height: 1.6;
}
.feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 35px;
}
.feature-item {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 15px;
    color: #1C1E21;
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.feature-icon {
    color: #0066CC;
    font-weight: bold;
}
.tier-cta {
    display: inline-block;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    background-color: #0066CC;
    color: #FFFFFF;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 4px;
    font-weight: 600;
    transition: opacity 0.2s ease;
}
.tier-cta:hover {
    opacity: 0.9;
}
.badge-box {
    background-color: #FFFFFF;
    border: 1px solid #E2E5E8;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}
.badge-box.dark {
    background-color: #1C1E21;
    border-color: #1C1E21;
    color: #FFFFFF;
}
.badge-box.dark h3 {
    color: #FFFFFF;
    font-family: 'Archivo', sans-serif;
    margin-bottom: 15px;
}
.badge-box h3 {
    font-family: 'Archivo', sans-serif;
    font-size: 22px;
    color: #1C1E21;
    margin-bottom: 15px;
}

/* Responsive adjustments */
@media(max-width: 768px) {
    .tier-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .tier-title {
        font-size: 28px;
    }
}

/* Scoped Footer Styling Block */
.wavespear-footer {
    background-color: #1C1E21; /* Tech Dark base from palette */
    color: #A0AEC0;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 14px;
    line-height: 1.6;
    padding: 80px 0 30px 0;
    border-top: 4px solid #0066CC; /* Brand Cobalt Blue Highlight Bar */
}
.footer-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.footer-main-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 60px;
}
.footer-brand-col p {
    margin-top: 15px;
    color: #A0AEC0;
    max-width: 280px;
    font-size: 14px;
}
.footer-logo-img {
    height: 40px; /* Maintains clean scaling for the WebP banner asset */
    width: auto;
    display: block;
}
.footer-heading {
    font-family: 'Archivo', sans-serif;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 25px;
    text-transform: uppercase;
}
.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links-list li {
    margin-bottom: 12px;
}
.footer-links-list a {
    color: #A0AEC0;
    text-decoration: none;
    transition: color 0.2s ease;
}
.footer-links-list a:hover {
    color: #0066CC; /* Brand Cobalt Blue hover state */
}
.footer-contact-info {
    color: #A0AEC0;
}
.footer-contact-info p {
    margin-bottom: 12px;
}
.footer-contact-info strong {
    color: #FFFFFF;
}
.footer-bottom-bar {
    border-top: 1px solid #2D3136;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.footer-copyright {
    color: #707273; /* Brand Slate Gray */
    font-size: 13px;
}
.footer-legal-links {
    display: flex;
    gap: 25px;
}
.footer-legal-links a {
    color: #707273; /* Brand Slate Gray */
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s ease;
}
.footer-legal-links a:hover {
    color: #FFFFFF;
}

/* Tablet and Mobile Responsive Layout Rules */
@media (max-width: 992px) {
    .footer-main-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}
@media (max-width: 576px) {
    .footer-main-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .footer-bottom-bar {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Others (by Albertus) */

ul.no-dots {
  list-style-type: none; /* Removes the dots */
  margin: 0;              /* Removes default list spacing */
  padding: 0;             /* Removes default list indentation */
}
