:root {
    --orange: #FF541F;
    --orange-dark: #cc3b15;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: #0a0a0a; color: #fff; overflow-x: hidden; }

/* ── Shell ── */
.about-shell {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 56px;
}
.about-shell--flush {
    padding: 0;
}

/* ══════════════════════════════
   HERO
══════════════════════════════ */
.about-hero {
    padding: 100px 24px 0;
    background: #0a0a0a;
}

.about-hero-card {
    position: relative;
    width: 100%;
    min-height: 420px;
    border-radius: 0 0 28px 28px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: radial-gradient(ellipse at 50% 20%, #0d1117 0%, #020204 60%);
}

/* Wave glow */
.hero-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 75%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.wave-layer {
    position: absolute;
    bottom: -25%;
    left: 50%;
    transform: translateX(-50%);
    width: 120%;
    height: 100%;
    transition: left 0.3s ease-out, transform 0.3s ease-out;
}

.wave-layer svg { width: 100%; height: 100%; display: block; }

.wave-1 { opacity: 0.95; filter: blur(8px); }
.wave-2 { bottom: -35%; opacity: 0.6; filter: blur(20px); width: 140%; }
.wave-3 { bottom: -20%; opacity: 0.35; filter: blur(45px); width: 160%; }

.about-hero-card::after {
    content: "";
    position: absolute;
    bottom: 0; left: 5%;
    width: 90%; height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(255,110,50,0.5) 20%, rgba(255,84,31,0.95) 50%, rgba(255,110,50,0.5) 80%, transparent 100%);
    z-index: 3;
}

.about-hero-card::before {
    content: "";
    position: absolute;
    bottom: 0; left: 15%;
    width: 70%; height: 180px;
    background: radial-gradient(ellipse at 50% 100%, rgba(255,130,70,0.18) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.about-hero-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 60px 10%;
}

.about-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(38px, 5.5vw, 68px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: #fff;
}

.about-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(15px, 1.6vw, 22px);
    font-weight: 600;
    color: rgba(255,255,255,0.88);
    letter-spacing: 0.01em;
}

.about-hero-desc {
    max-width: 560px;
    color: rgba(255,255,255,0.55);
    font-size: clamp(13px, 1.1vw, 15.5px);
    line-height: 1.75;
}

/* ══════════════════════════════
   OUR PROCESS SECTION
══════════════════════════════ */
.process-section {
    background: #090d1c;
    padding: 88px 0 96px;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.process-header {
    text-align: center;
    margin-bottom: 64px;
}

.process-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.process-header p {
    font-size: 14.5px;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
}

/* 4-col icon row */
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
    margin-bottom: 0;
}

/* ── Arrow animations ── */
@keyframes arrow-travel {
    0%   { left: calc(12.5% + 46px); opacity: 0;   transform: translateY(-50%); }
    5%   { opacity: 1;                             transform: translateY(-50%); }
    93%  { opacity: 1;                             transform: translateY(-50%); }
    100% { left: calc(87.5% - 46px); opacity: 0;  transform: translateY(-50%); }
}
@keyframes arrow-fade-in {
    0%   { opacity: 0; transform: scaleX(0.4); }
    100% { opacity: 1; transform: scaleX(1); }
}
@keyframes ring-glow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255,84,31,0); }
    50%       { box-shadow: 0 0 18px 6px rgba(255,84,31,0.22); }
}
@keyframes track-shimmer {
    0%   { opacity: 0.4; }
    50%  { opacity: 0.85; }
    100% { opacity: 0.4; }
}

/* connector track */
.process-steps::before {
    content: "";
    position: absolute;
    top: 44px;
    left: calc(12.5% + 44px);
    right: calc(12.5% + 44px);
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255,84,31,0.2) 5%,
        rgba(255,84,31,0.6) 50%,
        rgba(255,84,31,0.2) 95%,
        transparent 100%
    );
    z-index: 0;
    pointer-events: none;
    animation: track-shimmer 3s ease-in-out infinite;
}

/* arrow wrapper */
.process-dots {
    position: absolute;
    top: 44px;
    left: 0;
    right: 0;
    height: 0;
    pointer-events: none;
    z-index: 0;
}

/* each arrow = chevron via clip + tail glow */
.process-dot {
    position: absolute;
    top: 0;
    display: flex;
    align-items: center;
    gap: 0;
    animation: arrow-travel 4.8s linear infinite;
}
.process-dot:nth-child(2) { animation-delay: 1.6s; }
.process-dot:nth-child(3) { animation-delay: 3.2s; }

