:root {
    --red: #e74c3c;
    --red-bright: #f26053;
    --red-dark: #a82721;
    --ink: #0b0c11;
    --surface: #12141b;
    --surface-soft: #181b24;
    --paper: #f5f2ed;
    --paper-muted: #e6e0d8;
    --text: #f7f7f9;
    --muted: #969dac;
    --line: rgba(255, 255, 255, 0.09);
    --radius-lg: 28px;
    --radius-md: 18px;
    --shadow: 0 30px 80px rgba(0, 0, 0, 0.36);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;
    color: var(--text);
    background: var(--ink);
    font-family: "Cairo", sans-serif;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

body::selection {
    color: #fff;
    background: var(--red);
}

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

button,
a {
    -webkit-tap-highlight-color: transparent;
}

img {
    max-width: 100%;
}

.container {
    width: min(1180px, calc(100% - 2rem));
    margin-inline: auto;
}

.section {
    padding: clamp(4.5rem, 9vw, 8rem) 0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid transparent;
    background: rgba(11, 12, 17, 0.72);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transition: 0.25s ease;
}

.site-header.scrolled {
    border-bottom-color: var(--line);
    background: rgba(11, 12, 17, 0.92);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
}

.header-inner {
    width: min(1280px, calc(100% - 2rem));
    min-height: 76px;
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.brand img,
.footer-brand img {
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 15px;
    object-fit: cover;
    box-shadow: 0 10px 28px rgba(231, 76, 60, 0.16);
}

.brand span,
.footer-brand span {
    display: grid;
}

.brand strong,
.footer-brand strong {
    color: #fff;
    font-size: 1rem;
    line-height: 1.3;
}

.brand small,
.footer-brand small {
    color: var(--muted);
    font-size: 0.65rem;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.desktop-nav a {
    position: relative;
    padding: 0.65rem 0.9rem;
    border-radius: 10px;
    color: #8f96a5;
    font-size: 0.78rem;
    font-weight: 700;
    transition: 0.2s ease;
}

.desktop-nav a::after {
    content: "";
    position: absolute;
    right: 50%;
    bottom: 0.28rem;
    width: 0;
    height: 2px;
    border-radius: 99px;
    background: var(--red-bright);
    transform: translateX(50%);
    transition: 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
    color: #fff;
    background: rgba(255, 255, 255, 0.035);
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
    width: 22px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.account-action {
    min-height: 42px;
    padding: 0.55rem 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: #d9dce4;
    background: rgba(255, 255, 255, 0.035);
    font-size: 0.73rem;
    font-weight: 700;
    transition: 0.2s ease;
}

.account-action:hover {
    border-color: rgba(231, 76, 60, 0.42);
    color: #fff;
    background: rgba(231, 76, 60, 0.08);
}

.menu-toggle {
    width: 42px;
    height: 42px;
    display: none;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 12px;
    color: #fff;
    background: rgba(255, 255, 255, 0.04);
    cursor: pointer;
}

.mobile-nav {
    width: min(1280px, calc(100% - 2rem));
    margin: 0 auto 0.8rem;
    padding: 0.7rem;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #15171f;
    box-shadow: var(--shadow);
}

.mobile-nav[hidden] {
    display: none;
}

.mobile-nav a {
    display: block;
    padding: 0.75rem 0.85rem;
    border-radius: 10px;
    color: #aab0bd;
    font-size: 0.8rem;
    font-weight: 700;
}

.mobile-nav a:hover,
.mobile-nav a.active {
    color: #fff;
    background: rgba(231, 76, 60, 0.1);
}

.about-hero {
    position: relative;
    min-height: calc(100vh - 76px);
    display: grid;
    align-items: center;
    overflow: hidden;
    background:
        linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
        linear-gradient(145deg, #0b0c11, #11131a 58%, #0b0c11);
    background-size: 52px 52px, 52px 52px, auto;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(5px);
    pointer-events: none;
}

.hero-glow-one {
    width: 560px;
    height: 560px;
    top: -270px;
    right: -180px;
    background: radial-gradient(circle, rgba(231, 76, 60, 0.2), transparent 67%);
}

.hero-glow-two {
    width: 500px;
    height: 500px;
    bottom: -280px;
    left: -100px;
    background: radial-gradient(circle, rgba(56, 91, 138, 0.14), transparent 68%);
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(390px, 0.96fr);
    align-items: center;
    gap: clamp(3rem, 7vw, 7rem);
    padding-block: clamp(4rem, 8vw, 7rem);
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: var(--red-bright);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.section-label::before {
    content: "";
    width: 22px;
    height: 2px;
    border-radius: 99px;
    background: currentColor;
}

.section-label i + * {
    margin-inline-start: 0;
}

.hero-copy .section-label::before {
    display: none;
}

.hero-copy h1 {
    max-width: 700px;
    margin: 1.2rem 0 1.3rem;
    color: #fff;
    font-size: clamp(2.5rem, 6vw, 5.6rem);
    line-height: 1.16;
    letter-spacing: -0.065em;
}

.hero-copy h1 em {
    position: relative;
    color: var(--red-bright);
    font-style: normal;
}

.hero-copy h1 em::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0.15em;
    z-index: -1;
    width: 100%;
    height: 0.16em;
    border-radius: 99px;
    background: rgba(231, 76, 60, 0.16);
    transform: rotate(-1deg);
}

.hero-copy > p {
    max-width: 650px;
    margin: 0;
    color: #9ba2b0;
    font-size: clamp(0.92rem, 1.6vw, 1.08rem);
    line-height: 2;
}

.hero-actions {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.button {
    min-height: 50px;
    padding: 0.8rem 1.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    border: 1px solid transparent;
    border-radius: 12px;
    font-size: 0.78rem;
    font-weight: 800;
    transition: 0.22s ease;
}

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

.button-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--red-bright), var(--red-dark));
    box-shadow: 0 15px 32px rgba(197, 44, 36, 0.25);
}

.button-primary:hover {
    box-shadow: 0 20px 38px rgba(197, 44, 36, 0.34);
}

.button-ghost {
    border-color: var(--line);
    color: #d6dae3;
    background: rgba(255, 255, 255, 0.035);
}

.button-ghost:hover {
    border-color: rgba(255, 255, 255, 0.18);
    color: #fff;
}

.hero-trust {
    margin-top: 2.2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    color: #777f8f;
    font-size: 0.69rem;
    font-weight: 600;
}

.hero-trust i {
    margin-inline-end: 0.3rem;
    color: #43d68a;
}

.hero-visual {
    position: relative;
    min-height: 560px;
    display: grid;
    place-items: center;
}

.visual-ring {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 50%;
}

.ring-one {
    width: 480px;
    height: 480px;
}

.ring-two {
    width: 350px;
    height: 350px;
    border-style: dashed;
    transform: rotate(18deg);
}

.brand-card {
    position: relative;
    z-index: 2;
    width: min(340px, 82%);
    aspect-ratio: 0.78;
    padding: 1.4rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 34px;
    background:
        radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.18), transparent 35%),
        linear-gradient(155deg, #e85043, #9c211d 68%, #6f1716);
    box-shadow: 0 40px 85px rgba(0, 0, 0, 0.42);
    transform: rotate(4deg);
}

.brand-card::after {
    content: "";
    position: absolute;
    inset: 0.6rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 28px;
    pointer-events: none;
}

.brand-card-top {
    position: relative;
    z-index: 1;
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.2em;
}

.brand-card-logo {
    position: relative;
    z-index: 1;
    width: 150px;
    height: 150px;
    margin: auto;
    padding: 7px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 38px;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 45px rgba(73, 7, 7, 0.36);
}

.brand-card-logo img {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 31px;
    object-fit: cover;
}

.brand-card strong,
.brand-card small {
    position: relative;
    z-index: 1;
    display: block;
}

.brand-card strong {
    color: #fff;
    font-size: 1.2rem;
    line-height: 1.4;
}

.brand-card small {
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.68rem;
}

.floating-note {
    position: absolute;
    z-index: 3;
    min-width: 180px;
    padding: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    background: rgba(24, 27, 36, 0.86);
    box-shadow: 0 20px 42px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(14px);
}

.floating-note > i {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: #fff;
    background: rgba(231, 76, 60, 0.18);
}

.floating-note span {
    display: grid;
}

.floating-note strong {
    color: #fff;
    font-size: 0.75rem;
}

.floating-note small {
    color: #7f8796;
    font-size: 0.62rem;
}

.note-quality {
    top: 12%;
    left: -3%;
}

.note-customer {
    right: -3%;
    bottom: 13%;
}

.identity-strip {
    border-block: 1px solid var(--line);
    background: #0f1117;
}

.identity-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.identity-grid > div {
    min-height: 125px;
    padding: 1.2rem;
    display: grid;
    place-content: center;
    text-align: center;
    border-inline-start: 1px solid var(--line);
}

.identity-grid > div:last-child {
    border-inline-start: 0;
}

.identity-grid strong {
    color: #fff;
    font-size: 1.45rem;
}

.identity-grid span {
    color: #737b8a;
    font-size: 0.7rem;
}

.story-section {
    color: #1b1d24;
    background: var(--paper);
}

.story-grid {
    display: grid;
    grid-template-columns: minmax(330px, 0.85fr) minmax(0, 1.15fr);
    align-items: stretch;
    gap: clamp(2rem, 6vw, 6rem);
}

.story-art {
    position: relative;
    min-height: 500px;
    padding: clamp(2rem, 4vw, 3.4rem);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    border-radius: var(--radius-lg);
    color: #fff;
    background:
        radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 0.12), transparent 35%),
        linear-gradient(145deg, #e44b3e, #9d221d);
    box-shadow: 0 30px 65px rgba(86, 29, 25, 0.2);
}

.story-art::after {
    content: "S";
    position: absolute;
    left: -0.08em;
    bottom: -0.3em;
    color: rgba(255, 255, 255, 0.055);
    font-size: 24rem;
    font-weight: 900;
    line-height: 1;
}

.story-year,
.story-art blockquote,
.story-signature {
    position: relative;
    z-index: 1;
}

.story-year {
    display: grid;
}

.story-year span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.74rem;
}

