/* =========================================================
   LISABEL SITES
   Main Website Styles
   ========================================================= */


/* =========================================================
   1. RESET
   ========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #ffffff;
    color: #172033;
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
input,
textarea,
select {
    font: inherit;
}


/* =========================================================
   2. GLOBAL
   ========================================================= */

:root {
    --primary: #1769ff;
    --primary-dark: #0c4dcc;
    --secondary: #7c3aed;
    --cyan: #00b8d9;

    --dark: #111827;
    --dark-soft: #1f2937;

    --text: #172033;
    --text-light: #667085;

    --background: #ffffff;
    --background-soft: #f7f9fc;

    --border: #e5e7eb;

    --shadow-sm: 0 8px 25px rgba(17, 24, 39, 0.06);
    --shadow-md: 0 20px 45px rgba(17, 24, 39, 0.10);
    --shadow-lg: 0 30px 70px rgba(17, 24, 39, 0.14);

    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 28px;

    --container: 1180px;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}


/* =========================================================
   3. HEADER
   ========================================================= */

.site-header {
    width: 100%;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(229, 231, 235, 0.8);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(12px);
}

.navigation {
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.brand img {
    width: 112px;
    height: auto;
    object-fit: contain;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.main-nav a {
    color: #4b5563;
    font-size: 14px;
    font-weight: 600;
    transition: 0.25s ease;
    position: relative;
}

.main-nav a:not(.nav-cta)::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 2px;
    background: linear-gradient(
        90deg,
        var(--primary),
        var(--secondary)
    );
    transition: 0.25s ease;
}

.main-nav a:hover {
    color: var(--primary);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.main-nav a.active {
    color: var(--primary);
}

.nav-cta {
    background: linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );
    color: #ffffff !important;
    padding: 12px 20px;
    border-radius: 999px;
    box-shadow: 0 10px 25px rgba(23, 105, 255, 0.20);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(23, 105, 255, 0.28);
}

.menu-toggle {
    display: none;
    border: none;
    background: transparent;
    color: var(--dark);
    font-size: 28px;
    cursor: pointer;
}


/* =========================================================
   4. HERO
   ========================================================= */

.hero-section {
    position: relative;
    overflow: hidden;
    padding: 100px 0 110px;
    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(23, 105, 255, 0.09),
            transparent 32%
        ),
        radial-gradient(
            circle at 90% 20%,
            rgba(124, 58, 237, 0.10),
            transparent 30%
        ),
        #ffffff;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 70px;
}