/* tail — fading orange line behind the arrow */
.process-dot::before {
    content: "";
    width: 28px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(255,84,31,0.18) 30%, rgba(255,84,31,0.55) 100%);
    border-radius: 2px;
    flex-shrink: 0;
}

/* arrowhead — SVG chevron via border trick */
.process-dot::after {
    content: "";
    width: 9px;
    height: 9px;
    border-top: 2.5px solid #FF541F;
    border-right: 2.5px solid #FF541F;
    transform: rotate(45deg);
    flex-shrink: 0;
    filter: drop-shadow(0 0 5px rgba(255,84,31,0.9)) drop-shadow(0 0 12px rgba(255,84,31,0.4));
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.process-step.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes icon-breathe {
    0%, 100% { transform: scale(1); }
    50%       { transform: scale(1.06); }
}
@keyframes pulse-ring {
    0%   { transform: scale(1);   opacity: 0.55; }
    80%  { transform: scale(1.65); opacity: 0; }
    100% { transform: scale(1.65); opacity: 0; }
}
@keyframes border-spin {
    0%   { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.process-step:nth-child(2) { transition-delay: 0.1s; }
.process-step:nth-child(3) { transition-delay: 0.2s; }
.process-step:nth-child(4) { transition-delay: 0.3s; }

.process-icon-wrap {
    position: relative;
    width: 88px;
    height: 88px;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* spinning conic gradient ring */
.process-icon-wrap::before {
    content: "";
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: conic-gradient(
        #FF541F 0deg,
        rgba(255,84,31,0.15) 120deg,
        #FF541F 240deg,
        rgba(255,84,31,0.15) 360deg
    );
    animation: border-spin 3s linear infinite;
    z-index: 0;
}
/* mask inner to show only border */
.process-icon-wrap::after {
    content: "";
    position: absolute;
    inset: 2px;
    border-radius: 50%;
    background: #090d1c;
    z-index: 1;
}

/* pulse expand ring */
.process-pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1.5px solid rgba(255,84,31,0.55);
    animation: pulse-ring 2.4s ease-out infinite;
    pointer-events: none;
    z-index: 0;
}

.process-icon-ring {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    border: none;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}
.process-step:nth-child(1) .process-icon-wrap::before { animation-delay: 0s; }
.process-step:nth-child(2) .process-icon-wrap::before { animation-delay: 0.75s; }
.process-step:nth-child(3) .process-icon-wrap::before { animation-delay: 1.5s; }
.process-step:nth-child(4) .process-icon-wrap::before { animation-delay: 2.25s; }

.process-step:nth-child(1) .process-pulse { animation-delay: 0s; }
.process-step:nth-child(2) .process-pulse { animation-delay: 0.6s; }
.process-step:nth-child(3) .process-pulse { animation-delay: 1.2s; }
.process-step:nth-child(4) .process-pulse { animation-delay: 1.8s; }

.process-icon-ring img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(48%) sepia(100%) saturate(750%) hue-rotate(338deg) brightness(108%);
    animation: icon-breathe 3s ease-in-out infinite;
    position: relative;
    z-index: 2;
}
.process-step:nth-child(2) .process-icon-ring img { animation-delay: 0.75s; }
.process-step:nth-child(3) .process-icon-ring img { animation-delay: 1.5s; }
.process-step:nth-child(4) .process-icon-ring img { animation-delay: 2.25s; }

.process-step h3 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(15px, 1.4vw, 18px);
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 12px;
}

.process-step p {
    font-size: 13.5px;
    line-height: 1.75;
    color: rgba(255,255,255,0.5);
    margin: 0;
}

/* ── Process Responsive ── */
@media (max-width: 1240px) {
    .process-section { padding: 72px 0 80px; }
    .process-icon-wrap { width: 80px; height: 80px; margin-bottom: 28px; }
    .process-icon-ring { width: 80px; height: 80px; }
    .process-icon-ring img { width: 40px; height: 40px; }
    .process-steps::before { top: 40px; left: calc(12.5% + 40px); right: calc(12.5% + 40px); }
    .process-dots { top: 40px; }
}
@media (max-width: 1024px) {
    .process-section { padding: 60px 0 68px; }
    .process-header { margin-bottom: 48px; }
    .process-step { padding: 0 10px; }
    .process-icon-wrap { width: 72px; height: 72px; margin-bottom: 24px; }
    .process-icon-ring { width: 72px; height: 72px; }
    .process-icon-ring img { width: 36px; height: 36px; }
    .process-steps::before { top: 36px; left: calc(12.5% + 36px); right: calc(12.5% + 36px); }
    .process-dots { top: 36px; }
}
@media (max-width: 768px) {
    .process-section { padding: 48px 0 52px; }
    .process-header { margin-bottom: 36px; }
    .process-steps { grid-template-columns: repeat(2, 1fr); gap: 40px 20px; }
    .process-steps::before { display: none; }
    .process-dots { display: none; }
    .process-step { padding: 0 12px; }
    .process-icon-wrap { width: 72px; height: 72px; margin-bottom: 18px; }
    .process-icon-ring { width: 72px; height: 72px; }
    .process-icon-ring img { width: 36px; height: 36px; }
    .process-step h3 { font-size: 15.5px; }
}
@media (max-width: 640px) {
    .process-section { padding: 40px 0 44px; }
    .process-steps { gap: 32px 16px; }
    .process-icon-wrap { width: 64px; height: 64px; margin-bottom: 14px; }
    .process-icon-ring { width: 64px; height: 64px; }
    .process-icon-ring img { width: 32px; height: 32px; }
    .process-step h3 { font-size: 14.5px; }
    .process-step p { font-size: 12.5px; }
}
@media (max-width: 480px) {
    .process-steps { grid-template-columns: 1fr 1fr; gap: 28px 12px; }
    .process-icon-wrap { width: 60px; height: 60px; margin-bottom: 12px; }
    .process-icon-ring { width: 60px; height: 60px; }
    .process-icon-ring img { width: 30px; height: 30px; }
    .process-step h3 { font-size: 13.5px; }
    .process-step p { font-size: 12px; line-height: 1.6; }
}
@media (max-width: 375px) {
    .process-steps { gap: 24px 10px; }
    .process-step { padding: 0 4px; }
    .process-icon-wrap { width: 56px; height: 56px; margin-bottom: 10px; }
    .process-icon-ring { width: 56px; height: 56px; }
    .process-icon-ring img { width: 26px; height: 26px; }
    .process-step h3 { font-size: 13px; }
    .process-header h2 { font-size: 22px; }
    .process-header p { font-size: 13px; }
}
@media (max-width: 320px) {
    .process-steps { grid-template-columns: 1fr 1fr; gap: 20px 8px; }
    .process-icon-wrap { width: 52px; height: 52px; margin-bottom: 8px; }
    .process-icon-ring { width: 52px; height: 52px; }
    .process-icon-ring img { width: 24px; height: 24px; }
    .process-step h3 { font-size: 12.5px; }
    .process-step p { font-size: 11.5px; }
    .process-header h2 { font-size: 20px; }
}

/* ══════════════════════════════
   VALUES / WHY VANAA
══════════════════════════════ */
.values-section {
    background: #0d1117;
    padding: 80px 0 88px;
}

.values-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 52px;
}

