/* Cape Sky Media - Main Stylesheet */

:root {
    --blue: #006dcc;
    --blue-dark: #004f9e;
    --text-dark: #07162f;
    --text-medium: #3f4b5f;
    --light-grey: #f6f8fb;
    --border-grey: #dfe5ee;
    --white: #ffffff;
    --yellow: #ffc400;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-y: scroll;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

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



/* Header */

.site-header {
    background: var(--white);
}

.site-header::after {
    content: "";
    display: block;
    max-width: 1264px;
    height: 1px;
    margin: 0 auto;
    background: var(--border-grey);
}

.header-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 5px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo-area {
    display: flex;
    align-items: center;
}

.site-logo {
    display: block;
    width: auto;
    height: 120px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    font-size: 0.88rem;
    font-weight: 700;
    text-transform: uppercase;
}

.main-nav a {
    padding: 8px 0;
    border-bottom: 3px solid transparent;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--blue);
    border-bottom-color: var(--blue);
}

/* Buttons */

.btn {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 10px;
    font-size: 0.88rem;
    font-weight: 600;
    text-transform: uppercase;
    transition: 0.2s ease;
}

.btn-primary {
    background: var(--blue);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--blue-dark);
}

.btn-secondary {
    color: var(--blue);
}

.btn-secondary:hover {
    color: var(--blue-dark);
}

/* Hero */

