:root {
    --text: #171739;
    --muted: #5f647a;
    --soft: #f8f4f6;
    --line: rgba(23, 23, 57, 0.1);
    --pink: #ff3f86;
    --orange: #ff9e2c;
    --gold: #ffd15a;
    --purple: #181341;
    --purple-2: #231253;
    --purple-3: #0f1030;
    --footer: #0c0b24;
    --white: #ffffff;
    --card-shadow: 0 18px 50px rgba(19, 15, 58, 0.08);
    --card-shadow-strong: 0 34px 90px rgba(9, 8, 36, 0.22);
    --max: 1200px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Manrope", sans-serif;
    color: var(--text);
    background: radial-gradient(circle at top left, rgba(255, 209, 77, 0.18), transparent 22%), linear-gradient(180deg, #fffdfd, #fff9f7 38%, #ffffff);
}

body.modal-open,
body.nav-open {
    overflow: hidden;
}

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

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

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

.container {
    width: min(calc(100% - 40px), var(--max));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(23, 23, 57, 0.06);
    backdrop-filter: blur(14px);
}

.nav-bar {
    min-height: 112px;
    width: min(calc(100% - 4px), 1360px);
    display: flex;
    align-items: center;
    gap: 18px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    margin-right: auto;
    margin-left: -12px;
}

.brand-logo {
    width: 214px;
    flex: 0 0 auto;
}

.brand-copy h1 {
    margin: 0;
    font-family: "Sora", sans-serif;
    font-size: 1.7rem;
    line-height: 1.12;
    letter-spacing: -0.03em;
}

.brand-copy p {
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 0.97rem;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    margin-left: auto;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 0;
}

.nav-toggle span {
    width: 24px;
    height: 2.5px;
    border-radius: 999px;
    background: var(--purple);
    transition: transform 180ms ease, opacity 180ms ease;
}

.nav-panel {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    flex: 1 1 auto;
    margin-left: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
    font-size: 1rem;
    font-weight: 600;
    width: auto;
}

.nav-links a {
    position: relative;
    padding: 10px 3px;
    color: rgba(23, 23, 57, 0.86);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--pink);
}

.nav-links a.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--pink), var(--orange));
}

.cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 28px;
    border: 1px solid transparent;
    border-radius: 18px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    cursor: pointer;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.nav-panel .cta {
    margin-left: 24px;
    padding-inline: 30px 34px;
}

.cta-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.cta:hover {
    transform: translateY(-2px);
}

.cta-primary {
    color: #fff;
    background: linear-gradient(135deg, #ff4d90, #ff9e2c);
    box-shadow: 0 16px 32px rgba(255, 93, 120, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.cta-secondary {
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.68);
    background: transparent;
}

.cta-soft {
    color: var(--purple);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 18px 40px rgba(14, 10, 45, 0.12);
}

.truncate-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hero {
    position: relative;
    min-height: auto;
    overflow: hidden;
    color: #fff;
    background: #120f33;
}

.hero-media {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    transform: scale(1.03);
    transition: opacity 500ms ease, transform 900ms ease;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, rgba(14, 11, 44, 0.88) 15%, rgba(14, 11, 44, 0.5) 48%, rgba(14, 11, 44, 0.75) 100%), radial-gradient(circle at 12% 18%, rgba(255, 63, 134, 0.18), transparent 22%), radial-gradient(circle at 86% 24%, rgba(255, 158, 44, 0.16), transparent 20%);
}

.hero-grid {
    position: relative;
    z-index: 1;
    min-height: auto;
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.62fr);
    align-items: end;
    gap: 32px;
    padding: 64px 0 38px;
}

.hero-copy,
.hero-side {
    position: relative;
}

.eyebrow-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.92rem;
    font-weight: 700;
}

.eyebrow-badge::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(90deg, var(--pink), var(--orange));
}

.hero-copy h2 {
    margin: 0;
    max-width: 720px;
    font-family: "Sora", sans-serif;
    font-size: clamp(3rem, 5vw, 5rem);
    line-height: 0.98;
    letter-spacing: -0.05em;
}

