:root {
    --color-primary: #F7C844;
    --color-primary-dark: #E5A62A;
    --color-secondary: #FCE17F;
    --color-primary-light: #FDE7A0;
    --color-accent: #1F1F1F;
    --color-accent-light: #3a3a3a;
    --color-background: #FDFBF4;
    --color-surface: #FFFFFF;
    --color-border: rgba(31, 31, 31, 0.08);
    --color-muted: rgba(31, 31, 31, 0.6);
    --shadow-soft: 0 10px 40px rgba(31, 31, 31, 0.08);
    --shadow-medium: 0 18px 50px rgba(31, 31, 31, 0.12);
    --shadow-strong: 0 30px 90px rgba(31, 31, 31, 0.2);
    --max-width: 960px;
    --radius-lg: 32px;
    --radius-md: 20px;
    --radius-sm: 12px;
    --font-heading: "Poppins", "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-body: "Pretendard", "Apple SD Gothic Neo", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
    scroll-behavior: smooth;
    font-size: 80%;
}

body {
    font-family: var(--font-body);
    color: var(--color-accent);
    background: var(--color-background);
    line-height: 1.6;
}

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

a:hover,
a:focus {
    color: var(--color-accent-light);
}

img {
    max-width: 100%;
    display: block;
    border-radius: var(--radius-md);
}

.container {
    width: min(calc(100% - 8rem), var(--max-width));
    margin-inline: auto;
}

section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header .eyebrow {
    font-size: 0.95rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-muted);
    margin-bottom: 0.75rem;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(1.8rem, 2.4vw + 0.9rem, 2.4rem);
    margin-bottom: 0.9rem;
}

.section-header .section-description {
    max-width: 620px;
    margin: 0.75rem auto 0;
    color: var(--color-muted);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 1.6rem;
    border-radius: 999px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.btn-primary,
.btn-secondary,
.btn-outline {
    border-radius: 1.4rem;
}

.btn-primary {
    background:
        radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0) 50%),
        radial-gradient(circle at 80% 75%, rgba(223, 153, 18, 0.5), rgba(223, 153, 18, 0) 62%),
        linear-gradient(135deg, rgba(247, 200, 68, 1), rgba(243, 178, 24, 0.95));
    color: var(--color-accent);
    box-shadow: inset -6px -8px 16px rgba(223, 153, 18, 0.42), inset 6px 8px 18px rgba(255, 240, 180, 0.75), 0 24px 42px rgba(247, 200, 68, 0.32);
}

.btn-primary:hover,
.btn-primary:focus {
    transform: translateY(-3px) scale(1.03);
    box-shadow: inset -6px -8px 16px rgba(223, 153, 18, 0.46), inset 6px 8px 18px rgba(255, 240, 180, 0.78), 0 36px 64px rgba(247, 200, 68, 0.36);
}

.btn-secondary {
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0) 48%),
        linear-gradient(135deg, rgba(255, 243, 189, 1), rgba(247, 200, 68, 0.55));
    color: var(--color-accent);
    border: none;
    box-shadow: inset 0 2px 6px rgba(255, 255, 255, 0.78), 0 20px 40px rgba(247, 200, 68, 0.26);
}

.btn-secondary:hover,
.btn-secondary:focus {
    transform: translateY(-2px) scale(1.02);
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0) 48%),
        linear-gradient(135deg, rgba(247, 200, 68, 0.95), rgba(243, 178, 24, 0.85));
    box-shadow: inset 0 2px 8px rgba(255, 255, 255, 0.78), 0 30px 52px rgba(247, 200, 68, 0.32);
}

.btn-outline {
    border: none;
    background:
        radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0) 46%),
        linear-gradient(135deg, rgba(247, 200, 68, 1), rgba(243, 178, 24, 0.92));
    color: var(--color-accent);
    box-shadow: inset -5px -6px 14px rgba(223, 153, 18, 0.38), inset 6px 8px 16px rgba(255, 240, 180, 0.7), 0 22px 40px rgba(247, 200, 68, 0.28);
}

.btn-outline:hover,
.btn-outline:focus {
    transform: translateY(-2px) scale(1.02);
    box-shadow: inset -5px -6px 14px rgba(223, 153, 18, 0.44), inset 6px 8px 16px rgba(255, 240, 180, 0.78), 0 32px 60px rgba(247, 200, 68, 0.34);
}

.btn-link {
    background: none;
    border: none;
    color: var(--color-accent);
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0;
}

.btn-link::after {
    content: "→";
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.btn-link:hover::after,
.btn-link:focus::after {
    transform: translateX(4px);
}

.btn-link[disabled] {
    opacity: 0.4;
    cursor: not-allowed;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--color-border);
    overflow: hidden;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.site-header.is-hidden {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

.site-header::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(120deg, rgba(255, 240, 189, 0.92) 0%, rgba(247, 200, 68, 0.65) 55%, rgba(252, 225, 127, 0.82) 100%);
    box-shadow: 0 20px 45px rgba(247, 200, 68, 0.16);
    pointer-events: none;
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 0.68rem 0;
    transition: transform 0.3s ease, padding 0.3s ease;
}

.site-header:hover .container,
.site-header:focus-within .container {
    transform: scale(1.02);
    padding: 1.1rem 0;
}

.site-header .btn-outline {
    padding: 0.78rem 1.92rem;
    min-width: clamp(9.5rem, 12vw, 12.4rem);
    justify-content: center;
    background: linear-gradient(120deg, rgba(255, 203, 126, 0.98) 0%, rgba(255, 168, 78, 0.98) 50%, rgba(255, 214, 150, 0.98) 100%);
    background-size: 220% 100%;
    border: 1px solid rgba(255, 180, 82, 0.62);
    color: #ffffff !important;
    font-weight: 800;
    letter-spacing: 0.02em;
    box-shadow: 0 18px 42px rgba(255, 160, 54, 0.28);
    text-shadow: 0 2px 6px rgba(38, 20, 0, 0.45), 0 0 16px rgba(255, 255, 255, 0.4);
    animation: contact-glimmer 3.1s ease-in-out infinite;
}

.site-header .btn-outline:hover,
.site-header .btn-outline:focus {
    transform: translateY(-2px) scale(1.04);
    background: linear-gradient(120deg, rgba(255, 214, 150, 0.98) 0%, rgba(255, 172, 72, 0.98) 45%, rgba(255, 221, 170, 1) 100%);
    color: #ffffff !important;
    box-shadow: 0 22px 48px rgba(255, 150, 38, 0.34);
}

.logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.35rem;
    border-radius: 50%;
    background: transparent;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.logo img {
    display: block;
    width: clamp(60px, 7.2vw, 92px);
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background: transparent;
    box-shadow: 0 10px 26px rgba(247, 200, 68, 0.22);
    transition: transform 0.35s ease, box-shadow 0.35s ease, filter 0.35s ease;
}

.site-header .logo:hover img,
.site-header .logo:focus img {
    transform: translateY(-2px) scale(1.08);
    box-shadow: 0 22px 48px rgba(247, 200, 68, 0.35);
    filter: saturate(115%) brightness(105%);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 2.4rem;
}

.site-nav ul {
    display: flex;
    align-items: center;
    gap: 2.4rem;
    list-style: none;
    font-weight: 600;
}

.nav-item {
    position: relative;
    display: flex;
    align-items: center;
}

.site-nav a {
    position: relative;
    padding: 0.2rem 0;
    transition: color 0.3s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.18);
}

.site-nav a::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.35rem;
    width: 100%;
    height: 3px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.85);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.site-nav a::after {
    content: attr(data-ko);
    position: absolute;
    left: 50%;
    bottom: -2.35rem;
    transform: translate(-50%, 0.45rem);
    font-size: 0.8rem;
    font-weight: 700;
    color: #3a2200;
    letter-spacing: 0.015em;
    opacity: 0;
    pointer-events: none;
    white-space: nowrap;
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
    background: rgba(255, 240, 205, 0.96);
    border: 1px solid rgba(212, 136, 18, 0.4);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
    transition: opacity 0.22s ease, transform 0.22s ease;
}