.values-heading {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(26px, 3vw, 42px);
    font-weight: 700;
    line-height: 1.15;
    color: #fff;
    max-width: 440px;
}

.values-heading span { color: var(--orange); }

.values-sub {
    font-size: 14px;
    line-height: 1.75;
    color: rgba(255,255,255,0.5);
    max-width: 380px;
    text-align: right;
}

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

.val-card {
    background: linear-gradient(145deg, #121212, #0d0d0d);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 20px;
    padding: 32px 28px 36px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.55s ease, transform 0.55s ease, border-color 0.25s, box-shadow 0.25s;
}

.val-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.val-card:nth-child(2) { transition-delay: 0.07s; }
.val-card:nth-child(3) { transition-delay: 0.14s; }
.val-card:nth-child(4) { transition-delay: 0.21s; }
.val-card:nth-child(5) { transition-delay: 0.28s; }
.val-card:nth-child(6) { transition-delay: 0.35s; }

.val-card:hover {
    border-color: rgba(255,84,31,0.45);
    box-shadow: 0 12px 36px rgba(255,84,31,0.1);
    transform: translateY(-6px);
}

.val-card::before {
    content: "";
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, transparent, var(--orange), transparent);
    transform: scaleX(0);
    transition: transform 0.35s ease;
    transform-origin: center;
}

.val-card:hover::before { transform: scaleX(1); }

