/* =========================================================
   MEMAC STATIONARY AND COMPUTER ACCESSORIES HUB
   COMPLETE RESPONSIVE STYLESHEET
========================================================= */


/* =========================================================
   1. RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family:
        Arial,
        Helvetica,
        sans-serif;

    background: #ffffff;
    color: #14213d;
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
    cursor: pointer;
}

ul {
    padding: 0;
    margin: 0;
}


/* =========================================================
   2. GLOBAL CONTAINER
========================================================= */

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    scroll-margin-top: 92px;
}


/* =========================================================
   3. HEADER
========================================================= */

.navbar {
    width: 100%;
    height: 92px;

    position: sticky;
    top: 0;
    z-index: 1000;

    background: #ffffff;

    border-bottom: 3px solid #d92f3f;

    box-shadow:
        0 5px 25px rgba(20, 33, 61, 0.06);
}

.nav-container {
    width: 100%;
    max-width: 1500px;
    height: 100%;

    margin: 0 auto;
    padding: 0 35px;

    display: flex;
    align-items: center;
}


/* =========================================================
   4. BRAND
   NO SPACE BETWEEN LOGO AND COMPANY NAME
========================================================= */

.brand {
    display: flex;
    align-items: center;
    gap: 0;

    flex-shrink: 0;
}

.logo {
    width: 135px;
    height: 80px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;
}

.logo img {
    width: 135px;
    max-height: 78px;

    object-fit: contain;
}


/* =========================================================
   5. COMPANY NAME
========================================================= */

.company-name {
    width: 215px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    line-height: 1.1;
}

.company-name span {
    display: block;

    color: #1261d6;

    font-size: 22px;
    font-weight: 900;

    margin-bottom: 4px;
}

.company-name small {
    display: block;

    color: #c92d3d;

    font-size: 10px;
    font-weight: 900;

    line-height: 1.35;
    letter-spacing: 0.3px;
}


/* =========================================================
   6. NAVIGATION
========================================================= */

.nav-menu {
    margin-left: auto;

    display: flex;
    align-items: center;

    gap: 27px;
}

.nav-link {
    position: relative;

    color: #14213d;

    font-size: 15px;
    font-weight: 700;

    padding: 10px 0;

    white-space: nowrap;

    transition:
        color 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #1261d6;
}

.nav-link::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 2px;

    width: 0;
    height: 3px;

    border-radius: 20px;

    background:
        linear-gradient(
            90deg,
            #1261d6,
            #d92f45
        );

    transition:
        width 0.25s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}


/* =========================================================
   7. GET STARTED BUTTON
========================================================= */