.hero-copy .accent {
    background: linear-gradient(90deg, var(--pink), var(--orange));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-copy p {
    max-width: 620px;
    margin: 22px 0 26px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.05rem;
    line-height: 1.72;
}

.hero-actions {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 30px;
    max-width: 760px;
}

.metric-card,
.glass-card,
.service-card,
.story-panel,
.value-card,
.contact-card,
.process-card,
.timeline-card,
.audience-card,
.contact-form-shell,
.contact-map-shell,
.info-rail,
.service-panel {
    border-radius: 24px;
    border: 1px solid rgba(23, 23, 57, 0.08);
    background: #fff;
    box-shadow: var(--card-shadow);
}

.metric-card {
    padding: 18px 18px 16px;
    border-radius: 22px;
    border-color: rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.metric-card strong {
    display: block;
    font-family: "Sora", sans-serif;
    font-size: 1.5rem;
    margin-bottom: 6px;
}

.metric-card span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.95rem;
}

.hero-side {
    margin-bottom: 4px;
}

.hero-spotlight {
    padding: 26px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: var(--card-shadow-strong);
    backdrop-filter: blur(12px);
}

.hero-spotlight h3,
.hero-spotlight h4 {
    margin: 14px 0 10px;
    font-family: "Sora", sans-serif;
    font-size: clamp(1.5rem, 2.4vw, 2rem);
    line-height: 1.08;
}

.hero-spotlight p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.74;
}

.carousel-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.carousel-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.carousel-chip {
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.88rem;
}

.carousel-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    margin-top: 18px;
}

.carousel-progress {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.9rem;
}

.progress-line {
    width: 90px;
    height: 3px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    overflow: hidden;
}

.progress-line span {
    display: block;
    height: 100%;
    width: 45%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--pink), var(--orange));
    transition: width 420ms ease;
}

.hero-side-grid {
    display: grid;
    gap: 14px;
    margin-top: 16px;
}

.hero-side-grid .mini-card {
    padding: 16px 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.84);
    backdrop-filter: blur(10px);
}

.hero-side-grid strong {
    display: block;
    color: #fff;
    margin-bottom: 6px;
}

section {
    padding: 92px 0;
}

.section-head {
    text-align: center;
    margin-bottom: 42px;
}

.eyebrow {
    margin: 0;
    color: var(--pink);
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.section-head h3 {
    margin: 12px 0 0;
    font-family: "Sora", sans-serif;
    font-size: clamp(2rem, 3vw, 2.85rem);
    line-height: 1.06;
}

.section-head p:last-of-type {
    max-width: 720px;
    margin: 16px auto 0;
    color: var(--muted);
    line-height: 1.75;
}

.underline {
    width: 52px;
    height: 3px;
    margin: 16px auto 0;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--pink), var(--orange));
}

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

.services-showcase {
    position: relative;
}

.services-showcase::before {
    content: "";
    position: absolute;
    inset: 24px 0 auto;
    height: 280px;
    border-radius: 40px;
    background: radial-gradient(circle at left top, rgba(255, 63, 134, 0.08), transparent 35%), radial-gradient(circle at right top, rgba(255, 158, 44, 0.1), transparent 30%), linear-gradient(180deg, rgba(24, 19, 65, 0.03), rgba(24, 19, 65, 0));
    pointer-events: none;
}

.services-showcase .section-head {
    margin-bottom: 26px;
}

.services-intro-card {
    position: relative;
    z-index: 1;
    margin: 0 auto 28px;
    max-width: 860px;
    padding: 24px 26px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(23, 23, 57, 0.08);
    box-shadow: var(--card-shadow);
    backdrop-filter: blur(12px);
    text-align: center;
}

.services-intro-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.72;
}

.service-card {
    min-height: 330px;
    padding: 18px;
    border-radius: 28px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 249, 247, 0.96));
}

.service-card img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 16px;
}

.service-icon,
.contact-icon,
.process-icon,
.value-icon,
.why-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: linear-gradient(180deg, rgba(255, 63, 134, 0.08), rgba(255, 158, 44, 0.12));
    color: var(--pink);
    font-family: "Sora", sans-serif;
    font-weight: 800;
}

.service-card h4,
.story-panel h3,
.value-card h4,
.contact-card h4,
.process-card h4,
.timeline-card h4,
.audience-card h4,
.service-panel h3,
.about-copy h3,
.why-item h4 {
    margin: 0 0 12px;
    font-family: "Sora", sans-serif;
    line-height: 1.2;
}

.service-card h4 {
    font-size: 1.14rem;
    margin-bottom: 10px;
}

.service-card p,
.story-panel p,
.value-card p,
.contact-card p,
.process-card p,
.timeline-card p,
.audience-card p,
.service-panel p,
.about-copy p,
.why-item p,
.footer-column p,
.footer-column li,
.contact-form-shell p,
.form-note,
.contact-map-shell p {
    margin: 0;
    color: var(--muted);
    line-height: 1.72;
    font-size: 0.99rem;
}

.service-card-copy {
    padding: 4px 2px 2px;
}

.service-card-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(24, 19, 65, 0.05);
    color: var(--pink);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.tag {
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(24, 19, 65, 0.05);
    color: var(--purple);
    font-size: 0.84rem;
    font-weight: 700;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    gap: 42px;
    align-items: center;
}

