@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600;700&family=Poppins:wght@400;500;600;700&display=swap");

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: "Poppins", Arial, Helvetica, sans-serif;
    color: white;
    background:
        radial-gradient(circle at 18% 38%, rgba(190, 244, 255, 0.75), transparent 34%),
        radial-gradient(circle at 78% 58%, rgba(255, 238, 154, 0.58), transparent 36%),
        linear-gradient(115deg, #effcff 0%, #eefcff 45%, #faf7df 100%);
    background-attachment: fixed;
}

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

h1,
h2 {
    font-family: "Playfair Display", Georgia, "Times New Roman", serif;
}

.page-shell {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding: 22px 0 0;
}

/* =========================
   DESKTOP HERO
========================= */

.hero {
    position: relative;
    width: min(86vw, 1180px);
    aspect-ratio: 2048 / 1253;
    height: auto;
    margin: 0 auto;
    background-image: url("./assets/hero.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
}

.desktop-logo-link {
    position: absolute;
    top: -25px;
    left: 63px;
    z-index: 5;
    display: inline-flex;
    width: 150px;
}

.desktop-logo {
    display: block;
    width: 150px;
    height: 150px;
}

.desktop-nav {
    position: absolute;
    top: 30px;
    right: 70px;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 62px;
    font-family: "Poppins", Arial, Helvetica, sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: white;
}

.desktop-nav a {
    position: relative;
    display: inline-flex;
    width: max-content;
    padding-bottom: 8px;
    opacity: 0.9;
}

.desktop-nav a.active {
    opacity: 1;
}

.desktop-nav a.active::after {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background: #ffd700;
    content: "";
}

.hero-content {
    position: absolute;
    top: 51%;
    left: 50%;
    z-index: 2;
    display: flex;
    width: min(92%, 900px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transform: translate(-50%, -38%);
}

.hero h1 {
    margin: 0;
    font-family: "Playfair Display", Georgia, "Times New Roman", serif;
    font-size: clamp(38px, 4vw, 54px);
    font-weight: 600;
    line-height: 1.08;
    color: white;
    text-align: center;
    white-space: nowrap;
}

.hero h1 span {
    color: #ffd700;
}

.hero p {
    max-width: 560px;
    margin: 22px 0 0;
    font-family: "Poppins", Arial, Helvetica, sans-serif;
    font-size: 14.5px;
    font-weight: 400;
    line-height: 1.65;
    color: white;
    text-align: center;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 24px;
    padding: 15px 28px;
    border: 0;
    border-radius: 13px;
    background: #ffd700;
    color: black;
    font-family: "Poppins", Arial, Helvetica, sans-serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
}

.mobile-header,
.mobile-menu {
    display: none;
}

/* =========================
   WHY CHOOSE US
========================= */

.why-section {
    width: min(92vw, 1000px);
    margin: clamp(60px, 9vw, 110px) auto 0;
    text-align: center;
}

.why-section h2 {
    margin: 0 0 clamp(28px, 4vw, 44px);
    font-family: "Playfair Display", Georgia, "Times New Roman", serif;
    font-size: clamp(28px, 3.4vw, 38px);
    font-weight: 700;
    color: #002a32;
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.why-card {
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 16px 22px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.45);
    box-shadow: 0 8px 20px rgba(0, 42, 50, 0.05);
    backdrop-filter: blur(6px);
    text-align: left;
}

.why-icon {
    display: inline-flex;
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    background: #002a32;
    color: white;
}

.why-icon svg {
    width: 28px;
    height: 28px;
}

.why-text h3 {
    margin: 0 0 4px;
    font-family: "Poppins", Arial, Helvetica, sans-serif;
    font-size: 19px;
    font-weight: 700;
    color: #002a32;
}

.why-text p {
    margin: 0;
    font-family: "Poppins", Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: #4b6166;
}

/* Desktop screenshot order: Expert, End-to-End, Built */
@media (min-width: 768px) {
    .why-list .why-card:nth-child(1) {
        order: 2;
    }

    .why-list .why-card:nth-child(2) {
        order: 1;
    }

    .why-list .why-card:nth-child(3) {
        order: 3;
    }
}

/* =========================
   SERVICES
========================= */

.services-section {
    width: min(94vw, 1200px);
    margin: clamp(60px, 9vw, 110px) auto 0;
    text-align: center;
}

.services-section h2 {
    margin: 0 0 clamp(28px, 4vw, 44px);
    font-family: "Playfair Display", Georgia, "Times New Roman", serif;
    font-size: clamp(28px, 3.4vw, 38px);
    font-weight: 700;
    color: #002a32;
}

.services-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    border-radius: 26px;
    background: white;
    box-shadow: 0 18px 40px rgba(0, 42, 50, 0.08);
    text-align: left;
}

.services-image-wrap {
    position: relative;
    min-height: 100%;
    background: #f0c63a;
}

.services-image-wrap img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(28px, 3.4vw, 44px) clamp(28px, 3.4vw, 44px);
    background: white;
}