.hero-text {
    max-width: 650px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.hero-eyebrow::before {
    content: "";
    width: 30px;
    height: 2px;
    background: linear-gradient(
        90deg,
        var(--primary),
        var(--secondary)
    );
}

.hero-text h1 {
    font-size: clamp(46px, 6vw, 76px);
    line-height: 1.03;
    letter-spacing: -3px;
    color: var(--dark);
    margin-bottom: 25px;
}

.hero-text h1 span {
    display: block;
    background: linear-gradient(
        90deg,
        var(--primary),
        var(--secondary)
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-text > p {
    max-width: 600px;
    color: var(--text-light);
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}


/* =========================================================
   5. BUTTONS
   ========================================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 25px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    transition: 0.25s ease;
    border: 1px solid transparent;
}

.btn-primary {
    color: #ffffff;
    background: linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );
    box-shadow: 0 15px 30px rgba(23, 105, 255, 0.22);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 35px rgba(23, 105, 255, 0.30);
}

.btn-secondary {
    color: var(--dark);
    background: #ffffff;
    border-color: var(--border);
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-3px);
}

.btn-light {
    background: #ffffff;
    color: var(--primary);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.btn-light:hover {
    transform: translateY(-3px);
}


/* =========================================================
   6. HERO TRUST POINTS
   ========================================================= */

.trust-points {
    display: flex;
    gap: 30px;
    margin-top: 45px;
    flex-wrap: wrap;
}

.trust-points div {
    display: flex;
    align-items: center;
    gap: 10px;
}

.trust-points strong {
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
}

.trust-points span {
    color: #5d6675;
    font-size: 13px;
    font-weight: 600;
}


/* =========================================================
   7. HERO VISUAL
   ========================================================= */

.hero-visual {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.design-window {
    width: min(100%, 510px);
    min-height: 380px;
    background: #ffffff;
    border: 1px solid rgba(229, 231, 235, 0.9);
    border-radius: 28px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    transform: rotate(2deg);
    position: relative;
    z-index: 2;
}

.window-top {
    height: 48px;
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 0 20px;
    border-bottom: 1px solid var(--border);
    background: #fafbfc;
}

.window-top span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d1d5db;
}

.window-content {
    min-height: 330px;
    padding: 50px;
    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(124, 58, 237, 0.18),
            transparent 25%
        ),
        linear-gradient(
            145deg,
            #f9fbff,
            #eef4ff
        );
}

.creative-line {
    height: 7px;
    border-radius: 10px;
    background: #d9e2f2;
    margin-bottom: 20px;
}

.creative-line.small {
    width: 85px;
}

.creative-title {
    font-size: 32px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -1px;
    color: var(--dark);
    margin-bottom: 7px;
}

.creative-title.accent {
    color: var(--primary);
}

.creative-box {
    margin-top: 40px;
    min-height: 130px;
    border-radius: 20px;
    background: linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 30px;
    box-shadow: 0 20px 35px rgba(23, 105, 255, 0.18);
}

.creative-circle {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
}

.creative-lines {
    flex: 1;
}

.creative-lines span {
    display: block;
    height: 8px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.8);
    margin: 12px 0;
}

.creative-lines span:nth-child(1) {
    width: 85%;
}

.creative-lines span:nth-child(2) {
    width: 65%;
}

.creative-lines span:nth-child(3) {
    width: 45%;
}

.floating-card {
    position: absolute;
    z-index: 3;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 15px 20px;
    box-shadow: var(--shadow-md);
}

.floating-card strong {
    display: block;
    color: var(--dark);
    font-size: 15px;
}

.floating-card span {
    color: var(--text-light);
    font-size: 12px;
}

.card-one {
    left: -10px;
    top: 95px;
    transform: rotate(-5deg);
}

.card-two {
    right: -5px;
    bottom: 80px;
    transform: rotate(5deg);
}


/* =========================================================
   8. SECTION COMMON STYLES
   ========================================================= */

.section-label {
    display: inline-block;
    color: var(--primary);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 18px;
}

.section-heading {
    max-width: 700px;
    margin-bottom: 50px;
}

.section-heading h2,
.about-grid h2 {
    font-size: clamp(35px, 5vw, 54px);
    line-height: 1.1;
    letter-spacing: -2px;
    color: var(--dark);
}

.section-heading h2 span,
.about-grid h2 span {
    color: var(--primary);
}

.section-heading p {
    margin-top: 18px;
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.8;
}


/* =========================================================
   9. ABOUT SECTION
   ========================================================= */

.about-section {
    padding: 110px 0;
    background: var(--background-soft);
}

.about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 100px;
    align-items: start;
}

.about-grid > div:last-child {
    padding-top: 10px;
}

.about-grid p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 20px;
}

.text-link {
    display: inline-flex;
    color: var(--primary);
    font-size: 14px;
    font-weight: 800;
    margin-top: 10px;
    transition: 0.25s ease;
}

.text-link:hover {
    color: var(--secondary);
    transform: translateX(4px);
}


/* =========================================================
   10. SERVICES SECTION
   ========================================================= */

