/* ==============================
   GLOBAL
============================== */

:root {
    --blue: #1859b8;
    --blue-dark: #0c347e;
    --blue-light: #4a91ed;

    --purple: #7650c7;
    --purple-dark: #542a9a;
    --lilac: #b994ef;
    --lilac-light: #eee5ff;

    --white: #ffffff;
    --off-white: #faf9ff;

    --text: #17213b;
    --text-light: #65708a;

    --border: #e5def4;

    --shadow:
        0 18px 45px rgba(62, 48, 124, 0.12);

    --gradient:
        linear-gradient(
            135deg,
            var(--blue),
            var(--purple)
        );

    --gradient-light:
        linear-gradient(
            135deg,
            #edf5ff,
            #f2e9ff
        );
}


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


html {
    scroll-behavior: smooth;
}


body {
    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Helvetica,
        Arial,
        sans-serif;

    color: var(--text);
    background: var(--white);
    line-height: 1.6;
}


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


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


button,
input,
select,
textarea {
    font: inherit;
}


.container {
    width: min(1180px, 90%);
    margin: 0 auto;
}


.section {
    padding: 100px 0;
}


/* ==============================
   BUTTONS
============================== */

.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;

    padding: 15px 27px;

    border: none;
    border-radius: 50px;

    background: var(--gradient);

    color: white;
    font-weight: 700;
    font-size: 15px;

    cursor: pointer;

    box-shadow:
        0 10px 25px rgba(73, 74, 184, 0.25);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


.btn:hover {
    transform: translateY(-3px);

    box-shadow:
        0 15px 30px rgba(73, 74, 184, 0.32);
}


.btn-small {
    padding: 11px 20px;
    font-size: 14px;
}


.btn-outline {
    background: transparent;
    color: var(--blue-dark);

    border: 2px solid var(--lilac);

    box-shadow: none;
}


.btn-outline:hover {
    background: var(--lilac-light);
}


.btn-white {
    background: white;
    color: var(--purple-dark);
}


/* ==============================
   HEADER
============================== */

.header {
    position: sticky;
    top: 0;
    z-index: 1000;

    background:
        rgba(255, 255, 255, 0.94);

    backdrop-filter: blur(15px);

    border-bottom:
        1px solid rgba(118, 80, 199, 0.1);
}


.navbar {
    min-height: 78px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


.logo {
    display: flex;
    align-items: center;
    gap: 9px;
}


.logo-icon {
    font-size: 30px;
}


.logo-text {
    display: flex;
    align-items: baseline;
    gap: 4px;
}


.logo-ant {
    color: var(--blue-dark);
    font-size: 24px;
    font-weight: 900;
}


.logo-to {
    color: var(--purple);
    font-style: italic;
    font-size: 18px;
}


.logo-shine {
    color: var(--blue);
    font-size: 24px;
    font-weight: 700;
    font-style: italic;
}


.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}


.nav a {
    font-size: 14px;
    font-weight: 600;
    color: #4e5871;

    transition: color 0.2s ease;
}


.nav a:hover {
    color: var(--purple);
}


.menu-button {
    display: none;

    border: 0;
    background: transparent;

    color: var(--blue-dark);

    font-size: 27px;
    cursor: pointer;
}


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

.hero {
    position: relative;
    overflow: hidden;

    padding: 105px 0 90px;

    background:
        linear-gradient(
            125deg,
            #ffffff 20%,
            #f7f2ff 55%,
            #edf5ff 100%
        );
}


.hero-grid {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 70px;

    align-items: center;

    position: relative;
    z-index: 2;
}


.eyebrow {
    display: inline-block;

    padding: 8px 15px;

    margin-bottom: 23px;

    border-radius: 50px;

    background: var(--lilac-light);

    color: var(--purple-dark);

    font-size: 13px;
    font-weight: 800;

    text-transform: uppercase;
    letter-spacing: 1px;
}


.hero h1 {
    max-width: 650px;

    font-size: clamp(
        45px,
        6vw,
        76px
    );

    line-height: 1.03;

    letter-spacing: -3px;

    color: var(--blue-dark);
}