.val-icon {
    width: 50px;
    height: 50px;
    border-radius: 13px;
    background: rgba(255,84,31,0.1);
    border: 1px solid rgba(255,84,31,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    font-size: 20px;
    transition: box-shadow 0.25s, background 0.25s;
}

.val-card:hover .val-icon {
    background: rgba(255,84,31,0.18);
    box-shadow: 0 0 18px rgba(255,84,31,0.2);
}

.val-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
}

.val-card p {
    font-size: 13.5px;
    line-height: 1.75;
    color: rgba(255,255,255,0.52);
    margin: 0;
}


/* ══════════════════════════════
   CTA BANNER
══════════════════════════════ */
.about-cta {
    background: #0a0a0a;
    padding: 0 28px 60px;
}

.about-cta-card {
    background: #0b0e1a;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 22px;
    padding: 64px 60px 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0;
    position: relative;
    overflow: hidden;
}

/* Left orange glow */
.about-cta-card::before {
    content: "";
    position: absolute;
    top: 50%; left: -10%;
    transform: translateY(-50%);
    width: 45%;
    height: 100%;
    background: radial-gradient(ellipse at left center, rgba(180,40,0,0.55) 0%, transparent 68%);
    pointer-events: none;
}

/* Right orange glow */
.about-cta-card::after {
    content: "";
    position: absolute;
    top: 50%; right: -10%;
    transform: translateY(-50%);
    width: 45%;
    height: 100%;
    background: radial-gradient(ellipse at right center, rgba(180,40,0,0.55) 0%, transparent 68%);
    pointer-events: none;
}

.cta-center {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    width: 100%;
}

.cta-center h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(24px, 3vw, 42px);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin: 0 0 14px;
    max-width: 720px;
}

.cta-center p {
    font-size: clamp(13px, 1.1vw, 15px);
    line-height: 1.7;
    color: rgba(255,255,255,0.5);
    max-width: 520px;
    margin: 0 0 32px;
}

.btn-cta-contact {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--orange);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    padding: 14px 34px;
    border-radius: 12px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    position: relative;
    z-index: 1;
}

.btn-cta-contact:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(255,84,31,0.38);
}

/* keep ghost class so old responsive overrides don't break */
.btn-cta-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #fff;
    font-size: 14.5px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    padding: 12px 26px;
    border-radius: 10px;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.18);
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s, transform 0.15s;
}

.btn-cta-ghost:hover {
    border-color: rgba(255,84,31,0.5);
    background: rgba(255,84,31,0.06);
    transform: translateY(-2px);
}

/* ══════════════════════════════
   REVEAL ANIMATION
══════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ══════════════════════════════
   GLOBAL OVERFLOW GUARD
══════════════════════════════ */
.about-shell > *,
.values-grid > *,
.who-stats-mini > *,
.process-steps > * {
    min-width: 0;
}

.who-desc,
.val-card p,
.cta-center p,
.who-vm-content p {
    word-break: break-word;
    overflow-wrap: break-word;
}

img { max-width: 100%; height: auto; }

/* ══════════════════════════════
   RESPONSIVE — 1240px
══════════════════════════════ */
@media (max-width: 1240px) {
    .about-shell { padding: 0 42px; }
    .about-hero { padding: 0; }
    .about-hero-card { min-height: 620px; }
    .about-cta { padding: 0 22px 56px; }
    .about-cta-card { padding: 56px 52px; }
    .values-grid { gap: 16px; }
}

/* ══════════════════════════════
   RESPONSIVE — 1024px
══════════════════════════════ */
@media (max-width: 1024px) {
    .about-shell { padding: 0 28px; }
    .about-hero { padding: 0; }
    .about-hero-card { min-height: 560px; }
    .hero-waves { height: 68%; }
    .values-section { padding: 64px 0 72px; }
    .values-header { flex-direction: column; align-items: flex-start; gap: 12px; margin-bottom: 36px; }
    .values-sub { text-align: left; max-width: 100%; }
    .values-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .about-cta-card { padding: 52px 44px; }
    .about-cta { padding: 0 16px 52px; }
}

/* ══════════════════════════════
   RESPONSIVE — 768px
══════════════════════════════ */
@media (max-width: 768px) {
    .about-shell { padding: 0 20px; }
    .about-hero { padding: 0; }
    .about-hero-card { min-height: 480px; }
    .about-hero-inner { padding: 52px 8%; gap: 12px; }
    .hero-waves { height: 65%; }
    .values-section { padding: 52px 0 60px; }
    .values-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .about-cta-card { padding: 44px 32px; border-radius: 20px; }
    .cta-center h2 { font-size: clamp(22px, 5vw, 32px); }
    .cta-center p { font-size: 14px; }
    .about-cta { padding: 0 12px 44px; }
}