.story-year strong {
    font-size: clamp(3.5rem, 7vw, 6rem);
    line-height: 1;
    letter-spacing: -0.06em;
}

.story-art blockquote {
    margin: auto 0;
    color: #fff;
    font-size: clamp(1.15rem, 2.4vw, 1.65rem);
    font-weight: 700;
    line-height: 1.9;
}

.story-signature {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.7rem;
}

.story-signature span {
    width: 32px;
    height: 1px;
    background: rgba(255, 255, 255, 0.45);
}

.story-copy {
    align-self: center;
}

.story-copy h2,
.section-heading h2,
.process-intro h2 {
    margin: 0.85rem 0 1.3rem;
    color: #171920;
    font-size: clamp(2rem, 4vw, 3.7rem);
    line-height: 1.3;
    letter-spacing: -0.055em;
}

.story-copy > p {
    margin: 0 0 1rem;
    color: #6e7078;
    font-size: 0.91rem;
    line-height: 2;
}

.story-highlight {
    margin-top: 1.7rem;
    padding: 1.2rem;
    display: flex;
    gap: 0.9rem;
    border: 1px solid rgba(31, 33, 41, 0.08);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.6);
}

.story-highlight i {
    color: var(--red);
    font-size: 1.2rem;
}

.story-highlight p {
    margin: 0;
    color: #4f5159;
    font-size: 0.8rem;
    font-weight: 700;
}