.hero h1 span {
    display: block;

    background: var(--gradient);

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}


.hero-description {
    max-width: 590px;

    margin: 27px 0;

    color: var(--text-light);

    font-size: 18px;
    line-height: 1.8;
}


.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;

    margin-bottom: 35px;
}


.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 23px;

    font-size: 14px;
    font-weight: 700;

    color: #505a70;
}


.hero-features span {
    color: var(--purple);
    margin-right: 5px;
}


.hero-image-container {
    position: relative;
}


.hero-image {
    position: relative;
    z-index: 2;

    border-radius: 30px;

    box-shadow:
        0 30px 70px rgba(54, 49, 130, 0.2);
}


.hero-glow {
    position: absolute;

    width: 80%;
    height: 80%;

    top: 8%;
    left: 10%;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            var(--lilac),
            var(--blue-light)
        );

    filter: blur(60px);

    opacity: 0.28;
}


.floating-card {
    position: absolute;

    z-index: 5;

    left: -30px;
    bottom: -30px;

    display: flex;
    align-items: center;
    gap: 12px;

    padding: 16px 20px;

    background: white;

    border-radius: 17px;

    box-shadow: var(--shadow);
}


.floating-icon {
    display: grid;
    place-items: center;

    width: 45px;
    height: 45px;

    border-radius: 50%;

    background: var(--lilac-light);
}


.floating-card strong,
.floating-card span {
    display: block;
}


.floating-card strong {
    color: var(--blue-dark);
}


.floating-card span {
    color: var(--text-light);
    font-size: 12px;
}


.hero-decoration {
    position: absolute;

    border-radius: 50%;
}


.decoration-one {
    width: 350px;
    height: 350px;

    right: -180px;
    top: -170px;

    background:
        rgba(126, 81, 207, 0.14);
}


.decoration-two {
    width: 260px;
    height: 260px;

    left: -150px;
    bottom: -130px;

    background:
        rgba(35, 109, 220, 0.12);
}


/* ==============================
   VERSE
============================== */

.verse-section {
    padding: 35px 0;

    background:
        linear-gradient(
            90deg,
            var(--blue-dark),
            var(--purple-dark)
        );
}


.verse-card {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 20px;

    text-align: center;

    color: white;
}


.verse-ant {
    font-size: 42px;
}


.verse-card p {
    font-family: Georgia, serif;
    font-style: italic;
    font-size: 20px;
}


.verse-card span {
    display: block;

    margin-top: 4px;

    color: #d9c8ff;

    font-size: 12px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 3px;
}


/* ==============================
   SECTION HEADINGS
============================== */

.section-heading {
    max-width: 700px;

    margin: 0 auto 55px;

    text-align: center;
}


.section-label {
    color: var(--purple);

    font-size: 13px;
    font-weight: 900;

    letter-spacing: 2px;
}


.section-heading h2,
.about-content h2,
.contact-info h2 {
    margin: 9px 0 14px;

    color: var(--blue-dark);

    font-size: clamp(
        35px,
        4vw,
        49px
    );

    line-height: 1.15;
}


.section-heading p,
.about-content p,
.contact-info > p {
    color: var(--text-light);

    font-size: 17px;
}


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

.services {
    background: var(--off-white);
}


.services-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 23px;
}


.service-card {
    padding: 32px;

    background: white;

    border:
        1px solid var(--border);

    border-radius: 23px;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}


.service-card:hover {
    transform: translateY(-8px);

    border-color: var(--lilac);

    box-shadow: var(--shadow);
}


.service-icon {
    width: 64px;
    height: 64px;

    display: grid;
    place-items: center;

    margin-bottom: 22px;

    border-radius: 18px;

    background:
        linear-gradient(
            135deg,
            #edf4ff,
            var(--lilac-light)
        );

    font-size: 30px;
}


.service-card h3 {
    margin-bottom: 11px;

    color: var(--blue-dark);

    font-size: 21px;
}


.service-card p {
    min-height: 78px;

    margin-bottom: 18px;

    color: var(--text-light);

    font-size: 14px;
}