/* ══════════════════════════════
   RESPONSIVE — 640px
══════════════════════════════ */
@media (max-width: 640px) {
    .about-shell { padding: 0 16px; }
    .about-hero { padding: 0; }
    .about-hero-card { min-height: 420px; }
    .about-hero-inner { padding: 44px 5%; gap: 10px; }
    .hero-waves { height: 58%; }
    .values-section { padding: 44px 0 52px; }
    .values-header { margin-bottom: 28px; }
    /* 1-col at 640 — 2-col is too tight at this width */
    .values-grid { grid-template-columns: 1fr; gap: 12px; }
    .about-cta-card { padding: 36px 24px; border-radius: 16px; }
    .cta-center h2 { font-size: 22px; margin-bottom: 12px; }
    .cta-center p { font-size: 13.5px; margin-bottom: 26px; }
    .btn-cta-contact { font-size: 14.5px; padding: 13px 30px; }
    .about-cta { padding: 0 8px 36px; }
}

/* ══════════════════════════════
   RESPONSIVE — 480px
══════════════════════════════ */
@media (max-width: 480px) {
    .about-shell { padding: 0 14px; }
    .about-hero-card { min-height: 380px; }
    .about-hero-inner { padding: 40px 4%; }
    .hero-waves { height: 55%; }
    .values-grid { gap: 10px; }
    .val-card { padding: 18px 16px 22px; }
    .about-cta-card { padding: 30px 18px; border-radius: 14px; }
    .cta-center h2 { font-size: 20px; }
}

/* ══════════════════════════════
   RESPONSIVE — 375px
══════════════════════════════ */
@media (max-width: 375px) {
    .about-shell { padding: 0 12px; }
    .about-title { font-size: 32px; }
    .about-subtitle { font-size: 14px; }
    .about-hero-desc { font-size: 12.5px; }
    .about-hero-card { min-height: 340px; }
    .values-heading { font-size: 22px; }
    .values-section { padding: 36px 0 44px; }
    .val-card { padding: 16px 14px 20px; }
    .about-cta-card { padding: 28px 16px; border-radius: 14px; }
    .cta-center h2 { font-size: 19px; margin-bottom: 10px; }
    .cta-center p { font-size: 13px; margin-bottom: 22px; }
    .btn-cta-contact { font-size: 14px; padding: 12px 26px; }
    .about-cta { padding: 0 6px 28px; }
}

/* ══════════════════════════════
   RESPONSIVE — 320px
══════════════════════════════ */
@media (max-width: 320px) {
    .about-shell { padding: 0 10px; }
    .about-hero { padding: 0; }
    .about-title { font-size: 26px; }
    .about-subtitle { font-size: 12.5px; }
    .about-hero-card { min-height: 300px; }
    .about-hero-inner { padding: 32px 3%; gap: 8px; }
    .hero-waves { height: 50%; }
    .values-section { padding: 28px 0 36px; }
    .values-heading { font-size: 20px; }
    .about-cta-card { padding: 24px 14px; border-radius: 10px; }
    .cta-center h2 { font-size: 17px; margin-bottom: 8px; }
    .cta-center p { font-size: 12px; margin-bottom: 20px; }
    .btn-cta-contact { font-size: 13px; padding: 11px 22px; border-radius: 10px; }
    .who-top-grid { gap: 16px; }
    .who-vm-card { padding: 14px 12px; gap: 10px; border-radius: 12px; }
    .who-vm-content h3 { font-size: 14px; }
    .who-vm-content p { font-size: 12px; }
    .who-vm-icon { width: 40px; height: 40px; min-width: 40px; font-size: 14px; }
    .who-heading { font-size: 24px; }
    .wsb-num { font-size: 20px; }
    .wsb-label { font-size: 10.5px; }
    .who-stat-box { padding: 12px 10px; }
}