.services-section {
    padding: 110px 0;
    background: #ffffff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.service-card {
    position: relative;
    padding: 35px 28px;
    min-height: 330px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: #ffffff;
    transition: 0.3s ease;
    overflow: hidden;
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(
        90deg,
        var(--primary),
        var(--secondary)
    );
    transform: scaleX(0);
    transform-origin: left;
    transition: 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(23, 105, 255, 0.25);
    box-shadow: var(--shadow-md);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-number {
    color: var(--primary);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1px;
    margin-bottom: 35px;
}

.service-card h3 {
    font-size: 20px;
    line-height: 1.3;
    color: var(--dark);
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.service-card a {
    position: absolute;
    left: 28px;
    bottom: 30px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 800;
}

.service-card a:hover {
    color: var(--secondary);
}


/* =========================================================
   11. CTA SECTION
   ========================================================= */

.cta-section {
    padding: 100px 0;
    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(255, 255, 255, 0.12),
            transparent 25%
        ),
        linear-gradient(
            135deg,
            #155eef,
            #6d28d9
        );
    color: #ffffff;
}

.cta-content {
    text-align: center;
    max-width: 800px;
}

.cta-content .section-label {
    color: rgba(255, 255, 255, 0.75);
}

.cta-content h2 {
    font-size: clamp(38px, 5vw, 60px);
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 20px;
}

.cta-content h2 span {
    color: #b9f5ff;
}

.cta-content p {
    max-width: 650px;
    margin: 0 auto 30px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 16px;
    line-height: 1.8;
}


/* =========================================================
   12. CONTACT SECTION
   ========================================================= */

.contact-section {
    padding: 110px 0;
    background: var(--background-soft);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 70px;
}

.contact-info h2 {
    font-size: 48px;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 20px;
    color: var(--dark);
}

.contact-info p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
}

.contact-details {
    display: grid;
    gap: 18px;
}

.contact-item {
    padding: 20px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 14px;
}

.contact-item strong {
    display: block;
    color: var(--dark);
    margin-bottom: 5px;
}

.contact-item span,
.contact-item a {
    color: var(--text-light);
    font-size: 14px;
}

.contact-item a:hover {
    color: var(--primary);
}

.contact-form {
    background: #ffffff;
    padding: 35px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: var(--dark);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 13px 15px;
    outline: none;
    background: #ffffff;
    color: var(--dark);
    transition: 0.25s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(23, 105, 255, 0.08);
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
}


/* =========================================================
   13. FOOTER
   ========================================================= */

.site-footer {
    background: #0d1424;
    color: #ffffff;
    padding-top: 70px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 70px;
    padding-bottom: 60px;
}

.footer-brand img {
    width: 125px;
    margin-bottom: 18px;
}

.footer-brand p {
    max-width: 300px;
    color: #9ca8ba;
    font-size: 14px;
    line-height: 1.8;
}

.footer-links,
.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 11px;
}

.footer-links h4,
.footer-contact h4 {
    color: #ffffff;
    font-size: 15px;
    margin-bottom: 10px;
}