.about-story-shell {
    overflow: hidden;
    border-radius: 30px;
    border: 1px solid rgba(23, 23, 57, 0.08);
    background: #fff;
    box-shadow: var(--card-shadow-strong);
}

.about-story-media {
    min-height: 420px;
    background-position: center;
    background-size: cover;
    transition: opacity 500ms ease, transform 900ms ease;
}

.about-story-caption {
    padding: 24px;
}

.about-story-caption h4 {
    margin: 14px 0 10px;
    font-family: "Sora", sans-serif;
    font-size: 1.45rem;
}

.about-story-caption p {
    margin: 0;
    color: var(--muted);
    line-height: 1.72;
}

.about-copy h3 {
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.06;
    margin-top: 12px;
    margin-bottom: 18px;
}

.about-copy p+p {
    margin-top: 18px;
}

.about-points {
    display: grid;
    gap: 16px;
    margin-top: 24px;
}

.about-point {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 12px;
    align-items: start;
}

.about-point span {
    width: 18px;
    height: 18px;
    margin-top: 5px;
    border-radius: 50%;
    background: linear-gradient(90deg, var(--pink), var(--orange));
    box-shadow: 0 0 0 6px rgba(255, 63, 134, 0.08);
}

.about-point strong {
    display: block;
    margin-bottom: 4px;
}

.why {
    padding-top: 24px;
}

.why-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    align-items: start;
}

.why-item {
    padding: 0 18px;
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 16px;
    align-items: start;
}

.why-item+.why-item {
    border-left: 1px solid rgba(23, 23, 57, 0.12);
}

.why-item h4 {
    font-size: 1.02rem;
    margin-bottom: 8px;
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 88px 0 72px;
    color: #fff;
    background: linear-gradient(135deg, rgba(10, 36, 63, 0.96), rgba(9, 85, 103, 0.82)), radial-gradient(circle at 18% 20%, rgba(255, 207, 92, 0.18), transparent 26%), radial-gradient(circle at 82% 18%, rgba(255, 63, 134, 0.16), transparent 24%), linear-gradient(180deg, #0d2347, #0d3f59 58%, #10203a);
}

.page-hero-about {
    min-height: 920px;
    background: linear-gradient(135deg, rgba(17, 28, 79, 0.74), rgba(214, 76, 45, 0.46)), url("pics/about-hero-ads-real-estate-gifts.png") center/cover no-repeat;
}

.page-hero-services {
    background: linear-gradient(135deg, rgba(9, 55, 82, 0.84), rgba(10, 118, 110, 0.72)), url("pics/google%20ads.jpg") center/cover no-repeat;
}

.page-hero-contact {
    background: linear-gradient(135deg, rgba(17, 28, 79, 0.84), rgba(88, 44, 135, 0.72)), url("pics/customized%20plaques3.jpg") center/cover no-repeat;
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.04), transparent 45%), radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.1), transparent 16%), radial-gradient(circle at 84% 22%, rgba(255, 255, 255, 0.07), transparent 18%);
}

.page-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.75fr);
    gap: 28px;
    align-items: center;
}

.page-hero-copy h2 {
    margin: 14px 0 16px;
    font-family: "Sora", sans-serif;
    font-size: clamp(2.35rem, 4vw, 3.6rem);
    line-height: 1.02;
    letter-spacing: -0.05em;
}

.page-hero-copy p {
    max-width: 620px;
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.72;
}

.page-hero-card {
    padding: 20px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--card-shadow-strong);
    backdrop-filter: blur(12px);
}

.page-hero-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 22px;
}

.page-hero-card h3 {
    margin: 16px 0 10px;
    font-family: "Sora", sans-serif;
    color: #fff;
    font-size: 1.25rem;
}

.page-hero-card p {
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.68;
}

.about-intro-layout,
.about-values-grid,
.about-target-grid,
.services-random-grid,
.services-process-grid,
.contact-top-grid,
.contact-action-grid,
.contact-bottom-grid,
.contact-meta-grid,
.about-overview-grid {
    display: grid;
    gap: 22px;
}

.about-intro-layout {
    grid-template-columns: minmax(0, 0.92fr) minmax(280px, 1.08fr);
    align-items: stretch;
}

.about-overview-grid {
    grid-template-columns: minmax(0, 0.88fr) minmax(280px, 1.12fr);
    align-items: start;
}

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

.about-overview-card {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 18px;
    align-items: center;
    padding: 16px;
    border-radius: 26px;
    border: 1px solid rgba(23, 23, 57, 0.08);
    background: #fff;
    box-shadow: var(--card-shadow);
}

.about-overview-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 18px;
}

.about-overview-copy h4 {
    margin: 0 0 8px;
    font-family: "Sora", sans-serif;
    font-size: 1.12rem;
}

