:root {
    --navy: #040817;
    --navy-soft: #0B122B;
    --blue: #6366F1;
    --blue-soft: #8B5CF6;
    --gold: #AFA27A;
    --text: #0B122B;
    --muted: #5B647C;
    --line: #E6E9F2;
    --surface: #FFFFFF;
    --soft: #F4F6FF;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: #f4f5fb;
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
    color: inherit;
}

button,
input {
    font: inherit;
}

button {
    cursor: pointer;
}

.material-symbols-outlined {
    font-variation-settings:
        'FILL' 0,
        'wght' 400,
        'GRAD' 0,
        'opsz' 24;
}

.page-shell {
    width: min(100% - 28px, 1210px);
    margin: 18px auto 28px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 60px rgba(7, 19, 52, 0.08);
}

.site-header {
    height: 72px;
    padding: 0 50px;
    border-bottom: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    background: rgba(255, 255, 255, 0.94);
}

.logo {
    text-decoration: none;
    font-size: 28px;
    font-weight: 900;
    letter-spacing: -0.065em;
    color: var(--navy);
}

.logo span {
    color: var(--navy);
}

.logo strong {
    color: var(--gold);
}

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

.main-nav a {
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    color: var(--navy);
}

.top-button,
.btn {
    border: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border-radius: 7px;
    text-decoration: none;
    font-weight: 900;
}