.site-nav li:nth-child(1) a {
    color: #8c5a00;
}

.site-nav li:nth-child(2) a {
    color: #a86502;
}

.site-nav li:nth-child(3) a {
    color: #bb6f05;
}

.site-nav li:nth-child(4) a {
    color: #d07a08;
}

.site-nav li:nth-child(5) a {
    color: #d48812;
}

.site-nav li:nth-child(6) a {
    color: #dfa12a;
}

.site-nav li:nth-child(7) a {
    color: #edba3f;
}

.site-nav a:hover,
.site-nav a:focus {
    color: #ffffff;
}

.nav-divider-right {
    padding-right: 1.2rem;
}

.nav-divider-right::after {
    content: "|";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.72);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.18);
    pointer-events: none;
}

.site-nav a[aria-current="page"] {
    color: #ffffff;
}

.site-nav a[aria-current="page"]::before,
.site-nav a:hover::before,
.site-nav a:focus::before {
    transform: scaleX(1);
}

.site-nav a[aria-current="page"]::after,
.site-nav a:hover::after,
.site-nav a:focus::after {
    opacity: 1;
    transform: translate(-50%, 0);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.4rem;
    cursor: pointer;
}

.hero {
    position: relative;
    padding: clamp(3.8rem, 6vw, 5.2rem) 0 clamp(3.4rem, 5vw, 4.8rem);
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(120% 120% at 0% 15%, rgba(255, 243, 205, 0.85) 0%, rgba(253, 251, 244, 0.95) 45%, rgba(255, 255, 255, 0.6) 100%);
    z-index: -2;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(140deg, rgba(247, 200, 68, 0.14), rgba(255, 255, 255, 0));
    z-index: -1;
}

.hero-content {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
    gap: clamp(2.4rem, 4vw, 3.5rem);
    min-height: clamp(520px, 60vh, 640px);
}

.hero-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.9rem;
    max-width: 560px;
}

.hero-intro {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 0.5rem 1.1rem;
    border-radius: 999px;
    background: linear-gradient(120deg, rgba(247, 200, 68, 0.92) 0%, rgba(241, 169, 47, 0.9) 90%);
    border: 1px solid rgba(206, 132, 0, 0.4);
    font-size: clamp(0.95rem, 0.55vw + 0.74rem, 1.12rem);
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #3b2200;
    box-shadow: 0 16px 36px rgba(247, 200, 68, 0.26);
    align-self: flex-start;
}

.hero-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(2.3rem, 3.2vw + 0.9rem, 3.2rem);
    line-height: 1.1;
}

.hero-lead {
    font-size: clamp(1.15rem, 1.4vw + 0.8rem, 1.72rem);
    font-weight: 600;
    color: var(--color-accent);
    line-height: 1.45;
}

.hero-lead-emphasis {
    background: linear-gradient(120deg, #f7c844 0%, #f1a92f 92%);
    -webkit-background-clip: text;
    color: transparent;
    font-weight: 700;
}

.hero-description {
    color: var(--color-muted);
    font-size: 1.05rem;
    line-height: 1.72;
    max-width: 520px;
}

.hero-tags {
    display: flex;
    flex-wrap: nowrap;
    gap: clamp(0.55rem, 1.2vw, 0.85rem);
    align-items: center;
    overflow-x: auto;
    padding-bottom: 0.2rem;
    margin-top: 1.2rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.hero-tags::-webkit-scrollbar {
    display: none;
}

.hero-tags span {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.95rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(223, 153, 18, 0.32);
    font-size: 0.88rem;
    font-weight: 600;
    color: #a86502;
    letter-spacing: 0.02em;
    backdrop-filter: blur(8px);
    white-space: nowrap;
}

.brand-intimacy {
    padding: clamp(4rem, 7vw, 5.6rem) 0 clamp(3rem, 7vw, 5.4rem);
    background: linear-gradient(180deg, rgba(255, 244, 205, 0.65), rgba(247, 200, 68, 0.12) 55%, rgba(255, 255, 255, 0.94));
    position: relative;
}

.brand-intimacy__preamble {
    max-width: 760px;
    margin: 0 auto clamp(2.4rem, 5vw, 3.6rem);
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.brand-intimacy__preamble-eyebrow {
    font-size: clamp(0.95rem, 0.6vw + 0.75rem, 1.1rem);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(138, 80, 0, 0.7);
    font-weight: 600;
}

.brand-intimacy__preamble-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(2.1rem, 2.6vw + 1.1rem, 2.9rem);
    color: var(--color-accent);
    margin: 0;
    letter-spacing: -0.015em;
}

.brand-intimacy__preamble-subtitle {
    font-size: clamp(1.6rem, 1.4vw + 1.2rem, 2.1rem);
    color: rgba(64, 40, 0, 0.85);
    margin: 0;
    font-weight: 650;
}

.brand-intimacy::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 15% 20%, rgba(255, 223, 138, 0.32), transparent 52%),
        radial-gradient(circle at 85% 80%, rgba(247, 200, 68, 0.28), transparent 58%);
    pointer-events: none;
    z-index: 0;
}

.brand-intimacy .container {
    position: relative;
    z-index: 1;
}

.brand-intimacy__intro {
    max-width: 720px;
    margin: 0 auto clamp(2.4rem, 5vw, 3.6rem);
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1.15rem;
}

.brand-intimacy__eyebrow {
    display: inline-flex;
    align-self: center;
    padding: 0.4rem 1.1rem;
    border-radius: 999px;
    background: rgba(31, 31, 31, 0.08);
    color: rgba(64, 40, 0, 0.72);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

#brand-intimacy-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(1.9rem, 2.6vw + 1.1rem, 2.8rem);
    color: var(--color-accent);
    margin: 0;
    letter-spacing: -0.015em;
}

.brand-intimacy__title-sub {
    display: block;
    font-size: clamp(1.05rem, 1vw + 0.9rem, 1.42rem);
    font-weight: 600;
    color: rgba(64, 40, 0, 0.78);
    letter-spacing: -0.005em;
    margin-top: 0.45rem;
}

.brand-intimacy__quote {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.78;
    color: rgba(64, 40, 0, 0.82);
}

.brand-intimacy__quote strong {
    color: var(--color-accent);
    font-weight: 700;
}

.brand-intimacy__description {
    margin: 0;
    font-size: 1.02rem;
    line-height: 1.74;
    color: var(--color-muted);
}

.brand-intimacy__description--closing {
    color: rgba(64, 40, 0, 0.85);
    font-weight: 600;
}

.brand-intimacy__canvas {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(2rem, 4vw, 2.8rem);
}

.brand-intimacy__card {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(223, 153, 18, 0.22);
    border-radius: 28px;
    padding: clamp(1.8rem, 3vw, 2.6rem);
    box-shadow: 0 18px 46px rgba(31, 31, 31, 0.12);
    display: flex;
    flex-direction: column;
    gap: 1.05rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.brand-intimacy__card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(247, 200, 68, 0.16), transparent 58%);
    pointer-events: none;
    z-index: -1;
}

.brand-intimacy__card p {
    margin: 0;
    color: rgba(64, 40, 0, 0.82);
    font-size: 1.02rem;
    line-height: 1.75;
}

.card-label {
    display: inline-flex;
    align-self: center;
    padding: 0.5rem 1.15rem;
    border-radius: 999px;
    background: rgba(247, 200, 68, 0.26);
    color: var(--color-accent);
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    box-shadow: 0 16px 32px rgba(247, 200, 68, 0.2);
}

.card-label--accent {
    background: var(--color-accent);
    color: #ffffff;
    box-shadow: 0 18px 38px rgba(247, 200, 68, 0.32);
}

