/* Creativity Digital Marketing and Media styles */

/* ── TOKENS ── */
:root {
    --blue-50:  #eef4ff;
    --blue-100: #d9e6ff;
    --blue-200: #b3cdff;
    --blue-300: #7aabff;
    --blue-400: #4a8dff;
    --blue-500: #2b6ff6;
    --blue-600: #1a56db;
    --blue-700: #1445b5;
    --blue-800: #0f3490;
    --blue-900: #0a2463;

    --navy-950: #06101f;
    --navy-900: #0b1a33;
    --navy-800: #0f2240;
    --navy-700: #152d52;

    --white:    #ffffff;
    --gray-50:  #f7f8fa;
    --gray-100: #eef0f4;
    --gray-200: #dde1e8;
    --gray-300: #c1c7d2;
    --gray-400: #9aa2b1;
    --gray-500: #6b7486;
    --gray-600: #4a5264;
    --gray-700: #343b4d;
    --gray-800: #1f2533;
    --gray-900: #111520;

    --font-heading: 'Space Grotesk', sans-serif;
    --font-body:    'DM Sans', sans-serif;

    --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

    --shadow-sm:  0 1px 3px rgba(0,0,0,.06);
    --shadow-md:  0 4px 16px rgba(0,0,0,.08);
    --shadow-lg:  0 12px 40px rgba(0,0,0,.10);
    --shadow-xl:  0 24px 60px rgba(0,0,0,.12);
    --shadow-blue: 0 8px 32px rgba(42,111,246,.25);

    --radius-sm:  8px;
    --radius-md:  14px;
    --radius-lg:  20px;
    --radius-xl:  28px;
    --radius-full: 9999px;
}

/* ── RESET ── */
*,*::before,*::after { margin:0;padding:0;box-sizing:border-box; }
html { scroll-behavior:smooth; scroll-padding-top:90px; }
body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    color: var(--gray-600);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img { max-width:100%;height:auto;display:block; }
a { text-decoration:none;color:inherit;transition:color .25s; }
ul,ol { list-style:none; }
button { font-family:inherit; }

/* ── UTILITIES ── */
.container { max-width:1200px;margin:0 auto;padding:0 28px; }
.section { padding:120px 0; }

.text-blue { color: var(--blue-500); }
.text-gradient {
    background: linear-gradient(135deg, var(--blue-400) 0%, var(--blue-600) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── PLACEHOLDER IMAGES ── */
.ph-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background:
        radial-gradient(ellipse at 30% 40%, rgba(42,111,246,.08) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 60%, rgba(42,111,246,.06) 0%, transparent 60%),
        linear-gradient(145deg, var(--gray-50) 0%, var(--blue-50) 100%);
    border: 1.5px dashed var(--blue-200);
    border-radius: inherit;
    position: relative;
}

.ph-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background:
        linear-gradient(135deg, var(--blue-100) 0%, var(--blue-50) 100%);
    border-color: var(--blue-200);
}

.ph-process {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue-100), var(--blue-50));
    border-color: var(--blue-200);
}

.ph-logo {
    width: 100px;
    height: 28px;
    border-radius: 6px;
    background: var(--gray-100);
    border-color: var(--gray-200);
}

.ph-social {
    width: 22px;
    height: 22px;
    border-radius: 4px;
    background: transparent;
    border-color: rgba(255,255,255,.25);
}

/* ── BUTTONS ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: .925rem;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all .3s var(--ease-out);
    white-space: nowrap;
}
.btn--sm  { padding: 10px 22px; font-size:.85rem; }
.btn--lg  { padding: 16px 36px; }
.btn--full { width:100%; }

.btn--primary {
    background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
    color: var(--white);
    box-shadow: var(--shadow-blue);
}
.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(42,111,246,.35);
    background: linear-gradient(135deg, var(--blue-400), var(--blue-600));
}

.btn--ghost {
    background: transparent;
    color: var(--gray-700);
    border: 1.5px solid var(--gray-200);
}
.btn--ghost:hover {
    border-color: var(--blue-400);
    color: var(--blue-600);
    transform: translateY(-2px);
}

/* ── SECTION HEADER ── */
.section__header { text-align:center; margin-bottom:64px; }
.section__tag {
    display: inline-block;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .6px;
    text-transform: uppercase;
    background: var(--blue-50);
    color: var(--blue-600);
    border: 1px solid var(--blue-100);
    margin-bottom: 20px;
}
.section__header h2,
.why__left h2,
.contact__left h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--gray-900);
    margin-bottom: 16px;
}
.section__sub {
    font-size: 1.1rem;
    color: var(--gray-500);
    max-width: 560px;
    margin: 0 auto;
}