.mission-section {
    padding-top: 0;
    color: #fff;
    background: var(--paper);
}

.mission-card {
    position: relative;
    padding: clamp(2rem, 5vw, 4rem);
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
    align-items: center;
    gap: 2rem;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, #171920, #0e0f14);
    box-shadow: var(--shadow);
}

.section-label.light {
    color: #ef7166;
}

.mission-card h2 {
    max-width: 620px;
    margin: 0.8rem 0 0;
    font-size: clamp(2rem, 4vw, 3.6rem);
    line-height: 1.3;
    letter-spacing: -0.055em;
}

.mission-card > p {
    position: relative;
    z-index: 1;
    margin: 0;
    color: #9ca3b1;
    font-size: 0.88rem;
    line-height: 2;
}

.mission-icon {
    position: absolute;
    left: -0.12em;
    bottom: -0.26em;
    color: rgba(231, 76, 60, 0.07);
    font-size: 15rem;
    transform: rotate(-10deg);
}

.values-section {
    background: #0d0f14;
}

.section-heading {
    margin-bottom: 2.5rem;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 2rem;
}

.section-heading h2 {
    margin-bottom: 0;
    color: #fff;
}

.section-heading > p {
    max-width: 440px;
    margin: 0 0 0.4rem;
    color: #858c9b;
    font-size: 0.82rem;
    line-height: 1.9;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.value-card {
    position: relative;
    min-height: 310px;
    padding: 1.5rem;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: linear-gradient(155deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018));
    transition: 0.28s ease;
}