.nav-button {
    min-width: 132px;

    padding: 15px 22px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 13px;

    background:
        linear-gradient(
            135deg,
            #1261d6,
            #c92d55
        );

    color: #ffffff;

    font-size: 15px;
    font-weight: 800;

    box-shadow:
        0 10px 25px rgba(18, 97, 214, 0.2);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.nav-button:hover {
    transform: translateY(-3px);

    box-shadow:
        0 15px 32px rgba(18, 97, 214, 0.28);
}


/* =========================================================
   8. MOBILE MENU
========================================================= */

.mobile-menu-btn {
    display: none;

    width: 45px;
    height: 45px;

    margin-left: auto;

    border: none;
    border-radius: 11px;

    background: #edf4ff;

    align-items: center;
    justify-content: center;

    flex-direction: column;

    gap: 5px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;

    background: #14213d;

    border-radius: 10px;

    transition: 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


/* =========================================================
   9. HERO
========================================================= */

.hero {
    position: relative;

    min-height: 650px;

    overflow: hidden;

    display: flex;
    align-items: center;

    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(110, 170, 255, 0.25),
            transparent 28%
        ),

        linear-gradient(
            135deg,
            #073b91 0%,
            #0758c7 48%,
            #1268dd 100%
        );
}


/* Decorative circles */

.hero-shape {
    position: absolute;

    border-radius: 50%;

    pointer-events: none;
}

.hero-shape-one {
    width: 430px;
    height: 430px;

    right: -170px;
    top: -230px;

    background:
        rgba(255, 255, 255, 0.08);
}

.hero-shape-two {
    width: 260px;
    height: 260px;

    left: -170px;
    bottom: -170px;

    background:
        rgba(255, 255, 255, 0.05);
}


/* =========================================================
   10. HERO CONTAINER
========================================================= */

.hero-container {
    position: relative;
    z-index: 2;

    max-width: 1500px;

    padding-top: 95px;
    padding-bottom: 95px;

    display: grid;

    grid-template-columns:
        minmax(0, 1.08fr)
        minmax(430px, 0.92fr);

    align-items: center;

    gap: 60px;
}


/* =========================================================
   11. HERO CONTENT
========================================================= */

.hero-content {
    max-width: 720px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;

    gap: 10px;

    padding: 9px 18px;

    margin-bottom: 30px;

    border-radius: 50px;

    border:
        1px solid rgba(255, 255, 255, 0.28);

    background:
        rgba(255, 255, 255, 0.08);

    color: #ffffff;

    font-size: 14px;
    font-weight: 700;

    backdrop-filter: blur(10px);
}

.badge-dot {
    width: 10px;
    height: 10px;

    border-radius: 50%;

    background: #42df8b;

    box-shadow:
        0 0 0 5px rgba(66, 223, 139, 0.12);
}


/* =========================================================
   12. HERO HEADING
========================================================= */

.hero h1 {
    max-width: 750px;

    color: #ffffff;

    font-size:
        clamp(48px, 5.3vw, 76px);

    line-height: 1.04;

    letter-spacing: -2.8px;

    font-weight: 900;

    margin-bottom: 28px;
}

.hero h1 span {
    color: #ffd1d7;
}


/* =========================================================
   13. HERO DESCRIPTION
========================================================= */

.hero-description {
    max-width: 680px;

    color:
        rgba(255, 255, 255, 0.88);

    font-size: 18px;

    line-height: 1.8;

    margin-bottom: 32px;
}

.hero-description strong {
    color: #ffffff;
}


/* =========================================================
   14. HERO BUTTONS
========================================================= */

.hero-buttons {
    display: flex;
    align-items: center;

    gap: 15px;

    flex-wrap: wrap;
}

.btn {
    min-height: 53px;

    padding: 0 25px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    font-size: 15px;
    font-weight: 800;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.btn-primary {
    background: #ffffff;
    color: #0756c1;

    box-shadow:
        0 12px 28px rgba(0, 0, 0, 0.14);
}

.btn-primary span {
    margin-left: 10px;
}

.btn-primary:hover {
    transform: translateY(-3px);

    box-shadow:
        0 18px 35px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    color: #ffffff;

    background:
        rgba(255, 255, 255, 0.08);

    border:
        1px solid rgba(255, 255, 255, 0.35);
}

.btn-secondary:hover {
    transform: translateY(-3px);

    background:
        rgba(255, 255, 255, 0.16);
}


/* =========================================================
   15. HERO TRUST
========================================================= */

.hero-trust {
    display: flex;
    flex-wrap: wrap;

    gap: 20px;

    margin-top: 30px;
}

.trust-item {
    display: flex;
    align-items: center;

    gap: 8px;

    color:
        rgba(255, 255, 255, 0.88);

    font-size: 13px;
    font-weight: 700;
}

.trust-item span {
    width: 21px;
    height: 21px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.14);

    color: #73e6a8;

    font-size: 12px;
}


/* =========================================================
   16. HERO PRODUCT PREVIEW
========================================================= */

.hero-preview {
    position: relative;

    min-height: 470px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.preview-card {
    width: 100%;
    max-width: 590px;

    padding: 31px;

    position: relative;

    border-radius: 28px;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #f7faff
        );

    box-shadow:
        0 35px 80px rgba(0, 24, 70, 0.28);

    overflow: hidden;
}

.preview-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 6px;

    background:
        linear-gradient(
            90deg,
            #1261d6 0%,
            #1261d6 70%,
            #d92f45 70%,
            #d92f45 100%
        );
}


/* =========================================================
   17. PRODUCT HEADER
========================================================= */

.preview-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding-top: 5px;

    margin-bottom: 20px;
}

.preview-title {
    display: flex;
    align-items: center;

    gap: 10px;

    color: #14213d;

    font-size: 19px;
    font-weight: 800;
}

.status-dot {
    width: 11px;
    height: 11px;

    border-radius: 50%;

    background: #2cc36b;
}

.preview-label {
    color: #1261d6;

    font-size: 13px;
    font-weight: 900;

    letter-spacing: 1px;
}


/* =========================================================
   18. PRODUCT LIST
========================================================= */

.product-list {
    display: flex;
    flex-direction: column;
}

.product-row {
    min-height: 88px;

    padding: 14px 0;

    display: flex;
    align-items: center;

    gap: 16px;

    border-bottom:
        1px solid #e7edf5;
}

.product-row:last-child {
    border-bottom: none;
}

.product-icon {
    width: 55px;
    height: 55px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 15px;

    background: #edf5ff;

    border: 1px solid #e1ebf8;

    color: #1261d6;

    font-size: 22px;
}

.product-info {
    flex: 1;
    min-width: 0;
}