.footer-links a,
.footer-contact a {
    color: #9ca8ba;
    font-size: 13px;
    transition: 0.25s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: #ffffff;
    transform: translateX(3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 22px 20px;
    text-align: center;
}

.footer-bottom p {
    color: #7f8a9c;
    font-size: 12px;
}


/* =========================================================
   14. MOBILE NAVIGATION
   ========================================================= */

@media (max-width: 900px) {

    .main-nav {
        position: absolute;
        top: 88px;
        left: 20px;
        right: 20px;

        display: none;
        flex-direction: column;
        align-items: stretch;

        background: #ffffff;
        border: 1px solid var(--border);
        border-radius: 16px;
        padding: 20px;

        box-shadow: var(--shadow-md);
    }

    .main-nav.mobile-active {
        display: flex;
    }

    .main-nav a {
        padding: 12px 5px;
    }

    .main-nav a:not(.nav-cta)::after {
        display: none;
    }

    .nav-cta {
        text-align: center;
        margin-top: 5px;
    }

    .menu-toggle {
        display: block;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero-text {
        max-width: 800px;
    }

    .hero-visual {
        min-height: 450px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}


/* =========================================================
   15. TABLET
   ========================================================= */

@media (max-width: 650px) {

    .container {
        width: min(100% - 30px, 1180px);
    }

    .navigation {
        min-height: 78px;
    }

    .brand img {
        width: 95px;
    }

    .main-nav {
        top: 78px;
        left: 15px;
        right: 15px;
    }

    .hero-section {
        padding: 75px 0 80px;
    }

    .hero-text h1 {
        font-size: 46px;
        letter-spacing: -2px;
    }

    .hero-text > p {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
    }

    .trust-points {
        gap: 18px;
    }

    .hero-visual {
        min-height: 370px;
    }

    .design-window {
        min-height: 300px;
    }

    .window-content {
        min-height: 250px;
        padding: 30px;
    }

    .creative-title {
        font-size: 25px;
    }

    .creative-box {
        margin-top: 25px;
        min-height: 100px;
        padding: 20px;
    }

    .creative-circle {
        width: 55px;
        height: 55px;
    }

    .floating-card {
        padding: 11px 14px;
    }

    .card-one {
        left: 0;
        top: 55px;
    }

    .card-two {
        right: 0;
        bottom: 45px;
    }

    .about-section,
    .services-section,
    .contact-section {
        padding: 80px 0;
    }

    .section-heading h2,
    .about-grid h2 {
        font-size: 38px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: 290px;
    }

    .cta-section {
        padding: 80px 0;
    }

    .cta-content h2 {
        font-size: 40px;
    }

    .contact-info h2 {
        font-size: 38px;
    }

    .contact-form {
        padding: 25px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        grid-column: auto;
    }

}


/* =========================================================
   16. VERY SMALL SCREENS
   ========================================================= */

@media (max-width: 400px) {

    .hero-text h1 {
        font-size: 39px;
    }

    .creative-title {
        font-size: 21px;
    }

    .hero-visual {
        min-height: 320px;
    }

    .design-window {
        transform: none;
    }

    .floating-card {
        display: none;
    }

}

/* =========================================================
   ABOUT PAGE
   ========================================================= */

.page-hero {
    padding: 110px 0 100px;
    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(23, 105, 255, 0.10),
            transparent 30%
        ),
        radial-gradient(
            circle at 90% 30%,
            rgba(124, 58, 237, 0.10),
            transparent 30%
        ),
        #f8faff;
}

.page-hero .container {
    max-width: 900px;
    text-align: center;
}

.page-hero h1 {
    font-size: clamp(42px, 6vw, 68px);
    line-height: 1.05;
    letter-spacing: -3px;
    color: var(--dark);
    margin-bottom: 25px;
}

.page-hero h1 span {
    display: block;
    background: linear-gradient(
        90deg,
        var(--primary),
        var(--secondary)
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.page-hero p {
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-light);
    font-size: 17px;
    line-height: 1.8;
}


/* =========================================================
   ABOUT MAIN
   ========================================================= */

.about-main {
    padding: 110px 0;
    background: #ffffff;
}

.about-main-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.about-main-content h2 {
    font-size: clamp(38px, 5vw, 55px);
    line-height: 1.1;
    letter-spacing: -2px;
    color: var(--dark);
    margin-bottom: 25px;
}

.about-main-content h2 span {
    color: var(--primary);
}

.about-main-content p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 20px;
}

.about-highlight {
    position: relative;
    padding: 45px;
    min-height: 320px;
    border-radius: 25px;
    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(255, 255, 255, 0.16),
            transparent 25%
        ),
        linear-gradient(
            135deg,
            #155eef,
            #6d28d9
        );
    color: #ffffff;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.about-highlight::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    right: -70px;
    bottom: -70px;
}

.highlight-number {
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.65);
    margin-bottom: 70px;
}

.about-highlight h3 {
    font-size: 30px;
    line-height: 1.2;
    margin-bottom: 15px;
}