.brand-intimacy__card--full {
    max-width: 920px;
    width: 100%;
    display: grid;
    gap: clamp(1.6rem, 3vw, 2.6rem);
    padding: clamp(2.2rem, 3.5vw, 3.1rem);
    align-items: center;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(223, 153, 18, 0.22);
    border-radius: 32px;
    box-shadow: 0 24px 52px rgba(31, 31, 31, 0.14);
    position: relative;
    overflow: hidden;
}

.brand-intimacy__pillar {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    text-align: center;
}

.brand-intimacy__pillar--see {
    gap: 0.9rem;
}

.brand-intimacy__bridge-title {
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 1.1vw + 1rem, 1.9rem);
    color: var(--color-accent);
    letter-spacing: -0.01em;
}

.brand-intimacy__flow {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 46px;
}

.brand-intimacy__flow::before {
    content: "";
    position: absolute;
    width: 2px;
    height: 60%;
    background: linear-gradient(180deg, rgba(223, 153, 18, 0.45), transparent);
    top: 10%;
}

.brand-intimacy__flow span {
    font-size: clamp(1.4rem, 2vw + 0.6rem, 2rem);
    color: var(--color-accent);
    font-weight: 700;
}

.brand-intimacy__card--full::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(140deg, rgba(247, 200, 68, 0.16), transparent 55%);
    pointer-events: none;
    z-index: 0;
}

.brand-intimacy__card--full > * {
    position: relative;
    z-index: 1;
}

.brand-intimacy__highlight {
    margin: 0;
    padding: 0.9rem 1.1rem;
    border-left: 4px solid rgba(223, 153, 18, 0.65);
    background: rgba(255, 247, 224, 0.78);
    border-radius: 14px;
    font-weight: 650;
    color: rgba(64, 40, 0, 0.9);
}

.brand-intimacy__cta {
    margin-top: clamp(2.4rem, 5vw, 3.6rem);
    display: flex;
    justify-content: center;
}

.btn-wide {
    width: min(540px, 100%);
    justify-content: center;
    padding: 1.05rem 2.8rem;
    font-size: 1.02rem;
    border-radius: 999px;
}

.about-hero {
    background: linear-gradient(180deg, rgba(255, 244, 205, 0.82), rgba(255, 255, 255, 0));
}

.about-hero-metrics {
    margin-top: clamp(2rem, 3.5vw, 2.8rem);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.4rem;
    list-style: none;
    padding: 0;
}

.about-hero-metrics li {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(223, 153, 18, 0.22);
    border-radius: 20px;
    padding: 1.4rem;
    box-shadow: 0 18px 42px rgba(31, 31, 31, 0.06);
}

.about-story {
    padding: clamp(4rem, 7vw, 5.5rem) 0;
}

.about-story__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: clamp(2rem, 4vw, 3.5rem);
    align-items: start;
}

.about-story__cards {
    display: grid;
    gap: 1.2rem;
}

.about-story__card {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(223, 153, 18, 0.2);
    border-radius: 18px;
    padding: 1.6rem 1.4rem;
    box-shadow: 0 16px 40px rgba(31, 31, 31, 0.08);
}

.about-story__card h3 {
    margin-bottom: 0.6rem;
    font-size: 1.1rem;
}

.about-promise {
    padding: clamp(4rem, 7vw, 5.5rem) 0;
    background: linear-gradient(180deg, rgba(255, 248, 224, 0.7), rgba(255, 255, 255, 0));
}

.about-promise__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.8rem;
}

.promise-card {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(223, 153, 18, 0.28);
    padding: 2.2rem 1.8rem;
    box-shadow: 0 20px 45px rgba(31, 31, 31, 0.1);
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.promise-icon {
    width: 3.4rem;
    height: 3.4rem;
    border-radius: 18px;
    background: rgba(247, 200, 68, 0.2);
    display: grid;
    place-items: center;
    font-size: 1.4rem;
    color: var(--color-accent);
}

.about-approach {
    padding: clamp(4rem, 7vw, 5.5rem) 0;
}

.about-approach__steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(1.4rem, 3vw, 2.3rem);
    list-style: none;
    padding: 0;
}

.about-approach__steps li {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(223, 153, 18, 0.22);
    border-radius: 22px;
    padding: 2rem 1.7rem;
    box-shadow: 0 18px 44px rgba(31, 31, 31, 0.08);
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.about-approach__steps .step-number {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    letter-spacing: 0.2em;
    color: rgba(223, 153, 18, 0.9);
}

.about-proof {
    padding: clamp(4rem, 7vw, 5.5rem) 0;
}

.about-proof__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.6rem;
}

.proof-card {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(223, 153, 18, 0.2);
    border-radius: 20px;
    padding: 1.8rem 1.6rem;
    box-shadow: 0 16px 40px rgba(31, 31, 31, 0.08);
}

.about-cta {
    padding: clamp(4rem, 7vw, 5.5rem) 0 clamp(5rem, 9vw, 6.5rem);
    background: linear-gradient(180deg, rgba(247, 200, 68, 0.18), rgba(255, 255, 255, 0));
}

.about-cta__content {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about-cta__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}


.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1.3rem;
}

.hero-highlight {
    width: 100%;
    padding: 1.8rem;
    margin: 1.8rem 0 2.3rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 28px;
    border: 1px solid rgba(223, 153, 18, 0.16);
    box-shadow: 0 20px 48px rgba(31, 31, 31, 0.1);
    display: flex;
    flex-direction: column;
    gap: 1.3rem;
}

.hero-highlight-support {
    margin: 0;
    color: var(--color-muted);
    font-size: 0.98rem;
    line-height: 1.7;
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.hero-metrics li {
    background: linear-gradient(155deg, rgba(247, 200, 68, 0.2), rgba(255, 255, 255, 0.88));
    border: 1px solid rgba(223, 153, 18, 0.2);
    border-radius: var(--radius-md);
    padding: 1.3rem 1.1rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    box-shadow: 0 16px 40px rgba(247, 200, 68, 0.18);
}

.metric-value {
    font-family: var(--font-heading);
    font-size: clamp(1.7rem, 2vw + 1rem, 2.4rem);
    color: var(--color-accent);
    font-weight: 700;
}

.metric-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-accent-light);
}

.hero-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.4rem;
    align-self: stretch;
}

.hero-video-wrapper {
    position: relative;
    padding: 1.4rem 1.4rem 3.4rem;
    border-radius: calc(var(--radius-lg) + 8px);
    background: rgba(255, 255, 255, 0.32);
    backdrop-filter: blur(18px);
    box-shadow: 0 28px 70px rgba(31, 31, 31, 0.16);
    border: 1px solid rgba(223, 153, 18, 0.25);
}

.hero-hover-hint {
    position: absolute;
    left: 50%;
    bottom: 1.2rem;
    transform: translate(-50%, 20px);
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(223, 153, 18, 0.28);
    border-radius: 18px;
    padding: 0.55rem 1.05rem;
    box-shadow: 0 16px 42px rgba(31, 31, 31, 0.14);
    color: var(--color-accent);
    font-weight: 650;
    font-size: 0.9rem;
    letter-spacing: 0.005em;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.24s ease, transform 0.24s ease;
}

.hero-video-wrapper:hover .hero-hover-hint,
.hero-video-wrapper:focus-within .hero-hover-hint {
    opacity: 1;
    transform: translate(-50%, 0);
}