/* ══════════════════════════════════════
   NAVBAR
   ══════════════════════════════════════ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 18px 0;
    transition: all .35s var(--ease-out);
}
.nav.scrolled {
    padding: 12px 0;
    background: rgba(255,255,255,.88);
    backdrop-filter: blur(16px) saturate(1.4);
    -webkit-backdrop-filter: blur(16px) saturate(1.4);
    border-bottom: 1px solid rgba(0,0,0,.05);
    box-shadow: 0 1px 12px rgba(0,0,0,.04);
}
.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav__brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
}
.nav__logo-mark {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .95rem;
}
.nav__links {
    display: flex;
    align-items: center;
    gap: 36px;
}
.nav__links a:not(.btn) {
    font-size: .875rem;
    font-weight: 500;
    color: var(--gray-600);
    position: relative;
}
.nav__links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--blue-500);
    border-radius: 2px;
    transition: width .3s var(--ease-out);
}
.nav__links a:not(.btn):hover { color: var(--blue-600); }
.nav__links a:not(.btn):hover::after { width: 100%; }

.nav__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}
.nav__burger span {
    width: 22px;
    height: 2px;
    background: var(--gray-700);
    border-radius: 2px;
    transition: all .3s;
}
.nav__burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav__burger.open span:nth-child(2) { opacity:0; }
.nav__burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ══════════════════════════════════════
   HERO
   ══════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 80px;
    overflow: hidden;
    background: var(--navy-950);
}
.hero__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
}
.hero__glow--1 {
    width: 600px;
    height: 600px;
    background: rgba(42,111,246,.18);
    top: -200px;
    right: -100px;
}
.hero__glow--2 {
    width: 500px;
    height: 500px;
    background: rgba(42,111,246,.10);
    bottom: -200px;
    left: -150px;
}
.hero__grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}
.hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}
.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    background: rgba(42,111,246,.12);
    border: 1px solid rgba(42,111,246,.2);
    border-radius: var(--radius-full);
    font-size: .8rem;
    font-weight: 500;
    color: var(--blue-300);
    margin-bottom: 28px;
}
.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--blue-400);
    border-radius: 50%;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%,100% { box-shadow: 0 0 0 0 rgba(74,141,255,.5); }
    50%     { box-shadow: 0 0 0 6px rgba(74,141,255,0); }
}
.hero__content h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 5vw, 3.75rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 24px;
}
.hero__sub {
    font-size: 1.15rem;
    color: var(--gray-400);
    max-width: 480px;
    margin-bottom: 36px;
    line-height: 1.7;
}
.hero__actions {
    display: flex;
    gap: 14px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}
.hero .btn--ghost {
    border-color: rgba(255,255,255,.15);
    color: var(--gray-300);
}
.hero .btn--ghost:hover {
    border-color: var(--blue-400);
    color: var(--white);
}

.hero__proof {
    display: flex;
    align-items: center;
    gap: 14px;
}
.hero__proof p { font-size:.88rem; color:var(--gray-400); }
.hero__proof strong { color:var(--gray-200); }
.hero__avatars { display:flex; }
.hero__avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--navy-950);
    margin-left: -10px;
    overflow: hidden;
    background: var(--navy-700);
}
.hero__avatar:first-child { margin-left:0; }
.hero__avatar .ph-img {
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue-800), var(--blue-600));
}
.hero__avatar--count {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .7rem;
    font-weight: 700;
    color: var(--white);
    background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
}

/* Hero visual area */
.hero__visual-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / .85;
}
.hero__main-img {
    position: absolute;
    inset: 10%;
    border-radius: var(--radius-xl);
    overflow: hidden;
}
.hero__main-img .ph-img {
    border-radius: var(--radius-xl);
    background:
        radial-gradient(ellipse at 40% 40%, rgba(42,111,246,.15) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 70%, rgba(42,111,246,.08) 0%, transparent 50%),
        linear-gradient(145deg, var(--navy-800) 0%, var(--navy-900) 100%);
    border-color: rgba(42,111,246,.2);
}