.about-overview-copy p {
    margin: 0;
    color: var(--muted);
    line-height: 1.68;
}

.story-panel {
    padding: 30px;
}

.story-panel h3 {
    font-size: clamp(2rem, 3vw, 2.7rem);
    line-height: 1.06;
}

.story-panel p+p {
    margin-top: 16px;
}

.feature-list {
    display: grid;
    gap: 14px;
    margin: 24px 0 0;
    padding: 0;
}

.feature-list li {
    list-style: none;
    position: relative;
    padding-left: 28px;
    color: var(--muted);
    line-height: 1.7;
}

.feature-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(90deg, var(--pink), var(--orange));
}

.about-collage {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 18px;
}

.collage-main,
.collage-stack article {
    overflow: hidden;
    border-radius: 26px;
    box-shadow: var(--card-shadow-strong);
}

.collage-main img,
.collage-stack img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.collage-main {
    min-height: 520px;
}

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

.collage-stack article {
    min-height: 250px;
    position: relative;
}

.collage-caption {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(12, 10, 38, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    color: #fff;
}

.collage-caption h4 {
    margin: 0 0 6px;
    font-family: "Sora", sans-serif;
}

.collage-caption p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.92rem;
    line-height: 1.58;
}

.vision-band {
    position: relative;
    overflow: hidden;
    padding: 36px;
    border-radius: 32px;
    background: linear-gradient(135deg, rgba(24, 19, 65, 0.98), rgba(42, 24, 102, 0.9)), url("Website%20Design.png") center/cover no-repeat;
    box-shadow: var(--card-shadow-strong);
    color: #fff;
}

.vision-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 18% 22%, rgba(255, 63, 134, 0.18), transparent 20%), radial-gradient(circle at 84% 20%, rgba(255, 158, 44, 0.16), transparent 18%);
}

.vision-band-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 18px;
}

.vision-band h3 {
    margin: 0;
    font-family: "Sora", sans-serif;
    font-size: clamp(1.9rem, 2.8vw, 2.7rem);
    line-height: 1.08;
}

.vision-band p {
    margin: 10px 0 0;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.vision-band .glass-card {
    padding: 22px;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: none;
    backdrop-filter: blur(10px);
}

.vision-band .glass-card h4 {
    margin: 0 0 8px;
    font-family: "Sora", sans-serif;
    color: #fff;
}

.vision-band .glass-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
}

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

.value-card,
.contact-card,
.process-card,
.timeline-card,
.audience-card {
    padding: 26px;
}

.value-icon,
.contact-icon,
.process-icon {
    margin-bottom: 18px;
}

.value-card h4,
.contact-card h4,
.process-card h4,
.timeline-card h4,
.audience-card h4 {
    font-size: 1.18rem;
}

.about-target-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.timeline-strip {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
}

.timeline-card {
    position: relative;
    overflow: hidden;
}

.timeline-card::before {
    content: attr(data-step);
    position: absolute;
    top: -8px;
    right: 16px;
    font-family: "Sora", sans-serif;
    font-size: 3.4rem;
    font-weight: 800;
    line-height: 1;
    color: rgba(24, 19, 65, 0.05);
}

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

.service-panel {
    position: relative;
    overflow: hidden;
    min-height: 100%;
    padding: 24px;
}

.service-panel img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 20px;
}

.service-panel h3 {
    font-size: 1.38rem;
}

.service-panel p {
    font-size: 0.98rem;
}

.services-process-grid {
    grid-template-columns: 1.12fr 0.88fr;
    align-items: start;
}

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

.contact-top-grid {
    grid-template-columns: 0.84fr 1.16fr;
    align-items: center;
}

.contact-hero-panel {
    padding: 30px;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(24, 19, 65, 0.98), rgba(42, 24, 102, 0.92)), url("Website%20Design.png") center/cover no-repeat;
    color: #fff;
    box-shadow: var(--card-shadow-strong);
}

.contact-hero-panel h3 {
    margin: 0 0 12px;
    font-family: "Sora", sans-serif;
    font-size: 2rem;
    line-height: 1.06;
}

.contact-hero-panel p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.74;
}

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

.contact-action-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.contact-bottom-grid {
    grid-template-columns: 0.92fr 1.08fr;
    align-items: start;
}

.contact-form-shell {
    padding: 30px;
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 249, 247, 0.98));
    box-shadow: var(--card-shadow-strong);
}

.contact-form-shell h3 {
    margin: 0 0 12px;
    font-family: "Sora", sans-serif;
    font-size: 1.85rem;
}

.contact-form-shell p {
    margin-bottom: 22px;
}

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

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

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

.field label {
    font-weight: 700;
    color: var(--purple);
}