.value-card:hover {
    border-color: rgba(231, 76, 60, 0.28);
    background: linear-gradient(155deg, rgba(231, 76, 60, 0.08), rgba(255, 255, 255, 0.018));
    transform: translateY(-6px);
}

.value-number {
    position: absolute;
    top: 1rem;
    left: 1.2rem;
    color: rgba(255, 255, 255, 0.11);
    font-size: 2.4rem;
    font-weight: 900;
}

.value-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 4.2rem;
    display: grid;
    place-items: center;
    border: 1px solid rgba(231, 76, 60, 0.2);
    border-radius: 15px;
    color: var(--red-bright);
    background: rgba(231, 76, 60, 0.08);
}

.value-card h3 {
    margin: 0 0 0.65rem;
    color: #fff;
    font-size: 1.05rem;
}

.value-card p {
    margin: 0;
    color: #858c9b;
    font-size: 0.75rem;
    line-height: 1.9;
}

.process-section {
    color: #191b22;
    background: var(--paper);
}

.process-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: clamp(2rem, 7vw, 7rem);
}

.process-intro p {
    max-width: 440px;
    color: #747780;
    font-size: 0.84rem;
}

.process-steps {
    display: grid;
}

.process-step {
    padding: 1.4rem 0;
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 1rem;
    border-bottom: 1px solid rgba(24, 26, 33, 0.1);
}

.process-step:first-child {
    padding-top: 0;
}

.process-step > span {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: #fff;
    background: #1a1c23;
    font-size: 0.78rem;
    font-weight: 900;
}

.process-step h3 {
    margin: 0 0 0.22rem;
    font-size: 1.05rem;
}

.process-step p {
    margin: 0;
    color: #777a83;
    font-size: 0.76rem;
}

.about-cta {
    padding-top: 0;
    background: var(--paper);
}