@media (hover: none) {
    .hero-hover-hint {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

.hero-visual img,
.hero-visual video {
    display: block;
    width: min(100%, clamp(420px, 38vw + 220px, 640px));
    height: auto;
    max-height: min(62vh, 760px);
    object-fit: cover;
    border-radius: 40px;
    box-shadow: 0 24px 80px rgba(31, 31, 31, 0.18);
    margin: 0 auto;
}

.hero-media {
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    transform-origin: center;
    cursor: pointer;
}

.hero-media.is-pulsing {
    animation: hero-pulse 0.45s ease;
}

@keyframes hero-pulse {
    0% {
        transform: scale(1);
    }
    40% {
        transform: scale(1.08);
    }
    65% {
        transform: scale(1.02);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes contact-glimmer {
    0% {
        background-position: 0% 50%;
        box-shadow: 0 12px 28px rgba(255, 176, 60, 0.22);
    }
    50% {
        background-position: 100% 50%;
        box-shadow: 0 16px 38px rgba(255, 144, 32, 0.32);
    }
    100% {
        background-position: 0% 50%;
        box-shadow: 0 12px 28px rgba(255, 176, 60, 0.22);
    }
}

.hero-media:hover,
.hero-media:focus {
    transform: scale(1.035);
    box-shadow: 0 32px 110px rgba(31, 31, 31, 0.24);
}

.hero-visual .blob {
    position: absolute;
    inset: -12% -6% -12% -12%;
    background: radial-gradient(circle at 30% 30%, rgba(247, 200, 68, 0.55), rgba(253, 231, 128, 0.25));
    filter: blur(48px);
    border-radius: 50%;
    transform: translate(12%, -14%) scale(1.08);
    z-index: -1;
    pointer-events: none;
}

.page-hero {
    padding: 6rem 0 4rem;
    text-align: center;
    background: linear-gradient(180deg, rgba(255, 243, 205, 0.6), rgba(253, 251, 244, 1));
}

.page-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 3.6vw + 1rem, 3.6rem);
    margin-bottom: 1rem;
}

.page-hero .hero-lead {
    color: var(--color-muted);
    max-width: 720px;
    margin: 0.75rem auto 1.5rem;
    font-size: 1.1rem;
}


.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    border: 1px solid var(--color-border);
}

.service-card__head {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.service-card__head .service-icon {
    margin: 0;
    flex-shrink: 0;
}

.service-card__head h3 {
    margin: 0;
}

.services-cta {
    margin-top: 2.4rem;
    display: flex;
    justify-content: center;
}

.services-cta .btn {
    width: min(420px, 100%);
    padding: 0.95rem 2.2rem;
    font-size: 0.95rem;
    border-radius: 1.6rem;
}

.page-hero--process {
    background: linear-gradient(180deg, rgba(255, 240, 189, 0.82), rgba(253, 251, 244, 1));
}

.process-overview {
    background: var(--color-background);
}

.process-flow {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.6rem;
}

.process-flow__item {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-soft);
    display: grid;
    gap: 1rem;
}

.process-flow__head {
    display: flex;
    align-items: center;
    gap: 1.1rem;
}

.process-flow__step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.8rem;
    height: 2.8rem;
    border-radius: 50%;
    background: var(--color-primary);
    color: var(--color-accent);
    font-weight: 700;
    font-family: var(--font-heading);
}

.process-flow__duration {
    display: inline-block;
    margin-top: 0.2rem;
    font-size: 0.9rem;
    color: var(--color-muted);
}

.process-flow__item ul {
    list-style: disc;
    padding-left: 1.2rem;
    color: var(--color-muted);
    display: grid;
    gap: 0.45rem;
}

.process-sprints {
    background: var(--color-surface);
}

.sprint-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.6rem;
}

.sprint-card {
    background: var(--color-background);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    padding: 1.8rem;
    display: grid;
    gap: 0.9rem;
}

.sprint-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
}

.sprint-card ul {
    list-style: disc;
    padding-left: 1.1rem;
    color: var(--color-muted);
    display: grid;
    gap: 0.4rem;
}

.process-reporting {
    background: var(--color-background);
}

.reporting-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.6rem;
}

.reporting-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 1.9rem;
    box-shadow: var(--shadow-soft);
    display: grid;
    gap: 0.8rem;
}

.reporting-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
}

.reporting-card ul {
    list-style: disc;
    padding-left: 1.1rem;
    color: var(--color-muted);
    display: grid;
    gap: 0.4rem;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
}

.service-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.58rem;
    color: var(--color-muted);
    line-height: 1.5;
}

.services-overview {
    background: var(--color-surface);
}

.service-modules {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.8rem;
}

.module-card {
    background: var(--color-background);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-soft);
    padding: 1.9rem;
    display: grid;
    gap: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.module-card:hover,
.module-card:focus-within {
    transform: translateY(-6px);
    box-shadow: var(--shadow-medium);
}

.module-icon {
    width: 3.4rem;
    height: 3.4rem;
    border-radius: 1.2rem;
    background:
        radial-gradient(circle at 28% 20%, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0) 55%),
        linear-gradient(145deg, rgba(247, 200, 68, 0.95), rgba(243, 178, 24, 0.82));
    display: grid;
    place-items: center;
    box-shadow: inset -6px -8px 16px rgba(223, 153, 18, 0.4), inset 6px 8px 16px rgba(255, 240, 180, 0.7), 0 16px 32px rgba(247, 200, 68, 0.26);
}

.module-icon i {
    font-size: 1.35rem;
    color: var(--color-accent);
}

.module-lead {
    font-weight: 600;
    color: var(--color-accent-light);
}

.module-card ul {
    list-style: disc;
    padding-left: 1.1rem;
    color: var(--color-muted);
    display: grid;
    gap: 0.45rem;
}

.service-icon {
    position: relative;
    font-size: 1.45rem;
    color: var(--color-accent);
    background:
        radial-gradient(circle at 28% 22%, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0) 55%),
        radial-gradient(circle at 75% 80%, rgba(229, 166, 42, 0.32), rgba(229, 166, 42, 0) 60%),
        linear-gradient(145deg, rgba(247, 200, 68, 0.95), rgba(252, 225, 127, 0.75));
    border-radius: 1.15rem;
    width: 3.6rem;
    height: 3.6rem;
    display: grid;
    place-items: center;
    box-shadow: inset -5px -8px 16px rgba(229, 166, 42, 0.35), inset 5px 8px 16px rgba(255, 240, 180, 0.65), 0 18px 34px rgba(247, 200, 68, 0.24);
    transform: translateZ(0);
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon,
.service-card:focus-within .service-icon {
    transform: translateZ(0) scale(1.08);
}

.process {
    background: var(--color-surface);
}

.process-steps {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
}

.process-steps li {
    background: var(--color-background);
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    gap: 1.05rem;
}

.process-step__header {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.process-steps li .step-number {
    margin: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.process-steps li h3 {
    margin: 0;
    line-height: 1.3;
}

.process-steps li p {
    margin: 0;
    color: var(--color-muted);
}

.process-keywords {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin: 0.35rem 0 0.7rem;
}

.process-keywords span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.28rem 0.68rem;
    border-radius: 999px;
    font-size: 0.74rem;
    font-weight: 600;
    color: #765100;
    background: #f8e6a6;
    border: 1px solid rgba(223, 176, 52, 0.45);
    letter-spacing: 0.045em;
    text-transform: uppercase;
}

.process-cta {
    margin-top: 2.4rem;
    display: flex;
    justify-content: center;
}

.process-cta .btn {
    width: min(420px, 100%);
    padding: 0.9rem 2.2rem;
    font-size: 0.96rem;
    border-radius: 1.6rem;
}

.service-deliverables {
    background: var(--color-background);
}

.deliverable-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.6rem;
}

.deliverable-card {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-soft);
    padding: 1.8rem;
    display: grid;
    gap: 1rem;
}

.deliverable-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
}

.deliverable-card ul {
    list-style: disc;
    padding-left: 1.1rem;
    color: var(--color-muted);
    display: grid;
    gap: 0.45rem;
}

.service-addons {
    background: var(--color-surface);
}

.addon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.6rem;
}

.addon-card {
    background: var(--color-background);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    padding: 1.9rem;
    box-shadow: var(--shadow-soft);
    display: grid;
    gap: 0.85rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.addon-card:hover,
.addon-card:focus-within {
    transform: translateY(-6px);
    box-shadow: var(--shadow-medium);
}

.addon-icon {
    width: 3.1rem;
    height: 3.1rem;
    border-radius: 1rem;
    background:
        radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0) 52%),
        linear-gradient(135deg, rgba(255, 243, 189, 0.95), rgba(247, 200, 68, 0.7));
    display: grid;
    place-items: center;
    box-shadow: inset -4px -6px 12px rgba(223, 153, 18, 0.38), inset 5px 7px 12px rgba(255, 240, 180, 0.72), 0 16px 32px rgba(247, 200, 68, 0.22);
}