.hero-section {
    max-width: 1264px;
    height: 275px;
    margin: 24px auto 0 auto;

    background-image: url("../gfx/hero_image.png");
    background-size: 1264px 275px;
    background-position: center center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-content {
    width: 550px;
    padding: 30px 0;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 2.1rem;
    font-weight: 700;
    line-height: 1.1;
    color: #0D6BD8;
    margin-bottom: 10px;
}

.hero-subtitle {
    margin-bottom: 16px;
}

.hero-content p {
    margin-bottom: 18px;
}

.hero-buttons {
    display: flex;
    gap: 18px;
    align-items: center;
}



/* Cards */

.cards-section {
    background: var(--white);
    padding: 42px 32px 38px;
}

.cards-container {
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    gap: 32px;
    justify-content: center;
}

.service-card {
    flex: 1;
    max-width: 400px;
    min-height: 380px;
    background: var(--white);
    border: 1px solid var(--border-grey);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.card-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.card-content {
    position: relative;
    padding: 48px 28px 26px;
}

.card-icon {
    position: absolute;
    top: -34px;
    left: 28px;
    width: 68px;
    height: 68px;
    background: var(--blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    border: 5px solid var(--white);
}

.card-content h2 {
    font-weight: 700;
    line-height: 1.1;
    color: #0D6BD8;
    font-size: 1.35rem;
    margin-bottom: 8px;
}

.card-content p {
    color: var(--text-medium);
    margin-bottom: 18px;
}

.read-more {
    color: var(--blue);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.read-more:hover {
    color: var(--blue-dark);
}

/* Footer */

.site-footer {
    max-width: 1264px;
    margin: 30px auto 0 auto;
    background: var(--white);
    border-top: 1px solid var(--border-grey);
    padding: 18px 0;
}

.footer-inner {
    max-width: 1264px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: center;
    color: var(--text-medium);
    padding: 0 24px;
    background: var(--white);
}

.footer-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-item a:hover {
    color: var(--blue);
}

.footer-icon {
    color: var(--blue);
    font-size: 1.2rem;
}

.footer-centre {
    text-align: center;
}

.footer-whatsapp {
    display: flex;
    align-items: center;
    gap: 10px;
}

.whatsapp-icon {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

/*               */
/* Content Pages */
/*               */


.content-page {
    max-width: 1264px;
    margin: 30px auto;
    padding: 0 0 35px 0;
}

.content-intro {
    display: flex;
    gap: 42px;
    align-items: flex-start;
    margin-bottom: 34px;
}

.content-intro-text {
    flex: 1;
    max-width: 730px;
}

.content-intro-text h1 {
    font-size: 2.1rem;
    line-height: 1.15;
    color: var(--blue);
    margin-bottom: 20px;
}

.content-intro-text h2 {
    color: var(--blue);
    font-size: 1.45rem;
    margin-top: 34px;
    margin-bottom: 14px;
    line-height: 1.2;
}

.content-intro-text p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 24px;
}

.content-intro-text .btn {
    margin-top: 22px;
}

.lead-text {
    font-size: 1.12rem;
    color: var(--text-dark) !important;
    font-weight: 600;
    margin-bottom: 22px;
}

.content-side {
    width: 420px;
    flex-shrink: 0;
}

.content-image img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.included-box {
    margin-top: 26px;
    padding: 24px;
    border: 1px solid var(--border-grey);
    border-radius: 6px;
    background: var(--white);
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}

.included-box h2 {
    font-size: 1.25rem;
    color: var(--blue);
    margin-bottom: 14px;
}

.content-list {
    margin: 0 0 0 18px;
    color: var(--text-medium);
}

.content-list li {
    margin-bottom: 8px;
}

/*                                */
/* Every Business Online Packages */
/*                                */

.ebo-packages {
    display: flex;
    gap: 32px;
    justify-content: center;
    align-items: stretch;
    margin: 42px 0;
}

.ebo-package-card {
    flex: 1;
    max-width: 400px;
    min-height: 340px;
    border: 1px solid var(--border-grey);
    border-radius: 6px;
    background: var(--white);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    padding: 30px 26px 28px 26px;
    text-align: center;

    display: flex;
    flex-direction: column;
}

.ebo-package-card h1 {
    font-size: 2.2rem;
    line-height: 1.1;
    margin: 0 0 8px 0;
    font-weight: 700;
    letter-spacing: 1px;
}

.ebo-package-card .package-umsinga {
    color: #CD7F32;
}

.ebo-package-card .package-umsele {
    color: #A8A8A8;
}

.ebo-package-card .package-umlambo {
    color: #D4AF37;
}

.package-subtitle {
    color: var(--text-medium);
    font-weight: 600;
    font-style: italic;
    margin-bottom: 16px;
}

.package-price {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 24px 0;
}

.ebo-package-card .content-list {
    text-align: left;
    margin: 0 0 28px 24px;
    color: var(--text-medium);
}

.ebo-package-card .content-list li {
    margin-bottom: 8px;
}

.ebo-package-card .btn {
    display: inline-block;
    margin: auto auto 0 auto;
}

.ebo-after-text-full {
    width: 100%;
    margin-top: 40px;
}

.ebo-after-text-full p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 24px;
}

.package-spacer {
    flex: 1;
}

.ebo-package-card .content-list {
    text-align: left;
    margin: 0 auto 28px auto;
    padding-left: 22px;
    color: var(--text-medium);
}

.ebo-package-card .btn {
    display: inline-block;
    align-self: center;
    margin-top: 0;
}

.ebo-info-box {
    background: #fff5f5;
    border: 1px solid #d9534f;
    border-left: 5px solid #d9534f;
    color: #7a1f1c;
    padding: 15px 20px;
    margin: 30px 0;
    border-radius: 6px;
    font-size: 0.95rem;
    line-height: 1.6;
}

/*                */
/* EBO Order Form */
/*                */

.ebo-order-page {
    max-width: 850px;
}

.ebo-order-page h1 {
    color: var(--blue);
    font-size: 2.1rem;
    margin-bottom: 20px;
}

.ebo-form {
    margin-top: 30px;
}

.ebo-form h2 {
    color: var(--blue);
    font-size: 1.35rem;
    margin: 32px 0 14px 0;
}

.ebo-form label {
    display: block;
    margin: 16px 0 6px 0;
    font-weight: 600;
    color: var(--text-dark);
}

.ebo-form input,
.ebo-form select,
.ebo-form textarea {
    width: 100%;
    padding: 11px 12px;
    border: 1px solid var(--border-grey);
    border-radius: 6px;
    font-family: inherit;
    font-size: 0.95rem;
}

.ebo-form textarea {
    resize: vertical;
}

.terms-check {
    margin: 24px 0;
}

.terms-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.terms-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.terms-label a {
    color: var(--blue);
    font-weight: 600;
}

.form-error {
    background: #fff5f5;
    border-left: 5px solid #d9534f;
    padding: 15px 18px;
    margin: 22px 0;
    color: #7a1f1c;
}

.form-success {
    background: #f3fff5;
    border-left: 5px solid #28a745;
    padding: 20px 22px;
    margin: 26px 0;
}

.form-success h2 {
    color: #1f7a34;
    margin-bottom: 8px;
}

.order-reference {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--blue);
    text-align: center;
    margin: 20px 0;
    letter-spacing: 2px;
}


@media (max-width: 850px) {
    .ebo-packages {
        flex-direction: column;
        align-items: center;
    }

    .ebo-package-card {
        max-width: 520px;
        width: 100%;
    }
}

.content-intro-full {
    max-width: 100%;
}

.ebo-after-text-full {
    width: 100%;
    margin-top: 40px;
}

.ebo-after-text-full p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 24px;
}

.ebo-intro-full {
    max-width: 1264px;
}

.ebo-intro-full h1 {
    color: var(--blue);
    font-size: 2.1rem;
    margin-bottom: 20px;
}

.ebo-intro-full p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 24px;
}