.services-content h3 {
    margin: 0 0 22px;
    font-family: "Poppins", Arial, Helvetica, sans-serif;
    font-size: clamp(20px, 1.8vw, 22px);
    font-weight: 700;
    color: #002a32;
}

.service-items {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.service-item {
    position: relative;
    padding: 16px 18px 16px 28px;
    border-radius: 12px;
    background: #ecf6fa;
}

.service-item::before {
    position: absolute;
    left: 8px;
    top: 14px;
    bottom: 14px;
    width: 8px;
    border-left: 2px solid #002a32;
    border-top: 2px solid #002a32;
    border-bottom: 2px solid #002a32;
    border-radius: 8px 0 0 8px;
    content: "";
}

.service-item h4 {
    position: relative;
    margin: 0 0 4px;
    padding-left: 14px;
    font-family: "Poppins", Arial, Helvetica, sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #002a32;
}

.service-item h4::before {
    position: absolute;
    left: 0;
    top: 50%;
    width: 7px;
    height: 7px;
    background: #002a32;
    border-radius: 50%;
    content: "";
    transform: translateY(-50%);
}

.service-item p {
    margin: 0;
    font-family: "Poppins", Arial, Helvetica, sans-serif;
    font-size: 13.5px;
    font-weight: 400;
    line-height: 1.55;
    color: #2f4b51;
}

.services-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 28px;
    padding: 16px 24px;
    border-radius: 11px;
    background: #002a32;
    color: white;
    font-family: "Poppins", Arial, Helvetica, sans-serif;
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
}

/* =========================
   SERVICE FEATURE CARDS
   (Business Consulting + Digital & Product Solutions)
========================= */

.service-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    width: min(94vw, 1200px);
    margin: clamp(50px, 6vw, 70px) auto 0;
    border-radius: 26px;
    box-shadow: 0 18px 40px rgba(0, 42, 50, 0.08);
    text-align: left;
}

.service-feature .service-image-wrap {
    position: relative;
    min-height: 100%;
    overflow: hidden;
}

.service-feature .service-image-wrap img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(38px, 4vw, 50px) clamp(40px, 4.2vw, 52px);
}

.service-panel h3 {
    margin: 0 0 22px;
    font-family: "Poppins", Arial, Helvetica, sans-serif;
    font-size: clamp(20px, 1.8vw, 22px);
    font-weight: 700;
    color: #002a32;
}

.business-panel {
    background: linear-gradient(120deg, rgba(255, 250, 225, 0.95), rgba(245, 232, 160, 0.75));
}

.digital-panel {
    background: white;
}

.business-feature .service-item {
    background: rgba(255, 253, 240, 0.78);
}

/* =========================
   CONTACT
========================= */

.contact-section {
    width: 100%;
    margin-top: clamp(60px, 7vw, 90px);
    padding: clamp(70px, 8vw, 110px) 0 clamp(60px, 7vw, 90px);
    background: linear-gradient(180deg, rgba(190, 232, 245, 0.55) 0%, rgba(155, 215, 238, 0.7) 100%);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 430px;
    gap: clamp(60px, 7vw, 100px);
    width: min(86%, 1200px);
    margin: 0 auto;
    align-items: center;
}

.contact-copy h2 {
    margin: 0 0 22px;
    font-family: "Playfair Display", Georgia, "Times New Roman", serif;
    font-size: clamp(28px, 3vw, 36px);
    font-weight: 700;
    color: #002a32;
}