.field input,
.field textarea,
.field select {
    width: 100%;
    min-height: 56px;
    padding: 15px 16px;
    border-radius: 16px;
    border: 1px solid rgba(23, 23, 57, 0.12);
    background: #fff;
    outline: none;
    transition: border-color 180ms ease, box-shadow 180ms ease;
}

.field textarea {
    min-height: 160px;
    resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
    border-color: rgba(255, 63, 134, 0.6);
    box-shadow: 0 0 0 4px rgba(255, 63, 134, 0.08);
}

.form-note {
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(24, 19, 65, 0.04);
}

.contact-map-shell {
    overflow: hidden;
    padding: 18px;
}

.contact-map-shell iframe {
    width: 100%;
    height: 420px;
    border: 0;
    border-radius: 22px;
}

.info-rail {
    padding: 26px;
}

.info-rail h4 {
    margin: 0 0 10px;
    font-family: "Sora", sans-serif;
}

.info-rail p+p {
    margin-top: 12px;
}

.site-footer {
    margin-top: 54px;
    padding: 62px 0 24px;
    color: #fff;
    background: radial-gradient(circle at 14% 10%, rgba(255, 63, 134, 0.12), transparent 18%), linear-gradient(180deg, #111033, #09081d);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.9fr 1fr 1.05fr;
    gap: 28px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.footer-brand img {
    width: 104px;
    flex: 0 0 auto;
}

.footer-brand strong,
.footer-column h5 {
    font-family: "Sora", sans-serif;
}

.footer-brand strong {
    font-size: 1.35rem;
    line-height: 1.18;
}

.footer-column h5 {
    margin: 0 0 16px;
    font-size: 1.08rem;
}

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

.footer-column p,
.footer-column li,
.footer-column a {
    color: rgba(255, 255, 255, 0.76);
}

.footer-column li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-inline-icon {
    width: 34px;
    height: 34px;
    flex: 0 0 auto;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 1rem;
}

.contact-inline-icon i {
    line-height: 1;
}

.contact-icon {
    font-size: 1.45rem;
}

.contact-icon i {
    line-height: 1;
}

.newsletter {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.newsletter input {
    width: 100%;
    min-height: 50px;
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    outline: none;
}

.newsletter button {
    width: 54px;
    min-width: 54px;
    border: 0;
    border-radius: 14px;
    background: linear-gradient(90deg, var(--pink), var(--orange));
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
}

.footer-bottom {
    margin-top: 34px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.95rem;
}

.footer-bottom a {
    color: #fff;
    font-weight: 700;
}

.modal {
    position: fixed;
    inset: 0;
    z-index: 60;
    display: grid;
    place-items: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 220ms ease, visibility 220ms ease;
}

.modal.is-open {
    opacity: 1;
    visibility: visible;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(8, 7, 28, 0.72);
    backdrop-filter: blur(14px);
}

.modal-card {
    position: relative;
    z-index: 1;
    width: min(100%, 1040px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 34px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 248, 246, 0.96));
    box-shadow: 0 40px 120px rgba(7, 6, 22, 0.42);
}

.modal-visual {
    min-height: 540px;
    display: grid;
    place-items: center;
    padding: 0;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0.04)), linear-gradient(135deg, rgba(24, 19, 65, 0.95), rgba(42, 24, 102, 0.85));
}

.modal-visual img {
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: cover;
}

.modal-copy {
    position: relative;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.modal-copy::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(255, 63, 134, 0.12), transparent 36%), radial-gradient(circle at bottom left, rgba(255, 158, 44, 0.14), transparent 32%);
    pointer-events: none;
}

.modal-copy>* {
    position: relative;
    z-index: 1;
}

.modal-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(24, 19, 65, 0.06);
    color: var(--pink);
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.modal-copy h3 {
    margin: 18px 0 14px;
    font-family: "Sora", sans-serif;
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.04;
}

.modal-copy p {
    margin: 0;
    color: var(--muted);
    line-height: 1.82;
}

.modal-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 2;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 50%;
    background: rgba(24, 19, 65, 0.08);
    color: var(--purple);
    font-size: 1.3rem;
    cursor: pointer;
}

.support-bot {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 55;
}

.support-bot-toggle {
    width: 72px;
    height: 72px;
    border: 0;
    border-radius: 24px;
    background: radial-gradient(circle at 28% 28%, rgba(255, 255, 255, 0.62), transparent 26%), radial-gradient(circle at 72% 72%, rgba(255, 255, 255, 0.16), transparent 34%), linear-gradient(135deg, #6e7dff, #2bcbff 52%, #8affdd);
    color: #fff;
    font-weight: 800;
    box-shadow: 0 24px 50px rgba(36, 192, 255, 0.34), 0 0 0 8px rgba(95, 124, 255, 0.08);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.support-bot-toggle::before {
    content: "";
    position: absolute;
    inset: 10px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.28);
}

.support-bot-toggle::after {
    content: "";
    position: absolute;
    inset: -20%;
    background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.28) 48%, transparent 66%);
    transform: rotate(12deg);
    opacity: 0.8;
}