.addon-icon i {
    color: var(--color-accent);
    font-size: 1.25rem;
}

.addon-card p {
    color: var(--color-accent-light);
    font-weight: 600;
}

.addon-card ul {
    list-style: disc;
    padding-left: 1.1rem;
    color: var(--color-muted);
    display: grid;
    gap: 0.4rem;
}

.service-collab {
    background: var(--color-surface);
}

.collab-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.6rem;
}

.collab-card {
    background: var(--color-background);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    padding: 1.9rem;
    box-shadow: var(--shadow-soft);
    display: grid;
    gap: 0.9rem;
}

.collab-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
}

.collab-card p {
    color: var(--color-muted);
}

.collab-card ul {
    list-style: disc;
    padding-left: 1.1rem;
    color: var(--color-muted);
    display: grid;
    gap: 0.35rem;
}

.service-faq {
    background: var(--color-background);
}

.faq-list {
    display: grid;
    gap: 1.2rem;
}

.faq-item {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 1.6rem 1.8rem;
    box-shadow: var(--shadow-soft);
}

.faq-item h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
}

.faq-item p {
    color: var(--color-muted);
}

.service-cta-final {
    background: linear-gradient(180deg, rgba(247, 200, 68, 0.16), rgba(253, 251, 244, 1));
    padding: 5rem 0;
}

.cta-panel {
    background: var(--color-surface);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(247, 200, 68, 0.45);
    box-shadow: 0 24px 80px rgba(247, 200, 68, 0.2);
    padding: clamp(2.4rem, 4vw + 1rem, 3.4rem);
    text-align: center;
    display: grid;
    gap: 1.4rem;
}

.cta-panel p {
    color: var(--color-muted);
    max-width: 620px;
    margin: 0 auto;
}

.cta-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-actions .btn {
    min-width: 180px;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-accent);
    background: var(--color-primary);
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    margin: 0;
}

.portfolio-filters {
    margin: 1.5rem auto 2.5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

.portfolio-voices {
    margin-top: 4rem;
}

.client-brands {
    margin-top: 3rem;
    text-align: center;
}

.client-brands h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
}

.client-brands__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.8rem;
    color: var(--color-muted);
    font-weight: 600;
}

.portfolio-cta {
    margin-top: 3.5rem;
    text-align: center;
}

.portfolio-cta p {
    color: var(--color-muted);
    margin-bottom: 1rem;
}

.section-header--compact {
    margin-bottom: 2rem;
}

.section-header--compact .section-description {
    margin-bottom: 0;
}

