/* ============================================================
   STYLES — Organized by Section
   Each section contains its base styles + all responsive
   media queries so you can copy-paste a full section at once.
   ============================================================ */


/* =====================================================================
   1. CSS VARIABLES & BODY
   ===================================================================== */

:root {
    --golden-gradient: linear-gradient(45deg, #A16C16, #E6B554);
    --text-primary: #181819;
    --gold: #E6B554;
    --gold-mid: #A16C16;
    --white: #fff;
    --border: #E6E6E6;
    --gray-bg: #F8F8F8;
}

body {
    background-color: #F8F8F8;
    font-family: var(--primary-font);
}

@media (max-width: 1023px) {
    body { overflow-x: hidden; }
    img  { max-width: 100%; height: auto; }
}


/* =====================================================================
   2. HERO SECTION
   ===================================================================== */

.hero-modern {
    max-width: 1440px;
    margin: 0 auto;
    width: 100%;
}

.hero-container {
    padding-top: 100px;
    position: relative;
    overflow: hidden;
    min-height: 620px;
}

/* Background wrapper for image with opacity 0.8 */
.hero-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* bg-ad.jpg image with 0.8 opacity */
.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/assets/images/bg-ad.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    opacity: 8%;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-content-grid {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 70px 70px 70px 80px;
    gap: 40px;
}

/* ── Left Text Column ── */
.hero-text-col {
    flex: 1.2;
    min-width: 280px;
    color: white;
}

.hero-badge {
    display: inline-block;
    background: rgba(230, 181, 84, 0.18);
    backdrop-filter: blur(4px);
    padding: 6px 16px;
    border-radius: 40px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #E6B554;
    margin-bottom: 24px;
    border: 0.5px solid rgba(230,181,84,0.4);
}

.hero-text-col h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.8rem, 7vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: #000000;
}

.hero-text-col h1 span {
    background: black;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-description {
    font-family: var(--primary-font);
    font-size: clamp(0.9rem, 2.2vw, 1.05rem);
    line-height: 1.5;
    color: #000000;
    margin-bottom: 32px;
    max-width: 520px;
    font-weight: 400;
}

.hero-stats {
    display: flex;
    gap: 32px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.7rem;
    font-weight: 800;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1px;
    color: #000000;
    line-height: 1;
}

.stat-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    font-weight: 500;
    color: #000000;
    letter-spacing: 0.08em;
}

.hero-cta-group {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    align-items: center;
}