.bot-face {
    position: relative;
    display: block;
    width: 34px;
    height: 34px;
    margin: 0 auto;
}

.bot-face::before,
.bot-face::after {
    content: "";
    position: absolute;
    top: 9px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.45);
}

.bot-face::before {
    left: 6px;
}

.bot-face::after {
    right: 6px;
}

.bot-mouth {
    position: absolute;
    left: 8px;
    right: 8px;
    bottom: 6px;
    height: 8px;
    border-radius: 999px;
    border: 2px solid rgba(255, 255, 255, 0.92);
    border-top: 0;
}

.support-bot-panel {
    position: absolute;
    right: 0;
    bottom: 82px;
    width: min(92vw, 390px);
    padding: 0;
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(243, 248, 255, 0.985));
    border: 1px solid rgba(95, 124, 255, 0.12);
    box-shadow: 0 24px 70px rgba(16, 33, 84, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.9);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.support-bot.is-open .support-bot-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.support-bot-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 0;
    padding: 18px 18px 14px;
    background: linear-gradient(135deg, rgba(95, 124, 255, 0.16), rgba(36, 192, 255, 0.1));
    border-bottom: 1px solid rgba(95, 124, 255, 0.1);
}

.support-bot-avatar {
    width: 52px;
    height: 52px;
    margin-right: 12px;
    flex: 0 0 auto;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.65), transparent 28%), radial-gradient(circle at 72% 72%, rgba(255, 255, 255, 0.18), transparent 34%), linear-gradient(135deg, #6e7dff, #2bcbff 52%, #8affdd);
    box-shadow: 0 14px 28px rgba(36, 192, 255, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.support-bot-head-main {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.support-bot-head h4 {
    margin: 0 0 6px;
    font-family: "Sora", sans-serif;
}

.support-bot-head h4::after {
    content: " Online";
    margin-left: 6px;
    color: #24b86f;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.support-bot-head p {
    margin: 0;
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.48;
}

.support-bot-close {
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 12px;
    background: rgba(23, 23, 57, 0.06);
    color: var(--purple);
    cursor: pointer;
}

.support-bot-questions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 16px 18px 0;
}

.bot-question {
    padding: 10px 12px;
    border: 1px solid rgba(23, 23, 57, 0.08);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--purple);
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.bot-question:hover {
    transform: translateY(-1px);
    border-color: rgba(95, 124, 255, 0.22);
    background: rgba(244, 249, 255, 0.96);
    box-shadow: 0 12px 24px rgba(36, 192, 255, 0.08);
}

.support-bot-answer {
    margin: 14px 18px 0;
    padding: 16px 16px 16px 18px;
    border-radius: 18px 18px 18px 8px;
    background: linear-gradient(180deg, rgba(95, 124, 255, 0.08), rgba(36, 192, 255, 0.05));
    color: var(--muted);
    line-height: 1.66;
    font-size: 0.95rem;
    min-height: 86px;
    position: relative;
}

.support-bot-answer.is-typing {
    color: var(--purple);
}

.support-bot-answer::before {
    content: "";
    position: absolute;
    left: -6px;
    bottom: 14px;
    width: 16px;
    height: 16px;
    border-radius: 0 0 0 12px;
    background: rgba(95, 124, 255, 0.08);
    transform: rotate(22deg);
}

.typing {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
}

.typing-dots {
    display: inline-flex;
    gap: 5px;
}

.typing-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #5f7cff;
    animation: botPulse 1s infinite ease-in-out;
}

.typing-dots span:nth-child(2) {
    animation-delay: 0.14s;
}

.typing-dots span:nth-child(3) {
    animation-delay: 0.28s;
}

.support-bot-links {
    display: grid;
    gap: 10px;
    margin-top: 14px;
    padding: 0 18px 18px;
}

.support-bot-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(23, 23, 57, 0.08);
    color: var(--purple);
    font-weight: 700;
    transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.support-bot-link:hover {
    transform: translateY(-1px);
    border-color: rgba(95, 124, 255, 0.2);
    box-shadow: 0 12px 24px rgba(36, 192, 255, 0.08);
}

@keyframes botPulse {
    0%,
    80%,
    100% {
        transform: scale(0.7);
        opacity: 0.45;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (max-width: 1180px) {
    .hero-grid,
    .about-grid,
    .page-hero-grid,
    .about-intro-layout,
    .about-overview-grid,
    .services-process-grid,
    .contact-top-grid,
    .contact-bottom-grid,
    .vision-band-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .hero-grid {
        align-items: end;
    }
    .services-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .services-random-grid,
    .about-values-grid,
    .about-target-grid,
    .timeline-strip,
    .contact-action-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .process-cluster {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 860px) {
    .nav-bar {
        min-height: 92px;
        position: relative;
    }
    .brand {
        margin-left: 0;
    }
    .brand-logo {
        width: 164px;
    }
    .brand-copy h1 {
        font-size: 1.34rem;
    }
    .nav-toggle {
        display: inline-flex;
    }
    .nav-panel {
        position: absolute;
        left: 0;
        right: 0;
        top: calc(100% + 10px);
        display: grid;
        justify-items: start;
        justify-content: stretch;
        align-items: start;
        gap: 16px;
        flex: initial;
        padding: 18px;
        border-radius: 24px;
        background: rgba(255, 255, 255, 0.98);
        border: 1px solid rgba(23, 23, 57, 0.08);
        box-shadow: var(--card-shadow-strong);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
    }
    .site-header.nav-open .nav-panel {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    .site-header.nav-open .nav-toggle span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    .site-header.nav-open .nav-toggle span:nth-child(2) {
        opacity: 0;
    }
    .site-header.nav-open .nav-toggle span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
    .nav-links {
        width: 100%;
        display: grid;
        gap: 10px;
        justify-content: start;
        align-items: start;
        justify-items: start;
    }
    .nav-links a {
        padding: 10px 0;
        justify-self: start;
        text-align: left;
    }
    .nav-links a.active::after {
        bottom: 2px;
    }
    .nav-panel .cta {
        margin-left: 0;
        width: 100%;
    }
    .hero {
        min-height: auto;
    }
    .hero-grid {
        min-height: auto;
        grid-template-columns: 1fr;
        padding: 44px 0 14px;
    }
    .hero-media {
        background-position: center top;
        transform: scale(1);
    }
    .hero-metrics,
    .field-grid,
    .contact-meta-grid,
    .contact-action-grid,
    .services-grid,
    .services-random-grid,
    .timeline-strip,
    .about-target-grid,
    .about-values-grid,
    .process-cluster {
        grid-template-columns: 1fr;
    }
    .about-collage {
        grid-template-columns: 1fr;
    }
    .about-overview-card {
        grid-template-columns: 1fr;
    }
    .about-overview-card img {
        height: 200px;
    }
    .collage-main {
        min-height: 360px;
    }
    .modal-card {
        grid-template-columns: 1fr;
    }
    .modal-visual {
        min-height: 180px;
    }
    .modal-copy {
        padding: 18px;
    }
    .support-bot {
        right: 14px;
        bottom: 14px;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(calc(100% - 28px), var(--max));
    }
    section,
    .page-hero {
        padding: 58px 0;
    }
    .brand {
        gap: 2px;
        align-items: center;
    }
    .brand-logo {
        width: 102px;
    }
    .brand-copy {
        display: block;
        min-width: 0;
        margin-left: -8px;
    }
    .brand-copy h1 {
        font-size: 0.42rem;
        line-height: 1.05;
        letter-spacing: -0.02em;
    }
    .brand-copy p {
        margin-top: 2px;
        font-size: 0.32rem;
        line-height: 1.15;
    }
    .hero-copy h2 {
        max-width: 260px;
        font-size: clamp(1.18rem, 6vw, 1.56rem);
        line-height: 1.02;
    }
    .page-hero-copy h2 {
        font-size: clamp(1.72rem, 8vw, 2.35rem);
    }
    .hero-copy p,
    .page-hero-copy p {
        font-size: 0.76rem;
        line-height: 1.42;
    }
    .hero-copy p {
        max-width: 100%;
        font-size: 0.56rem;
        line-height: 1.22;
        margin: 10px 0 14px;
    }
    .eyebrow-badge,
    .eyebrow {
        font-size: 0.58rem;
    }
    .eyebrow-badge {
        margin-bottom: 10px;
        padding: 7px 10px;
        gap: 6px;
    }
    .eyebrow-badge::before {
        width: 7px;
        height: 7px;
    }
    .section-head h3,
    .about-copy h3,
    .story-panel h3,
    .vision-band h3 {
        font-size: 1.6rem;
    }
    .page-hero-card img {
        height: 200px;
    }
    .service-card img,
    .service-panel img {
        height: 140px;
    }
    .about-story-media {
        min-height: 260px;
    }
    .about-overview-card img {
        height: 150px;
    }
    .collage-main {
        min-height: 250px;
    }
    .collage-stack article {
        min-height: 180px;
    }
    .contact-map-shell iframe {
        height: 280px;
    }
    .hero-actions,
    .modal-actions {
        flex-direction: column;
    }
    .hero-grid {
        padding: 28px 0 4px;
        gap: 10px;
    }
    .hero-actions .cta {
        padding: 11px 16px;
        font-size: 0.82rem;
    }
    .hero-metrics {
        display: none;
    }
    .hero-side {
        margin-bottom: 0;
    }
    .hero-spotlight {
        padding: 10px;
    }
    .hero-spotlight h3 {
        margin: 10px 0 6px;
        font-size: 0.84rem;
        line-height: 1.08;
    }
    .carousel-chip-row {
        gap: 6px;
        margin-top: 8px;
    }
    .carousel-chip {
        padding: 4px 7px;
        font-size: 0.58rem;
    }
    .carousel-meta {
        margin-top: 10px;
        gap: 8px;
    }
    .carousel-progress {
        font-size: 0.68rem;
    }
    .cta {
        width: 100%;
    }
    .why-strip,
    .footer-grid,
    .about-grid,
    .contact-bottom-grid {
        grid-template-columns: 1fr;
    }
    .why-item {
        padding: 0;
    }
    .why-item+.why-item {
        border-left: 0;
    }
    .newsletter {
        flex-direction: column;
    }
    .newsletter button {
        width: 100%;
    }
    .metric-card,
    .service-card,
    .story-panel,
    .value-card,
    .contact-card,
    .process-card,
    .timeline-card,
    .audience-card,
    .contact-form-shell,
    .contact-map-shell,
    .info-rail,
    .service-panel,
    .about-story-caption,
    .hero-spotlight {
        padding: 14px;
    }
    .service-card {
        min-height: auto;
    }
    .service-card h4,
    .service-panel h3,
    .contact-card h4,
    .process-card h4,
    .timeline-card h4,
    .audience-card h4,
    .value-card h4 {
        font-size: 1rem;
    }
    .service-card p,
    .service-panel p,
    .contact-card p,
    .process-card p,
    .timeline-card p,
    .audience-card p,
    .value-card p,
    .story-panel p,
    .about-overview-copy p,
    .modal-copy p {
        font-size: 0.88rem;
        line-height: 1.58;
    }
    .modal-copy h3 {
        font-size: 1.22rem;
    }
    .modal-visual {
        min-height: 130px;
    }
    .modal-card {
        width: min(100%, 360px);
        border-radius: 24px;
    }
    .modal-visual img {
        min-height: 130px;
    }
    .modal-copy p {
        font-size: 0.8rem;
        line-height: 1.48;
    }
    .modal-kicker {
        font-size: 0.72rem;
        padding: 8px 10px;
    }
    .modal-actions {
        margin-top: 18px;
    }
    .support-bot-panel {
        right: 0;
        bottom: 66px;
        width: min(90vw, 300px);
        max-height: min(68vh, 440px);
        border-radius: 20px;
        overflow-y: auto;
    }
    .support-bot-head {
        gap: 10px;
        padding: 12px 12px 10px;
    }
    .support-bot-avatar {
        width: 42px;
        height: 42px;
        margin-right: 8px;
        border-radius: 14px;
    }
    .support-bot-head h4 {
        font-size: 0.95rem;
    }
    .support-bot-head p {
        font-size: 0.76rem;
        line-height: 1.4;
    }
    .support-bot-close {
        width: 30px;
        height: 30px;
        border-radius: 10px;
        font-size: 1rem;
    }
    .support-bot-questions {
        gap: 8px;
        padding: 10px 12px 0;
    }
    .support-bot-answer {
        margin: 10px 12px 0;
        padding: 12px 12px 12px 18px;
        font-size: 0.76rem;
        line-height: 1.55;
        min-height: 56px;
    }
    .support-bot-links {
        gap: 8px;
        padding: 0 12px 12px;
    }
    .bot-question,
    .support-bot-link {
        font-size: 0.75rem;
    }
    .bot-question {
        padding: 8px 10px;
        border-radius: 12px;
    }
    .support-bot-link {
        padding: 10px 12px;
        border-radius: 14px;
    }
    .support-bot-toggle {
        width: 58px;
        height: 58px;
        border-radius: 20px;
    }
    .support-bot-toggle::before {
        inset: 8px;
        border-radius: 14px;
    }
    .bot-face {
        width: 28px;
        height: 28px;
    }
    .bot-face::before,
    .bot-face::after {
        top: 7px;
        width: 6px;
        height: 6px;
    }
    .bot-face::before {
        left: 5px;
    }
    .bot-face::after {
        right: 5px;
    }
    .bot-mouth {
        left: 7px;
        right: 7px;
        bottom: 5px;
        height: 6px;
        border-width: 1.8px;
    }
}