.product-info strong {
    display: block;

    color: #14213d;

    font-size: 17px;

    margin-bottom: 3px;
}

.product-info span {
    display: block;

    color: #7b8799;

    font-size: 13px;
}

.product-status {
    color: #bd3543;

    font-size: 12px;
    font-weight: 800;

    white-space: nowrap;
}


/* =========================================================
   19. PREVIEW FOOTER
========================================================= */

.preview-footer {
    margin-top: 15px;
    padding-top: 18px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    border-top:
        1px solid #e7edf5;
}

.preview-footer strong {
    display: block;

    color: #14213d;

    font-size: 13px;
}

.preview-footer span {
    display: block;

    color: #7b8799;

    font-size: 12px;
}

.preview-footer a {
    color: #1261d6;

    font-size: 13px;
    font-weight: 800;

    white-space: nowrap;
}


/* =========================================================
   20. FLOATING CARDS
========================================================= */

.floating-card {
    position: absolute;
    z-index: 5;

    padding: 15px 19px;

    display: flex;
    align-items: center;

    gap: 12px;

    border-radius: 17px;

    background: #ffffff;

    border: 1px solid #e7edf6;

    box-shadow:
        0 20px 45px rgba(0, 28, 70, 0.2);
}

.quality-card {
    right: -10px;
    top: 55px;
}

.discount-card {
    left: -20px;
    bottom: 40px;
}

.floating-icon {
    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: #eaf8ef;

    color: #27a95c;

    font-size: 20px;
    font-weight: 900;
}

.discount-icon {
    background: #fff0f2;
    color: #d92f45;
}

.floating-card strong {
    display: block;

    color: #14213d;

    font-size: 13px;
}

.floating-card span {
    display: block;

    color: #8490a3;

    font-size: 11px;
}


/* =========================================================
   21. SECTION HEADINGS
========================================================= */

.section-heading {
    max-width: 760px;

    margin: 0 auto 55px;

    text-align: center;
}

.section-tag {
    display: inline-block;

    margin-bottom: 12px;

    color: #1261d6;

    font-size: 12px;
    font-weight: 900;

    letter-spacing: 1.4px;

    text-transform: uppercase;
}

.section-heading h2,
.faq-intro h2 {
    color: #14213d;

    font-size:
        clamp(32px, 4vw, 48px);

    line-height: 1.15;

    letter-spacing: -1.2px;

    margin-bottom: 17px;
}

.section-heading h2 span,
.faq-intro h2 span {
    color: #1261d6;
}

.section-heading p,
.faq-intro p {
    color: #71809b;

    font-size: 16px;

    line-height: 1.8;
}

.center-heading {
    text-align: center;
}


/* =========================================================
   22. FEATURES SECTION
========================================================= */

.features-section {
    padding: 105px 0;

    background:
        linear-gradient(
            180deg,
            #ffffff,
            #f8fbff
        );
}

.features-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 23px;
}

.feature-card {
    padding: 30px;

    background: #ffffff;

    border:
        1px solid #e4ebf4;

    border-radius: 22px;

    box-shadow:
        0 8px 25px rgba(31, 62, 110, 0.045);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-7px);

    border-color: #cbdcf5;

    box-shadow:
        0 20px 45px rgba(31, 62, 110, 0.1);
}

.feature-icon,
.package-icon {
    width: 56px;
    height: 56px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 20px;

    border-radius: 16px;

    font-size: 22px;
    font-weight: 800;
}

.blue-icon {
    background: #eaf3ff;
    color: #1261d6;
}

.red-icon {
    background: #fff0f2;
    color: #d52f43;
}

.feature-card h3 {
    color: #14213d;

    font-size: 19px;

    margin-bottom: 10px;
}

.feature-card p {
    color: #71809b;

    font-size: 14px;

    line-height: 1.75;

    margin-bottom: 18px;
}

.feature-card a {
    color: #1261d6;

    font-size: 13px;
    font-weight: 800;
}


/* =========================================================
   23. STATS
========================================================= */

.stats-section {
    padding: 35px 0;

    background:
        linear-gradient(
            135deg,
            #0a4299,
            #1269dc
        );
}

.stats-container {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;
}

.stat {
    text-align: center;

    padding: 10px;

    color: #ffffff;

    border-right:
        1px solid rgba(255, 255, 255, 0.14);
}

.stat:last-child {
    border-right: none;
}

.stat strong {
    display: block;

    font-size: 20px;
    font-weight: 900;
}

.stat span {
    display: block;

    color:
        rgba(255, 255, 255, 0.75);

    font-size: 13px;
}


/* =========================================================
   24. HOW IT WORKS
========================================================= */

.how-section {
    padding: 105px 0;

    background: #f6f9fe;
}