.hero__float {
    position: absolute;
    border-radius: var(--radius-lg);
    overflow: hidden;
    z-index: 3;
}
.hero__float .ph-img {
    border-radius: var(--radius-lg);
    background:
        linear-gradient(135deg, rgba(42,111,246,.12), rgba(42,111,246,.06)),
        var(--navy-800);
    border-color: rgba(42,111,246,.15);
}
.hero__float--1 {
    width: 100px;
    height: 100px;
    top: 0;
    left: 5%;
    animation: float 6s ease-in-out infinite;
}
.hero__float--2 {
    width: 80px;
    height: 80px;
    top: 10%;
    right: 2%;
    animation: float 5s ease-in-out infinite 1s;
}
.hero__float--3 {
    width: 90px;
    height: 90px;
    bottom: 8%;
    left: 2%;
    animation: float 7s ease-in-out infinite .5s;
}
@keyframes float {
    0%,100% { transform: translateY(0); }
    50%     { transform: translateY(-14px); }
}

.hero__stat-card {
    position: absolute;
    z-index: 4;
    padding: 14px 20px;
    border-radius: var(--radius-md);
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,.1);
}
.hero__stat-card--1 { bottom:20%; right:0; }
.hero__stat-card--2 { top:30%; left:0; }
.hero__stat-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--blue-300);
}
.hero__stat-label {
    font-size: .75rem;
    color: var(--gray-400);
}

.hero__scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}
.scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, var(--blue-400), transparent);
    animation: scrollHint 2s ease-in-out infinite;
}
@keyframes scrollHint {
    0%   { opacity:.6; transform:scaleY(1); }
    50%  { opacity:1;  transform:scaleY(.5); transform-origin:top; }
    100% { opacity:.6; transform:scaleY(1); }
}

/* ══════════════════════════════════════
   MARQUEE
   ══════════════════════════════════════ */
.marquee {
    padding: 28px 0;
    background: var(--gray-50);
    border-top: 1px solid var(--gray-100);
    border-bottom: 1px solid var(--gray-100);
    overflow: hidden;
}
.marquee__track {
    display: flex;
    gap: 32px;
    align-items: center;
    width: max-content;
    animation: scroll 25s linear infinite;
}
.marquee__track span {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 500;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 2px;
    white-space: nowrap;
}
.marquee__dot {
    width: 6px;
    height: 6px;
    background: var(--blue-400);
    border-radius: 50%;
    flex-shrink: 0;
}
@keyframes scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ══════════════════════════════════════
   SERVICES
   ══════════════════════════════════════ */
.services { background: var(--white); }

.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.srv-card {
    position: relative;
    padding: 36px 32px;
    border-radius: var(--radius-lg);
    background: var(--white);
    border: 1px solid var(--gray-100);
    transition: all .35s var(--ease-out);
    overflow: hidden;
}
.srv-card:hover {
    border-color: var(--blue-200);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.srv-card__icon { margin-bottom:20px; }
.srv-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 10px;
}
.srv-card p {
    font-size: .92rem;
    color: var(--gray-500);
    line-height: 1.65;
}
.srv-card__num {
    position: absolute;
    top: 24px;
    right: 28px;
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gray-100);
    line-height: 1;
}
.srv-card:hover .srv-card__num { color: var(--blue-100); }

.srv-card--accent {
    background: linear-gradient(135deg, var(--blue-600), var(--blue-800));
    border-color: transparent;
    grid-column: span 2;
}
.srv-card--accent h3 { color: var(--white); }
.srv-card--accent p  { color: var(--blue-200); }
.srv-card--accent .srv-card__num { color: rgba(255,255,255,.1); }
.srv-card--accent .ph-icon {
    background: rgba(255,255,255,.15);
    border-color: rgba(255,255,255,.2);
}
.srv-card--accent:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(26,86,219,.35);
    border-color: transparent;
}

