/* === FONT FACE === */
@font-face {
    font-family: 'YekanBakh';
    src: url('/assets/Font/YekanBakh-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'YekanBakh';
    src: url('/assets/Font/YekanBakh-Black.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

:root {
    /* Silver Palette */
    --silver-primary: #D4D4D8;
    --silver-dark: #A1A1AA;
    --silver-bright: #f5f5f7;
    --silver-light: #d9d9dd;
    --silver-mid: #a9a9b0;
    --silver-glow: rgba(212, 212, 216, 0.15);
    --silver-glow-strong: rgba(255, 255, 255, 0.25);

    --black: #0A0A0A;
    --black-light: #111111;
    --black-lighter: #1A1A1A;
    --bg-deep-black: #000000;
    --bg-dark-gray: #080808;
    --bg-card: #111111;

    --text-primary: #FFFFFF;
    --text-secondary: #B0B0B0;
    --text-muted: #666666;
    --border: rgba(212, 212, 216, 0.15);
    --border-metal: rgba(255, 255, 255, .12);

    --font-yekan: 'YekanBakh', system-ui, -apple-system, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* Force YekanBakh on all elements */
div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, center, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video,
input, textarea, select, button,
::placeholder {
    font-family: var(--font-yekan) !important;
    font-style: normal !important;
}

body {
    font-family: var(--font-yekan);
    font-weight: 700;
    background-color: var(--bg-deep-black);
    color: var(--text-secondary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-yekan) !important;
    font-weight: 900;
    line-height: 1.2;
    margin: 0;
}

h2 {
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 900;
}

h3 {
    font-size: clamp(20px, 3vw, 26px);
    font-weight: 900;
}

h4 {
    font-size: clamp(18px, 2.5vw, 22px);
    font-weight: 700;
}

p, span, a, li, div {
    font-family: var(--font-yekan) !important;
    font-weight: 700;
}

strong, b {
    font-family: var(--font-yekan) !important;
    font-weight: 900;
}

/* Custom Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #050505; }
::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, rgba(201, 201, 201, 0.1), rgba(255, 255, 255, 0.4), rgba(201, 201, 201, 0.1));
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover { background: rgba(255, 255, 255, 0.6); }

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* === INTRO SECTION === */
.intro {
    background: var(--bg-deep-black);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.section-title {
    font-family: var(--font-yekan) !important;
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    text-align: center;
    letter-spacing: -0.5px;
    line-height: 1.3;
}

.intro-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 1500px;
    text-align: center;
    margin: 0 auto;
}

.intro-text h2 {
    margin-block: 50px;
    font-size: clamp(24px, 4vw, 32px);
    color: var(--text-primary);
}

.intro-text strong {
    color: var(--text-primary);
    font-weight: 900;
}

.intro-text a {
    color: var(--silver-primary);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.3s ease;
}

.intro-text a:hover { color: #fff; }

/* === TRUST BADGES === */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 30px 0;
    justify-content: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 10px 22px;
    background: var(--black-light);
    border: 1px solid var(--border);
    color: var(--text-primary);
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.badge-prefix {
    font-size: 0.75rem;
    font-weight: 900;
    margin-right: 6px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    padding: 2px 6px;
    border-radius: 4px;
}

.badge:hover {
    background: var(--black-lighter);
    color: #ffffff;
    border-color: var(--silver-primary);
    transform: translateY(-2px);
}

/* Silver Glow Icon - Reduced Glow */
.silver-glow-icon {
    width: 18px;
    height: 18px;
    vertical-align: middle;
    margin-right: 8px;
    display: inline-block;
    filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.4));
    animation: silverPulse 3s infinite ease-in-out;
}

@keyframes silverPulse {
    0%, 100% {
        filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.3));
        opacity: 0.93;
    }
    50% {
        filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.5));
        opacity: 1;
    }
}

/* === CTA BOX === */
.cta-box {
    background: linear-gradient(145deg, var(--black-light), var(--black));
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 45px 35px;
    text-align: center;
    max-width: 1000px;
    margin: 50px auto 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.cta-text {
    color: var(--text-primary);
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.6;
    margin-bottom: 28px;
}

/* === BUTTONS (New Style - Rounded Silver) === */
.btn,
.cta-btn,
.gold-action-btn,
.global-campaign-btn,
.gold-solid-moat-btn,
.dark-solid-consultation-btn,
.partner-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #f8fafc, #cbd5e1);
    color: #000;
    padding: 1rem 2.5rem;
    border-radius: 25px;
    font-family: var(--font-yekan) !important;
    font-weight: 900;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-height: 48px;
    text-decoration: none;
}

.btn:hover,
.cta-btn:hover,
.gold-action-btn:hover,
.global-campaign-btn:hover,
.gold-solid-moat-btn:hover,
.partner-card-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, #cbd5e1, #f8fafc);
}