.about-highlight p {
    color: rgba(255,255,255,0.80);
    line-height: 1.8;
}


/* =========================================================
   APPROACH
   ========================================================= */

.approach-section {
    padding: 110px 0;
    background: var(--background-soft);
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.approach-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 32px 25px;
    min-height: 280px;
    transition: 0.3s ease;
}

.approach-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-md);
    border-color: rgba(23, 105, 255, 0.25);
}

.approach-number {
    display: inline-block;
    color: var(--primary);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1px;
    margin-bottom: 45px;
}

.approach-card h3 {
    color: var(--dark);
    font-size: 21px;
    margin-bottom: 14px;
}

.approach-card p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.8;
}


/* =========================================================
   WHY LISABEL SITES
   ========================================================= */

.why-section {
    padding: 110px 0;
    background: #ffffff;
}

.why-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 90px;
    align-items: start;
}

.why-grid h2 {
    font-size: clamp(38px, 5vw, 54px);
    line-height: 1.1;
    letter-spacing: -2px;
    color: var(--dark);
    margin-bottom: 22px;
}

.why-grid h2 span {
    color: var(--primary);
}

.why-grid > div:first-child p {
    color: var(--text-light);
    line-height: 1.9;
    font-size: 16px;
}

.why-list {
    display: grid;
    gap: 18px;
}

.why-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 22px;
    border: 1px solid var(--border);
    border-radius: 15px;
    transition: 0.25s ease;
}

.why-item:hover {
    border-color: rgba(23, 105, 255, 0.25);
    box-shadow: var(--shadow-sm);
}

.why-icon {
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(23, 105, 255, 0.10);
    color: var(--primary);
    font-weight: 900;
}

.why-item h3 {
    color: var(--dark);
    font-size: 17px;
    margin-bottom: 5px;
}

.why-item p {
    color: var(--text-light);
    font-size: 13px;
    line-height: 1.7;
}


/* =========================================================
   ABOUT PAGE RESPONSIVE
   ========================================================= */

@media (max-width: 900px) {

    .about-main-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .approach-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

}


@media (max-width: 650px) {

    .page-hero {
        padding: 80px 0;
    }

    .page-hero h1 {
        font-size: 42px;
        letter-spacing: -2px;
    }

    .page-hero p {
        font-size: 15px;
    }

    .about-main,
    .approach-section,
    .why-section {
        padding: 80px 0;
    }

    .about-main-content h2,
    .why-grid h2 {
        font-size: 38px;
    }

    .about-highlight {
        padding: 30px;
        min-height: 280px;
    }

    .highlight-number {
        margin-bottom: 55px;
    }

    .approach-grid {
        grid-template-columns: 1fr;
    }

    .approach-card {
        min-height: auto;
    }

}

/* =========================================================
   SERVICES PAGE
   ========================================================= */

.services-intro {
    padding: 100px 0;
    background: #ffffff;
}

.services-intro-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 90px;
    align-items: start;
}

.services-intro h2 {
    font-size: clamp(38px, 5vw, 55px);
    line-height: 1.1;
    letter-spacing: -2px;
    color: var(--dark);
}

.services-intro h2 span {
    color: var(--primary);
}

.services-intro-grid > div:last-child p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 18px;
}


/* =========================================================
   SERVICE DETAIL
   ========================================================= */

.service-detail {
    padding: 110px 0;
    overflow: hidden;
}

.service-detail-light {
    background: var(--background-soft);
}

.service-detail-dark {
    background: #101827;
    color: #ffffff;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 70px 1fr 0.9fr;
    gap: 45px;
    align-items: center;
}

.service-detail-number {
    align-self: start;
    padding-top: 5px;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 2px;
    color: var(--primary);
}

.service-detail-content {
    max-width: 580px;
}

.service-detail-content h2 {
    font-size: clamp(40px, 5vw, 58px);
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 22px;
}

.service-detail-light .service-detail-content h2 {
    color: var(--dark);
}