.cta-card {
    padding: clamp(2rem, 5vw, 4rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    border-radius: var(--radius-lg);
    color: #fff;
    background:
        radial-gradient(circle at 0% 100%, rgba(255, 255, 255, 0.12), transparent 34%),
        linear-gradient(135deg, #e44d40, #a92520);
    box-shadow: 0 30px 65px rgba(98, 28, 23, 0.22);
}

.cta-card > div > span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.74rem;
}

.cta-card h2 {
    margin: 0.45rem 0 0;
    font-size: clamp(1.8rem, 4vw, 3rem);
    line-height: 1.35;
    letter-spacing: -0.05em;
}

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

.button-light {
    color: #a92520;
    background: #fff;
}

.instagram-link {
    min-height: 50px;
    padding: 0.75rem 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 12px;
    color: #fff;
    font-size: 0.74rem;
    font-weight: 700;
}

.site-footer {
    padding: 2rem 0;
    border-top: 1px solid var(--line);
    background: #090a0e;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 1.5rem;
}

.footer-brand img {
    width: 40px;
    height: 40px;
    border-radius: 13px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.footer-links a,
.footer-grid > p {
    color: #737a89;
    font-size: 0.68rem;
}

.footer-links a:hover {
    color: #fff;
}

.footer-grid > p {
    margin: 0;
    text-align: left;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.values-grid .reveal:nth-child(2),
.process-steps .reveal:nth-child(2) {
    transition-delay: 0.08s;
}

.values-grid .reveal:nth-child(3),
.process-steps .reveal:nth-child(3) {
    transition-delay: 0.16s;
}

.values-grid .reveal:nth-child(4) {
    transition-delay: 0.24s;
}

@media (max-width: 1000px) {
    .hero-grid {
        grid-template-columns: 1fr 390px;
        gap: 2rem;
    }

    .note-quality {
        left: 0;
    }

    .note-customer {
        right: 0;
    }

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

    .value-card {
        min-height: 260px;
    }

    .value-icon {
        margin-bottom: 2.5rem;
    }
}

@media (max-width: 820px) {
    .desktop-nav {
        display: none;
    }

    .menu-toggle {
        display: grid;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-copy h1,
    .hero-copy > p {
        margin-inline: auto;
    }

    .section-label,
    .hero-actions,
    .hero-trust {
        justify-content: center;
    }

    .hero-visual {
        min-height: 480px;
    }

    .story-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .story-art {
        min-height: 400px;
    }

    .section-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .mission-card {
        grid-template-columns: 1fr;
    }

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

    .identity-grid > div:nth-child(2) {
        border-inline-start: 0;
    }

    .identity-grid > div:nth-child(-n+2) {
        border-bottom: 1px solid var(--line);
    }

    .cta-card,
    .footer-grid {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-grid {
        display: flex;
    }

    .footer-links {
        justify-content: flex-start;
    }

    .footer-grid > p {
        text-align: right;
    }
}

@media (max-width: 560px) {
    .header-inner {
        min-height: 66px;
    }

    .brand img {
        width: 40px;
        height: 40px;
    }

    .brand small,
    .account-action span {
        display: none;
    }

    .account-action {
        width: 42px;
        padding: 0;
        justify-content: center;
    }

    .about-hero {
        min-height: auto;
    }

    .hero-grid {
        padding-block: 3.5rem;
    }

    .hero-copy h1 {
        font-size: clamp(2.3rem, 12vw, 3.7rem);
    }

    .hero-actions .button {
        flex: 1;
    }

    .hero-trust {
        gap: 0.6rem;
    }

    .hero-visual {
        min-height: 390px;
    }

    .ring-one {
        width: 340px;
        height: 340px;
    }

    .ring-two {
        width: 260px;
        height: 260px;
    }

    .brand-card {
        width: 240px;
        border-radius: 26px;
    }

    .brand-card-logo {
        width: 105px;
        height: 105px;
        border-radius: 28px;
    }

    .brand-card-logo img {
        border-radius: 22px;
    }

    .floating-note {
        min-width: 150px;
        padding: 0.58rem;
    }

    .note-quality {
        top: 5%;
    }

    .note-customer {
        bottom: 7%;
    }

    .identity-grid strong {
        font-size: 1.15rem;
    }

    .story-art {
        min-height: 350px;
    }

    .story-art::after {
        font-size: 17rem;
    }

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

    .value-card {
        min-height: 240px;
    }

    .cta-card {
        padding: 2rem 1.3rem;
    }

    .cta-actions,
    .cta-actions > * {
        width: 100%;
    }

    .instagram-link {
        justify-content: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}