.dark-solid-consultation-btn {
    background: #000;
    color: #fff;
    border: 1px solid var(--border);
}

.dark-solid-consultation-btn:hover {
    background: #151515;
    color: #fff;
}

/* === SERVICES SECTION === */
.services {
    background: var(--bg-deep-black);
    padding: 100px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.services-layout {
    display: grid;
    gap: 60px;
    align-items: center;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 6px 0;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.service-item:hover { transform: translateX(8px); }

.service-icon {
    width: 10px;
    height: 10px;
    border: 1.5px solid var(--silver-mid);
    border-radius: 0;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.service-item:hover .service-icon {
    background: var(--silver-primary);
    border-color: var(--silver-primary);
}

.service-text {
    font-size: 1.05rem;
    color: var(--text-primary);
    font-weight: 700;
    letter-spacing: 0.3px;
}

.services-title-wrapper {
    text-align: center;
}

.services-title-wrapper h2 {
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 900;
    color: var(--text-primary);
    letter-spacing: -4px;
    text-transform: uppercase;
}

/* === WHY CHOOSE SECTION === */
.why-choose {
    background: var(--bg-deep-black);
    padding: 120px 0;
    position: relative;
}

.why-choose-layout {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: start;
}

.why-choose-sticky-left {
    position: sticky;
    top: 100px;
    height: auto;
    padding-bottom: 40px;
}

.sticky-typography {
    font-size: 2.8rem;
    line-height: 1.15;
    font-weight: 900;
    color: var(--text-primary);
    letter-spacing: -0.5px;
    opacity: 0.9;
}

.sticky-typography .highlight { color: var(--silver-primary); }

.why-choose-scroll-right {
    display: flex;
    flex-direction: column;
}

.right-main-title {
    color: var(--text-primary) !important;
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 900;
    line-height: 1.25;
    margin-bottom: 45px;
    text-align: left;
}

.right-sub-title {
    font-size: clamp(20px, 3vw, 26px);
    color: var(--text-primary);
    font-weight: 900;
    margin-bottom: 18px;
    text-align: left;
}

.right-paragraph {
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--text-secondary);
    margin-bottom: 40px;
    text-align: left;
}

.gold-text { color: var(--silver-primary) !important; }
.white-text { color: #ffffff !important; }

/* Custom Pillars */
.custom-pillars-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 45px;
}

.custom-pillar-item {
    border-left: 1px dashed rgba(255, 255, 255, 0.2);
    padding-left: 20px;
    text-align: left;
}

.pillar-item-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.pillar-item-header h4 {
    color: var(--text-primary);
    font-size: clamp(18px, 2.5vw, 22px);
    font-weight: 900;
    margin: 0;
}

.pillar-svg-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.4));
    animation: silverPulse 3.5s infinite ease-in-out;
}