.steps {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 24px;
}

.step {
    padding: 35px 28px;

    background: #ffffff;

    border:
        1px solid #e4ebf5;

    border-radius: 22px;

    text-align: center;

    box-shadow:
        0 10px 30px rgba(31, 62, 110, 0.04);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.step:hover {
    transform: translateY(-7px);

    box-shadow:
        0 20px 45px rgba(31, 62, 110, 0.09);
}

.step-number {
    width: 62px;
    height: 62px;

    margin: 0 auto 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            #1261d6,
            #0a4aa8
        );

    color: #ffffff;

    font-size: 18px;
    font-weight: 900;

    box-shadow:
        0 10px 25px rgba(18, 97, 214, 0.2);
}

.step h3 {
    color: #14213d;

    font-size: 19px;

    margin-bottom: 10px;
}

.step p {
    color: #71809b;

    font-size: 14px;

    line-height: 1.75;
}


/* =========================================================
   25. PACKAGES
   NO PRICE FIGURES
========================================================= */

.packages-section {
    padding: 105px 0;

    background: #ffffff;
}

.packages-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 24px;
}

.package-card {
    position: relative;

    padding: 35px 30px;

    background: #ffffff;

    border:
        1px solid #e4eaf3;

    border-radius: 23px;

    box-shadow:
        0 10px 30px rgba(27, 56, 98, 0.05);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.package-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 20px 45px rgba(27, 56, 98, 0.1);
}

.package-card.featured {
    border:
        2px solid #1261d6;

    box-shadow:
        0 18px 45px rgba(18, 97, 214, 0.12);
}

.popular-label {
    position: absolute;

    top: 20px;
    right: 20px;

    padding: 6px 12px;

    border-radius: 30px;

    background: #1261d6;

    color: #ffffff;

    font-size: 10px;
    font-weight: 900;

    letter-spacing: 0.5px;
}

.package-card h3 {
    color: #14213d;

    font-size: 22px;

    margin-bottom: 10px;
}

.package-card > p {
    color: #71809b;

    font-size: 14px;

    line-height: 1.7;

    margin-bottom: 20px;
}

.package-label {
    display: inline-block;

    padding: 8px 13px;

    margin-bottom: 16px;

    border-radius: 9px;

    background: #f1f6fd;

    color: #1261d6;

    font-size: 12px;
    font-weight: 800;
}

.package-list {
    list-style: none;

    margin-bottom: 25px;
}

.package-list li {
    padding: 10px 0;

    color: #53627c;

    font-size: 14px;

    border-bottom:
        1px solid #edf1f6;
}

.package-list li:last-child {
    border-bottom: none;
}

.package-list li::before {
    content: "✓";

    margin-right: 9px;

    color: #1261d6;

    font-weight: 900;
}

.package-button {
    width: 100%;

    min-height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0 15px;

    border-radius: 11px;

    background: #edf4ff;

    color: #1261d6;

    font-size: 13px;
    font-weight: 800;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}

.package-button:hover {
    background: #1261d6;
    color: #ffffff;

    transform: translateY(-2px);
}

.package-card.featured .package-button {
    background:
        linear-gradient(
            135deg,
            #1261d6,
            #c92d55
        );

    color: #ffffff;
}

.package-note {
    margin-top: 35px;

    text-align: center;

    color: #71809b;

    font-size: 14px;
}


/* =========================================================
   26. TESTIMONIALS
========================================================= */

.testimonials-section {
    padding: 105px 0;

    background: #f6f9fe;
}

.testimonial-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 24px;
}

.testimonial-card {
    padding: 30px;

    background: #ffffff;

    border:
        1px solid #e4eaf3;

    border-radius: 21px;

    box-shadow:
        0 10px 30px rgba(31, 62, 110, 0.05);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 20px 45px rgba(31, 62, 110, 0.09);
}

.stars {
    margin-bottom: 17px;

    color: #f2a900;

    letter-spacing: 3px;
}

.testimonial-card > p {
    color: #61708c;

    font-size: 14px;

    line-height: 1.8;

    margin-bottom: 25px;
}

.customer {
    display: flex;
    align-items: center;

    gap: 13px;
}

.customer-avatar {
    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #eaf3ff;

    color: #1261d6;

    font-size: 13px;
    font-weight: 900;
}

.customer strong {
    display: block;

    color: #14213d;

    font-size: 14px;
}

.customer span {
    display: block;

    color: #8793a8;

    font-size: 12px;
}


/* =========================================================
   27. FAQ
========================================================= */

.faq-section {
    padding: 105px 0;

    background: #ffffff;
}

.faq-container {
    max-width: 1000px;
}

