body.internal-page {
    min-height: 100vh;
    background:
        radial-gradient(circle at top center, rgba(91, 44, 233, 0.16) 0%, transparent 42%),
        #030308;
}

.internal-page main {
    padding-top: 128px;
}

.page-shell {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}

.service-hero,
.contact-hero {
    padding: 54px 0 34px;
}

.service-hero__eyebrow,
.contact-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--p3);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.service-hero h1,
.contact-hero h1 {
    max-width: 980px;
    margin: 22px 0 20px;
    font-family: var(--fh);
    font-size: clamp(42px, 6vw, 78px);
    line-height: 0.96;
    letter-spacing: -0.04em;
}

.service-hero p,
.contact-hero p {
    max-width: 760px;
    font-size: clamp(17px, 1.4vw, 21px);
    line-height: 1.75;
    color: var(--muted);
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    font-family: var(--fh);
    font-size: 14px;
    font-weight: 700;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--p) 0%, var(--p2) 100%);
    color: #fff;
    border: 1px solid transparent;
    box-shadow: 0 18px 36px rgba(91, 44, 233, 0.24);
}

.btn-primary:hover,
.btn-primary:focus-visible {
    transform: translateY(-1px);
    outline: none;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.18);
    transform: translateY(-1px);
    outline: none;
}

.hero-highlight-grid,
.content-grid,
.contact-grid,
.deliverables-grid {
    display: grid;
    gap: 18px;
}

.hero-highlight-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 34px;
}

.highlight-card,
.info-card,
.deliverable-card,
.contact-card,
.contact-form-wrap,
.cta-box {
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.highlight-card,
.info-card,
.deliverable-card,
.contact-card {
    padding: 24px;
}

.highlight-card strong,
.info-card h3,
.deliverable-card h3,
.contact-card h3 {
    display: block;
    font-family: var(--fh);
    font-size: 20px;
    line-height: 1.2;
    margin-bottom: 12px;
}

.highlight-card p,
.info-card p,
.deliverable-card p,
.contact-card p,
.contact-card li {
    color: var(--muted);
    line-height: 1.7;
}

.page-section {
    padding: 22px 0;
}

.section-heading {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 28px;
    align-items: start;
    margin-bottom: 24px;
}

.section-heading span {
    display: inline-block;
    color: var(--p3);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding-top: 12px;
}

.section-heading h2 {
    font-size: clamp(28px, 4vw, 52px);
    margin: 0;
}

.section-intro {
    max-width: 780px;
    color: var(--muted);
    line-height: 1.8;
    font-size: 17px;
    margin-bottom: 28px;
}

.content-grid {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: start;
}

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

.contact-grid {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
}

.contact-form-wrap {
    padding: 28px;
}

.contact-form {
    display: grid;
    gap: 16px;
}

.contact-form__row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.field {
    display: grid;
    gap: 8px;
}

.field label {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.78);
}

.field input,
.field select,
.field textarea {
    width: 100%;
    padding: 15px 16px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    font: inherit;
    resize: vertical;
}

.field select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image:
        linear-gradient(45deg, transparent 50%, rgba(255, 255, 255, 0.7) 50%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.7) 50%, transparent 50%);
    background-position:
        calc(100% - 22px) calc(50% - 3px),
        calc(100% - 16px) calc(50% - 3px);
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
    padding-right: 44px;
}

.field select option {
    color: #f5f7fb;
    background: #16161d;
}

.field input::placeholder,
.field textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: none;
    border-color: rgba(124, 85, 245, 0.55);
    box-shadow: 0 0 0 4px rgba(91, 44, 233, 0.12);
}

.contact-card ul {
    list-style: none;
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
}

.contact-card a {
    color: var(--text);
}

.contact-stack {
    display: grid;
    gap: 18px;
}