.custom-pillar-item p {
    font-size: 0.98rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

/* Geometric Logo */
.geometric-logo {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 24px;
}

.geo-row { display: flex; gap: 8px; align-items: center; }

.shape-square {
    width: 12px;
    height: 12px;
    border: 1.8px solid var(--silver-primary);
    display: inline-block;
}

.shape-triangle {
    width: 0;
    height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 12px solid var(--silver-primary);
    display: inline-block;
}

.shape-circle {
    width: 12px;
    height: 12px;
    border: 1.8px solid var(--silver-primary);
    border-radius: 50%;
    display: inline-block;
}

.shape-lines { display: flex; flex-direction: column; gap: 2.5px; }

.shape-lines span {
    width: 14px;
    height: 1.8px;
    background-color: var(--silver-primary);
    display: block;
}

/* Partnership Quote */
.partnership-quote {
    font-style: italic;
    color: var(--text-primary);
    border-left: 2px solid var(--silver-primary);
    padding-left: 20px;
    margin: 35px 0;
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Action CTA */
.action-cta-section {
    text-align: center;
    margin-top: 70px;
    margin-bottom: 80px;
}

.action-title {
    color: var(--text-primary);
    font-size: 1.65rem;
    font-weight: 700;
    line-height: 1.45;
    margin-bottom: 28px;
}

.action-title strong { font-weight: 900; }

.action-btn-wrapper { display: flex; justify-content: center; }

/* Imagination Footer */
.imagination-footer-block {
    margin-top: 90px;
    position: relative;
    text-align: center;
    padding-top: 50px;
}

.layers-icon {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0.9;
}

.imagination-title {
    color: var(--text-primary);
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.35;
    margin: 0 auto;
    text-align: center;
}

/* Global Presence */
.global-presence-intro-block {
    margin-top: 65px;
    margin-bottom: 25px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.presence-minimal-icon { margin-bottom: 22px; display: inline-block; }

.presence-main-title {
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 900;
    line-height: 1.35;
    margin-top: 0;
    margin-bottom: 35px;
}

.presence-subtitle-highlight {
    color: var(--text-primary);
    font-size: 1.35rem;
    line-height: 1.65;
    margin-bottom: 28px;
    font-weight: 700;
}

.presence-subtitle-highlight strong {
    font-weight: 900;
    color: var(--text-primary);
}

/* Global Reach */
.global-reach-block {
    margin-top: 45px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.eu-hq-section {
    margin-top: 30px;
    background: rgba(255, 255, 255, 0.01);
    padding: 25px;
    border-radius: 8px;
    border-left: 3px solid var(--silver-primary);
}

.eu-hq-title {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 18px;
    font-weight: 900;
}

.eu-locations-list { list-style: none; padding: 0; margin: 0 0 20px 0; }

.eu-locations-list li {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 10px;
    position: relative;
    padding-left: 15px;
}

.eu-locations-list li::before {
    content: "•";
    color: var(--silver-primary);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
    top: -2px;
}

.eu-locations-list li strong { color: var(--text-primary); }

.eu-footer-note {
    font-style: italic;
    color: var(--silver-primary);
    font-size: 0.9rem;
    margin: 0;
}

/* Global Stats */
.global-stats-block {
    margin-top: 50px;
    margin-bottom: 50px;
    padding: 30px 20px;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.02) 0%, transparent 70%);
}

.text-center { text-align: center; }

.stats-main-title {
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 900;
    text-align: center;
    margin-top: 35px;
    margin-bottom: 35px;
}

.stats-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 450px;
    margin: 0 auto;
}

.stats-grid-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-text {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 900;
}

.centered-stat { grid-column: span 2; margin-top: 10px; }

.global-campaign-btn-box {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

/* Stats Updated */
.global-stats-block-updated {
    margin-top: 40px;
    margin-bottom: 20px;
    width: 100%;
}

.stats-accent-indicator-wrapper {
    border-left: 3px solid var(--silver-primary);
    padding-left: 20px;
    margin-bottom: 35px;
    margin-top: 15px;
}

.accent-performance-list { list-style: none; padding: 0; margin: 0; }

.accent-performance-list li {
    color: var(--text-primary);
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.accent-performance-list li strong { font-weight: 900; }

.ecosystem-vision-text {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

/* Decade Dominance Card */
.decade-dominance-gold-card {
    background-color: var(--silver-primary);
    border-radius: 12px;
    padding: 45px 30px;
    text-align: center;
    margin-top: 30px;
}

.dominance-card-title {
    color: #000000;
    font-size: 1.65rem;
    font-weight: 900;
    line-height: 1.45;
    margin-top: 0;
    margin-bottom: 30px;
}

.consultation-btn-wrapper { margin-bottom: 25px; }

.dominance-card-footer {
    color: rgba(0, 0, 0, 0.85);
    font-size: 0.9rem;
    margin: 0;
    font-weight: 700;
}

.portal-link-inline {
    color: #000000;
    text-decoration: underline;
    font-weight: 900;
}

.portal-link-inline:hover { color: #333333; }

/* DWA Promise Block */
.dwa-promise-block {
    margin-top: 60px;
    margin-bottom: 30px;
    text-align: center;
    width: 100%;
}

.promise-layers-icon {
    margin-bottom: 20px;
    display: inline-block;
    text-align: left;
    width: 100%;
}

.promise-main-title {
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 900;
    line-height: 1.3;
    margin-top: 0;
    margin-bottom: 35px;
}

.promise-intro-text {
    font-size: 1.2rem;
    line-height: 1.75;
    color: var(--text-primary);
    text-align: left;
    margin-bottom: 40px;
}

.gold-inline-link {
    color: var(--silver-primary);
    border-bottom: 2px solid var(--silver-primary);
    padding-bottom: 1px;
    font-weight: 900;
}

.promise-features-list {
    margin-bottom: 45px;
    text-align: left;
}

.promise-feature-item {
    border-left: 2px solid var(--silver-primary);
    padding-left: 20px;
    margin-bottom: 30px;
}

.promise-feature-item:last-child { margin-bottom: 0; }

.feature-item-text {
    color: var(--text-primary);
    font-size: 1.2rem;
    line-height: 1.6;
    margin: 0;
}

.feature-item-text .gold-text {
    font-weight: 900;
    margin-right: 5px;
}

.moat-btn-wrapper { text-align: center; margin-top: 35px; }

/* Premium Cyber Link */
.premium-cyber-link {
    color: var(--text-primary) !important;
    text-decoration: none !important;
    position: relative;
    display: inline-flex;
    align-items: center;
    font-weight: 700;
    padding-bottom: 2px;
    transition: color 0.3s ease;
}

.premium-cyber-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1.5px;
    background: linear-gradient(90deg, var(--silver-dark), var(--silver-primary));
    transform: scaleX(0.4);
    transform-origin: bottom left;
    opacity: 0.7;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s ease;
}

.premium-cyber-link::before {
    content: '↗';
    font-size: 11px;
    margin-left: 4px;
    order: 2;
    opacity: 0.4;
    color: var(--silver-primary);
    transform: translate(-2px, 2px);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.premium-cyber-link:hover { color: #ffffff !important; }

.premium-cyber-link:hover::after {
    transform: scaleX(1);
    opacity: 1;
}

.premium-cyber-link:hover::before {
    opacity: 1;
    transform: translate(1px, -1px);
    color: #ffffff;
}

/* Talk to Us */
.talk-us-portfolio-wrapper {
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: flex-start;
}

.talk-us-label-text {
    color: var(--text-primary);
    font-size: 1.25rem;
    font-weight: 900;
}

.custom-portfolio-link {
    width: 75px;
    height: 75px;
    border: 1px solid var(--text-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    text-decoration: none;
    transform: rotate(0deg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--text-primary);
    z-index: 2;
}

.custom-portfolio-link:hover {
    background: var(--black);
    border-color: var(--text-primary);
    color: var(--text-primary);
    transform: rotate(45deg);
}

.custom-portfolio-link svg {
    width: 34px;
    height: 34px;
    transition: transform 0.4s ease;
}

/* Strategic Partner */
.strategic-partner-container { margin-top: 40px; }

.partner-badges-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 30px;
}

.partner-badge {
    display: inline-flex;
    align-items: center;
    padding: 10px 18px;
    background: var(--black-light);
    border: 1px solid var(--border);
    color: var(--text-primary);
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 50px;
}

.vendor-card {
    background: var(--black-light);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
}

.vendor-card-text {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.5;
    margin: 0;
}

/* Section Label */
.section-label-left {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--silver-primary);
    font-size: 0.875rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-weight: 900;
}

/* === ANIMATIONS === */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate { opacity: 0; }

.animate.visible { animation: fadeInUp 0.7s ease forwards; }

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

@keyframes luxurySlideIn {
    0% {
        opacity: 0;
        transform: translateX(40px);
        filter: blur(8px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
        filter: blur(0);
    }
}

.animated-word {
    opacity: 0;
    display: inline-block !important;
    margin-right: 0.28em;
}

.animated-word.visible {
    animation: luxurySlideIn 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    animation-delay: calc(var(--word-index) * 0.12s);
}

.responsive-word {
    margin-right: 3%;
    letter-spacing: -3;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .why-choose-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .why-choose-sticky-left {
        position: relative;
        top: auto;
    }
    .services-layout {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 968px) {
    section { padding: 4rem 1.5rem; }
    .partner-badges-grid { grid-template-columns: 1fr; }
}

@media (max-width: 795px) {
    .container { padding: 0 20px; }
    .intro { padding: 80px 0; }
    .section-title { font-size: 1.8rem; }
    .service-item { gap: 12px; }
    .service-text { font-size: 0.95rem; }
    .sticky-typography { font-size: 1.8rem; text-align: center; }
    .right-main-title { font-size: 1.8rem; }
    .right-sub-title { font-size: 1.2rem; }
    .stats-grid-wrapper { grid-template-columns: 1fr; }
    .centered-stat { grid-column: auto; }
    .talk-us-portfolio-wrapper { flex-direction: column; gap: 15px; }
    .btn, .cta-btn, .gold-action-btn, .global-campaign-btn,
    .gold-solid-moat-btn, .dark-solid-consultation-btn, .partner-card-btn {
        width: 100%;
        text-align: center;
        padding: 1rem 2rem;
    }
}

@media (max-width: 768px) {
    .silver-glow-icon { width: 15px; height: 15px; margin-right: 5px; }
    .pillar-item-header { gap: 10px; }
    .pillar-svg-icon { width: 20px; height: 20px; }
    .promise-main-title { font-size: 1.8rem; }
    .promise-intro-text { font-size: 1.05rem; }
    .feature-item-text { font-size: 1.05rem; }
    .accent-performance-list li { font-size: 1.05rem; }
    .dominance-card-title { font-size: 1.35rem; }
    .decade-dominance-gold-card { padding: 30px 20px; }
    .presence-main-title { font-size: 1.8rem; }
    .presence-subtitle-highlight { font-size: 1.15rem; }
    .premium-cyber-link::after { transform: scaleX(0.8); }
    .responsive-word { margin-right: 6%; }
}

@media (max-width: 480px) {
    .section-title { font-size: 1.5rem; }
    .sticky-typography { font-size: 1.5rem; }
    .badge { width: 100%; justify-content: center; }
    .trust-badges { flex-direction: column; }
    .responsive-word { margin-right: 7%; }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .animate { opacity: 1; transform: none; }
}