.contact-copy p {
    max-width: 500px;
    margin: 0 0 32px;
    font-family: "Poppins", Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
    color: #2f4b51;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-detail {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-family: "Poppins", Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #002a32;
}

.contact-icon {
    display: inline-flex;
    width: 22px;
    height: 22px;
    align-items: center;
    justify-content: center;
    color: #002a32;
}

.contact-icon svg {
    width: 22px;
    height: 22px;
}

.contact-form {
    width: 100%;
    padding: 28px 26px 26px;
    border-radius: 16px;
    background: #002a32;
}

.form-group {
    margin-bottom: 14px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-family: "Poppins", Arial, Helvetica, sans-serif;
    font-size: 12.5px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.78);
}

.form-group input,
.form-group textarea,
.select-trigger {
    width: 100%;
    height: 46px;
    padding: 0 14px;
    border: 0;
    border-radius: 5px;
    background: white;
    color: #333;
    font-family: "Poppins", Arial, Helvetica, sans-serif;
    font-size: 14px;
    outline: 0;
    box-shadow: none;
}

.form-group input.is-invalid,
.form-group textarea.is-invalid,
.custom-select.is-invalid .select-trigger {
    outline: 2px solid #ff6b6b;
    outline-offset: 0;
}

.select-trigger {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: 42px;
    color: #002a32;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
}

.select-trigger:focus-visible {
    outline: 2px solid #ffd700;
    outline-offset: 2px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9aa3a6;
}

.form-group textarea {
    height: 130px;
    padding: 14px;
    resize: none;
    line-height: 1.45;
}

.select-wrap {
    position: relative;
    z-index: 2;
}

.select-trigger::after {
    position: absolute;
    right: 16px;
    top: 50%;
    width: 9px;
    height: 9px;
    border-right: 2px solid #002a32;
    border-bottom: 2px solid #002a32;
    transform: translateY(-70%) rotate(45deg);
    transition: transform 180ms ease;
    content: "";
    pointer-events: none;
}

.custom-select.is-open {
    z-index: 10;
}

.custom-select.is-open .select-trigger::after {
    transform: translateY(-25%) rotate(225deg);
}

.select-options {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    z-index: 10;
    display: grid;
    overflow: hidden;
    border: 1px solid rgba(0, 42, 50, 0.1);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 18px 32px rgba(0, 20, 24, 0.22);
    opacity: 0;
    transform: translateY(-6px);
    visibility: hidden;
    transition: opacity 160ms ease, transform 160ms ease, visibility 0s linear 160ms;
    pointer-events: none;
}

.custom-select.is-open .select-options {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    transition-delay: 0s;
    pointer-events: auto;
}

.select-option {
    width: 100%;
    min-height: 44px;
    padding: 0 15px;
    border: 0;
    border-bottom: 1px solid #edf2f3;
    background: #ffffff;
    color: #002a32;
    font-family: "Poppins", Arial, Helvetica, sans-serif;
    font-size: 13.5px;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
}

.select-option:last-child {
    border-bottom: 0;
}

.select-option:hover,
.select-option:focus-visible,
.select-option.is-selected {
    background: #f3f9fa;
    color: #002a32;
}

.select-option:focus-visible {
    outline: 2px solid #ffd700;
    outline-offset: -2px;
}

.submit-btn {
    width: 100%;
    height: 46px;
    margin-top: 6px;
    border: 0;
    border-radius: 6px;
    background: #ffd700;
    color: black;
    font-family: "Poppins", Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.submit-btn:hover {
    filter: brightness(0.96);
}

.submit-btn:disabled {
    cursor: not-allowed;
    opacity: 0.72;
}

.toast {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 100;
    max-width: min(360px, calc(100vw - 32px));
    padding: 14px 18px;
    border-radius: 10px;
    background: #002a32;
    color: white;
    font-family: "Poppins", Arial, Helvetica, sans-serif;
    font-size: 13.5px;
    font-weight: 500;
    line-height: 1.45;
    box-shadow: 0 18px 40px rgba(0, 20, 24, 0.22);
    opacity: 0;
    transform: translateY(-12px);
    visibility: hidden;
    transition: opacity 180ms ease, transform 180ms ease, visibility 0s linear 180ms;
    pointer-events: none;
}

.toast.is-visible {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    transition-delay: 0s;
}

.toast.is-error {
    background: #7a1f1f;
}

.toast.is-success {
    background: #002a32;
}

/* =========================
   FOOTER
========================= */

.site-footer {
    width: 100%;
    padding: 50px 24px 36px;
    background: #002a32;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    width: min(94%, 1200px);
    margin: 0 auto;
}

.footer-logo {
    display: block;
    width: 90px;
    height: auto;
}

.footer-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(60px, 10vw, 120px);
    color: white;
}