.service-detail-dark .service-detail-content h2 {
    color: #ffffff;
}

.service-detail-content h2 span {
    display: block;
    color: var(--primary);
}

.service-detail-content p {
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 30px;
}

.service-detail-light .service-detail-content p {
    color: var(--text-light);
}

.service-detail-dark .service-detail-content p {
    color: #aab4c5;
}

.service-detail-dark .section-label {
    color: #6ea8ff;
}


/* =========================================================
   SERVICE FEATURES
   ========================================================= */

.service-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-bottom: 32px;
}

.service-features div {
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-features strong {
    color: var(--primary);
    font-size: 11px;
    font-weight: 900;
}

.service-features span {
    font-size: 13px;
    font-weight: 600;
}

.service-detail-light .service-features span {
    color: #566173;
}

.service-detail-dark .service-features span {
    color: #c4ccd8;
}


/* =========================================================
   SERVICE VISUALS
   ========================================================= */

.service-visual {
    min-height: 390px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}


/* WEBSITE */

.mock-browser {
    width: 100%;
    max-width: 430px;
    border-radius: 20px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.18);
    transform: rotate(2deg);
}

.mock-browser-top {
    height: 45px;
    display: flex;
    align-items: center;
    gap: 7px;
    padding-left: 18px;
    background: #f1f3f7;
}

.mock-browser-top span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #c8ced8;
}

.mock-browser-body {
    min-height: 300px;
    padding: 45px 35px;
    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(124, 58, 237, 0.18),
            transparent 25%
        ),
        linear-gradient(
            145deg,
            #f9fbff,
            #eaf1ff
        );
}

.mock-line {
    height: 9px;
    border-radius: 20px;
    background: #cbd8ee;
    margin-bottom: 14px;
}

.mock-line.wide {
    width: 70%;
}

.mock-line.medium {
    width: 45%;
}

.mock-boxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 40px;
}

.mock-boxes div {
    height: 110px;
    border-radius: 12px;
    background: linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );
}

.mock-boxes div:nth-child(2) {
    opacity: 0.75;
}

.mock-boxes div:nth-child(3) {
    opacity: 0.5;
}


/* GRAPHIC DESIGN */

.graphic-visual {
    background:
        radial-gradient(
            circle at center,
            rgba(23, 105, 255, 0.14),
            transparent 55%
        );
}

.design-card {
    width: 300px;
    min-height: 350px;
    padding: 35px;
    border-radius: 18px;
    background: linear-gradient(
        145deg,
        #1769ff,
        #7c3aed
    );
    box-shadow: 0 30px 60px rgba(23, 105, 255, 0.30);
    transform: rotate(-5deg);
    color: #ffffff;
}

.design-card-circle {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    margin-bottom: 60px;
}

.design-card-lines span {
    display: block;
    height: 9px;
    border-radius: 20px;
    background: rgba(255,255,255,0.85);
    margin: 13px 0;
}

.design-card-lines span:nth-child(1) {
    width: 85%;
}

.design-card-lines span:nth-child(2) {
    width: 65%;
}

.design-card-lines span:nth-child(3) {
    width: 45%;
}

.design-card-footer {
    margin-top: 55px;
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 900;
}


/* FLYER */

.flyer-visual {
    background:
        radial-gradient(
            circle at center,
            rgba(23, 105, 255, 0.12),
            transparent 55%
        );
}

.flyer-card {
    width: 290px;
    height: 370px;
    padding: 45px 30px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(255,255,255,0.22),
            transparent 25%
        ),
        linear-gradient(
            145deg,
            #155eef,
            #6d28d9
        );
    color: #ffffff;
    box-shadow: 0 30px 60px rgba(23, 105, 255, 0.25);
    transform: rotate(4deg);
}

.flyer-card span {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 3px;
}

.flyer-card strong {
    font-size: 58px;
    line-height: 0.95;
    margin: 8px 0 20px;
    letter-spacing: -3px;
}