/* ══════════════════════════════════════
   WHY US
   ══════════════════════════════════════ */
.why {
    background: var(--gray-50);
    position: relative;
    overflow: hidden;
}
.why__bg-shape {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(42,111,246,.06), transparent 70%);
    top: -150px;
    right: -150px;
    pointer-events: none;
}
.why__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.why__left .section__tag { margin-bottom:20px; }
.why__desc {
    font-size: 1.05rem;
    color: var(--gray-500);
    margin-bottom: 32px;
    line-height: 1.7;
}
.why__right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.why__card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 24px 28px;
    border-radius: var(--radius-md);
    background: var(--white);
    border: 1px solid var(--gray-100);
    transition: all .3s var(--ease-out);
}
.why__card:hover {
    border-color: var(--blue-200);
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}
.why__card-icon { flex-shrink:0; }
.why__card h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 4px;
}
.why__card p {
    font-size: .88rem;
    color: var(--gray-500);
}

/* ══════════════════════════════════════
   PORTFOLIO
   ══════════════════════════════════════ */
.work { background: var(--white); }

.work__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.work__card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--gray-100);
    transition: all .35s var(--ease-out);
}
.work__card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--blue-200);
}
.work__card--wide { grid-column: span 2; }

.work__card-img {
    width: 100%;
    height: 240px;
    overflow: hidden;
}
.work__card-img .ph-img {
    border-radius: 0;
    border: none;
    border-bottom: 1px dashed var(--blue-200);
    background:
        radial-gradient(ellipse at 30% 40%, rgba(42,111,246,.07) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 80%, rgba(42,111,246,.05) 0%, transparent 60%),
        linear-gradient(160deg, var(--gray-50), var(--blue-50));
}
.work__card--wide .work__card-img { height: 260px; }

.work__card-info {
    padding: 28px 28px 32px;
}
.work__card-tag {
    font-size: .75rem;
    font-weight: 600;
    color: var(--blue-600);
    text-transform: uppercase;
    letter-spacing: .8px;
    margin-bottom: 10px;
    display: block;
}
.work__card-info h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-900);
    line-height: 1.35;
    margin-bottom: 16px;
}
.work__card-stats {
    display: flex;
    gap: 32px;
}
.work__card-stats div {
    display: flex;
    flex-direction: column;
}
.work__card-stats strong {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--blue-600);
}
.work__card-stats span {
    font-size: .78rem;
    color: var(--gray-400);
}

/* ══════════════════════════════════════
   PROCESS
   ══════════════════════════════════════ */
.process {
    background: var(--navy-950);
    color: var(--white);
}
.process .section__tag {
    background: rgba(42,111,246,.12);
    color: var(--blue-300);
    border-color: rgba(42,111,246,.2);
}
.process .section__header h2 { color: var(--white); }

.process__track {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: 0 20px;
}
.process__line {
    position: absolute;
    top: 28px;
    left: 60px;
    right: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--blue-800), var(--blue-500), var(--blue-800));
    border-radius: 2px;
}
.process__step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    position: relative;
    z-index: 2;
    max-width: 180px;
}
.process__dot {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy-800);
    border: 2px solid var(--blue-600);
    box-shadow: 0 0 20px rgba(42,111,246,.2);
}
.process__step h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
}
.process__step p {
    font-size: .85rem;
    color: var(--gray-400);
    line-height: 1.55;
}

/* ══════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════ */
.testi { background: var(--gray-50); }

.testi__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 28px;
    align-items: start;
}
.testi__card {
    padding: 36px 32px;
    border-radius: var(--radius-lg);
    background: var(--white);
    border: 1px solid var(--gray-100);
    transition: all .35s var(--ease-out);
}
.testi__card:hover {
    border-color: var(--blue-200);
    box-shadow: var(--shadow-md);
}
.testi__card--featured {
    background: linear-gradient(145deg, var(--blue-600), var(--blue-800));
    border-color: transparent;
}
.testi__card--featured:hover {
    border-color: transparent;
    box-shadow: 0 16px 48px rgba(26,86,219,.3);
}