.service-card a {
    color: var(--purple);
    font-weight: 800;
    font-size: 14px;
}


/* ==============================
   ABOUT
============================== */

.about-grid {
    display: grid;

    grid-template-columns:
        0.9fr 1.1fr;

    align-items: center;

    gap: 80px;
}


.about-box {
    position: relative;

    min-height: 480px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    border-radius: 40px;

    background:
        linear-gradient(
            145deg,
            #edf4ff,
            #e5d2ff
        );

    box-shadow: var(--shadow);
}


.about-box::before {
    content: "";

    position: absolute;

    width: 270px;
    height: 270px;

    border-radius: 50%;

    background: white;

    opacity: 0.7;
}


.about-ant,
.about-box h3,
.about-box p {
    position: relative;
    z-index: 2;
}


.about-ant {
    font-size: 110px;
}


.about-box h3 {
    color: var(--blue-dark);
    font-size: 38px;
}


.about-box h3 span {
    color: var(--purple);
    font-style: italic;
}


.about-box p {
    color: var(--purple-dark);

    font-size: 14px;
    font-weight: 800;

    letter-spacing: 4px;
    text-transform: uppercase;
}


.sparkle {
    position: absolute;

    color: var(--purple);

    font-size: 40px;
}


.sparkle-one {
    top: 50px;
    right: 70px;
}


.sparkle-two {
    left: 55px;
    bottom: 100px;

    color: var(--blue);
}


.sparkle-three {
    right: 50px;
    bottom: 45px;

    color: var(--blue-light);
}


.about-content h2 span,
.contact-info h2 span {
    color: var(--purple);
}


.about-content > p {
    margin-bottom: 16px;
}


.about-list {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 14px;

    margin: 27px 0 32px;
}


.about-list div {
    font-weight: 700;
    font-size: 14px;
}


.about-list span {
    color: var(--purple);
    margin-right: 6px;
}


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

.why-us {
    background:
        linear-gradient(
            135deg,
            #f5f8ff,
            #f8f2ff
        );
}


.why-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 22px;
}


.why-item {
    padding: 28px;

    text-align: center;

    background:
        rgba(255, 255, 255, 0.85);

    border-radius: 20px;

    border:
        1px solid var(--border);
}


.why-icon {
    width: 62px;
    height: 62px;

    margin: 0 auto 17px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: var(--lilac-light);

    font-size: 27px;
}


.why-item h3 {
    margin-bottom: 8px;

    color: var(--blue-dark);
}


.why-item p {
    color: var(--text-light);
    font-size: 14px;
}


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

.cta {
    padding: 70px 0;

    color: white;

    background:
        linear-gradient(
            120deg,
            var(--blue-dark),
            var(--blue),
            var(--purple)
        );
}


.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}


.cta span {
    color: #ddd1ff;

    font-size: 12px;
    font-weight: 900;

    letter-spacing: 2px;
}


.cta h2 {
    margin: 5px 0;

    font-size: 40px;
}


.cta p {
    color: #e5e9ff;
}


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

.contact-grid {
    display: grid;

    grid-template-columns:
        0.85fr 1.15fr;

    gap: 80px;

    align-items: start;
}


.contact-items {
    margin-top: 35px;
}


.contact-item {
    display: flex;
    align-items: center;

    gap: 15px;

    margin-bottom: 22px;
}


.contact-icon {
    width: 52px;
    height: 52px;

    display: grid;
    place-items: center;

    flex-shrink: 0;

    border-radius: 15px;

    background: var(--lilac-light);

    color: var(--purple-dark);

    font-size: 20px;
}


.contact-item span,
.contact-item strong {
    display: block;
}


.contact-item span {
    color: var(--text-light);
    font-size: 12px;
}


.contact-item strong {
    color: var(--blue-dark);
}


.quote-form {
    padding: 40px;

    border:
        1px solid var(--border);

    border-radius: 28px;

    background: white;

    box-shadow: var(--shadow);
}