.flyer-card small {
    font-size: 10px;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.75);
}


/* T-SHIRT */

.tshirt-visual {
    background:
        radial-gradient(
            circle at center,
            rgba(124, 58, 237, 0.18),
            transparent 55%
        );
}

.tshirt-shape {
    position: relative;
    width: 270px;
    height: 330px;
    background: linear-gradient(
        145deg,
        #1769ff,
        #7c3aed
    );
    clip-path: polygon(
        27% 8%,
        40% 0,
        50% 7%,
        60% 0,
        73% 8%,
        100% 23%,
        83% 48%,
        72% 40%,
        72% 100%,
        28% 100%,
        28% 40%,
        17% 48%,
        0 23%
    );
    box-shadow: 0 30px 60px rgba(23, 105, 255, 0.25);
}

.tshirt-neck {
    position: absolute;
    top: 13px;
    left: 50%;
    transform: translateX(-50%);
    width: 58px;
    height: 28px;
    border-radius: 0 0 30px 30px;
    background: rgba(255,255,255,0.22);
}

.tshirt-design {
    position: absolute;
    top: 125px;
    left: 50%;
    transform: translateX(-50%);
    width: 85px;
    height: 85px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(255,255,255,0.9);
    border-radius: 50%;
    color: #ffffff;
    font-size: 24px;
    font-weight: 900;
}


/* =========================================================
   HOW IT WORKS
   ========================================================= */

.how-section {
    padding: 110px 0;
    background: #ffffff;
}

.how-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.how-card {
    padding: 30px 25px;
    min-height: 240px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: 0.3s ease;
}

.how-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-md);
    border-color: rgba(23, 105, 255, 0.25);
}

.how-card > span {
    color: var(--primary);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1px;
}

.how-card h3 {
    color: var(--dark);
    font-size: 19px;
    margin: 45px 0 12px;
}

.how-card p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.8;
}


/* =========================================================
   SERVICES RESPONSIVE
   ========================================================= */

@media (max-width: 900px) {

    .services-intro-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .service-detail-grid {
        grid-template-columns: 50px 1fr;
    }

    .service-visual {
        grid-column: 2;
        min-height: 330px;
    }

    .how-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 650px) {

    .services-intro,
    .service-detail,
    .how-section {
        padding: 80px 0;
    }

    .services-intro h2 {
        font-size: 38px;
    }

    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .service-detail-number {
        padding-top: 0;
    }

    .service-detail-content h2 {
        font-size: 42px;
    }

    .service-features {
        grid-template-columns: 1fr;
    }

    .service-visual {
        grid-column: auto;
        min-height: 300px;
    }

    .mock-browser {
        max-width: 350px;
    }

    .design-card {
        width: 260px;
        min-height: 320px;
    }

    .flyer-card {
        width: 250px;
        height: 330px;
    }

    .tshirt-shape {
        width: 230px;
        height: 280px;
    }

    .how-grid {
        grid-template-columns: 1fr;
    }

}

/* =========================================================
   CONTACT PAGE
   ========================================================= */

.contact-info h2 span {
    color: var(--primary);
}

.contact-info .section-label {
    margin-bottom: 15px;
}

.contact-info .contact-details {
    margin-bottom: 30px;
}

.whatsapp-button {
    margin-top: 5px;
}

.form-heading {
    margin-bottom: 28px;
}

.form-heading h3 {
    color: var(--dark);
    font-size: 28px;
    margin-bottom: 8px;
}

.form-heading p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.7;
}

.contact-form .btn {
    border: none;
    cursor: pointer;
}

.contact-form .btn:hover {
    transform: translateY(-2px);
}


/* =========================================================
   CONTACT RESPONSIVE
   ========================================================= */

@media (max-width: 650px) {

    .contact-info h2 {
        font-size: 38px;
    }

    .contact-form {
        padding: 25px;
    }

    .whatsapp-button {
        width: 100%;
    }

}