.whatsapp-hero-card {
    padding: 28px;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(10, 42, 24, 0.96) 0%, rgba(18, 95, 46, 0.92) 100%);
    border: 1px solid rgba(74, 222, 128, 0.28);
    box-shadow: 0 24px 60px rgba(7, 44, 21, 0.35);
}

.whatsapp-hero-card h3 {
    margin: 0 0 10px;
    font-family: var(--fh);
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.02;
}

.whatsapp-hero-card p {
    margin: 0 0 22px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.7;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 24px;
    border-radius: 999px;
    background: linear-gradient(135deg, #25d366 0%, #18b956 100%);
    color: #fff;
    font-family: var(--fh);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.03em;
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 18px 38px rgba(37, 211, 102, 0.28);
    transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-btn:hover,
.whatsapp-btn:focus-visible {
    transform: translateY(-1px);
    filter: brightness(1.03);
    box-shadow: 0 22px 44px rgba(37, 211, 102, 0.34);
    outline: none;
}

.whatsapp-number {
    display: block;
    margin-top: 12px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.76);
    letter-spacing: 0.04em;
}

.contact-note {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}

.cta-box {
    display: grid;
    grid-template-columns: 1.15fr auto;
    gap: 20px;
    align-items: center;
    padding: 28px;
    margin-top: 16px;
}

.cta-box h3 {
    margin: 0 0 10px;
    font-family: var(--fh);
    font-size: clamp(26px, 3vw, 38px);
    line-height: 1.05;
}

.cta-box p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

@media (max-width: 1100px) {
    .hero-highlight-grid,
    .deliverables-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .internal-page main {
        padding-top: 116px;
    }

    .page-shell {
        width: calc(100% - 32px);
    }

    .section-heading,
    .content-grid,
    .contact-grid,
    .cta-box {
        grid-template-columns: 1fr;
    }

    .section-heading span {
        padding-top: 0;
    }

    .contact-form__row {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        width: 100%;
    }

    .hero-actions .btn-primary,
    .hero-actions .btn-secondary,
    .hero-actions .whatsapp-btn {
        width: 100%;
    }

    .whatsapp-hero-card {
        padding: 24px;
    }
}

@media (max-width: 640px) {
    .internal-page main {
        padding-top: 98px;
    }

    .page-shell {
        width: calc(100% - 20px);
    }

    .service-hero,
    .contact-hero {
        padding: 34px 0 20px;
    }

    .service-hero h1,
    .contact-hero h1 {
        margin: 18px 0 16px;
        font-size: clamp(34px, 11vw, 48px);
        line-height: 0.98;
        letter-spacing: -0.05em;
    }

    .service-hero p,
    .contact-hero p,
    .section-intro,
    .highlight-card p,
    .info-card p,
    .deliverable-card p,
    .contact-card p,
    .contact-card li {
        font-size: 15px;
        line-height: 1.65;
    }

    .hero-actions {
        gap: 10px;
        margin-top: 22px;
    }

    .whatsapp-btn,
    .btn-primary,
    .btn-secondary {
        width: 100%;
        min-height: 50px;
        padding: 0 18px;
        font-size: 14px;
        text-align: center;
    }

    .whatsapp-number {
        margin-top: 10px;
        font-size: 13px;
        letter-spacing: 0.02em;
    }

    .hero-highlight-grid,
    .deliverables-grid {
        grid-template-columns: 1fr;
    }

    .highlight-card,
    .info-card,
    .deliverable-card,
    .contact-card,
    .contact-form-wrap,
    .cta-box {
        border-radius: 20px;
    }

    .highlight-card,
    .info-card,
    .deliverable-card,
    .contact-card,
    .contact-form-wrap {
        padding: 20px;
    }

    .contact-form-wrap {
        padding: 18px;
    }

    .field input,
    .field select,
    .field textarea {
        padding: 14px;
        border-radius: 14px;
        font-size: 15px;
    }

    .whatsapp-hero-card h3 {
        font-size: clamp(24px, 8vw, 32px);
    }

    .cta-box {
        padding: 20px;
    }
}