.faq-intro {
    max-width: 720px;

    margin: 0 auto 45px;

    text-align: center;
}

.text-link {
    display: inline-block;

    margin-top: 20px;

    color: #1261d6;

    font-size: 14px;
    font-weight: 800;
}

.faq-list {
    width: 100%;
}

.faq-item {
    border-bottom:
        1px solid #e4eaf2;
}

.faq-question {
    width: 100%;

    padding: 23px 0;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    border: none;

    background: transparent;

    color: #14213d;

    text-align: left;

    font-size: 16px;
    font-weight: 800;
}

.faq-icon {
    flex-shrink: 0;

    color: #1261d6;

    font-size: 25px;

    transition:
        transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;

    overflow: hidden;

    transition:
        max-height 0.4s ease;
}

.faq-answer p {
    padding-bottom: 20px;

    color: #71809b;

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================================
   28. FINAL CTA
========================================================= */

.cta-section {
    padding: 90px 0;
}

.cta-box {
    position: relative;

    overflow: hidden;

    padding: 75px 45px;

    text-align: center;

    border-radius: 30px;

    background:
        linear-gradient(
            135deg,
            #0754bd,
            #126bdd
        );

    box-shadow:
        0 25px 60px rgba(18, 97, 214, 0.2);
}

.cta-box::before {
    content: "";

    position: absolute;

    width: 360px;
    height: 360px;

    border-radius: 50%;

    right: -150px;
    top: -200px;

    background:
        rgba(255, 255, 255, 0.08);
}

.cta-content {
    position: relative;
    z-index: 2;
}

.light-tag {
    color: #ffffff;
}

.cta-box h2 {
    color: #ffffff;

    font-size:
        clamp(31px, 4vw, 48px);

    line-height: 1.15;

    margin-bottom: 16px;
}

.cta-box h2 span {
    color: #ffd1d7;
}

.cta-box p {
    max-width: 680px;

    margin: 0 auto 28px;

    color:
        rgba(255, 255, 255, 0.87);

    font-size: 16px;

    line-height: 1.8;
}

.cta-buttons {
    display: flex;

    justify-content: center;

    gap: 13px;

    flex-wrap: wrap;
}

.btn-white {
    background: #ffffff;

    color: #1261d6;
}

.btn-outline-white {
    color: #ffffff;

    border:
        1px solid rgba(255, 255, 255, 0.4);

    background:
        rgba(255, 255, 255, 0.08);
}

.btn-outline-white:hover {
    background:
        rgba(255, 255, 255, 0.16);

    transform: translateY(-3px);
}


/* =========================================================
   29. FOOTER
========================================================= */

.footer {
    padding: 70px 0 25px;

    background: #0b1a34;

    color: #ffffff;
}

.footer-grid {
    display: grid;

    grid-template-columns:
        1.5fr repeat(3, 1fr);

    gap: 45px;

    padding-bottom: 45px;

    border-bottom:
        1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    max-width: 320px;
}

.footer-logo {
    display: inline-flex;

    margin-bottom: 18px;
}

.footer-logo img {
    width: 190px;
    max-height: 85px;

    object-fit: contain;
}

.footer-brand p {
    color: #aebbd0;

    font-size: 14px;

    line-height: 1.8;

    margin-bottom: 15px;
}

.footer-location {
    color: #d5ddea;

    font-size: 13px;
}

.footer-column h3 {
    color: #ffffff;

    font-size: 15px;

    margin-bottom: 18px;
}

.footer-column a,
.footer-column span {
    display: block;

    width: fit-content;

    margin-bottom: 11px;

    color: #aebbd0;

    font-size: 14px;

    transition:
        color 0.25s ease;
}

.footer-column a:hover {
    color: #ffffff;
}

.footer-bottom {
    padding-top: 25px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    color: #8f9db4;

    font-size: 13px;
}

.footer-bottom-links {
    display: flex;

    gap: 20px;
}

.footer-bottom-links a:hover {
    color: #ffffff;
}


/* =========================================================
   30. TABLET
========================================================= */

@media (max-width: 1100px) {

    .nav-container {
        padding: 0 22px;
    }

    .nav-menu {
        gap: 17px;
    }

    .nav-link {
        font-size: 13px;
    }

    .nav-button {
        min-width: 115px;

        padding: 13px 16px;

        font-size: 13px;
    }

    .logo {
        width: 115px;
    }

    .logo img {
        width: 115px;
    }

    .company-name {
        width: 175px;
    }

    .company-name span {
        font-size: 19px;
    }

    .company-name small {
        font-size: 8px;
    }

    .hero-container {
        grid-template-columns: 1fr 0.9fr;

        gap: 35px;

        padding-left: 35px;
        padding-right: 35px;
    }

    .hero h1 {
        font-size: 55px;
    }

    .floating-card {
        display: none;
    }
}


/* =========================================================
   31. TABLET / MOBILE NAVIGATION
========================================================= */

@media (max-width: 900px) {

    .navbar {
        height: 78px;
    }

    .nav-container {
        height: 78px;
    }

    .company-name {
        display: none;
    }

    .nav-menu {
        display: none;

        position: absolute;

        top: 78px;
        left: 0;

        width: 100%;

        padding: 20px;

        flex-direction: column;

        align-items: stretch;

        gap: 4px;

        background: #ffffff;

        border-top:
            1px solid #edf1f7;

        box-shadow:
            0 15px 35px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-link {
        width: 100%;

        padding: 13px 10px;

        font-size: 16px;
    }

    .nav-link::after {
        display: none;
    }

    .nav-button {
        width: 100%;

        margin-top: 7px;
    }

    .mobile-menu-btn {
        display: flex;
    }


    .hero {
        min-height: auto;
    }

    .hero-container {
        grid-template-columns: 1fr;

        text-align: center;

        padding-top: 80px;
        padding-bottom: 80px;
    }

    .hero-content {
        max-width: 760px;

        margin: 0 auto;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-trust {
        justify-content: center;
    }

    .hero-preview {
        width: 100%;

        max-width: 650px;

        margin: 0 auto;
    }


    .features-grid,
    .steps,
    .packages-grid,
    .testimonial-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .stats-container {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .stat:nth-child(2) {
        border-right: none;
    }
}


/* =========================================================
   32. MOBILE
========================================================= */

@media (max-width: 650px) {

    .container {
        padding-left: 18px;
        padding-right: 18px;
    }

    .logo {
        width: 115px;
        height: 65px;
    }

    .logo img {
        width: 115px;
        max-height: 62px;
    }

    .hero-container {
        padding:
            65px 18px;
    }

    .hero h1 {
        font-size: 43px;

        letter-spacing: -1.5px;
    }

    .hero-description {
        font-size: 15px;
    }

    .hero-buttons {
        flex-direction: column;

        align-items: stretch;
    }

    .btn {
        width: 100%;
    }

    .hero-trust {
        flex-direction: column;

        align-items: center;

        gap: 11px;
    }

    .hero-preview {
        min-height: 390px;
    }

    .preview-card {
        padding: 25px 20px;

        border-radius: 21px;
    }

    .preview-title {
        font-size: 17px;
    }

    .product-row {
        gap: 11px;

        min-height: 80px;
    }

    .product-icon {
        width: 46px;
        height: 46px;

        font-size: 18px;
    }

    .product-info strong {
        font-size: 15px;
    }

    .product-info span {
        font-size: 11px;
    }

    .product-status {
        font-size: 10px;
    }

    .preview-footer {
        align-items: flex-start;

        flex-direction: column;
    }


    .features-section,
    .how-section,
    .packages-section,
    .testimonials-section,
    .faq-section {
        padding: 75px 0;
    }

    .section-heading {
        margin-bottom: 40px;
    }

    .section-heading h2,
    .faq-intro h2 {
        font-size: 34px;
    }


    .features-grid,
    .steps,
    .packages-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }


    .stats-container {
        grid-template-columns: 1fr 1fr;
    }

    .stat {
        border-right: none;
    }


    .cta-section {
        padding: 60px 18px;
    }

    .cta-box {
        padding: 55px 25px;

        border-radius: 23px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }


    .footer {
        padding-top: 60px;
    }

    .footer-grid {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .footer-bottom {
        flex-direction: column;

        align-items: flex-start;
    }
}


/* =========================================================
   33. SMALL PHONES
========================================================= */

@media (max-width: 480px) {

    .navbar {
        height: 72px;
    }

    .nav-container {
        height: 72px;

        padding:
            0 15px;
    }

    .logo {
        width: 105px;
        height: 58px;
    }

    .logo img {
        width: 105px;

        max-height: 55px;
    }

    .nav-menu {
        top: 72px;
    }

    .mobile-menu-btn {
        width: 42px;
        height: 42px;
    }

    .hero h1 {
        font-size: 35px;
    }

    .hero-badge {
        font-size: 12px;
    }

    .preview-card {
        padding: 22px 17px;
    }

    .product-row {
        gap: 9px;
    }

    .product-status {
        display: none;
    }

    .stats-container {
        grid-template-columns: 1fr;
    }

    .stat {
        padding: 12px 0;

        border-bottom:
            1px solid rgba(255, 255, 255, 0.12);
    }

    .stat:last-child {
        border-bottom: none;
    }

    .section-heading h2,
    .faq-intro h2 {
        font-size: 30px;
    }
}
/* =========================================
   SUPPLY PACKAGES
========================================= */

.packages-section {
    padding: 90px 7%;
    background: linear-gradient(
        135deg,
        #f5f8ff 0%,
        #ffffff 50%,
        #fff5f6 100%
    );
    position: relative;
    overflow: hidden;
}

.packages-section::before {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    background: rgba(13, 91, 211, 0.08);
    border-radius: 50%;
    top: -120px;
    right: -80px;
}

.packages-section::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    background: rgba(220, 30, 45, 0.06);
    border-radius: 50%;
    bottom: -100px;
    left: -70px;
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 45px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.section-label {
    display: inline-block;
    color: #d7192f;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}

.section-heading h2 {
    margin: 0 0 15px;
    color: #0b2f72;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.15;
    font-weight: 800;
}

.section-heading p {
    margin: 0;
    color: #52627a;
    font-size: 16px;
    line-height: 1.7;
}


/* CARDS GRID */

.packages-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    position: relative;
    z-index: 2;
}


/* INDIVIDUAL CARD */

.package-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 32px 28px;
    border: 1px solid #dce6f5;
    box-shadow: 0 15px 40px rgba(11, 47, 114, 0.10);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(
        90deg,
        #075bd3,
        #d7192f
    );
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 50px rgba(11, 47, 114, 0.16);
}


/* ICON */

.package-icon {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: #edf4ff;
    font-size: 26px;
    margin-bottom: 18px;
}


/* BADGE */

.package-badge {
    display: inline-block;
    padding: 7px 12px;
    border-radius: 50px;
    background: #fff0f2;
    color: #d7192f;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.7px;
    margin-bottom: 12px;
}


/* TITLE */

.package-card h3 {
    color: #0b2f72;
    font-size: 25px;
    margin: 0 0 10px;
    font-weight: 800;
}


/* DESCRIPTION */

.package-description {
    color: #5c6c82;
    font-size: 15px;
    line-height: 1.6;
    margin: 0 0 20px;
}


/* HIGHLIGHT */

.package-highlight {
    background: linear-gradient(
        135deg,
        #edf5ff,
        #f7faff
    );
    border-left: 4px solid #075bd3;
    border-radius: 10px;
    padding: 13px 15px;
    margin-bottom: 22px;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.package-highlight strong {
    color: #075bd3;
    font-size: 14px;
}

.package-highlight span {
    color: #65758b;
    font-size: 12px;
}


/* LIST */

.package-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
}

.package-list li {
    color: #263b58;
    font-size: 14px;
    padding: 9px 0;
    border-bottom: 1px solid #edf1f7;
}

.package-list li:last-child {
    border-bottom: none;
}


/* BUTTON */

.package-button {
    display: block;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    padding: 13px 18px;
    border-radius: 10px;
    text-decoration: none;
    color: #ffffff;
    background: linear-gradient(
        135deg,
        #075bd3,
        #174fa8
    );
    font-weight: 700;
    font-size: 14px;
    transition: all 0.25s ease;
}

.package-button:hover {
    background: linear-gradient(
        135deg,
        #d7192f,
        #b80f24
    );
    transform: translateY(-2px);
}


/* DIFFERENT CARD ACCENTS */

.student-card::before {
    background: #075bd3;
}

.office-card::before {
    background: #d7192f;
}

.business-card::before {
    background: linear-gradient(
        90deg,
        #075bd3,
        #d7192f
    );
}


/* BOTTOM NOTE */

.packages-note {
    max-width: 900px;
    margin: 35px auto 0;
    text-align: center;
    color: #52627a;
    font-size: 14px;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 950px) {

    .packages-section {
        padding: 70px 5%;
    }

    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .business-card {
        grid-column: 1 / -1;
        max-width: 550px;
        width: 100%;
        margin: 0 auto;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 650px) {

    .packages-section {
        padding: 60px 20px;
    }

    .section-heading {
        margin-bottom: 30px;
    }

    .section-heading h2 {
        font-size: 30px;
    }

    .section-heading p {
        font-size: 14px;
    }

    .packages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .business-card {
        grid-column: auto;
        max-width: none;
    }

    .package-card {
        padding: 27px 22px;
        border-radius: 18px;
    }

    .package-card h3 {
        font-size: 23px;
    }

    .package-list li {
        font-size: 14px;
    }

    .packages-note {
        font-size: 13px;
    }
}
/* =========================================================
   MEMAC PACKAGE CARDS
   Red + Blue Design
========================================================= */

.pricing-section {
    padding: 100px 0;
    background:
        linear-gradient(
            135deg,
            #f7faff 0%,
            #ffffff 45%,
            #fff5f6 100%
        );
    position: relative;
    overflow: hidden;
}

.pricing-section::before {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(18, 97, 214, 0.10);
    top: -100px;
    right: -80px;
}

.pricing-section::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(217, 47, 69, 0.08);
    bottom: -100px;
    left: -80px;
}


/* PACKAGE GRID */

.pricing-grid {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 28px;

    margin-top: 50px;
}


/* PACKAGE CARD */

.pricing-card {
    position: relative;

    background: #ffffff;

    border-radius: 24px;

    padding: 34px 30px;

    border: 2px solid rgba(18, 97, 214, 0.12);

    box-shadow:
        0 15px 40px rgba(9, 49, 110, 0.10);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;

    overflow: hidden;
}


/* RED + BLUE TOP */

.pricing-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 7px;

    background:
        linear-gradient(
            90deg,
            #1261d6 0%,
            #1261d6 58%,
            #d92f45 58%,
            #d92f45 100%
        );
}


.pricing-card:hover {
    transform: translateY(-8px);

    border-color: rgba(18, 97, 214, 0.35);

    box-shadow:
        0 25px 55px rgba(9, 49, 110, 0.17);
}


/* POPULAR CARD */

.pricing-card.popular {
    border: 2px solid #d92f45;

    transform: translateY(-10px);
}

.pricing-card.popular:hover {
    transform: translateY(-16px);
}


/* POPULAR LABEL */

.popular-label {
    position: absolute;

    top: 18px;
    right: 18px;

    background: #d92f45;

    color: #ffffff;

    padding: 7px 13px;

    border-radius: 50px;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 0.5px;
}


/* PACKAGE TOP */

.pricing-top {
    margin-top: 10px;
}

.pricing-top h3 {
    font-size: 26px;

    color: #092f70;

    margin: 18px 0 10px;

    font-weight: 800;
}

.pricing-top p {
    color: #5c6b80;

    font-size: 15px;

    line-height: 1.7;

    margin: 0;
}


/* PACKAGE ICON */

.pricing-icon {
    width: 58px;
    height: 58px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 16px;

    font-size: 27px;
}

.blue-package-icon {
    background: #eaf3ff;

    border: 1px solid #c9ddff;
}

.red-package-icon {
    background: #fff0f2;

    border: 1px solid #ffd0d6;
}


/* PACKAGE LABEL */

.package-label {
    margin-top: 25px;

    padding: 15px 17px;

    border-radius: 14px;

    background:
        linear-gradient(
            135deg,
            #eef5ff,
            #fff3f4
        );

    border-left: 4px solid #1261d6;

    display: flex;

    flex-direction: column;

    gap: 4px;
}

.pricing-card.popular .package-label {
    border-left-color: #d92f45;
}

.package-label strong {
    color: #1261d6;

    font-size: 14px;

    font-weight: 800;
}

.pricing-card.popular .package-label strong {
    color: #d92f45;
}

.package-label span {
    color: #65748a;

    font-size: 13px;
}


/* PACKAGE LIST */

.pricing-list {
    list-style: none;

    padding: 0;

    margin: 25px 0;

    display: flex;

    flex-direction: column;

    gap: 13px;
}

.pricing-list li {
    color: #26364d;

    font-size: 14px;

    line-height: 1.5;

    padding-bottom: 10px;

    border-bottom: 1px solid #edf1f7;
}


/* BUTTON */

.pricing-button {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 100%;

    min-height: 50px;

    border-radius: 12px;

    background:
        linear-gradient(
            135deg,
            #1261d6,
            #0756c1
        );

    color: #ffffff;

    text-decoration: none;

    font-size: 14px;

    font-weight: 800;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.pricing-button:hover {
    transform: translateY(-2px);

    background:
        linear-gradient(
            135deg,
            #d92f45,
            #bd1f35
        );

    box-shadow:
        0 10px 25px rgba(217, 47, 69, 0.25);
}


/* NOTE */

.pricing-note {
    position: relative;

    z-index: 2;

    text-align: center;

    margin-top: 35px;

    color: #596a82;

    font-size: 14px;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 900px) {

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .pricing-card.popular {
        transform: none;
    }

    .pricing-card.popular:hover {
        transform: translateY(-8px);
    }

}


@media (max-width: 600px) {

    .pricing-section {
        padding: 70px 18px;
    }

    .pricing-card {
        padding: 28px 22px;
    }

    .pricing-top h3 {
        font-size: 23px;
    }

    .pricing-top p {
        font-size: 14px;
    }

    .pricing-list li {
        font-size: 14px;
    }

}