/* =========================================================
   REQUEST A QUOTE PAGE
   ========================================================= */

.quote-section {
    padding: 110px 0;
    background: var(--background-soft);
}

.quote-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 70px;
    align-items: start;
}


/* =========================================================
   QUOTE INFORMATION
   ========================================================= */

.quote-info {
    padding-top: 10px;
}

.quote-info h2 {
    font-size: clamp(40px, 5vw, 55px);
    line-height: 1.08;
    letter-spacing: -2px;
    color: var(--dark);
    margin-bottom: 25px;
}

.quote-info h2 span {
    color: var(--primary);
}

.quote-info > p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 18px;
}


/* =========================================================
   QUOTE POINTS
   ========================================================= */

.quote-points {
    display: grid;
    gap: 18px;
    margin-top: 35px;
}

.quote-point {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.quote-check {
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(23, 105, 255, 0.10);
    color: var(--primary);
    font-weight: 900;
}

.quote-point strong {
    display: block;
    color: var(--dark);
    font-size: 14px;
    margin-bottom: 3px;
}

.quote-point span {
    display: block;
    color: var(--text-light);
    font-size: 13px;
    line-height: 1.6;
}


/* =========================================================
   QUOTE CONTACT BOX
   ========================================================= */

.quote-contact-box {
    margin-top: 35px;
    padding: 25px;
    border-radius: 15px;
    background: #ffffff;
    border: 1px solid var(--border);
}

.quote-contact-box strong {
    display: block;
    color: var(--dark);
    margin-bottom: 5px;
}

.quote-contact-box p {
    color: var(--text-light);
    font-size: 13px;
    margin-bottom: 10px;
}

.quote-contact-box a {
    color: var(--primary);
    font-size: 14px;
    font-weight: 800;
}


/* =========================================================
   QUOTE FORM
   ========================================================= */

.quote-form-wrapper {
    width: 100%;
}

.quote-form {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.quote-form .form-heading {
    margin-bottom: 30px;
}

.quote-form .form-heading h3 {
    color: var(--dark);
    font-size: 30px;
    margin-bottom: 7px;
}

.quote-form .form-heading p {
    color: var(--text-light);
    font-size: 14px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.quote-form .form-group {
    margin-bottom: 20px;
}

.quote-form .form-group label {
    display: block;
    color: var(--dark);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 8px;
}

.quote-form .form-group input,
.quote-form .form-group textarea,
.quote-form .form-group select {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 14px 15px;
    outline: none;
    background: #ffffff;
    color: var(--dark);
    transition: 0.25s ease;
}

.quote-form .form-group input:focus,
.quote-form .form-group textarea:focus,
.quote-form .form-group select:focus {
    border-color: var(--primary);
    box-shadow:
        0 0 0 4px rgba(23, 105, 255, 0.08);
}

.quote-form .form-group textarea {
    min-height: 160px;
    resize: vertical;
}

.quote-submit {
    width: 100%;
    border: none;
    cursor: pointer;
    margin-top: 5px;
}

.form-note {
    color: #8a94a5;
    font-size: 11px;
    line-height: 1.6;
    text-align: center;
    margin-top: 15px;
}


/* =========================================================
   REQUEST QUOTE RESPONSIVE
   ========================================================= */

@media (max-width: 900px) {

    .quote-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

}


@media (max-width: 650px) {

    .quote-section {
        padding: 80px 0;
    }

    .quote-info h2 {
        font-size: 38px;
    }

    .quote-form {
        padding: 25px;
        border-radius: 16px;
    }

    .quote-form .form-heading h3 {
        font-size: 25px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

}
/* =========================================================
   FORM SUCCESS / ERROR MESSAGES
   ========================================================= */

.form-message {
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.6;
}

.success-message {
    background: #ecfdf3;
    border: 1px solid #a7f3d0;
    color: #047857;
}

.error-message {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #b91c1c;
}