.testi__quote {
    font-family: var(--font-heading);
    font-size: 3rem;
    line-height: 1;
    color: var(--blue-200);
    margin-bottom: 8px;
}
.testi__card--featured .testi__quote { color: rgba(255,255,255,.3); }

.testi__text {
    font-size: .95rem;
    line-height: 1.7;
    color: var(--gray-600);
    margin-bottom: 28px;
}
.testi__card--featured .testi__text { color: var(--blue-100); }

.testi__author {
    display: flex;
    gap: 14px;
    align-items: center;
    margin-bottom: 20px;
}
.testi__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}
.testi__avatar .ph-img {
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue-200), var(--blue-100));
    border-color: var(--blue-200);
}
.testi__card--featured .testi__avatar .ph-img {
    background: linear-gradient(135deg, var(--blue-400), var(--blue-800));
    border-color: rgba(255,255,255,.2);
}

.testi__author strong {
    display: block;
    font-size: .9rem;
    color: var(--gray-900);
}
.testi__author span {
    font-size: .8rem;
    color: var(--gray-400);
}
.testi__card--featured .testi__author strong { color: var(--white); }
.testi__card--featured .testi__author span   { color: var(--blue-200); }

.testi__logo { margin-top:4px; }
.testi__card--featured .ph-logo {
    background: rgba(255,255,255,.1);
    border-color: rgba(255,255,255,.15);
}

/* ══════════════════════════════════════
   CONTACT
   ══════════════════════════════════════ */
.contact {
    background: var(--white);
    position: relative;
    overflow: hidden;
}
.contact__glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(42,111,246,.06), transparent 70%);
    bottom: -200px;
    left: -200px;
    pointer-events: none;
}
.contact__layout {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: start;
}
.contact__left .section__tag { margin-bottom:20px; }
.contact__desc {
    font-size: 1.05rem;
    color: var(--gray-500);
    margin-bottom: 32px;
    line-height: 1.7;
}

.contact__visual {
    width: 100%;
    height: 200px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-bottom: 32px;
}
.contact__visual .ph-img {
    border-radius: var(--radius-xl);
    background:
        radial-gradient(ellipse at 30% 50%, rgba(42,111,246,.08) 0%, transparent 50%),
        linear-gradient(145deg, var(--gray-50), var(--blue-50));
}

.contact__info-row {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.contact__info-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: .9rem;
    color: var(--gray-600);
}
.contact__info-item svg {
    color: var(--blue-500);
    flex-shrink: 0;
}

/* Form */
.contact__form {
    padding: 40px;
    border-radius: var(--radius-xl);
    background: var(--white);
    border: 1px solid var(--gray-100);
    box-shadow: var(--shadow-lg);
}
.form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form__group {
    margin-bottom: 20px;
}
.form__group label {
    display: block;
    font-size: .82rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 7px;
}
.form__group input,
.form__group select,
.form__group textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: .9rem;
    color: var(--gray-800);
    background: var(--gray-50);
    transition: all .25s;
}
.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
    outline: none;
    border-color: var(--blue-400);
    box-shadow: 0 0 0 3px var(--blue-100);
    background: var(--white);
}
.form__group textarea { resize:vertical; }
.form__group select { cursor:pointer; }

/* ══════════════════════════════════════
   FOOTER
   ══════════════════════════════════════ */