.filter-button {
    border: 1px solid var(--color-border);
    background: var(--color-surface);
    border-radius: 999px;
    padding: 0.75rem 1.4rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.filter-button.active,
.filter-button:hover,
.filter-button:focus {
    background: var(--color-secondary);
    color: var(--color-accent);
    box-shadow: var(--shadow-soft);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.portfolio-card {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
}

.portfolio-card img {
    height: 220px;
    width: 100%;
    object-fit: cover;
    border-radius: 0;
}

.portfolio-info {
    padding: 1.6rem;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.portfolio-info p {
    color: var(--color-muted);
}

.portfolio-cta {
    text-align: center;
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    color: var(--color-muted);
}

.pricing {
    background: linear-gradient(180deg, rgba(247, 200, 68, 0.22), transparent 60%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem;
}

.pricing-card {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    padding: 2.4rem 2rem;
    border: 2px solid rgba(247, 200, 68, 0.3);
    box-shadow: 0 20px 45px rgba(247, 200, 68, 0.12);
    display: flex;
    flex-direction: column;
    gap: 1.3rem;
    position: relative;
    transform: translateY(0) scale(1);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    min-height: clamp(420px, 48vw, 460px);
}

.pricing-card:hover,
.pricing-card:focus-within {
    transform: translateY(-12px) scale(1.05);
    box-shadow: var(--shadow-medium);
}

.pricing-card.highlighted {
    border: 2px solid rgba(247, 200, 68, 0.68);
    box-shadow: 0 28px 66px rgba(247, 200, 68, 0.22);
    transform: translateY(-10px) scale(1.02);
    background: linear-gradient(180deg, rgba(255, 244, 205, 0.9), rgba(247, 200, 68, 0.08));
}

.pricing-card.highlighted:hover,
.pricing-card.highlighted:focus-within {
    transform: translateY(-18px) scale(1.08);
    box-shadow: 0 38px 86px rgba(247, 200, 68, 0.28);
}

.pricing-card h3 {
    font-size: 1.6rem;
}

.pricing-card.highlighted .btn {
    box-shadow: none;
}

.pricing-actions {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    align-items: stretch;
    margin-top: auto;
}

.pricing-actions .btn {
    width: 100%;
    justify-content: center;
    padding: 0.75rem 1.4rem;
    font-size: 0.95rem;
    line-height: 1.3;
    border-radius: 1.35rem;
    min-height: 2.9rem;
}

.pricing-more {
    margin-top: 2.6rem;
    display: flex;
    justify-content: center;
}

.pricing-more .btn {
    width: min(500px, 100%);
    padding: 1rem 2.8rem;
    font-size: 1.02rem;
    border-radius: 1.9rem;
}

.pricing-badge {
    position: absolute;
    top: -1rem;
    left: 2rem;
    background: var(--color-secondary);
    color: var(--color-accent);
    font-weight: 600;
    padding: 0.35rem 1rem;
    border-radius: 999px;
}

.price {
    font-size: 1.8rem;
    font-family: var(--font-heading);
}

.pricing-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    color: var(--color-muted);
}

.plan-note {
    margin-top: 1.1rem;
    color: var(--color-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.pricing-disclaimer {
    margin-top: 2.4rem;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(31, 31, 31, 0.52);
}

.pricing-hero {
    background: linear-gradient(180deg, rgba(247, 200, 68, 0.45), rgba(253, 251, 244, 0.95));
}

.pricing-page .pricing-grid {
    gap: 2.2rem;
}

.pricing-page .pricing-card {
    min-height: 0;
}

.comparison-table-wrapper {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--color-border);
    background: var(--color-surface);
}

.comparison-table-wrapper table {
    width: 100%;
    border-collapse: collapse;
    min-width: 640px;
}

.comparison-table-wrapper th,
.comparison-table-wrapper td {
    padding: 1.2rem 1.4rem;
    text-align: left;
    border-bottom: 1px solid rgba(31, 31, 31, 0.08);
}

.comparison-table-wrapper thead th {
    background: rgba(247, 200, 68, 0.18);
    font-family: var(--font-heading);
    font-weight: 600;
}

.comparison-table-wrapper tbody tr:nth-child(even) {
    background: rgba(253, 251, 244, 0.6);
}

.comparison-table-wrapper tbody th {
    font-weight: 600;
    color: var(--color-accent);
    width: 28%;
}

.addons {
    background: rgba(255, 247, 216, 0.45);
}

.add-on-grid {
    gap: 1.6rem;
}

.add-on-card {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(247, 200, 68, 0.22);
}

.add-on-card .service-icon {
    margin-bottom: 0.4rem;
}

.faq {
    background: var(--color-surface);
}

.faq-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 1.8rem;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.faq-item h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
}

.faq-item p {
    color: var(--color-muted);
}

.pricing-cta {
    background: linear-gradient(140deg, rgba(247, 200, 68, 0.78), rgba(252, 225, 127, 0.88));
    color: var(--color-accent);
}

.pricing-cta-content {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    display: grid;
    gap: 1.5rem;
}

.pricing-cta-content p {
    color: rgba(31, 31, 31, 0.72);
}

.pricing-cta-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.testimonial-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.8rem;
}

.testimonial-list--highlight {
    margin-top: 2.5rem;
}

.testimonial-card {
    background: var(--color-surface);
    border-radius: var(--radius-md);
    padding: 2rem;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.testimonial-card p {
    font-size: 1.05rem;
}

.author span {
    font-weight: 600;
    color: var(--color-accent-light);
}


.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: var(--color-surface);
    padding: 2rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.blog-card.upcoming {
    background: rgba(247, 200, 68, 0.18);
    border-style: dashed;
}

.blog-card p {
    color: var(--color-muted);
}

.contact {
    background: linear-gradient(180deg, var(--color-surface) 0%, rgba(255, 243, 209, 0.45) 100%);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 2.8rem;
    align-items: flex-start;
}

.contact-intro {
    display: grid;
    gap: 1.4rem;
}

.contact-copy {
    color: var(--color-muted);
    line-height: 1.6;
    max-width: 32rem;
}

.contact-detail-list {
    display: grid;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.contact-detail {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
}

.contact-detail dt {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-accent);
    min-width: 3.4rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.contact-detail dd {
    margin: 0;
    font-weight: 500;
    color: var(--color-text);
}

.contact-detail dd a {
    color: inherit;
}

.contact-channels {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.channel {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.75rem 1.15rem;
    border-radius: 999px;
    background: rgba(255, 229, 140, 0.28);
    border: 1px solid rgba(247, 200, 68, 0.45);
    color: var(--color-accent);
    font-weight: 600;
    transition: background 0.3s ease, transform 0.3s ease;
}

.channel:hover,
.channel:focus {
    transform: translateY(-1px);
    background: rgba(255, 229, 140, 0.5);
}

.contact-form {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(255, 243, 209, 0.88));
    padding: 2.6rem;
    border-radius: 1.75rem;
    box-shadow: 0 18px 38px rgba(247, 200, 68, 0.12);
    border: 1px solid rgba(247, 200, 68, 0.32);
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.3rem 1.1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.form-group span {
    font-weight: inherit;
}

.contact-form label {
    font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    border: 1px solid rgba(31, 31, 31, 0.12);
    border-radius: 0.95rem;
    padding: 0.9rem 1.05rem;
    font: inherit;
    background: rgba(255, 255, 255, 0.9);
    transition: border 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 4px rgba(252, 225, 127, 0.35);
}

.contact-form textarea {
    min-height: 8.5rem;
    resize: vertical;
}

.form-grid .span-2 {
    grid-column: 1 / -1;
}

.contact-method-group {
    gap: 0.9rem;
    padding: 1.15rem 1.25rem;
    border-radius: 1.3rem;
    background: rgba(255, 247, 228, 0.65);
    border: 1px solid rgba(250, 200, 94, 0.45);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
}

.contact-method-label {
    font-weight: 700;
    font-size: 1.02rem;
    color: rgba(102, 54, 0, 0.92);
}

.contact-method-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.contact-method-option {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.75rem 1.05rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 182, 94, 0.55);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 10px 20px rgba(255, 184, 68, 0.12);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    cursor: pointer;
    min-width: min(13rem, 48%);
}

.contact-method-option:hover,
.contact-method-option:focus-within {
    transform: translateY(-2px);
    border-color: rgba(255, 166, 60, 0.9);
    box-shadow: 0 14px 28px rgba(255, 180, 72, 0.2);
}

.contact-method-option input {
    width: 1.05rem;
    height: 1.05rem;
    accent-color: #ffb33b;
    flex-shrink: 0;
}

.contact-method-option__text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.contact-method-option__text strong {
    font-size: 0.98rem;
    font-weight: 700;
    color: rgba(60, 30, 0, 0.92);
}

.contact-method-option__text small {
    font-size: 0.78rem;
    color: rgba(103, 70, 30, 0.78);
}

.service-choice-group {
    gap: 0.9rem;
    padding: 1.2rem 1.3rem;
    border-radius: 1.4rem;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(210, 177, 118, 0.42);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
}

.service-choice-label {
    font-weight: 700;
    font-size: 1.02rem;
    color: rgba(95, 52, 0, 0.88);
}

.service-choice-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.service-choice-option {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.75rem 1.05rem;
    border-radius: 1rem;
    border: 1px solid rgba(216, 173, 88, 0.5);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 10px 20px rgba(216, 173, 88, 0.12);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    cursor: pointer;
    min-width: min(15rem, 48%);
}

.service-choice-option:hover,
.service-choice-option:focus-within {
    transform: translateY(-2px);
    border-color: rgba(210, 150, 60, 0.9);
    box-shadow: 0 14px 26px rgba(216, 173, 88, 0.22);
    background: rgba(255, 248, 232, 0.95);
}

.service-choice-option input {
    width: 1.05rem;
    height: 1.05rem;
    accent-color: #d88b1f;
    flex-shrink: 0;
}

.service-choice-option__text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.service-choice-option__text strong {
    font-size: 0.98rem;
    font-weight: 700;
    color: rgba(68, 38, 0, 0.95);
}

.service-choice-option__text small {
    font-size: 0.78rem;
    color: rgba(98, 70, 30, 0.78);
}

.service-choice-option input:checked ~ .service-choice-option__text strong {
    color: #7b3f00;
}

.service-choice-option input:checked ~ .service-choice-option__text small {
    color: rgba(87, 54, 10, 0.9);
}

.service-choice-option input:checked {
    box-shadow: 0 0 0 4px rgba(255, 196, 120, 0.3);
}

.service-choice-option:has(input:checked) {
    border-color: rgba(210, 150, 60, 0.9);
    box-shadow: 0 16px 30px rgba(216, 173, 88, 0.28);
    transform: translateY(-2px);
    background: linear-gradient(135deg, rgba(255, 248, 230, 0.95), rgba(255, 232, 194, 0.96));
}

.form-agreement {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.2rem;
    flex-wrap: wrap;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    font-size: 0.95rem;
    max-width: 32rem;
}

.form-checkbox input {
    margin-top: 0.2rem;
}

.form-note {
    font-size: 0.85rem;
    color: var(--color-muted);
}

.contact-form .form-feedback {
    margin-top: 0.5rem;
    padding: 0.85rem 1rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    background: rgba(247, 200, 68, 0.25);
    color: var(--color-accent);
}

.contact-form .form-feedback[data-status="error"] {
    background: rgba(255, 99, 132, 0.18);
    color: #b42318;
}

.contact-form .form-feedback[data-status="success"] {
    background: rgba(247, 200, 68, 0.35);
    color: var(--color-accent);
}

.is-invalid {
    border-color: #b42318 !important;
    box-shadow: 0 0 0 3px rgba(255, 99, 132, 0.25) !important;
}

.site-footer {
    background: var(--color-accent);
    color: rgba(255, 255, 255, 0.9);
    padding-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
    padding-bottom: 3rem;
}

.footer-content h2 {
    font-family: var(--font-heading);
}

.footer-content ul {
    list-style: none;
    display: grid;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.75);
}

.footer-links a:hover,
.footer-links a:focus,
.footer-info a:hover,
.footer-info a:focus {
    color: var(--color-primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.2rem 0;
    font-size: 0.9rem;
}

.footer-bottom .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.policy-links {
    display: flex;
    gap: 1.2rem;
}

.modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 200;
}

.modal[aria-hidden="false"] {
    visibility: visible;
    opacity: 1;
}

.modal-content {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    width: min(520px, 100%);
    box-shadow: var(--shadow-medium);
    position: relative;
    display: grid;
    gap: 1.1rem;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
}

.modal-content ul {
    list-style: disc inside;
    color: var(--color-muted);
}

.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 150;
}

.modal-backdrop[aria-hidden="false"] {
    visibility: visible;
    opacity: 1;
}

@media (max-width: 1024px) {
    .container {
        width: min(100% - 3rem, var(--max-width));
    }

    .hero-content {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-highlight {
        padding: 1.6rem;
    }

    .hero-metrics {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }

    .hero-metrics li {
        align-items: center;
    }

    .hero-visual {
        order: -1;
    }

    .hero-video-wrapper {
        padding: 1.2rem;
    }

    .hero-visual img,
    .hero-visual video {
        width: min(100%, clamp(420px, 62vw, 720px));
    }

    .brand-intimacy__card--full {
        width: min(720px, 100%);
    }

    .brand-intimacy__flow::before {
        height: 50%;
    }

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

    .about-hero-metrics {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }

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

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2.2rem;
    }

    .contact-form {
        padding: 2.3rem 2.1rem;
    }
}

@media (max-width: 900px) {
    .hero-visual img,
    .hero-visual video {
        width: min(100%, clamp(320px, 68vw, 580px));
        max-height: min(58vh, 620px);
    }

    .hero-video-wrapper {
        padding: 1.1rem;
    }

    .brand-intimacy__card--full {
        width: 100%;
        padding: clamp(1.6rem, 3.4vw, 2rem);
    }

    .brand-intimacy__flow {
        min-height: 36px;
    }

    .brand-intimacy__flow::before {
        height: 40%;
    }

    .about-story__cards {
        gap: 1rem;
    }

    .about-approach__steps li {
        padding: 1.7rem 1.5rem;
    }

    .pricing-card {
        min-height: auto;
    }
}

@media (max-width: 768px) {
    .container {
        width: min(100% - 2rem, var(--max-width));
    }

    section {
        padding: 4rem 0;
    }

    .hero-visual {
        align-self: center;
        height: auto;
        justify-content: center;
        gap: 1.4rem;
    }

    .brand-intimacy__intro {
        gap: 1rem;
    }

    .brand-intimacy__card--full {
        padding: 1.5rem;
        gap: 1.2rem;
    }

    .brand-intimacy__flow {
        min-height: 28px;
    }

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

    .about-hero-metrics li {
        text-align: center;
    }

    .about-story__card {
        padding: 1.4rem;
    }

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

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

    .about-cta__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-wide {
        width: 100%;
    }

    .contact-method-group {
        padding: 1rem;
    }

    .contact-method-options {
        gap: 0.65rem;
    }

    .contact-method-option {
        min-width: 100%;
        justify-content: flex-start;
    }

    .contact-method-option__text strong {
        font-size: 1rem;
    }

    .contact-method-option__text small {
        font-size: 0.8rem;
    }

    .service-choice-group {
        padding: 1rem;
    }

    .service-choice-options {
        gap: 0.65rem;
    }

    .service-choice-option {
        min-width: 100%;
        justify-content: flex-start;
    }

    .service-choice-option__text strong {
        font-size: 1rem;
    }

    .service-choice-option__text small {
        font-size: 0.82rem;
    }

    .brand-intimacy__flow::before {
        height: 32%;
    }

    .brand-intimacy__description,
    .brand-intimacy__quote {
        font-size: 1rem;
    }

    .brand-intimacy__eyebrow {
        font-size: 0.75rem;
        letter-spacing: 0.14em;
    }

    #brand-intimacy-title {
        font-size: clamp(1.6rem, 4vw, 2.1rem);
    }

    .site-header {
        overflow: visible;
    }

    .site-header .container {
        padding: 0.5rem 0;
    }

    .site-header:hover .container,
    .site-header:focus-within .container {
        padding: 0.85rem 0;
    }

    .site-header:hover .container,
    .site-header:focus-within .container {
        padding: 0.9rem 0;
    }

    .nav-toggle {
        display: inline-flex;
        color: var(--color-accent);
    }

    .site-nav ul {
        position: absolute;
        top: calc(100% + 0.6rem);
        right: 0.75rem;
        flex-direction: column;
        background: var(--color-surface);
        border-radius: var(--radius-md);
        padding: 2.45rem 1.75rem 2.6rem;
        box-shadow: var(--shadow-medium);
        border: 1px solid var(--color-border);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
        transition: opacity 0.3s ease, transform 0.3s ease;
        gap: 0.95rem;
        width: min(90vw, 360px);
    }

    .site-nav ul.active {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .site-nav li {
        width: 100%;
    }

    .site-nav a:focus-visible,
    .site-nav a:hover {
        background: rgba(255, 240, 210, 0.92);
        color: var(--color-primary-dark);
    }

    .site-nav a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1.2rem;
        font-size: clamp(1.32rem, 3.6vw, 1.46rem);
        line-height: 1.18;
        color: var(--color-accent);
        width: 100%;
        padding: 1.12rem 1.35rem;
        border-radius: 1.25rem;
        background: rgba(255, 255, 255, 0.78);
        transition: background 0.25s ease, color 0.25s ease;
    }

    .site-nav a::after {
        display: inline-flex;
        position: static;
        opacity: 1;
        transform: none;
        background: none;
        border: none;
        box-shadow: none;
        padding: 0;
        font-size: clamp(1.14rem, 3vw, 1.28rem);
        font-weight: 500;
        color: rgba(55, 33, 0, 0.78);
        letter-spacing: 0.025em;
    }

    .site-nav .nav-item--contact a {
        background: linear-gradient(120deg, rgba(255, 203, 126, 0.98) 0%, rgba(255, 168, 78, 0.98) 50%, rgba(255, 214, 150, 0.98) 100%);
        color: #ffffff !important;
        border: 1px solid rgba(255, 180, 82, 0.6);
        background-size: 220% 100%;
        animation: contact-glimmer 2.8s ease-in-out infinite;
        font-size: clamp(1.36rem, 3.9vw, 1.58rem);
        padding: 1.2rem 1.45rem;
        box-shadow: 0 16px 38px rgba(255, 160, 54, 0.3);
        font-weight: 800;
        letter-spacing: 0.02em;
        text-shadow: 0 2px 6px rgba(40, 22, 0, 0.48), 0 0 10px rgba(0, 0, 0, 0.2);
        transition: background 0.35s ease, color 0.35s ease, box-shadow 0.35s ease;
    }

    .site-nav .nav-item--contact a::after {
        color: #ffffff !important;
        font-size: clamp(1.2rem, 3.5vw, 1.38rem);
        font-weight: 700;
        text-shadow: 0 2px 5px rgba(40, 22, 0, 0.44);
    }

    .site-nav .nav-item--contact a:focus-visible,
    .site-nav .nav-item--contact a:hover {
        background: linear-gradient(120deg, rgba(255, 214, 150, 0.98) 0%, rgba(255, 172, 72, 0.98) 45%, rgba(255, 221, 170, 1) 100%);
        color: #ffffff !important;
        text-shadow: 0 2px 6px rgba(40, 22, 0, 0.5);
        box-shadow: 0 18px 42px rgba(255, 150, 38, 0.36);
    }

    .brand-intimacy {
        padding: 3.2rem 0 3.6rem;
    }

    .brand-intimacy__intro {
        gap: 0.8rem;
    }

    .brand-intimacy__card {
        padding: 1.4rem;
        border-radius: 22px;
    }

    .site-nav ul.active {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .nav-divider-right {
        padding-right: 0;
    }

    .nav-divider-right::after {
        display: none;
    }

    .hero-content {
        text-align: center;
        gap: 2.5rem;
    }

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

    .hero-label {
        margin-inline: auto;
    }

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

    .hero-tags {
        justify-content: center;
    }

    .hero-highlight {
        text-align: left;
        align-items: stretch;
    }

    .hero-metrics {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }

    .hero-metrics li {
        align-items: center;
        text-align: center;
    }

    .service-grid {
        gap: 1.5rem;
    }

    .service-card {
        padding: 2rem;
        display: flex;
        flex-direction: column;
        gap: 0.85rem;
    }

    .service-card__head {
        gap: 0.85rem;
    }

    .service-card .service-icon {
        width: 3.4rem;
        height: 3.4rem;
    }

    .service-card h3 {
        text-align: left;
    }

    .service-card ul {
        margin: 0;
    }

    .services-cta {
        margin-top: 2rem;
    }

    .services-cta .btn {
        width: 100%;
        padding: 0.9rem 1.6rem;
    }

    .contact-intro {
        justify-items: center;
        text-align: center;
    }

    .contact-copy {
        max-width: 100%;
    }

    .contact-detail {
        justify-content: center;
    }

    .contact-detail dt {
        min-width: auto;
    }

    .contact-channels {
        justify-content: center;
    }

    .contact-form {
        padding: 2.1rem 1.6rem;
        border-radius: 1.45rem;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 1.1rem;
    }

    .form-agreement {
        align-items: flex-start;
        flex-direction: column;
    }

    .form-checkbox {
        max-width: 100%;
    }

    .process-flow,
    .sprint-grid,
    .reporting-layout {
        grid-template-columns: 1fr;
    }

    .process-flow__item,
    .sprint-card,
    .reporting-card {
        padding: 1.6rem;
    }

    .service-modules,
    .deliverable-grid,
    .addon-grid,
    .collab-grid {
        grid-template-columns: 1fr;
    }

    .module-card,
    .addon-card,
    .deliverable-card,
    .collab-card {
        padding: 1.6rem;
    }

    .process-steps {
        gap: 1.4rem;
    }

    .process-step__header {
        align-items: flex-start;
        gap: 0.75rem;
    }

    .process-step__header h3 {
        font-size: 1.05rem;
    }


    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 1.2rem;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .pricing-actions {
        width: 100%;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: stretch;
        gap: 0.55rem;
    }

    .pricing-actions .btn {
        flex: 1 1 calc(50% - 0.55rem);
        min-width: 0;
        margin: 0;
        padding: 0.58rem 0.85rem;
        min-height: 2.35rem;
        border-radius: 1.15rem;
    }

    .pricing-more {
        margin-top: 1.9rem;
    }

    .pricing-more .btn {
        width: 100%;
        padding: 0.9rem 1.6rem;
    }

    .process-cta {
        margin-top: 1.9rem;
    }

    .process-cta .btn {
        width: 100%;
        padding: 0.85rem 1.5rem;
    }

    .cta-actions {
        flex-direction: column;
    }

    .cta-actions .btn {
        width: 100%;
    }

    .comparison-table-wrapper table {
        min-width: 520px;
    }

    .comparison-table-wrapper th,
    .comparison-table-wrapper td {
        padding: 1rem 1.1rem;
    }

    .faq-list {
        grid-template-columns: 1fr;
    }

    .pricing-cta-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .pricing-cta-actions .btn {
        width: 100%;
    }

    .hero-metrics {
        gap: 1.2rem;
        justify-content: center;
        text-align: center;
    }

    .hero-visual img,
    .hero-visual video {
        width: clamp(280px, 80vw, 560px);
        max-height: min(55vh, 520px);
    }

    .portfolio-filters {
        gap: 0.5rem;
    }

    .portfolio-filters .filter-button {
        flex: 1 1 calc(50% - 0.5rem);
        text-align: center;
    }

    .testimonial-list,
    .testimonial-list--highlight {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .client-brands__list {
        gap: 0.8rem;
        font-size: 0.95rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pricing-card {
        min-height: auto;
    }

    .pricing-actions {
        flex-direction: row;
    }

    .contact-intro {
        text-align: center;
    }

    .contact-channels {
        flex-direction: column;
        gap: 0.75rem;
    }

    .footer-bottom .container {
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 560px) {
    .container {
        width: min(100% - 2rem, var(--max-width));
    }

    .site-header .btn-outline {
        display: none;
    }

    .site-header .container {
        padding: 0.42rem 0;
    }

    .site-header:hover .container,
    .site-header:focus-within .container {
        padding: 0.74rem 0;
    }

    .hero-hashtags {
        text-align: center;
        font-size: 0.88rem;
        margin: 0.3rem 0 1.4rem;
        letter-spacing: 0.02em;
        word-spacing: 0.25rem;
        font-weight: 500;
    }

    .hero-title {
        font-size: clamp(1.9rem, 5vw, 2.3rem);
    }

    .hero-lead {
        font-size: 1.08rem;
        line-height: 1.55;
    }

    .hero-description {
        font-size: 0.98rem;
        line-height: 1.7;
        text-align: center;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 0.7rem;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-tags {
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.45rem 0.6rem;
    }

    .hero-tags span {
        padding: 0.42rem 0.9rem;
        font-size: 0.86rem;
    }

    .channel {
        width: 100%;
        justify-content: center;
    }

    .contact-form {
        padding: 1.85rem 1.35rem;
        border-radius: 1.3rem;
    }

    .contact-method-group {
        padding: 0.9rem 0.95rem;
        gap: 0.8rem;
    }

    .contact-method-option {
        padding: 0.7rem 0.95rem;
    }

    .contact-method-option__text {
        align-items: flex-start;
    }

    .contact-method-option__text strong {
        font-size: 0.95rem;
    }

    .contact-method-option__text small {
        font-size: 0.78rem;
    }

    .service-choice-group {
        padding: 0.9rem 0.95rem;
        gap: 0.8rem;
    }

    .service-choice-option {
        padding: 0.68rem 0.9rem;
    }

    .service-choice-option__text {
        align-items: flex-start;
    }

    .service-choice-option__text strong {
        font-size: 0.94rem;
    }

    .service-choice-option__text small {
        font-size: 0.76rem;
    }

    .form-agreement {
        gap: 0.9rem;
    }

    .hero {
        padding-top: 2.75rem;
    }

    .hero-video-wrapper {
        padding: 0.85rem;
    }

    .hero-visual img,
    .hero-visual video {
        width: 100%;
        aspect-ratio: 16 / 9;
        height: auto;
        max-height: none;
        border-radius: 24px;
    }

    .hero-hover-hint {
        top: 0.7rem;
        left: 0.7rem;
        bottom: auto;
        transform: none;
        opacity: 1;
        padding: 0.5rem 1.15rem;
        font-size: 0.85rem;
        border-radius: 999px;
        box-shadow: 0 12px 28px rgba(31, 31, 31, 0.16);
    }

    .brand-intimacy__preamble {
        gap: 0.55rem;
    }

    .brand-intimacy__preamble-eyebrow {
        font-size: 0.9rem;
        letter-spacing: 0.14em;
    }

    .brand-intimacy__preamble-title {
        font-size: clamp(1.8rem, 5.2vw, 2.4rem);
    }

    .brand-intimacy__preamble-subtitle {
        font-size: clamp(1.3rem, 4.8vw, 1.9rem);
    }

    #brand-intimacy-title {
        font-size: clamp(1.55rem, 4.6vw, 2rem);
    }

    .brand-intimacy__title-sub {
        font-size: clamp(0.95rem, 4vw, 1.22rem);
    }

    .brand-intimacy__quote {
        font-size: 0.96rem;
        line-height: 1.7;
    }

    .brand-intimacy__card--full {
        padding: 1.35rem;
        gap: 1rem;
    }

    .brand-intimacy__pillar p {
        font-size: 0.95rem;
        line-height: 1.65;
    }

    .brand-intimacy__flow {
        min-height: 22px;
    }

    .brand-intimacy__flow::before {
        display: none;
    }

    .brand-intimacy__cta {
        margin-top: 1.9rem;
    }

    .about-hero-metrics li {
        padding: 1.2rem;
    }

    .about-story__card h3 {
        font-size: 1.04rem;
    }

    .about-story__card p,
    .promise-card p,
    .about-approach__steps p,
    .proof-card p {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .promise-card {
        padding: 1.9rem 1.5rem;
    }

    .about-cta__actions .btn {
        width: 100%;
    }

    .pricing-card.highlighted {
        transform: none;
    }

    .contact-form {
        padding: 1.8rem;
    }

    .footer-bottom .container {
        flex-direction: column;
        align-items: flex-start;
    }
}