.ebo-package-card .btn {
    display: inline-block;
    margin-top: 28px;
}

.website-field {
    display: none;
}
/*                   */
/* Industry Showcase */
/*                   */

.showcase-page {
    max-width: 1264px;
    margin: 24px auto 30px auto;
    padding: 0 0 35px 0;
}

/* Showcase Hero - matched to homepage proportions */

.showcase-hero {
    min-height: 275px;
    background: var(--white);
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-bottom: 48px;
}

.showcase-hero-content {
    width: 550px;
    padding: 30px 0;
    position: relative;
    z-index: 2;
}

.showcase-kicker {
    display: inline-block;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--blue);
}

.showcase-hero h1 {
    font-size: 2.1rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--blue);
    margin-bottom: 12px;
}

.showcase-hero p {
    color: var(--text-dark);
    margin-bottom: 18px;
    max-width: 560px;
}

.showcase-hero-buttons {
    display: flex;
    gap: 18px;
    align-items: center;
    flex-wrap: wrap;
}

.showcase-hero-image {
    flex: 1;
    min-height: 275px;
    background-image: url("../gfx/showcase/hero.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

/* Intro */

.showcase-intro {
    max-width: 980px;
    margin: 0 auto 50px auto;
    text-align: center;
}

.showcase-intro h2,
.showcase-note h2,
.showcase-final-cta h2,
.section-heading h2 {
    color: var(--blue);
    font-size: 2rem;
    line-height: 1.15;
    margin-bottom: 18px;
}

.showcase-intro p,
.showcase-note p,
.showcase-final-cta p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 18px;
}

/* Mosaic */

.showcase-mosaic-section {
    margin-bottom: 58px;
}

.showcase-mosaic {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-auto-rows: 190px;
    gap: 18px;
}

.showcase-mosaic div {
    overflow: hidden;
    border-radius: 6px;
    border: 1px solid var(--border-grey);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.showcase-mosaic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.showcase-mosaic img:hover {
    transform: scale(1.04);
}

.mosaic-large {
    grid-row: span 2;
}

/* Philosophy */

.showcase-philosophy {
    margin-bottom: 36px;
}

.philosophy-grid {
    display: flex;
    gap: 32px;
    justify-content: center;
}

.philosophy-card {
    flex: 1;
    background: var(--white);
    border: 1px solid var(--border-grey);
    border-radius: 6px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    padding: 28px;
}

.philosophy-card h3 {
    color: var(--blue);
    font-size: 1.25rem;
    line-height: 1.15;
    margin-bottom: 12px;
}

.philosophy-card p {
    color: var(--text-medium);
    line-height: 1.7;
}

/* Industry Grid */

.industry-grid-section {
    margin-bottom: 58px;
}

.section-heading {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 36px auto;
}

.section-heading p {
    color: var(--text-medium);
    line-height: 1.8;
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 36px;
}

.industry-card {
    background: var(--white);
    border: 1px solid var(--border-grey);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12);
}

.industry-card img {
    width: 100%;
    height: 170px;
    object-fit: cover;
}

.industry-card-content {
    padding: 22px;
}

.industry-card-content h3 {
    color: var(--blue);
    font-size: 1.15rem;
    line-height: 1.15;
    margin-bottom: 10px;
}

.industry-card-content p {
    color: var(--text-medium);
    font-size: 0.92rem;
    line-height: 1.55;
}

/* Notes and CTA */

.showcase-note {
    max-width: 900px;
    margin: 0 auto 48px auto;
    padding: 32px;
    background: var(--light-grey);
    border: 1px solid var(--border-grey);
    border-radius: 6px;
    text-align: center;
}

.showcase-final-cta {
    max-width: 900px;
    margin: 0 auto;
    padding: 36px 32px;
    background: var(--white);
    border: 1px solid var(--border-grey);
    border-radius: 6px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.showcase-final-cta .btn {
    margin-top: 10px;
}


@media (max-width: 1050px) {
    .showcase-page {
        margin-left: 18px;
        margin-right: 18px;
    }

    .showcase-hero {
        flex-direction: column;
        align-items: stretch;
    }

    .showcase-hero-content {
        width: 100%;
        text-align: center;
        padding: 42px 24px;
    }

    .showcase-hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .showcase-hero-buttons {
        justify-content: center;
    }

    .showcase-hero-image {
        min-height: 240px;
    }

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

    .philosophy-grid {
        flex-direction: column;
    }

    .showcase-mosaic {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 650px) {
    .industry-grid,
    .showcase-mosaic {
        grid-template-columns: 1fr;
    }

    .mosaic-large {
        grid-row: span 1;
    }

    .showcase-mosaic {
        grid-auto-rows: 230px;
    }

    .industry-card img {
        height: 220px;
    }
}

/* Concept Websites */

.concepts-page {
    max-width: 1264px;
    margin: 24px auto 30px auto;
    padding: 0 0 35px 0;
}

.concepts-hero {
    margin-bottom: 42px;
}

.concepts-grid-section {
    margin-bottom: 42px;
}

.concepts-grid {
    display: flex;
    gap: 32px;
    justify-content: center;
    align-items: stretch;
}

.concept-card {
    flex: 1;
    max-width: 400px;
    background: var(--white);
    border: 1px solid var(--border-grey);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
}

.concept-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    object-position: top center;
    border-bottom: 1px solid var(--border-grey);
}

.concept-card-content {
    padding: 26px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.concept-card-content h2 {
    color: var(--blue);
    font-size: 1.35rem;
    line-height: 1.15;
    margin-bottom: 12px;
}

.concept-card-content p {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 24px;
}

.concept-card-content .btn {
    margin-top: auto;
    align-self: flex-start;
}

@media (max-width: 850px) {
    .concepts-page {
        margin: 20px 18px;
    }

    .concepts-grid {
        flex-direction: column;
        align-items: center;
    }

    .concept-card {
        max-width: 520px;
        width: 100%;
    }

    .concept-card img {
        height: 260px;
    }
}

.concepts-hero {
    margin: 42px auto 42px auto;
    text-align: center;
}

.concepts-hero .section-heading h1 {
    color: var(--blue);
    font-size: 2.1rem;
    line-height: 1.15;
    
    margin: 0 auto 16px auto;
}

.concepts-hero .section-heading p {
    max-width: 760px;
    margin: 0 auto;
    color: var(--text-medium);
    line-height: 1.8;
}

.concept-card {
    box-shadow: 0 10px 28px rgba(0,0,0,0.08);
}

.concept-card img {
    box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}

.concepts-grid-section {
    margin-bottom: 52px;
}

/* ABOUT PAGE */

/* Generic page hero used on inner pages */
.page-hero {
    max-width: 1264px;
    margin: 34px auto 0 auto;
    padding: 0 0 30px 0;
    border-bottom: 1px solid var(--border-grey);
}

.page-hero-content {
    max-width: 820px;
}

.page-hero h1 {
    font-size: 2.1rem;
    line-height: 1.15;
    color: var(--blue);
    margin-bottom: 10px;
}

.page-hero p {
    color: var(--text-medium);
    font-size: 1.08rem;
    line-height: 1.7;
}

.about-page {
    max-width: 1100px;
    margin: 0 auto;
    padding: 48px 20px 80px;
}

.about-opening {
    max-width: 820px;
    margin: 0 auto 46px auto;
    text-align: center;
}

.about-opening p {
    color: var(--text-dark);
    font-size: 1.12rem;
    line-height: 1.8;
    font-weight: 700;
}

.about-content {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 50px;
    align-items: start;
}

.about-profile-card {
    background: var(--white);
    border: 1px solid var(--border-grey);
    border-radius: 14px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.about-photo-placeholder {
    width: 100%;
    height: 360px;
    border-radius: 12px;
    background: var(--light-grey);
    border: 2px dashed #cfd8dc;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #607d8b;
    font-weight: 600;
    margin-bottom: 22px;
}

.about-photo {
    width: 100%;
    height: 360px;
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
    margin-bottom: 22px;
}

.about-profile-card h2 {
    color: var(--blue);
    font-size: 1.35rem;
    line-height: 1.15;
    margin-bottom: 6px;
}

.about-title {
    font-weight: 700;
    color: var(--text-dark);
}

.about-text h2 {
    color: var(--blue);
    font-size: 1.45rem;
    line-height: 1.2;
    margin-bottom: 14px;
}

.about-text p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 22px;
}

.about-cta {
    margin-top: 32px;
}

/* ================================
   Launch Promo Page
================================ */

.launch-page {
    background: #ffffff;
}

.launch-hero {
    padding: 70px 20px;
    background: linear-gradient(135deg, #f4f9fc 0%, #ffffff 55%, #eef7fb 100%);
}

.launch-hero-inner {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.launch-eyebrow {
    color: #1f7fa8;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.launch-hero h1 {
    color: #1f7fa8;
    font-size: clamp(2.2rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 20px;
}

.launch-hero-lead {
    font-size: 1.2rem;
    line-height: 1.7;
    max-width: 720px;
    color: #333;
    margin-bottom: 30px;
}

.launch-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.launch-hero-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 32px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(31, 127, 168, 0.15);
}

.launch-hero-card h2 {
    color: #1f7fa8;
    margin-bottom: 10px;
}

.launch-price {
    font-size: 2.4rem;
    font-weight: 800;
    color: #222;
    margin-bottom: 10px;
}

.launch-note {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.launch-hero-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.launch-hero-card li {
    padding: 9px 0 9px 28px;
    position: relative;
    color: #333;
}

.launch-hero-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1f7fa8;
    font-weight: 800;
}

.launch-section {
    max-width: 1180px;
    margin: 0 auto;
    padding: 70px 20px;
}

.launch-section-header {
    max-width: 780px;
    margin-bottom: 35px;
}

.launch-section-header h2,
.launch-highlight h2,
.launch-cta h2 {
    color: #1f7fa8;
    font-size: 2rem;
    margin-bottom: 15px;
}

.launch-section-header p,
.launch-highlight p,
.launch-cta p {
    color: #444;
    line-height: 1.7;
    font-size: 1.05rem;
}

.launch-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.launch-benefit-card {
    background: #f7fbfd;
    border-radius: 16px;
    padding: 28px;
    border: 1px solid rgba(31, 127, 168, 0.12);
}

.launch-benefit-card h3 {
    color: #1f7fa8;
    margin-bottom: 10px;
}

.launch-benefit-card p {
    color: #444;
    line-height: 1.6;
}

.launch-highlight {
    background: #1f7fa8;
    color: #ffffff;
    padding: 70px 20px;
}

.launch-highlight-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.launch-highlight h2,
.launch-highlight p {
    color: #ffffff;
}

.launch-business-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.launch-business-grid span {
    background: #f4f9fc;
    border: 1px solid rgba(31, 127, 168, 0.14);
    border-radius: 999px;
    padding: 12px 18px;
    text-align: center;
    color: #333;
    font-weight: 600;
}

.launch-cta {
    max-width: 980px;
    margin: 0 auto 70px auto;
    padding: 50px 25px;
    text-align: center;
    background: #f7fbfd;
    border-radius: 22px;
    border: 1px solid rgba(31, 127, 168, 0.15);
}

.launch-cta p {
    max-width: 720px;
    margin: 0 auto 25px auto;
}

/* Launch Promo Responsive */
@media (max-width: 900px) {
    .launch-hero-inner {
        grid-template-columns: 1fr;
    }

    .launch-benefits {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 520px) {
    .launch-hero {
        padding: 45px 18px;
    }

    .launch-section {
        padding: 50px 18px;
    }

    .launch-business-grid {
        grid-template-columns: 1fr;
    }

    .launch-hero-card {
        padding: 24px;
    }
}

/*            */
/* Responsive */
/*            */


@media (max-width: 1050px) {

    .header-inner {
        flex-direction: column;
        gap: 16px;
    }

    .main-nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .header-cta {
        display: none;
    }

    .cards-container {
        gap: 22px;
    }
}

@media (max-width: 850px) {

    .site-logo {
        width: 260px;
        height: auto;
    }

    .main-nav {
        gap: 18px;
        font-size: 0.78rem;
    }

    .hero-section {
        height: auto;
        margin: 18px;

        background-image:
            linear-gradient(
                rgba(255,255,255,0.92),
                rgba(255,255,255,0.92)
            ),
            url("../gfx/hero_image.png");

        background-size: cover;
    }

    .hero-content {
        width: 100%;
        padding: 48px 24px;
        text-align: center;
    }

    .hero-content h1,
    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .cards-container {
        flex-direction: column;
        align-items: center;
    }

    .service-card {
        max-width: 520px;
        width: 100%;
    }

    .content-page {
        margin: 20px 18px;
    }

    .content-intro {
        flex-direction: column;
    }

    .content-intro-text {
        max-width: 100%;
    }

    .content-side {
        width: 100%;
    }

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

    .page-hero {
        margin: 24px 18px 0 18px;
        padding-bottom: 24px;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .about-page {
        padding: 36px 18px 60px;
    }

    .about-opening {
        text-align: left;
        margin-bottom: 34px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .about-profile-card {
        max-width: 380px;
        width: 100%;
        margin: 0 auto;
    }

    .about-photo-placeholder,
    .about-photo {
        height: 320px;
    }
}

@media (max-width: 520px) {

    .header-inner {
        padding: 16px 18px;
    }

    .site-logo {
        width: 230px;
        height: auto;
    }

    .main-nav {
        flex-direction: column;
        gap: 8px;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1.05rem;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .cards-section {
        padding: 30px 18px;
    }

    .card-content {
        padding: 44px 22px 24px;
    }
}

@media (max-width: 1100px) {
    .industry-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {
    .industry-grid {
        grid-template-columns: 1fr;
    }

    .industry-card img {
        height: 220px;
    }
}