.footer {
    background: var(--navy-950);
    padding: 80px 0 32px;
    color: var(--gray-400);
}
.footer__top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 60px;
}
.footer__brand .nav__brand {
    margin-bottom: 16px;
    color: var(--white);
}
.footer__brand > p {
    font-size: .9rem;
    line-height: 1.65;
    margin-bottom: 24px;
}
.footer__social {
    display: flex;
    gap: 12px;
}
.footer__social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    transition: all .25s;
}
.footer__social a:hover {
    background: var(--blue-600);
    border-color: var(--blue-600);
    transform: translateY(-2px);
}
.footer__col h5 {
    font-family: var(--font-heading);
    font-size: .9rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
}
.footer__col a {
    display: block;
    font-size: .875rem;
    color: var(--gray-400);
    padding: 5px 0;
    transition: color .25s, transform .25s;
}
.footer__col a:hover {
    color: var(--blue-400);
    transform: translateX(4px);
}
.footer__bottom {
    border-top: 1px solid rgba(255,255,255,.06);
    padding-top: 28px;
    text-align: center;
    font-size: .82rem;
    color: var(--gray-500);
}

/* ══════════════════════════════════════
   ANIMATIONS
   ══════════════════════════════════════ */
[data-animate] {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
[data-animate].is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ══════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════ */
@media (max-width: 1024px) {
    .hero__inner           { grid-template-columns:1fr; text-align:center; }
    .hero__sub             { margin:0 auto 36px; }
    .hero__actions         { justify-content:center; }
    .hero__proof           { justify-content:center; }
    .hero__visual          { max-width:480px; margin:0 auto; }

    .services__grid        { grid-template-columns:repeat(2,1fr); }
    .srv-card--accent      { grid-column:span 2; }

    .why__layout           { grid-template-columns:1fr; gap:48px; }
    .why__left             { text-align:center; }
    .why__left .btn        { margin:0 auto; }

    .work__grid            { grid-template-columns:1fr 1fr; }
    .work__card--wide      { grid-column:span 1; }

    .testi__grid           { grid-template-columns:1fr 1fr; }
    .testi__card--featured { grid-column:span 2; }

    .contact__layout       { grid-template-columns:1fr; gap:48px; }
    .footer__top           { grid-template-columns:1fr 1fr; }
}

@media (max-width: 768px) {
    .section { padding:80px 0; }

    .nav__links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 24px 28px;
        gap: 18px;
        border-bottom: 1px solid var(--gray-100);
        box-shadow: var(--shadow-lg);
    }
    .nav__links.open { display:flex; }
    .nav__burger { display:flex; }

    .hero { padding:120px 0 60px; min-height:auto; }
    .hero__content h1 { font-size:2rem; }
    .hero__visual-frame { aspect-ratio:1/0.7; }

    .services__grid { grid-template-columns:1fr; }
    .srv-card--accent { grid-column:span 1; }

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

    .process__track { flex-direction:column; gap:40px; align-items:center; padding:0; }
    .process__line  { display:none; }

    .testi__grid           { grid-template-columns:1fr; }
    .testi__card--featured { grid-column:span 1; }

    .form__row { grid-template-columns:1fr; }
    .footer__top { grid-template-columns:1fr; gap:32px; }
}

@media (max-width: 480px) {
    .container { padding:0 18px; }
    .hero__content h1 { font-size:1.75rem; }
    .hero__actions { flex-direction:column; }
    .hero__actions .btn { width:100%; }
    .contact__form { padding:24px 20px; }
    .work__card-stats { gap:20px; }
}

/* Creativity brand refresh */
.nav__brand-logo {
    width: 172px;
    max-height: 58px;
    object-fit: contain;
}

.footer__brand-logo {
    width: 210px;
    max-height: 74px;
    object-fit: contain;
}

.lang-toggle {
    min-width: 46px;
    height: 36px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-full);
    background: var(--white);
    color: var(--blue-700);
    font-weight: 700;
    cursor: pointer;
    transition: all .25s var(--ease-out);
}

.lang-toggle:hover {
    border-color: var(--blue-400);
    box-shadow: var(--shadow-sm);
    transform: translateY(-1px);
}

.hero__signals {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero__signals span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 7px 14px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--radius-full);
    background: rgba(255,255,255,.05);
    color: var(--gray-300);
    font-size: .84rem;
    font-weight: 600;
}

.about {
    background: var(--white);
}

.about__layout {
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    gap: 72px;
    align-items: center;
}

.about__content h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--gray-900);
    margin-bottom: 22px;
}

.about__content p {
    color: var(--gray-500);
    font-size: 1.02rem;
    line-height: 1.75;
    margin-bottom: 16px;
}