.quote-form h3 {
    color: var(--blue-dark);
    font-size: 27px;
}


.quote-form > p {
    margin: 5px 0 25px;

    color: var(--text-light);
    font-size: 14px;
}


.form-row {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 15px;
}


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


.form-group label {
    display: block;

    margin-bottom: 6px;

    color: #3f4961;

    font-size: 13px;
    font-weight: 700;
}


.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    padding: 13px 15px;

    border:
        1px solid #ddd8eb;

    border-radius: 11px;

    outline: none;

    background: #fcfbff;

    color: var(--text);

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}


.form-group textarea {
    resize: vertical;
}


.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--purple);

    box-shadow:
        0 0 0 3px rgba(118, 80, 199, 0.12);
}


.form-button {
    width: 100%;
}


.form-message {
    margin-top: 15px;

    text-align: center;

    color: var(--purple-dark);

    font-size: 13px;
    font-weight: 700;
}


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

.footer {
    padding-top: 65px;

    color: #dce3ff;

    background:
        linear-gradient(
            140deg,
            #091f53,
            #301a66
        );
}


.footer-grid {
    display: grid;

    grid-template-columns:
        2fr 1fr 1fr 1.4fr;

    gap: 50px;

    padding-bottom: 55px;
}


.footer-logo span {
    color: white;

    font-size: 28px;
    font-weight: 900;
}


.footer-logo em {
    color: var(--lilac);

    font-size: 24px;
}


.footer-grid > div > p {
    margin-top: 10px;

    color: #aeb8d6;

    font-size: 13px;
}


.footer blockquote {
    max-width: 330px;

    margin-top: 20px;

    padding-left: 15px;

    border-left:
        2px solid var(--lilac);

    color: #cbd3eb;

    font-family: Georgia, serif;
    font-style: italic;

    font-size: 13px;
}


.footer blockquote span {
    display: block;

    margin-top: 5px;

    color: var(--lilac);
}


.footer h4 {
    margin-bottom: 15px;
    color: white;
}


.footer a {
    display: block;

    margin-bottom: 9px;

    color: #aeb8d6;

    font-size: 13px;
}


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


.footer-bottom {
    padding: 20px 0;

    border-top:
        1px solid rgba(255, 255, 255, 0.1);
}


.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}


.footer-bottom p {
    color: #8995ba;
    font-size: 11px;
}


/* ==============================
   RESPONSIVE
============================== */

@media (max-width: 950px) {

    .desktop-quote {
        display: none;
    }

    .menu-button {
        display: block;
    }

    .nav {
        position: absolute;

        top: 78px;
        left: 0;

        width: 100%;

        display: none;
        flex-direction: column;

        padding: 25px;

        background: white;

        border-bottom:
            1px solid var(--border);

        box-shadow:
            0 15px 30px rgba(0, 0, 0, 0.08);
    }

    .nav.active {
        display: flex;
    }


    .hero-grid,
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }


    .hero-grid {
        gap: 65px;
    }


    .hero-content {
        text-align: center;
    }


    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }


    .hero-buttons,
    .hero-features {
        justify-content: center;
    }


    .hero-image-container {
        max-width: 650px;
        margin: 0 auto;
    }


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


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


    .about-visual {
        max-width: 600px;
        width: 100%;
        margin: 0 auto;
    }


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

}


@media (max-width: 650px) {

    .section {
        padding: 75px 0;
    }


    .hero {
        padding-top: 70px;
    }


    .hero h1 {
        letter-spacing: -2px;
    }


    .services-grid,
    .why-grid,
    .form-row,
    .about-list {
        grid-template-columns: 1fr;
    }


    .service-card p {
        min-height: auto;
    }


    .floating-card {
        left: 10px;
        bottom: -35px;
    }


    .verse-card {
        flex-direction: column;
        gap: 5px;
    }


    .cta-content {
        flex-direction: column;
        align-items: flex-start;
    }


    .cta h2 {
        font-size: 32px;
    }


    .quote-form {
        padding: 27px 20px;
    }


    .footer-grid {
        grid-template-columns: 1fr;
    }


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

}