.top-button {
    height: 48px;
    padding: 0 22px;
    background: linear-gradient(135deg, #6366F1, #8B5CF6);
    color: white;
    font-size: 15px;
    box-shadow: 0 12px 28px rgba(99, 102, 241, 0.35);
}

.top-button .material-symbols-outlined,
.btn .material-symbols-outlined {
    font-size: 18px;
}

.hero-section {
    min-height: 600px;
    position: relative;
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    padding: 72px 50px 48px;
    border-bottom: 1px solid var(--line);
    background:
        radial-gradient(circle at 83% 27%, rgba(99, 102, 241, 0.12), transparent 30%),
        radial-gradient(circle at 70% 60%, rgba(139, 92, 246, 0.10), transparent 40%),
        linear-gradient(90deg, #ffffff 0%, #ffffff 52%, #F4F6FF 100%);
}

.eyebrow {
    margin: 0;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.105em;
    color: var(--gold);
}

.hero-copy h1 {
    margin: 26px 0 0;
    max-width: 560px;
    font-size: 48px;
    line-height: 1.08;
    letter-spacing: -0.055em;
    color: var(--navy);
}

.hero-copy h1 span {
    color: var(--blue);
}

.hero-text {
    margin: 24px 0 0;
    color: var(--navy);
    font-size: 17px;
    line-height: 1.65;
    font-weight: 600;
}

.hero-buttons {
    margin-top: 34px;
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
}

.btn {
    min-height: 50px;
    padding: 0 24px;
    font-size: 15px;
}

.btn-primary {
    background: linear-gradient(135deg, #6366F1, #8B5CF6);
    color: white;
    box-shadow: 0 12px 28px rgba(99, 102, 241, 0.35);
}

.btn-outline {
    color: var(--navy);
    border: 1.5px solid rgba(99, 102, 241, 0.45);
    background: white;
}

.trust-items {
    display: flex;
    align-items: center;
    gap: 48px;
    margin-top: 60px;
}

.trust-items div {
    display: flex;
    align-items: center;
    gap: 14px;
}

.trust-items .material-symbols-outlined {
    color: var(--blue);
    font-size: 36px;
}

.trust-items p {
    margin: 0;
    font-size: 14px;
    line-height: 1.35;
    font-weight: 800;
    color: var(--navy);
}

.hero-visual {
    position: relative;
    min-height: 430px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.hero-image {
    display: block;
    width: 760px;
    max-width: none;
    height: auto;
    margin-right: -94px;
    object-fit: contain;
    filter: drop-shadow(0 30px 45px rgba(4, 8, 23, 0.18));
}


.services-section {
    padding: 42px 50px 48px;
    border-bottom: 1px solid var(--line);
}

.section-title {
    text-align: center;
}

.section-title p {
    margin: 0;
    color: var(--gold);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.17em;
}

.section-title h2 {
    margin: 14px 0 0;
    color: var(--navy);
    font-size: 30px;
    line-height: 1.1;
    letter-spacing: -0.045em;
}

.section-title span {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    font-size: 15px;
    font-weight: 600;
}

.services-grid {
    margin-top: 34px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.service-card {
    min-height: 170px;
    padding: 28px 22px 24px;
    text-align: center;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: white;
}

.service-card .material-symbols-outlined {
    color: var(--blue);
    font-size: 54px;
}

.service-card h3 {
    margin: 20px 0 0;
    color: var(--navy);
    font-size: 16px;
}

.service-card p {
    margin: 11px 0 0;
    color: var(--navy);
    font-size: 13px;
    line-height: 1.55;
    font-weight: 600;
}

.work-section {
    padding: 18px 50px 48px;
}

.work-grid {
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.project-card {
    height: 145px;
    padding: 28px;
    border-radius: 13px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: white;
    background: #071334;
    box-shadow: 0 14px 30px rgba(7, 19, 52, 0.18);
}

.project-bellavista {
    background:
        linear-gradient(90deg, rgba(0,0,0,0.78), rgba(0,0,0,0.26)),
        radial-gradient(circle at 70% 40%, rgba(201, 136, 53, 0.34), transparent 30%),
        linear-gradient(135deg, #0c0a08, #2c2119);
}

.project-nordika {
    background:
        linear-gradient(90deg, rgba(4,12,30,0.66), rgba(4,12,30,0.12)),
        radial-gradient(circle at 70% 38%, rgba(201, 136, 53, 0.45), transparent 26%),
        linear-gradient(135deg, #071334, #203a60);
}

.project-flowpay {
    background:
        linear-gradient(90deg, rgba(4,12,30,0.7), rgba(4,12,30,0.12)),
        radial-gradient(circle at 80% 40%, rgba(99, 102, 241, 0.45), transparent 28%),
        linear-gradient(135deg, #040b1d, #071334);
}

.project-card h3 {
    margin: 0;
    font-size: 28px;
    text-transform: uppercase;
    letter-spacing: 0.01em;
}

.project-card p {
    margin: 4px 0 0;
    color: white;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.work-item h4 {
    margin: 14px 0 0;
    color: var(--navy);
    font-size: 16px;
}

.work-item > p {
    margin: 4px 0 0;
    color: var(--muted);
    font-size: 14px;
    font-weight: 600;
}

.work-button-wrap {
    display: flex;
    justify-content: center;
    margin-top: 22px;
}

.btn.large {
    min-width: 330px;
}

.cta-section {
    margin: 0 28px 28px;
    padding: 34px 38px;
    border-radius: 14px;
    background:
        radial-gradient(circle at 28% 80%, rgba(99, 102, 241, 0.10), transparent 28%),
        linear-gradient(135deg, #f6f4ff, #fbfbff);
    display: grid;
    grid-template-columns: 1.05fr 1px 0.95fr;
    gap: 38px;
    align-items: center;
}

.cta-left > p {
    margin: 0;
    color: var(--blue);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.11em;
}

.cta-left h2 {
    margin: 12px 0 0;
    color: var(--navy);
    font-size: 34px;
    letter-spacing: -0.045em;
}

.cta-left > span {
    display: block;
    margin-top: 12px;
    color: var(--navy);
    font-size: 15px;
    line-height: 1.55;
    font-weight: 600;
}

.cta-actions {
    margin-top: 24px;
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.mail-link {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    text-decoration: none;
    color: var(--navy);
    font-weight: 800;
    font-size: 16px;
}

.mail-link .material-symbols-outlined {
    color: var(--blue);
    font-size: 32px;
}

.cta-divider {
    height: 150px;
    background: white;
}

.cta-list {
    display: grid;
    gap: 22px;
}

.cta-list > div {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.cta-list .material-symbols-outlined {
    color: var(--blue);
    font-size: 36px;
}

.cta-list h3 {
    margin: 0;
    color: var(--navy);
    font-size: 16px;
}

.cta-list p {
    margin: 4px 0 0;
    color: var(--muted);
    font-size: 14px;
    font-weight: 600;
}

.callback-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.callback-modal.is-open {
    display: flex;
}

.callback-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(4, 8, 23, 0.72);
    backdrop-filter: blur(8px);
}

.callback-modal-dialog {
    position: relative;
    z-index: 1;
    width: min(100%, 560px);
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    padding: 34px;
    border: 1px solid rgba(99, 102, 241, 0.18);
    border-radius: 20px;
    background: white;
    box-shadow: 0 30px 80px rgba(4, 8, 23, 0.35);
}

.callback-modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    background: var(--soft);
}

.callback-modal-header {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding-right: 36px;
}

.callback-modal-icon {
    flex: 0 0 auto;
    width: 54px;
    height: 54px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    background: linear-gradient(135deg, var(--blue), var(--blue-soft));
}

.callback-modal-header p {
    margin: 0;
    color: var(--blue);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.callback-modal-header h2 {
    margin: 7px 0 0;
    color: var(--navy);
    font-size: 25px;
    line-height: 1.2;
    letter-spacing: -0.04em;
}

.callback-modal-header > div > span {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
}

.callback-form {
    margin-top: 28px;
    display: grid;
    gap: 17px;
}

.callback-field {
    display: grid;
    gap: 7px;
}

.callback-field label {
    color: var(--navy);
    font-size: 13px;
    font-weight: 900;
}

.callback-field input {
    width: 100%;
    height: 50px;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: 10px;
    color: var(--navy);
    background: white;
    outline: none;
    font-size: 16px;
}

.callback-field input:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.10);
}

.callback-privacy {
    display: grid;
    grid-template-columns: 20px 1fr;
    gap: 11px;
    align-items: flex-start;
}

.callback-privacy input {
    width: 18px;
    height: 18px;
    margin: 2px 0 0;
}

.callback-privacy label {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.5;
}

.callback-privacy a {
    color: var(--blue);
    font-weight: 800;
}

.callback-submit {
    width: 100%;
    margin-top: 3px;
}

.callback-submit:disabled {
    cursor: not-allowed;
    opacity: 0.42;
    box-shadow: none;
}

.callback-honeypot {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.callback-errors {
    margin-top: 22px;
    padding: 13px 15px;
    border-radius: 10px;
    background: #fff1f2;
    border: 1px solid #fecdd3;
}

.callback-errors p {
    margin: 0;
    color: #9f1239;
    font-size: 13px;
    font-weight: 700;
}

.callback-errors p + p {
    margin-top: 5px;
}

.thank-you-page {
    min-height: 620px;
    padding: 70px 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at center, rgba(99, 102, 241, 0.10), transparent 32%),
        white;
}

.thank-you-card {
    width: min(100%, 620px);
    text-align: center;
}

.thank-you-icon {
    color: var(--blue);
    font-size: 72px;
}

.thank-you-card h1 {
    margin: 20px 0 0;
    color: var(--navy);
    font-size: 42px;
    letter-spacing: -0.045em;
}

.thank-you-card p {
    margin: 16px auto 0;
    max-width: 520px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.65;
    font-weight: 600;
}

.thank-you-card .btn {
    margin-top: 30px;
}

@media (max-width: 1000px) {
    .site-header {
        padding-inline: 24px;
    }

    .main-nav {
        display: none;
    }

    .hero-section {
        grid-template-columns: 1fr;
        padding-inline: 28px;
    }

    .hero-visual {
        min-height: 420px;
        justify-content: center;
    }

    .hero-image {
        width: min(100%, 780px);
        max-width: 100%;
        margin-right: 0;
    }

    .services-grid,
    .work-grid {
        grid-template-columns: 1fr 1fr;
    }

    .cta-section {
        grid-template-columns: 1fr;
    }

    .cta-divider {
        display: none;
    }
}

@media (max-width: 680px) {
    .page-shell {
        width: min(100% - 14px, 1210px);
        margin-top: 7px;
        border-radius: 14px;
    }

    .top-button {
        display: none;
    }

    .site-header {
        height: 64px;
    }

    .logo {
        font-size: 24px;
    }

    .hero-section {
        padding: 42px 22px;
    }

    .hero-copy h1 {
        font-size: 37px;
    }

    .hero-text br {
        display: none;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .trust-items {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .hero-visual {
        min-height: 0;
        margin-top: 26px;
    }

    .hero-image {
        width: 118%;
        max-width: none;
        margin-left: -9%;
        margin-right: -9%;
        filter: drop-shadow(0 22px 30px rgba(4, 8, 23, 0.16));
    }

    .services-section,
    .work-section {
        padding-inline: 22px;
    }

    .services-grid,
    .work-grid {
        grid-template-columns: 1fr;
    }

    .cta-section {
        margin-inline: 18px;
        padding: 28px 22px;
    }

    .cta-left h2 {
        font-size: 28px;
    }

    .callback-modal {
        padding: 10px;
        align-items: flex-start;
    }

    .callback-modal-dialog {
        margin-top: 10px;
        padding: 27px 20px 22px;
        border-radius: 16px;
        max-height: calc(100vh - 20px);
    }

    .callback-modal-header {
        display: block;
        padding-right: 35px;
    }

    .callback-modal-icon {
        margin-bottom: 17px;
    }

    .callback-modal-header h2 {
        font-size: 22px;
    }

    .thank-you-card h1 {
        font-size: 34px;
    }
}
.portfolio-section {
    padding: 64px 50px 72px;
    border-bottom: 1px solid var(--line);
    background:
        radial-gradient(
            circle at 50% 25%,
            rgba(99, 102, 241, 0.05),
            transparent 30%
        ),
        #ffffff;
}

.portfolio-grid {
    margin-top: 42px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.portfolio-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: #ffffff;
    box-shadow:
        0 20px 50px rgba(4, 8, 23, 0.08);
}

.portfolio-preview {
    position: relative;
    height: 330px;
    padding: 32px 56px 0 28px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 85% 25%,
            rgba(139, 92, 246, 0.23),
            transparent 30%
        ),
        linear-gradient(
            145deg,
            #060813 0%,
            #11152a 100%
        );
}

.portfolio-preview-blue {
    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(99, 102, 241, 0.35),
            transparent 32%
        ),
        linear-gradient(
            145deg,
            #08142c 0%,
            #10264d 100%
        );
}


/* DESKTOP MOCKUP */

.portfolio-desktop {
    position: relative;
    width: 100%;
    height: 270px;
    overflow: hidden;
    border: 7px solid #171717;
    border-bottom-width: 12px;
    border-radius: 13px 13px 5px 5px;
    background: #ffffff;
    box-shadow:
        0 30px 50px rgba(0, 0, 0, 0.35);
}

.portfolio-browser-bar {
    height: 25px;
    padding: 0 10px;
    display: flex;
    align-items: center;
    gap: 5px;
    background: #f1f2f6;
}

.portfolio-browser-bar span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #c7cad4;
}


/* PLACEHOLDER */

.portfolio-placeholder {
    height: calc(100% - 25px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.portfolio-placeholder > div {
    display: grid;
    justify-items: center;
    gap: 8px;
}

.portfolio-placeholder .material-symbols-outlined {
    font-size: 40px;
}

.portfolio-placeholder strong {
    display: block;
    font-size: 19px;
}

.portfolio-placeholder small {
    font-size: 11px;
    opacity: 0.65;
}

.portfolio-placeholder-dark {
    color: #ffffff;
    background:
        radial-gradient(
            circle at 70% 45%,
            rgba(246, 181, 62, 0.25),
            transparent 25%
        ),
        linear-gradient(
            135deg,
            #080808,
            #1c1712
        );
}

.portfolio-placeholder-blue {
    color: #ffffff;
    background:
        radial-gradient(
            circle at 70% 42%,
            rgba(99, 102, 241, 0.32),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #08142c,
            #173865
        );
}


/* MOBILE MOCKUP */

.portfolio-mobile {
    position: absolute;
    z-index: 3;
    right: 22px;
    bottom: 17px;
    width: 108px;
    height: 214px;
    padding: 7px;
    overflow: hidden;
    border: 3px solid #151515;
    border-radius: 22px;
    background: #151515;
    box-shadow:
        0 22px 35px rgba(0, 0, 0, 0.4);
}

.portfolio-mobile-notch {
    position: absolute;
    z-index: 2;
    top: 8px;
    left: 50%;
    width: 38px;
    height: 8px;
    border-radius: 999px;
    background: #111111;
    transform: translateX(-50%);
}

.portfolio-mobile-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    color: #ffffff;
}

.portfolio-mobile-placeholder .material-symbols-outlined {
    font-size: 29px;
}

.portfolio-mobile-placeholder small {
    font-size: 10px;
    font-weight: 800;
}


/* CONTENT */

.portfolio-content {
    padding: 28px;
}

.portfolio-project-heading {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.portfolio-type {
    display: inline-block;
    margin-bottom: 8px;
    color: var(--blue);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.portfolio-project-heading h3 {
    margin: 0;
    color: var(--navy);
    font-size: 26px;
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.portfolio-project-heading p {
    margin: 12px 0 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.65;
    font-weight: 600;
}


/* FEATURES */

.portfolio-features {
    margin-top: 27px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 21px 18px;
}

.portfolio-feature {
    min-width: 0;
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 11px;
    align-items: flex-start;
}

.portfolio-feature > .material-symbols-outlined {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: var(--blue);
    background: rgba(99, 102, 241, 0.08);
    font-size: 20px;
}

.portfolio-feature strong {
    display: block;
    color: var(--navy);
    font-size: 13px;
    line-height: 1.35;
}

.portfolio-feature p {
    margin: 3px 0 0;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.45;
    font-weight: 600;
}


/* CTA */

.portfolio-button {
    min-height: 48px;
    margin-top: 28px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid rgba(99, 102, 241, 0.34);
    border-radius: 9px;
    color: var(--blue);
    background: #ffffff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 900;
    transition:
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease;
}

.portfolio-button .material-symbols-outlined {
    font-size: 18px;
}

.portfolio-button:hover {
    color: #ffffff;
    border-color: var(--blue);
    background:
        linear-gradient(
            135deg,
            var(--blue),
            var(--blue-soft)
        );
}


/* TABLET */

@media (max-width: 1000px) {

    .portfolio-section {
        padding-inline: 28px;
    }

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

    .portfolio-preview {
        height: 390px;
        padding-right: 85px;
    }

    .portfolio-desktop {
        height: 330px;
    }

    .portfolio-mobile {
        width: 120px;
        height: 238px;
    }

}


/* MOBILE */

@media (max-width: 680px) {

    .portfolio-section {
        padding: 48px 20px;
    }

    .portfolio-grid {
        margin-top: 30px;
        gap: 22px;
    }

    .portfolio-card {
        border-radius: 16px;
    }

    .portfolio-preview {
        height: 250px;
        padding:
            22px
            43px
            0
            14px;
    }

    .portfolio-desktop {
        height: 205px;
        border-width: 5px;
        border-bottom-width: 9px;
    }

    .portfolio-browser-bar {
        height: 20px;
    }

    .portfolio-placeholder {
        height: calc(100% - 20px);
    }

    .portfolio-placeholder .material-symbols-outlined {
        font-size: 30px;
    }

    .portfolio-placeholder strong {
        font-size: 14px;
    }

    .portfolio-placeholder small {
        font-size: 9px;
    }

    .portfolio-mobile {
        right: 10px;
        bottom: 10px;
        width: 77px;
        height: 153px;
        padding: 5px;
        border-radius: 16px;
    }

    .portfolio-mobile-notch {
        top: 6px;
        width: 27px;
        height: 6px;
    }

    .portfolio-content {
        padding: 22px 18px;
    }

    .portfolio-project-heading h3 {
        font-size: 23px;
    }

    .portfolio-features {
        grid-template-columns: 1fr;
        gap: 16px;
    }

}
.portfolio-screenshot {
    display: block;
    width: 100%;
    height: calc(100% - 25px);
    object-fit: cover;
    object-position: top center;
}

.portfolio-mobile-screenshot {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    object-fit: cover;
    object-position: top center;
}
/* =========================================================
   SEO CONTENT SECTIONS
   ========================================================= */

.seo-services-section {
    padding: 72px 50px;
    display: grid;
    gap: 28px;
    border-bottom: 1px solid var(--line);
    background: #ffffff;
}

.seo-service-block {
    padding: 42px;
    display: grid;
    grid-template-columns: 90px minmax(0, 1fr);
    gap: 32px;
    align-items: flex-start;
    border: 1px solid var(--line);
    border-radius: 18px;
    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(99, 102, 241, 0.06),
            transparent 28%
        ),
        #ffffff;
}

.seo-service-reverse {
    background:
        radial-gradient(
            circle at 10% 90%,
            rgba(139, 92, 246, 0.07),
            transparent 28%
        ),
        #ffffff;
}

.seo-service-icon {
    width: 76px;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    color: var(--blue);
    background: rgba(99, 102, 241, 0.09);
}

.seo-service-icon .material-symbols-outlined {
    font-size: 38px;
}

.section-kicker {
    margin: 0;
    color: var(--gold);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.seo-service-block h2 {
    margin: 10px 0 0;
    color: var(--navy);
    font-size: 30px;
    line-height: 1.15;
    letter-spacing: -0.045em;
}

.seo-service-block p:not(.section-kicker) {
    margin: 16px 0 0;
    max-width: 850px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.75;
    font-weight: 600;
}


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

.about-section {
    padding: 72px 50px;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
    align-items: center;
    border-bottom: 1px solid var(--line);
    background:
        radial-gradient(
            circle at 18% 40%,
            rgba(99, 102, 241, 0.08),
            transparent 30%
        ),
        var(--soft);
}

.about-content h2 {
    margin: 12px 0 0;
    color: var(--navy);
    font-size: 36px;
    line-height: 1.12;
    letter-spacing: -0.05em;
}

.about-content > p:not(.section-kicker) {
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.75;
    font-weight: 600;
}

.about-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.about-points > div {
    min-height: 170px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #ffffff;
}

.about-points .material-symbols-outlined {
    width: 44px;
    height: 44px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    color: var(--blue);
    background: rgba(99, 102, 241, 0.09);
}

.about-points strong {
    display: block;
    color: var(--navy);
    font-size: 15px;
}

.about-points p {
    margin: 7px 0 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.55;
    font-weight: 600;
}


/* =========================================================
   PROCESS
   ========================================================= */

.process-section {
    padding: 72px 50px;
    border-bottom: 1px solid var(--line);
    background: #ffffff;
}

.process-grid {
    margin-top: 42px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.process-grid article {
    position: relative;
    min-height: 220px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #ffffff;
}

.process-number {
    display: block;
    color: var(--blue);
    font-size: 32px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.06em;
}

.process-grid h3 {
    margin: 28px 0 0;
    color: var(--navy);
    font-size: 18px;
}

.process-grid p {
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.65;
    font-weight: 600;
}


/* =========================================================
   FAQ
   ========================================================= */

.faq-section {
    padding: 72px 50px;
    border-bottom: 1px solid var(--line);
    background: var(--soft);
}

.faq-list {
    width: min(100%, 850px);
    margin: 38px auto 0;
    display: grid;
    gap: 12px;
}

.faq-list details {
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #ffffff;
    overflow: hidden;
}

.faq-list summary {
    position: relative;
    padding: 21px 58px 21px 22px;
    cursor: pointer;
    list-style: none;
    color: var(--navy);
    font-size: 15px;
    font-weight: 900;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary::after {
    content: "+";
    position: absolute;
    right: 22px;
    top: 50%;
    color: var(--blue);
    font-size: 25px;
    font-weight: 500;
    transform: translateY(-50%);
}

.faq-list details[open] summary::after {
    content: "−";
}

.faq-list details p {
    margin: 0;
    padding: 0 22px 22px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
    font-weight: 600;
}


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

.contact-section {
    margin: 28px;
    padding: 48px;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
    border-radius: 18px;
    background:
        radial-gradient(
            circle at 15% 80%,
            rgba(99, 102, 241, 0.12),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #f6f4ff,
            #fbfbff
        );
}

.contact-copy h2 {
    margin: 12px 0 0;
    color: var(--navy);
    font-size: 36px;
    line-height: 1.15;
    letter-spacing: -0.05em;
}

.contact-copy > p:not(.section-kicker) {
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
    font-weight: 600;
}

.contact-benefits {
    margin-top: 28px;
    display: grid;
    gap: 13px;
}

.contact-benefits div {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--navy);
    font-size: 14px;
    font-weight: 800;
}

.contact-benefits .material-symbols-outlined {
    color: var(--blue);
}

.contact-copy .mail-link {
    margin-top: 30px;
}

.contact-form-card {
    padding: 34px;
    border: 1px solid rgba(99, 102, 241, 0.16);
    border-radius: 18px;
    background: #ffffff;
    box-shadow:
        0 24px 60px rgba(4, 8, 23, 0.10);
}

.contact-form-card > h3 {
    margin: 0;
    color: var(--navy);
    font-size: 25px;
    letter-spacing: -0.04em;
}

.contact-form-card > p {
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 14px;
    font-weight: 600;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1000px) {

    .seo-services-section,
    .about-section,
    .process-section,
    .faq-section {
        padding-inline: 28px;
    }

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

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

    .contact-section {
        gap: 38px;
    }

}


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

@media (max-width: 680px) {

    .seo-services-section {
        padding: 48px 20px;
        gap: 18px;
    }

    .seo-service-block {
        padding: 26px 20px;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .seo-service-icon {
        width: 58px;
        height: 58px;
    }

    .seo-service-icon .material-symbols-outlined {
        font-size: 30px;
    }

    .seo-service-block h2 {
        font-size: 25px;
    }

    .about-section {
        padding: 48px 20px;
        gap: 32px;
    }

    .about-content h2 {
        font-size: 29px;
    }

    .about-points {
        grid-template-columns: 1fr;
    }

    .process-section {
        padding: 48px 20px;
    }

    .process-grid {
        margin-top: 30px;
        grid-template-columns: 1fr;
    }

    .process-grid article {
        min-height: 0;
    }

    .faq-section {
        padding: 48px 20px;
    }

    .faq-list {
        margin-top: 30px;
    }

    .faq-list summary {
        padding:
            18px
            52px
            18px
            18px;
        font-size: 14px;
    }

    .faq-list details p {
        padding:
            0
            18px
            18px;
    }

    .contact-section {
        margin: 18px;
        padding: 30px 20px;
        gap: 30px;
    }

    .contact-copy h2 {
        font-size: 29px;
    }

    .contact-form-card {
        padding: 24px 18px;
    }

}