.about__content p:last-child {
    margin-bottom: 0;
}

.about__visual {
    min-height: 420px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.vision,
.values {
    background: var(--gray-50);
}

.mission__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.mission__card {
    padding: 38px;
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    background: var(--white);
    transition: all .35s var(--ease-out);
}

.mission__card:hover {
    border-color: var(--blue-200);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.mission__card--accent {
    background: linear-gradient(135deg, var(--blue-600), var(--blue-800));
    border-color: transparent;
}

.mission__icon {
    margin-bottom: 24px;
}

.mission__card > span {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--blue-600);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .6px;
    text-transform: uppercase;
}

.mission__card h3,
.value-card h3 {
    font-family: var(--font-heading);
    color: var(--gray-900);
    font-size: 1.25rem;
    line-height: 1.3;
    margin-bottom: 12px;
}

.mission__card p,
.value-card p {
    color: var(--gray-500);
    line-height: 1.7;
}

.mission__card--accent > span,
.mission__card--accent p {
    color: var(--blue-100);
}

.mission__card--accent h3 {
    color: var(--white);
}

.mission__card--accent .ph-icon {
    background: rgba(255,255,255,.14);
    border-color: rgba(255,255,255,.2);
}

.values__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.value-card {
    padding: 30px 26px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-100);
    background: var(--white);
    transition: all .3s var(--ease-out);
}

.value-card:hover {
    border-color: var(--blue-200);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.value-card img {
    margin-bottom: 22px;
}

.footer__brand .nav__brand {
    display: inline-flex;
}

[dir="rtl"] body {
    font-family: 'Cairo', var(--font-body);
}

[dir="rtl"] .section__tag,
[dir="rtl"] .marquee__track span,
[dir="rtl"] .work__card-tag,
[dir="rtl"] .mission__card > span {
    letter-spacing: 0;
}

[dir="rtl"] .hero__content,
[dir="rtl"] .about__content,
[dir="rtl"] .why__left,
[dir="rtl"] .contact__left,
[dir="rtl"] .footer__brand,
[dir="rtl"] .footer__col,
[dir="rtl"] .srv-card,
[dir="rtl"] .mission__card,
[dir="rtl"] .value-card {
    text-align: right;
}

[dir="rtl"] .hero__sub {
    margin-left: 0;
    margin-right: 0;
}

[dir="rtl"] .hero__actions,
[dir="rtl"] .hero__signals,
[dir="rtl"] .contact__info-item,
[dir="rtl"] .footer__social {
    justify-content: flex-start;
}

[dir="rtl"] .btn svg {
    transform: rotate(180deg);
}

[dir="rtl"] .nav__links a:not(.btn)::after {
    left: auto;
    right: 0;
}

[dir="rtl"] .srv-card__num {
    right: auto;
    left: 28px;
}

[dir="rtl"] .why__card:hover {
    transform: translateX(-4px);
}

[dir="rtl"] .form__group label {
    text-align: right;
}

[dir="rtl"] .form__group input,
[dir="rtl"] .form__group select,
[dir="rtl"] .form__group textarea {
    text-align: right;
}

@media (max-width: 1024px) {
    .about__layout,
    .mission__grid {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .about__content {
        text-align: center;
    }

    .about__visual {
        min-height: 320px;
        max-width: 620px;
        margin: 0 auto;
        width: 100%;
    }

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

    [dir="rtl"] .about__content {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav__brand-logo {
        width: 148px;
        max-height: 50px;
    }

    .lang-toggle {
        width: 100%;
    }

    .hero__signals {
        justify-content: center;
    }

    .mission__card {
        padding: 30px 26px;
    }

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

    [dir="rtl"] .hero__content,
    [dir="rtl"] .why__left,
    [dir="rtl"] .contact__left {
        text-align: center;
    }

    [dir="rtl"] .hero__actions,
    [dir="rtl"] .hero__signals {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .nav__brand-logo {
        width: 132px;
    }

    .footer__brand-logo {
        width: 180px;
    }

    .about__visual {
        min-height: 240px;
    }
}