.btn-primary-gold {
    background: linear-gradient(105deg, #A16C16, #E6B554);
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}

.btn-primary-gold:hover {
    transform: translateY(-2px);
    background: linear-gradient(105deg, #B87A1C, #F3C35C);
    box-shadow: 0 12px 24px rgba(0,0,0,0.25);
}

.btn-outline-light {
    background: transparent;
    border: 1.5px solid rgba(230,181,84,0.7);
    padding: 12px 26px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline-light:hover {
    background: rgba(230,181,84,0.2);
    border-color: #E6B554;
}

/* ── Right Column: Mobile Device Image ── */
.hero-mockup-col {
    flex: 0.9;
    display: flex;
    justify-content: center;
    min-width: 280px;
}

.mobile-device-wrapper {
    max-width: 340px;
    width: 100%;
    transition: transform 0.3s ease;
}

.mobile-device-wrapper:hover {
    transform: translateY(-8px);
}

/* ── Hero Responsive ── */

@media (max-width: 1024px) {
    .hero-content-grid {
        padding: 50px 40px;
    }
}

@media (max-width: 900px) {
    .hero-content-grid {
        flex-direction: column;
        text-align: center;
        padding: 50px 30px;
    }
    .hero-text-col {
        text-align: center;
    }
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-stats {
        justify-content: center;
    }
    .hero-cta-group {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-modern {
        padding-top: 85px;
    }
    .hero-container {
        margin: 0 12px;
    }
    .hero-content-grid {
        padding: 40px 24px;
    }
}

@media (max-width: 680px) {
    .hero-text-col h1 {
        font-size: 2.5rem;
    }
    .hero-stats {
        gap: 20px;
    }
}

@media (max-width: 430px) {
    .hero-modern {
        padding-top: 76px;
    }
    .hero-container {
        margin: 0 10px;
        border-radius: 20px;
        min-height: auto;
    }
    .hero-content-grid {
        flex-direction: column;
        padding: 32px 20px 28px;
        gap: 28px;
        text-align: center;
    }
    .hero-text-col {
        min-width: unset;
        width: 100%;
    }
    .hero-text-col h1 {
        font-size: clamp(2rem, 10vw, 2.8rem);
        margin-bottom: 14px;
        line-height: 1.05;
    }
    .hero-description {
        font-size: 0.72rem;
        margin: 0 auto 22px;
        max-width: 100%;
        line-height: 1.6;
    }
    .hero-stats {
        justify-content: center;
        gap: 18px;
        margin-bottom: 28px;
        flex-wrap: wrap;
    }
    .stat-number {
        font-size: 1.5rem;
    }
    .stat-label {
        font-size: 0.62rem;
    }
    .hero-cta-group {
        justify-content: center;
        gap: 12px;
    }
    .btn-primary-gold,
    .btn-outline-light {
        padding: 10px 20px;
        font-size: 0.72rem;
    }
    .hero-mockup-col {
        width: 100%;
        min-width: unset;
        justify-content: center;
    }
    .mobile-device-wrapper {
        max-width: 220px;
    }
    .mobile-device-img {
        border-radius: 22px;
    }
}

@media (max-width: 410px) {
    .hero-text-col h1 {
        font-size: 2rem;
    }
    .stat-number {
        font-size: 1.3rem;
    }
}

@media (max-width: 360px) {
    .hero-modern {
        padding-top: 68px;
    }
    .hero-container {
        margin: 0 8px;
        border-radius: 16px;
    }
    .hero-content-grid {
        padding: 26px 14px 22px;
        gap: 22px;
    }
    .hero-text-col h1 {
        font-size: clamp(1.8rem, 11vw, 2.4rem);
    }
    .hero-description {
        font-size: 0.68rem;
    }
    .stat-number {
        font-size: 1.3rem;
    }
    .stat-label {
        font-size: 0.58rem;
    }
    .mobile-device-wrapper {
        max-width: 190px;
    }
}

/* 390px — iPhone 14 / Pixel 7 */
@media (min-width: 361px) and (max-width: 390px) {
    .hero-text-col h1 {
        font-size: clamp(2rem, 10.5vw, 2.6rem);
    }
    .mobile-device-wrapper {
        max-width: 200px;
    }
    .stat-number {
        font-size: 1.38rem;
    }
}

/* 410px — Mid-range Androids */
@media (min-width: 391px) and (max-width: 410px) {
    .hero-text-col h1 {
        font-size: clamp(2.1rem, 10.2vw, 2.7rem);
    }
    .mobile-device-wrapper {
        max-width: 210px;
    }
    .stat-number {
        font-size: 1.44rem;
    }
    .hero-description {
        font-size: 0.71rem;
    }
}

/* 430px — iPhone 15 Pro Max / large Androids */
@media (min-width: 411px) and (max-width: 430px) {
    .hero-text-col h1 {
        font-size: clamp(2.2rem, 9.8vw, 2.8rem);
    }
    .mobile-device-wrapper {
        max-width: 220px;
    }
    .stat-number {
        font-size: 1.5rem;
    }
    .hero-description {
        font-size: 0.73rem;
    }
}

/* 768px Landscape — phones rotated */
@media (max-height: 500px) and (min-width: 600px) and (orientation: landscape) {
    .hero-modern {
        padding-top: 66px;
    }
    .hero-container {
        margin: 0 12px;
        border-radius: 20px;
        min-height: auto;
    }
    .hero-content-grid {
        flex-direction: row;
        padding: 28px 36px;
        gap: 28px;
        text-align: left;
    }
    .hero-text-col {
        flex: 1.4;
        text-align: left;
    }
    .hero-text-col h1 {
        font-size: clamp(1.8rem, 5.5vw, 3rem);
        margin-bottom: 10px;
    }
    .hero-description {
        font-size: 0.7rem;
        margin: 0 0 16px;
        line-height: 1.55;
    }
    .hero-stats {
        gap: 16px;
        margin-bottom: 18px;
        justify-content: flex-start;
    }
    .stat-number {
        font-size: 1.3rem;
    }
    .stat-label {
        font-size: 0.6rem;
    }
    .hero-cta-group {
        justify-content: flex-start;
    }
    .btn-primary-gold,
    .btn-outline-light {
        padding: 9px 18px;
        font-size: 0.7rem;
    }
    .hero-mockup-col {
        flex: 0.7;
        min-width: unset;
    }
    .mobile-device-wrapper {
        max-width: 180px;
    }
}

/* Tablet Portrait (431px – 1023px) */
@media (min-width: 431px) and (max-width: 1023px) and (orientation: portrait) {
    .hero-modern {
        padding-top: 88px;
    }
    .hero-container {
        margin: 0 14px;
        border-radius: 24px;
        min-height: auto;
    }
    .hero-content-grid {
        flex-direction: column;
        padding: 44px 32px 36px;
        gap: 32px;
        text-align: center;
    }
    .hero-text-col {
        min-width: unset;
        width: 100%;
        text-align: center;
    }
    .hero-text-col h1 {
        font-size: clamp(2.4rem, 8vw, 3.8rem);
        margin-bottom: 16px;
    }
    .hero-description {
        font-size: 0.82rem;
        margin: 0 auto 26px;
        max-width: 560px;
        line-height: 1.6;
    }
    .hero-stats {
        justify-content: center;
        gap: 28px;
        margin-bottom: 32px;
        flex-wrap: wrap;
    }
    .stat-number {
        font-size: 1.7rem;
    }
    .stat-label {
        font-size: 0.68rem;
    }
    .hero-cta-group {
        justify-content: center;
        gap: 14px;
    }
    .hero-mockup-col {
        width: 100%;
        min-width: unset;
    }
    .mobile-device-wrapper {
        max-width: 260px;
    }
}

/* iPad Mini / iPad Air Portrait */
@media (min-width: 768px) and (max-width: 1023px) and (orientation: portrait) {
    .hero-modern {
        padding-top: 96px;
    }
    .hero-text-col h1 {
        font-size: clamp(3rem, 7vw, 4.5rem);
    }
    .hero-description {
        font-size: 0.9rem;
        max-width: 600px;
    }
    .stat-number {
        font-size: 1.9rem;
    }
    .mobile-device-wrapper {
        max-width: 300px;
    }
}

/* Tablet Landscape (768px – 1199px) */
@media (min-width: 768px) and (max-width: 1199px) and (orientation: landscape) {
    .hero-modern {
        padding-top: 96px;
    }
    .hero-container {
        margin: 0 18px;
        border-radius: 28px;
        min-height: 520px;
    }
    .hero-content-grid {
        flex-direction: row;
        padding: 56px 56px 56px 64px;
        gap: 36px;
        text-align: left;
    }
    .hero-text-col {
        flex: 1.3;
        text-align: left;
    }
    .hero-text-col h1 {
        font-size: clamp(2.6rem, 5.5vw, 4.2rem);
        margin-bottom: 16px;
    }
    .hero-description {
        font-size: 0.88rem;
        margin: 0 0 26px;
        max-width: 480px;
    }
    .hero-stats {
        justify-content: flex-start;
        gap: 28px;
        margin-bottom: 32px;
    }
    .stat-number {
        font-size: 1.65rem;
    }
    .hero-cta-group {
        justify-content: flex-start;
    }
    .hero-mockup-col {
        flex: 0.85;
        min-width: unset;
    }
    .mobile-device-wrapper {
        max-width: 290px;
    }
}


/* =====================================================================
   3. WHAT WE DELIVER SECTION
   ===================================================================== */

.delivery-section {
    background: #ffffff;
    padding: 70px 60px 80px;
    max-width: 1440px;
    margin: 0 auto;
}

.delivery-container {
    max-width: 1100px;
    margin: 0 auto;
}

.delivery-heading {
    font-family: 'Bebas Neue', 'Impact', sans-serif;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    letter-spacing: 2px;
    color: #111111;
    margin-bottom: 50px;
    text-align: left;
    display: block;
    line-height: 1;
}

.deliver-gradient {
    background: var(--golden-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.delivery-row {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
}

.delivery-row--3 {
    justify-content: flex-start;
}

.delivery-row--3 .delivery-card {
    flex: 1;
    max-width: calc((100% - 48px) / 3);
}

.delivery-row--2 {
    justify-content: center;
}

.delivery-row--2 .delivery-card {
    flex: 0 0 calc((100% - 48px) / 3);
}

.delivery-card {
    background: #ffffff;
    border-radius: 20px;
    border: 2px solid #DEDEDE;
    padding: 32px 28px 36px;
    box-shadow: 0 0 50px 0 rgba(161, 108, 22, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 47px;
    position: relative;
    z-index: 0;
}

/* Gradient border layer — hidden by default */
.delivery-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: linear-gradient(145deg, #E6B554 0%, #C8922A 55%, #A16C16 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* White fill layer */
.delivery-card::after {
    content: '';
    position: absolute;
    inset: 2px;
    border-radius: 18px;
    background: #ffffff;
    z-index: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Lift all children above pseudo layers */
.delivery-card > * {
    position: relative;
    z-index: 2;
}

/* On hover: show gradient border, remove shadow */
.delivery-card:hover {
    transform: translateY(-6px);
    box-shadow: none;
    background: transparent;
    border: none;
}

.delivery-card:hover::before {
    opacity: 1;
}

.delivery-card:hover::after {
    opacity: 1;
}

.delivery-icon-circle {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(145deg, #E6B554 0%, #C8922A 55%, #A16C16 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    flex-shrink: 0;
    margin-top: -61px;
    box-shadow: 0 4px 12px rgba(161, 108, 22, 0.3);
    padding: 16px;
}

.delivery-icon-circle img {
    width: 50%;
    height: 50%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.delivery-card h3 {
    font-family: var(--primary-font);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #111111;
    margin: 0;
    line-height: 1.45;
    text-align: center;
}

/* ── Delivery Responsive ── */

@media (max-width: 900px) {
    .delivery-section {
        padding: 50px 30px 60px;
    }
}

@media (max-width: 680px) {
    .delivery-section {
        padding: 40px 20px 50px;
    }
    .delivery-heading {
        text-align: center;
    }
    .delivery-row {
        flex-direction: column;
        gap: 16px;
    }
    .delivery-row--3 .delivery-card,
    .delivery-row--2 .delivery-card {
        max-width: 100%;
        flex: none;
    }
}

@media (max-width: 430px) {
    .delivery-section {
        padding: 44px 16px 52px;
    }
    .delivery-heading {
        font-size: clamp(2.4rem, 11vw, 3.2rem);
        margin-bottom: 36px;
        text-align: center;
    }
    .delivery-row {
        flex-direction: column;
        gap: 52px;
        margin-bottom: 0;
    }
    .delivery-row--3 .delivery-card,
    .delivery-row--2 .delivery-card {
        max-width: 100%;
        flex: none;
        width: 100%;
        margin-bottom: 0;
    }
    .delivery-row + .delivery-row {
        margin-top: 52px;
    }
    .delivery-card {
        padding: 28px 22px 28px;
        border-radius: 16px;
    }
    .delivery-icon-circle {
        width: 60px;
        height: 60px;
        margin-top: -50px;
        margin-bottom: 18px;
    }
    .delivery-card h3 {
        font-size: 0.78rem;
        letter-spacing: 0.04em;
    }
}

@media (max-width: 360px) {
    .delivery-heading {
        font-size: clamp(2rem, 12vw, 2.8rem);
    }
}

/* 390px — iPhone 14 / Pixel 7 */
@media (min-width: 361px) and (max-width: 390px) {
    .delivery-heading {
        font-size: clamp(2.2rem, 11.5vw, 3rem);
    }
}

/* 410px — Mid-range Androids */
@media (min-width: 391px) and (max-width: 410px) {
    .delivery-heading {
        font-size: clamp(2.3rem, 11.2vw, 3.1rem);
    }
}

/* 430px — iPhone 15 Pro Max / large Androids */
@media (min-width: 411px) and (max-width: 430px) {
    .delivery-heading {
        font-size: clamp(2.4rem, 11vw, 3.2rem);
    }
}

/* 768px Landscape — phones rotated */
@media (max-height: 500px) and (min-width: 600px) and (orientation: landscape) {
    .delivery-section {
        padding: 36px 24px 44px;
    }
    .delivery-heading {
        font-size: 2.6rem;
        margin-bottom: 30px;
        text-align: left;
    }
    .delivery-row {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 16px;
        margin-bottom: 16px;
    }
    .delivery-row--3 .delivery-card,
    .delivery-row--2 .delivery-card {
        flex: 1;
        min-width: calc(33% - 12px);
        max-width: none;
    }
    .delivery-card {
        padding: 22px 16px 22px;
        border-radius: 14px;
        margin-bottom: 0;
    }
    .delivery-icon-circle {
        width: 54px;
        height: 54px;
        margin-top: -44px;
        margin-bottom: 14px;
    }
    .delivery-card h3 {
        font-size: 0.72rem;
    }
}

/* Tablet Portrait (431px – 1023px) */
@media (min-width: 431px) and (max-width: 1023px) and (orientation: portrait) {
    .delivery-section {
        padding: 56px 28px 64px;
    }
    .delivery-heading {
        font-size: clamp(2.6rem, 8vw, 4rem);
        margin-bottom: 40px;
        text-align: center;
    }
    .delivery-row {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 18px;
        margin-bottom: 18px;
    }
    .delivery-row--3 .delivery-card {
        flex: 1;
        min-width: calc(50% - 10px);
        max-width: calc(50% - 10px);
    }
    .delivery-row--2 .delivery-card {
        flex: 1;
        min-width: calc(50% - 10px);
        max-width: calc(50% - 10px);
    }
    .delivery-card {
        padding: 28px 22px;
        border-radius: 16px;
        margin-bottom: 0;
    }
    .delivery-icon-circle {
        width: 62px;
        height: 62px;
        margin-top: -52px;
        margin-bottom: 18px;
    }
    .delivery-card h3 {
        font-size: 0.8rem;
    }
}

/* iPad Mini / iPad Air Portrait */
@media (min-width: 768px) and (max-width: 1023px) and (orientation: portrait) {
    .delivery-row--3 .delivery-card {
        min-width: calc(33% - 12px);
        max-width: calc(33% - 12px);
    }
}

/* Tablet Landscape (768px – 1199px) */
@media (min-width: 768px) and (max-width: 1199px) and (orientation: landscape) {
    .delivery-section {
        padding: 64px 44px 72px;
    }
    .delivery-heading {
        font-size: clamp(3rem, 6vw, 4.5rem);
        margin-bottom: 44px;
        text-align: left;
    }
    .delivery-row {
        flex-direction: row;
        gap: 20px;
        margin-bottom: 20px;
    }
    .delivery-row--3 .delivery-card {
        flex: 1;
        max-width: calc((100% - 40px) / 3);
    }
    .delivery-row--2 .delivery-card {
        flex: 0 0 calc((100% - 40px) / 3);
    }
    .delivery-card {
        padding: 28px 22px 30px;
        margin-bottom: 0;
    }
    .delivery-icon-circle {
        margin-top: -55px;
        margin-bottom: 18px;
    }
}


/* =====================================================================
   4. OUR TECHNOLOGIES SECTION
   ===================================================================== */

.technologies-section {
    background: #ffffff;
    padding: 80px 60px 90px;
    max-width: 1440px;
    margin: 0 auto;
}

.technologies-container {
    max-width: 1100px;
    margin: 0 auto;
}

.section-heading {
    font-family: 'Bebas Neue', 'Impact', sans-serif;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    letter-spacing: 2px;
    color: #111;
    margin-bottom: 50px;
    text-align: left;
    line-height: 1;
}

.tech-strip {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    border: 1px solid #E6E6E6;
    border-radius: 16px;
    overflow: hidden;
}

.tech-strip-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 34px 18px;
    border-right: 1px solid #E6E6E6;
    transition: background 0.25s ease;
    min-height: 110px;
}

.tech-strip-item:last-child {
    border-right: none;
}

.tech-strip-item:hover {
    background: #FAFAFA;
}

.tech-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    opacity: 0.6;
    transition: opacity 0.25s;
}

.tech-strip-item:hover .tech-logo {
    opacity: 1;
}

.tech-logo svg {
    width: 42px;
    height: 42px;
}

.tech-logo span {
    font-family: var(--primary-font);
    font-size: 0.7rem;
    font-weight: 700;
    color: #555;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* ── Technologies Responsive ── */

@media (max-width: 900px) {
    .technologies-section {
        padding: 50px 30px 60px;
    }
    .tech-strip {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 680px) {
    .technologies-section {
        padding: 40px 20px 50px;
    }
    .section-heading {
        font-size: 2.8rem;
        margin-bottom: 30px;
        text-align: center;
    }
    .tech-strip {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 430px) {
    .technologies-section {
        padding: 44px 16px 52px;
    }
    .section-heading {
        font-size: clamp(2.2rem, 11vw, 3rem);
        margin-bottom: 28px;
        text-align: center;
    }
    .tech-strip {
        grid-template-columns: repeat(2, 1fr);
        border-radius: 12px;
    }
    .tech-strip-item {
        padding: 24px 12px;
        min-height: 88px;
    }
    .tech-logo svg {
        width: 32px;
        height: 32px;
    }
    .tech-logo span {
        font-size: 0.62rem;
    }
}

@media (max-width: 360px) {
    .section-heading {
        font-size: clamp(2rem, 12vw, 2.6rem);
    }
    .tech-strip-item {
        padding: 18px 8px;
        min-height: 76px;
    }
    .tech-logo svg {
        width: 26px;
        height: 26px;
    }
}

/* 390px — iPhone 14 / Pixel 7 */
@media (min-width: 361px) and (max-width: 390px) {
    .section-heading {
        font-size: clamp(2.2rem, 11.5vw, 2.8rem);
    }
}

/* 410px — Mid-range Androids */
@media (min-width: 391px) and (max-width: 410px) {
    .section-heading {
        font-size: clamp(2.3rem, 11.2vw, 2.9rem);
    }
}

/* 430px — iPhone 15 Pro Max / large Androids */
@media (min-width: 411px) and (max-width: 430px) {
    .section-heading {
        font-size: clamp(2.4rem, 11vw, 3rem);
    }
}

/* 768px Landscape — phones rotated */
@media (max-height: 500px) and (min-width: 600px) and (orientation: landscape) {
    .technologies-section {
        padding: 36px 24px 44px;
    }
    .section-heading {
        font-size: 2.6rem;
        margin-bottom: 24px;
        text-align: left;
    }
    .tech-strip {
        grid-template-columns: repeat(6, 1fr);
    }
    .tech-strip-item {
        padding: 20px 10px;
        min-height: 80px;
    }
    .tech-logo svg {
        width: 30px;
        height: 30px;
    }
}

/* Tablet Portrait (431px – 1023px) */
@media (min-width: 431px) and (max-width: 1023px) and (orientation: portrait) {
    .technologies-section {
        padding: 56px 28px 64px;
    }
    .section-heading {
        font-size: clamp(2.6rem, 8vw, 4rem);
        margin-bottom: 32px;
        text-align: center;
    }
    .tech-strip {
        grid-template-columns: repeat(3, 1fr);
        border-radius: 14px;
    }
    .tech-strip-item {
        padding: 28px 16px;
        min-height: 100px;
    }
    .tech-logo svg {
        width: 36px;
        height: 36px;
    }
    .tech-logo span {
        font-size: 0.66rem;
    }
}

/* iPad Mini / iPad Air Portrait */
@media (min-width: 768px) and (max-width: 1023px) and (orientation: portrait) {
    .tech-strip {
        grid-template-columns: repeat(6, 1fr);
    }
}

/* Tablet Landscape (768px – 1199px) */
@media (min-width: 768px) and (max-width: 1199px) and (orientation: landscape) {
    .technologies-section {
        padding: 64px 44px 72px;
    }
    .section-heading {
        font-size: clamp(3rem, 6vw, 4.5rem);
        margin-bottom: 40px;
        text-align: left;
    }
    .tech-strip {
        grid-template-columns: repeat(6, 1fr);
    }
    .tech-strip-item {
        padding: 30px 16px;
    }
    .tech-logo svg {
        width: 38px;
        height: 38px;
    }
}


/* =====================================================================
   5. WHO IT'S FOR SECTION
   ===================================================================== */

.whofor-section {
    background: #F8F8F8;
    padding: 80px 60px 100px;
    max-width: 1440px;
    margin: 0 auto;
}

.whofor-container {
    max-width: 1100px;
    margin: 0 auto;
}

.whofor-content {
    display: flex;
    gap: 70px;
    align-items: center;
}

.whofor-images {
    flex: 0 0 480px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 12px;
}

.whofor-img {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.10);
    background: #d0d0d0;
    min-height: 175px;
    border: solid white;
}

.whofor-img--tall {
    grid-row: 1 / 3;
    grid-column: 2;
    min-height: 362px;
}

.whofor-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.whofor-img:hover img {
    transform: scale(1.04);
}

.img-placeholder {
    width: 100%;
    height: 100%;
    min-height: inherit;
    background: linear-gradient(135deg, #d5d5d5 0%, #bebebe 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
}

.whofor-text {
    flex: 1;
}

.whofor-text .section-heading {
    margin-bottom: 20px;
}

.whofor-description {
    font-family: var(--primary-font);
    font-size: 0.85rem;
    font-weight: 500;
    color: #555;
    line-height: 1.75;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 36px;
    max-width: 370px;
}

.whofor-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-whofor-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--golden-gradient);
    color: #fff;
    padding: 13px 20px 13px 26px;
    font-family: var(--primary-font);
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 55px;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-whofor-primary:hover {
    background: #111;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.btn-whofor-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1.5px solid #C8922A;
    color: #111;
    background: transparent;
    padding: 13px 20px 13px 26px;
    font-family: var(--primary-font);
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 55px;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-whofor-outline:hover {
    background: var(--golden-gradient);
    color: #fff;
    border-color: transparent;
    transform: translateY(-2px);
}

.btn-arrow-badge {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(255,255,255,0.22);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.btn-whofor-outline .btn-arrow-badge {
    background: rgba(161,108,22,0.12);
    color: var(--gold-mid);
}

/* ── Who It's For Responsive ── */

@media (max-width: 1024px) {
    .whofor-images {
        flex: 0 0 360px;
    }
}

@media (max-width: 900px) {
    .whofor-section {
        padding: 50px 30px 60px;
    }
}

@media (max-width: 820px) {
    .whofor-content {
        flex-direction: column;
        gap: 40px;
    }
    .whofor-images {
        flex: none;
        width: 100%;
    }
    .whofor-description {
        max-width: 100%;
    }
}

@media (max-width: 680px) {
    .whofor-section {
        padding: 40px 20px 50px;
    }
    .whofor-btns {
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        align-items: center;
    }
}

@media (max-width: 430px) {
    .whofor-section {
        padding: 44px 16px 52px;
    }
    .whofor-content {
        flex-direction: column;
        gap: 32px;
    }
    .whofor-images {
        flex: none;
        width: 100%;
        gap: 8px;
        grid-template-columns: 1fr 1fr;
    }
    .whofor-img {
        min-height: 130px;
        border-radius: 12px;
    }
    .whofor-img--tall {
        min-height: 268px;
    }
    .whofor-text .section-heading {
        text-align: center;
        margin-bottom: 14px;
    }
    .whofor-description {
        font-size: 0.72rem;
        max-width: 100%;
        text-align: center;
        margin-bottom: 24px;
        line-height: 1.7;
    }
    .whofor-btns {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    .btn-whofor-primary,
    .btn-whofor-outline {
        width: 100%;
        justify-content: center;
        font-size: 0.72rem;
        padding: 12px 18px;
    }
}

@media (max-width: 360px) {
    .whofor-img {
        min-height: 110px;
    }
    .whofor-img--tall {
        min-height: 228px;
    }
}

/* 768px Landscape — phones rotated */
@media (max-height: 500px) and (min-width: 600px) and (orientation: landscape) {
    .whofor-section {
        padding: 36px 24px 44px;
    }
    .whofor-content {
        flex-direction: row;
        gap: 32px;
        align-items: center;
    }
    .whofor-images {
        flex: 0 0 280px;
        gap: 8px;
    }
    .whofor-img {
        min-height: 110px;
    }
    .whofor-img--tall {
        min-height: 228px;
    }
    .whofor-text .section-heading {
        text-align: left;
        font-size: 2.4rem;
        margin-bottom: 12px;
    }
    .whofor-description {
        font-size: 0.72rem;
        text-align: left;
        margin-bottom: 20px;
    }
    .whofor-btns {
        flex-direction: row;
        gap: 10px;
    }
    .btn-whofor-primary,
    .btn-whofor-outline {
        width: auto;
        font-size: 0.7rem;
        padding: 10px 16px;
    }
}

/* Tablet Portrait (431px – 1023px) */
@media (min-width: 431px) and (max-width: 1023px) and (orientation: portrait) {
    .whofor-section {
        padding: 56px 28px 64px;
    }
    .whofor-content {
        flex-direction: column;
        gap: 36px;
    }
    .whofor-images {
        flex: none;
        width: 85%;
        max-width: 480px;
        margin: 0 auto;
        gap: 10px;
    }
    .whofor-img {
        min-height: 150px;
        border-radius: 14px;
    }
    .whofor-img--tall {
        min-height: 310px;
    }
    .whofor-text {
        width: 100%;
        text-align: center;
    }
    .whofor-text .section-heading {
        text-align: center;
        margin-bottom: 14px;
    }
    .whofor-description {
        font-size: 0.8rem;
        max-width: 100%;
        text-align: center;
        margin-bottom: 28px;
    }
    .whofor-btns {
        justify-content: center;
        gap: 12px;
    }
    .btn-whofor-primary,
    .btn-whofor-outline {
        font-size: 0.76rem;
        padding: 12px 22px;
    }
}

/* iPad Mini / iPad Air Portrait */
@media (min-width: 768px) and (max-width: 1023px) and (orientation: portrait) {
    .whofor-content {
        flex-direction: row;
        gap: 48px;
        align-items: center;
    }
    .whofor-images {
        flex: 0 0 42%;
        width: 42%;
        max-width: none;
        margin: 0;
    }
    .whofor-text {
        text-align: left;
    }
    .whofor-text .section-heading {
        text-align: left;
    }
    .whofor-description {
        text-align: left;
    }
    .whofor-btns {
        justify-content: flex-start;
    }
}

/* Tablet Landscape (768px – 1199px) */
@media (min-width: 768px) and (max-width: 1199px) and (orientation: landscape) {
    .whofor-section {
        padding: 64px 44px 80px;
    }
    .whofor-content {
        flex-direction: row;
        gap: 56px;
        align-items: center;
    }
    .whofor-images {
        flex: 0 0 400px;
        gap: 10px;
    }
    .whofor-img {
        min-height: 158px;
        border-radius: 16px;
    }
    .whofor-img--tall {
        min-height: 326px;
    }
    .whofor-text {
        flex: 1;
        text-align: left;
    }
    .whofor-text .section-heading {
        text-align: left;
        margin-bottom: 16px;
    }
    .whofor-description {
        font-size: 0.82rem;
        text-align: left;
        max-width: 400px;
        margin-bottom: 32px;
    }
    .whofor-btns {
        justify-content: flex-start;
        gap: 14px;
    }
    .btn-whofor-primary,
    .btn-whofor-outline {
        font-size: 0.76rem;
    }
}