@media (prefers-reduced-motion: reduce) {
    .reveal, .val-card, .process-step {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* ══════════════════════════════
   WHO WE ARE SECTION
══════════════════════════════ */
.who-section {
    background: #090d1c;
    padding: 88px 0 80px;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.who-top-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    margin-bottom: 48px;
}

/* LEFT */
.who-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.who-heading {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(28px, 3.2vw, 44px);
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    position: relative;
    padding-bottom: 16px;
}

.who-heading::after {
    content: "";
    position: absolute;
    bottom: 0; left: 0;
    width: 52px; height: 3px;
    background: var(--orange);
    border-radius: 2px;
}

.who-desc {
    font-size: 14.5px;
    line-height: 1.85;
    color: rgba(255,255,255,0.58);
    max-width: 520px;
}

.who-stats-mini {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 4px;
}

.who-stat-box {
    background: #0d1327;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    transition: border-color 0.25s, background 0.25s;
}

.who-stat-box:hover {
    border-color: rgba(255,84,31,0.3);
    background: #111930;
}

.wsb-num {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(22px, 2.4vw, 30px);
    font-weight: 800;
    color: var(--orange);
    line-height: 1;
}

.wsb-label {
    font-size: 12.5px;
    font-weight: 500;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.02em;
}

/* RIGHT: Image */
.who-right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.who-img-wrap {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.07);
    box-shadow: 0 24px 72px rgba(0,0,0,0.5), 0 0 60px rgba(255,84,31,0.06);
}

.who-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 340px;
    max-height: 440px;
}

/* BOTTOM: Vision + Mission cards */
.who-vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.who-vm-card {
    background: #0d1327;
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 18px;
    padding: 28px 30px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: border-color 0.25s, transform 0.25s;
}

.who-vm-card:hover {
    border-color: rgba(255,84,31,0.38);
    transform: translateY(-4px);
}

.who-vm-icon {
    width: 64px;
    height: 64px;
    min-width: 64px;
    border-radius: 50%;
    background: rgba(255,84,31,0.15);
    border: 1.5px solid rgba(255,84,31,0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    font-size: 22px;
    box-shadow: 0 0 20px rgba(255,84,31,0.15);
    flex-shrink: 0;
    transition: box-shadow 0.25s, background 0.25s;
}

.who-vm-card:hover .who-vm-icon {
    background: rgba(255,84,31,0.22);
    box-shadow: 0 0 28px rgba(255,84,31,0.28);
}

.who-vm-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.who-vm-content p {
    font-size: 13.5px;
    line-height: 1.75;
    color: rgba(255,255,255,0.55);
    margin: 0;
}

/* ── Who Section Responsive ── */
@media (max-width: 1240px) {
    .who-section { padding: 72px 0 68px; }
    .who-top-grid { gap: 40px; }
}

@media (max-width: 1024px) {
    .who-section { padding: 60px 0 56px; }
    .who-top-grid { gap: 28px; }
    .who-img-wrap img { min-height: 290px; max-height: 380px; }
    .who-vm-card { padding: 24px 24px; gap: 16px; }
    .who-vm-icon { width: 54px; height: 54px; min-width: 54px; font-size: 18px; }
    .who-vm-content h3 { font-size: 18px; }
}

@media (max-width: 768px) {
    .who-section { padding: 52px 0 48px; }
    .who-top-grid { grid-template-columns: 1fr; gap: 32px; margin-bottom: 32px; }
    .who-right { order: -1; }
    .who-img-wrap img { min-height: 240px; max-height: 300px; }
    .who-desc { max-width: 100%; }
    .who-vm-grid { gap: 16px; }
    .who-vm-card { padding: 22px 20px; }
}

@media (max-width: 640px) {
    .who-section { padding: 44px 0 40px; }
    .who-top-grid { gap: 24px; margin-bottom: 26px; }
    .who-stats-mini { gap: 10px; }
    .who-stat-box { padding: 14px 16px; border-radius: 10px; }
    .wsb-num { font-size: 22px; }
    .wsb-label { font-size: 11.5px; }
    .who-vm-grid { gap: 12px; }
    .who-vm-card { padding: 18px 16px; gap: 14px; border-radius: 14px; }
    .who-vm-icon { width: 50px; height: 50px; min-width: 50px; font-size: 17px; }
    .who-vm-content h3 { font-size: 17px; }
    .who-vm-content p { font-size: 13px; }
}

@media (max-width: 480px) {
    .who-vm-grid { grid-template-columns: 1fr; }
    .who-stats-mini { grid-template-columns: 1fr 1fr; }
    .who-img-wrap img { min-height: 200px; max-height: 260px; }
}

@media (max-width: 375px) {
    .who-heading { font-size: 26px; }
    .who-vm-icon { width: 44px; height: 44px; min-width: 44px; font-size: 15px; }
    .who-vm-content h3 { font-size: 16px; }
}