.footer-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.footer-icons img {
    display: block;
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.footer-copy {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    font-family: "Poppins", Arial, Helvetica, sans-serif;
    font-size: 12.5px;
    color: white;
}

.copyright-mark {
    display: inline-flex;
    width: 18px;
    height: 18px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #ffd700;
    color: #002a32;
    font-family: "Poppins", Arial, Helvetica, sans-serif;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {
    html {
        scroll-padding-top: 100px;
    }

    .page-shell {
        padding: 92px 0 0;
    }

    .mobile-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 999;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 28px 24px 14px;
        background: linear-gradient(115deg, rgba(239, 252, 255, 0.96), rgba(250, 247, 223, 0.92));
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }

    .mobile-logo-link {
        display: inline-flex;
    }

    .mobile-logo {
        display: block;
        width: 60px;
        height: auto;
    }

    .menu-toggle {
        display: inline-flex;
        width: 30px;
        height: 25px;
        flex-direction: column;
        align-items: stretch;
        justify-content: space-between;
        padding: 0;
        border: 0;
        background: transparent;
        cursor: pointer;
    }

    .menu-toggle span {
        display: block;
        width: 100%;
        height: 3px;
        border-radius: 999px;
        background: black;
    }

    .desktop-logo-link,
    .desktop-nav {
        display: none;
    }

    .hero {
        width: calc(100% - 32px);
        height: clamp(235px, 63vw, 285px);
        margin: 0 auto;
        background-image: url("./assets/hero.png");
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
    }

    .hero-content {
        top: 54%;
        width: 100%;
        padding: 0 20px;
        transform: translate(-50%, -50%);
    }

    .hero h1 {
        max-width: 310px;
        font-size: clamp(26px, 7.6vw, 32px);
        line-height: 1.1;
        white-space: normal;
    }

    .hero p {
        max-width: 300px;
        margin-top: 12px;
        font-size: 12.5px;
        line-height: 1.45;
    }

    .hero-cta {
        margin-top: 17px;
        padding: 12px 18px;
        border-radius: 14px;
        font-size: 13px;
    }

    .mobile-menu {
        position: fixed;
        top: 86px;
        left: 16px;
        right: 16px;
        z-index: 998;
        display: flex;
        max-height: 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
        overflow: hidden;
        padding: 0 36px;
        border-radius: 0 0 10px 10px;
        background: #002a32;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        pointer-events: none;
        transition:
            max-height 240ms ease,
            padding 240ms ease,
            opacity 180ms ease,
            transform 240ms ease,
            visibility 0s linear 240ms;
    }

    .mobile-menu.is-open {
        max-height: 320px;
        padding-top: 34px;
        padding-bottom: 38px;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
        transition-delay: 0s;
    }

    .mobile-menu a {
        display: inline-flex;
        width: max-content;
        padding-bottom: 7px;
        font-family: "Poppins", Arial, Helvetica, sans-serif;
        font-size: 23px;
        font-weight: 700;
        line-height: 1.1;
        color: rgba(255, 255, 255, 0.65);
    }

    .mobile-menu a.active {
        border-bottom: 2px solid #ffd700;
        color: white;
    }

    /* Why Choose Us — mobile */
    .why-section {
        width: 100%;
        margin-top: 42px;
        padding: 0 22px;
    }

    .why-section h2 {
        margin-bottom: 22px;
        font-family: "Playfair Display", Georgia, "Times New Roman", serif;
        font-size: 22px;
        font-weight: 700;
    }

    .why-list {
        gap: 16px;
    }

    .why-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 20px;
        border-radius: 12px;
    }

    .why-card:last-child {
        flex-direction: row;
        align-items: center;
        gap: 16px;
    }

    .why-icon {
        width: 54px;
        height: 54px;
        flex: 0 0 54px;
    }

    .why-icon svg {
        width: 26px;
        height: 26px;
    }

    .why-text h3 {
        font-size: 16px;
    }

    .why-text p {
        font-size: 13px;
        line-height: 1.5;
    }

    /* Services — mobile */
    .services-section {
        width: 100%;
        margin-top: 50px;
        padding: 0 22px;
    }

    .services-section h2 {
        margin-bottom: 22px;
        font-size: 24px;
    }

    .services-card {
        display: block;
        border-radius: 14px;
        overflow: hidden;
        background: white;
    }

    .services-image-wrap {
        height: clamp(300px, 78vw, 360px);
        border-radius: 14px 14px 0 0;
        overflow: hidden;
    }

    .services-image-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .services-content {
        padding: 28px 18px 30px;
    }

    .services-content h3 {
        margin-bottom: 18px;
        font-size: 19px;
        text-align: left;
    }

    .service-items {
        gap: 14px;
    }

    .service-item {
        padding: 14px 16px 14px 26px;
    }

    .service-item h4 {
        font-size: 14.5px;
    }

    .service-item p {
        font-size: 13px;
    }

    .services-cta {
        height: 54px;
        margin-top: 24px;
        padding: 0 20px;
        border-radius: 10px;
        font-size: 15px;
    }

    /* Business Consulting + Digital & Product Solutions — mobile */
    .service-feature {
        display: flex;
        flex-direction: column;
        width: calc(100% - 40px);
        margin: 42px auto 0;
        border-radius: 14px;
    }

    .service-feature .service-image-wrap {
        height: clamp(270px, 75vw, 360px);
        min-height: 0;
    }

    .business-feature .service-image-wrap {
        order: 1;
    }

    .business-feature .business-panel {
        order: 2;
    }

    .digital-feature .service-image-wrap {
        order: 1;
    }

    .digital-feature .digital-panel {
        order: 2;
    }

    .service-panel {
        padding: 28px 18px 30px;
    }

    .service-panel h3 {
        margin-bottom: 18px;
        font-size: 19px;
    }

    /* Contact — mobile */
    .contact-section {
        margin-top: 50px;
        padding: 50px 0 38px;
    }

    .contact-container {
        display: flex;
        flex-direction: column;
        gap: 26px;
        width: calc(100% - 40px);
        align-items: stretch;
    }

    .contact-copy h2 {
        font-size: 22px;
        margin-bottom: 18px;
    }

    .contact-copy p {
        font-size: 12.5px;
        line-height: 1.55;
        margin-bottom: 22px;
    }

    .contact-detail {
        font-size: 12.5px;
    }

    .contact-icon,
    .contact-icon svg {
        width: 18px;
        height: 18px;
    }

    .contact-form {
        max-width: none;
        padding: 20px 18px 20px;
        border-radius: 12px;
    }

    .form-group {
        margin-bottom: 12px;
    }

    .form-group label {
        font-size: 12px;
    }

    .form-group input,
    .select-trigger {
        height: 42px;
        font-size: 13px;
    }

    .select-option {
        min-height: 42px;
        font-size: 12.5px;
    }

    .form-group textarea {
        height: 130px;
        font-size: 13px;
    }

    .submit-btn {
        height: 44px;
        font-size: 14px;
    }

    .toast {
        top: 16px;
        right: 16px;
        left: 16px;
        max-width: none;
        font-size: 13px;
    }

    /* Footer — mobile */
    .site-footer {
        padding: 34px 24px 28px;
    }

    .footer-inner {
        gap: 36px;
    }

    .footer-logo {
        width: 72px;
    }

    .footer-icons {
        gap: 42px;
    }

    .footer-icons img {
        width: 14px;
        height: 14px;
    }

    .footer-copy {
        font-size: 10.5px;
    }

    .copyright-mark {
        width: 16px;
        height: 16px;
        font-size: 9.5px;
    }
}

@media (max-width: 370px) {
    .mobile-logo {
        width: 56px;
    }

    .hero {
        height: 230px;
    }

    .hero h1 {
        font-size: 25px;
    }

    .hero p {
        font-size: 12px;
    }

    .hero-cta {
        padding: 11px 16px;
        font-size: 12.5px;
    }
}