/* ==========================================================
   Trice Technologies — Revamp (Lighter, Logo-Colors Theme)
   Color Palette (original brand):
   - Orange (primary): #f6821f
   - Dark gray: #3c3d42
   - Background: cream / off-white
   ========================================================== */

* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    /* Surfaces */
    --bg:           #faf7f2;          /* cream */
    --bg-2:         #f3eee6;          /* warmer cream */
    --surface:      #ffffff;
    --surface-2:    #f8f5ef;
    --surface-3:    #f0ebe1;
    --border:       #e6e0d4;
    --border-soft:  #efeae0;

    /* Brand */
    --accent:       #f6821f;          /* logo orange */
    --accent-light: #ff9b3d;
    --accent-dark:  #d96a0d;
    --accent-soft:  rgba(246, 130, 31, 0.12);
    --dark:         #3c3d42;          /* logo dark gray */
    --dark-2:       #2a2b30;
    --darker:       #1c1d22;

    /* Text */
    --text:         #1f2024;
    --text-2:       #54555a;
    --text-3:       #8a8b8f;
    --white:        #ffffff;

    /* Effects */
    --gradient-accent: linear-gradient(135deg, #f6821f 0%, #ff8a3d 100%);
    --gradient-dark:   linear-gradient(135deg, #3c3d42 0%, #1f2024 100%);
    --shadow-sm:   0 2px 12px rgba(60, 61, 66, 0.06);
    --shadow:      0 12px 40px rgba(60, 61, 66, 0.10);
    --shadow-lg:   0 24px 60px rgba(60, 61, 66, 0.14);
    --transition:  cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }
html, body { overflow-x: clip; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    overflow-x: clip;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4, h5, h6 {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    color: var(--text);
    line-height: 1.18;
    letter-spacing: -0.02em;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

p { word-wrap: break-word; overflow-wrap: break-word; }

.container {
    width: min(100%, 1400px);
    margin-inline: auto;
    padding-inline: clamp(12px, 1.6vw, 18px);
}

@media (min-width: 768px) {
    .container { padding-inline: clamp(12px, 1.4vw, 14px); }
}

@media (min-width: 1024px) {
    .container { padding-inline: clamp(14px, 1.2vw, 18px); }
}

.text-accent { color: var(--accent); }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }

/* ==========================================================
   TOP UTILITY BAR
   ========================================================== */
.topbar {
    background: var(--dark);
    color: rgba(255,255,255,0.85);
    font-size: 13px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 38px;
    gap: 20px;
}
.topbar-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.85);
    transition: color 0.2s var(--transition);
}
.topbar-item:hover { color: var(--accent-light); }
.topbar-item svg { color: var(--accent); }
.topbar-social { display: flex; gap: 14px; }
.topbar-social a {
    color: rgba(255,255,255,0.7);
    transition: color 0.2s var(--transition);
    display: inline-flex;
    align-items: center;
}
.topbar-social a:hover { color: var(--accent-light); }
@media (max-width: 640px) {
    .topbar-inner { height: auto; padding: 8px 0; flex-wrap: wrap; gap: 8px 16px; }
    .topbar-item span { display: none; }
}

/* ==========================================================
   HEADER
   ========================================================== */
.header {
    position: sticky;
    top: 0;
    z-index: 250;
    background: rgba(250, 247, 242, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid transparent;
    transition: all 0.3s var(--transition);
}
.header.scrolled {
    background: rgba(255, 255, 255, 0.96);
    border-bottom-color: var(--border);
    box-shadow: var(--shadow-sm);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
    gap: 32px;
}
.logo img {
    height: 44px;
    width: auto;
    object-fit: contain;
}
.nav {
    display: flex;
    align-items: center;
    gap: 30px;
}
.nav-link {
    position: relative;
    font-size: 15px;
    font-weight: 500;
    color: var(--text);
    padding: 8px 0;
    transition: color 0.2s var(--transition);
}
.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 2px;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s var(--transition);
}
.nav-link:hover { color: var(--accent); }
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }
.nav-link.active { color: var(--accent); }

.nav-cta {
    background: var(--dark);
    color: var(--white);
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.25s var(--transition);
}
.nav-cta::after { display: none; }
.nav-cta:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-1px);
}

/* ==========================================================
   SERVICES DROPDOWN
   ========================================================== */
.nav-dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
}
.nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.nav-dropdown-toggle svg {
    transition: transform 0.25s var(--transition);
}
.nav-dropdown:hover .nav-dropdown-toggle svg,
.nav-dropdown.is-open .nav-dropdown-toggle svg {
    transform: rotate(180deg);
}
.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 240px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    padding: 22px 8px 8px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s var(--transition),
                transform 0.25s var(--transition),
                visibility 0.25s var(--transition);
    z-index: 150;
}
.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: var(--white);
    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border);
    border-radius: 2px;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}
.nav-dropdown-item {
    display: block;
    padding: 10px 14px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    border-radius: 8px;
    transition: all 0.2s var(--transition);
    white-space: nowrap;
}
.nav-dropdown-item:hover {
    background: var(--accent-soft);
    color: var(--accent);
}
.nav-dropdown-item.is-active {
    background: var(--accent-soft);
    color: var(--accent);
    font-weight: 600;
}

/* Hamburger */
.menu-btn {
    display: none;
    width: 40px;
    height: 40px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    background: transparent;
    z-index: 300;
    position: relative;
}
.menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: all 0.3s var(--transition);
    border-radius: 2px;
}
.menu-btn.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); background: var(--accent); }
.menu-btn.active span:nth-child(2) { opacity: 0; }
.menu-btn.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: var(--accent); }

/* ==========================================================
   HERO — FULL-WIDTH IMAGE SLIDER
   ========================================================== */
.hero {
    position: relative;
    width: 100%;
    height: clamp(620px, 90vh, 880px);
    background: var(--dark);
    overflow: hidden;
}
.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.9s ease, visibility 0.9s ease;
}
.slide.is-active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}
.slide-img {
    position: absolute;
    inset: 0;
}
.slide-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    transition: transform 6s ease-out;
}
.slide.is-active .slide-img img { transform: scale(1); }
.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        100deg,
        rgba(28, 29, 34, 0.92) 0%,
        rgba(28, 29, 34, 0.78) 35%,
        rgba(28, 29, 34, 0.35) 65%,
        rgba(28, 29, 34, 0.15) 100%
    );
    z-index: 1;
}
.slide-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 820px;
    padding-top: 60px;
    padding-bottom: 80px;
    color: var(--white);
}
.slide-eyebrow {
    display: inline-block;
    align-self: flex-start;
    padding: 7px 14px;
    background: var(--accent);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 4px;
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s var(--transition) 0.3s;
}
.slide.is-active .slide-eyebrow { opacity: 1; transform: translateY(0); }
.slide-title {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 20px;
    max-width: 760px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s var(--transition) 0.4s;
}
.slide.is-active .slide-title { opacity: 1; transform: translateY(0); }
.slide-text {
    font-size: clamp(15px, 1.3vw, 17px);
    color: rgba(255,255,255,0.85);
    max-width: 600px;
    margin-bottom: 32px;
    line-height: 1.65;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.7s var(--transition) 0.5s;
}
.slide.is-active .slide-text { opacity: 1; transform: translateY(0); }
.slide-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.7s var(--transition) 0.6s;
}
.slide.is-active .slide-actions { opacity: 1; transform: translateY(0); }

/* Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255,255,255,0.10);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.20);
    color: var(--white);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--transition);
}
.slider-arrow:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(-50%) scale(1.06);
}
.slider-prev { left: 24px; }
.slider-next { right: 24px; }

/* Dots */
.slider-dots {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}
.dot {
    position: relative;
    width: 56px;
    height: 4px;
    border-radius: 2px;
    background: rgba(255,255,255,0.25);
    cursor: pointer;
    overflow: hidden;
    padding: 0;
    transition: width 0.3s var(--transition);
}
.dot-fill {
    position: absolute;
    inset: 0;
    background: var(--white);
    transform: scaleX(0);
    transform-origin: left;
}
.dot.is-active { background: rgba(255,255,255,0.15); width: 80px; }
.dot.is-active .dot-fill { animation: dotFill 6s linear forwards; }
@keyframes dotFill { to { transform: scaleX(1); } }

@media (max-width: 768px) {
    .hero { height: clamp(560px, 90vh, 760px); }
    .slider-arrow { width: 40px; height: 40px; }
    .slider-prev { left: 12px; }
    .slider-next { right: 12px; }
    .slider-dots { bottom: 20px; }
    .dot { width: 36px; }
    .dot.is-active { width: 56px; }
    .slide-content { padding-bottom: 100px; }
}

/* ==========================================================
   BUTTONS
   ========================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.25s var(--transition);
    cursor: pointer;
    white-space: nowrap;
    line-height: 1;
}
.btn-primary {
    background: var(--accent);
    color: var(--white);
    box-shadow: 0 8px 24px rgba(246, 130, 31, 0.30);
}
.btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(246, 130, 31, 0.40);
}
.btn-ghost {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.40);
}
.btn-ghost:hover {
    background: rgba(255,255,255,0.10);
    border-color: var(--white);
    transform: translateY(-2px);
}
.btn-ghost-light {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.30);
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.10); }

.btn-lg { padding: 18px 30px; font-size: 16px; }

/* Remove default browser focus outline (blue stroke) on all buttons & links */
.btn,
button,
a.btn,
a,
input[type="submit"],
input[type="button"] {
    outline: none !important;
    -webkit-tap-highlight-color: transparent;
    -webkit-focus-ring-color: transparent;
}
.btn:focus,
.btn:focus-visible,
.btn:active,
.btn:hover,
button:focus,
button:focus-visible,
button:active,
a:focus,
a:focus-visible,
a:active {
    outline: none !important;
    outline-offset: 0 !important;
    box-shadow: 0 8px 24px rgba(246, 130, 31, 0.30);
}
.btn-primary:focus,
.btn-primary:focus-visible,
.btn-primary:active,
.btn-primary:hover {
    outline: none !important;
    box-shadow: 0 8px 24px rgba(246, 130, 31, 0.40) !important;
}
.btn-ghost:focus,
.btn-ghost:focus-visible,
.btn-ghost:active,
.btn-ghost-light:focus,
.btn-ghost-light:focus-visible,
.btn-ghost-light:active {
    box-shadow: none !important;
}
/* Reset focus for all interactive elements site-wide */
*:focus,
*:focus-visible,
*:active {
    outline: none !important;
}

/* Solid buttons on light backgrounds */
.section .btn-ghost,
.careers .btn-ghost,
.blog .btn-ghost {
    color: var(--text);
    border-color: var(--border);
}
.section .btn-ghost:hover,
.careers .btn-ghost:hover,
.blog .btn-ghost:hover {
    background: var(--dark);
    color: var(--white);
    border-color: var(--dark);
}

/* ==========================================================
   MARQUEE
   ========================================================== */
.marquee-section {
    background: var(--white);
    padding: 50px 0 60px;
    border-bottom: 1px solid var(--border);
}
.marquee-label {
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-3);
    margin-bottom: 28px;
}
.marquee {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.marquee-track {
    display: flex;
    gap: 90px;
    width: max-content;
    animation: marqueeScroll 40s linear infinite;
    will-change: transform;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.marquee-item img {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s var(--transition);
}
.marquee-item img:hover { filter: grayscale(0); opacity: 1; transform: scale(1.05); }
@keyframes marqueeScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ==========================================================
   SECTION HELPERS
   ========================================================== */
.section {
    padding: 100px 0;
    position: relative;
}
.section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 60px;
}
.section-head.centered {
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--accent);
    margin-bottom: 16px;
}
.eyebrow.light { color: var(--accent-light); }
.section-title {
    font-size: clamp(28px, 3.6vw, 46px);
    font-weight: 800;
    line-height: 1.12;
    color: var(--text);
    max-width: 720px;
}
.section-title.light { color: var(--white); }
.section-title-lg {
    font-size: clamp(28px, 3.6vw, 46px);
    font-weight: 800;
    line-height: 1.12;
    color: var(--text);
    text-align: center;
}
.section-lead {
    font-size: 16px;
    color: var(--text-2);
    line-height: 1.7;
    max-width: 480px;
}
@media (max-width: 768px) {
    .section { padding: 70px 0; }
    .section-head { flex-direction: column; align-items: flex-start; gap: 18px; margin-bottom: 40px; }
}

/* ==========================================================
   SERVICES — COMPACT 3x2 GRID
   ========================================================== */
.services {
    background: var(--bg);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.service-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px 26px;
    transition: all 0.3s var(--transition);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--transition);
}
.service-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(45%) sepia(85%) saturate(1500%) hue-rotate(360deg) brightness(101%) contrast(101%);
    transition: transform 0.3s var(--transition);
}
.service-card:hover .service-icon img { transform: scale(1.08); }
.service-card h3 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text);
}
.service-card p {
    font-size: 14px;
    color: var(--text-2);
    line-height: 1.6;
    margin: 0;
}
.service-card--accent {
    background: var(--accent-soft);
    border-color: var(--accent);
}
.service-card--dark {
    background: var(--dark);
    border-color: var(--dark);
}
.service-card--dark h3 { color: var(--white); }
.service-card--dark p { color: rgba(255,255,255,0.75); }
.service-card--dark .service-icon img {
    filter: brightness(0) invert(1);
}
@media (max-width: 900px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
    .services-grid { grid-template-columns: 1fr; }
}

/* ==========================================================
   ABOUT
   ========================================================== */
.about { background: var(--surface); }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 64px;
    align-items: center;
}
.about-visual {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}
.about-visual img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    border-radius: 20px;
}
.about-badge {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: var(--accent);
    color: var(--white);
    padding: 18px 22px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow);
}
.ab-num {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 38px;
    font-weight: 800;
    line-height: 1;
}
.ab-text {
    font-size: 12px;
    font-weight: 600;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.about-content p {
    font-size: 16px;
    color: var(--text-2);
    line-height: 1.75;
    margin-bottom: 16px;
    text-align: justify;
}
.about-content strong { color: var(--accent); }
@media (max-width: 900px) {
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-visual img { height: 360px; }
}

/* ==========================================================
   WEBDESIGNING
   ========================================================== */
.webdesigning {
    background: var(--bg);
}
.wd-inner {
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
}
.wd-underline {
    width: 60px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
    margin: 24px auto 32px;
}
.wd-content p {
    font-size: 16px;
    color: var(--text-2);
    line-height: 1.8;
    margin-bottom: 18px;
    text-align: justify;
}
.wd-content a {
    color: var(--accent);
    font-weight: 600;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s var(--transition);
}
.wd-content a:hover { border-bottom-color: var(--accent); }

/* ==========================================================
   STATS
   ========================================================== */
.stats {
    background: var(--dark);
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.stats::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(246, 130, 31, 0.18) 0%, transparent 70%);
    pointer-events: none;
}
.stats-head {
    text-align: center;
    margin-bottom: 60px;
}
.stats-head .section-title { margin: 0 auto; }
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
}
.stat {
    text-align: center;
    padding: 20px;
    border-right: 1px solid rgba(255,255,255,0.08);
}
.stat:last-child { border-right: none; }
.stat-num {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 8px;
}
.stat-label {
    font-size: 14px;
    color: rgba(255,255,255,0.75);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}
@media (max-width: 768px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat:nth-child(2) { border-right: none; }
    .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.08); padding-bottom: 32px; }
}

/* ==========================================================
   STANDOUT
   ========================================================== */
.standout { background: var(--surface); }
.standout-inner {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 64px;
    align-items: center;
}
.standout-content p {
    font-size: 16px;
    color: var(--text-2);
    line-height: 1.75;
    margin-bottom: 16px;
}
.standout-content strong { color: var(--accent); }
.standout-visual img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    border-radius: 20px;
}
@media (max-width: 900px) {
    .standout-inner { grid-template-columns: 1fr; gap: 40px; }
    .standout-visual img { height: 360px; }
}

/* ==========================================================
   PROCESS — BRIGHT DARK + ORANGE HIGHLIGHTS
   ========================================================== */
.process {
    background: linear-gradient(135deg, #1c1d22 0%, #3c3d42 50%, #2a2b30 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.process::before {
    content: '';
    position: absolute;
    top: -200px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(246, 130, 31, 0.30) 0%, transparent 70%);
    pointer-events: none;
}
.process::after {
    content: '';
    position: absolute;
    bottom: -200px;
    right: -150px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(246, 130, 31, 0.18) 0%, transparent 70%);
    pointer-events: none;
}
.process .section-head { margin-bottom: 60px; }
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}
.process-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 18px;
    padding: 32px 28px;
    transition: all 0.3s var(--transition);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    position: relative;
    overflow: hidden;
}
.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--transition);
}
.process-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent);
    transform: translateY(-6px);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.30);
}
.process-card:hover::before { transform: scaleX(1); }
.process-card--accent {
    background: linear-gradient(135deg, var(--accent) 0%, #d96a0d 100%);
    border-color: var(--accent);
    color: var(--white);
}
.process-card--accent::before { display: none; }
.process-card--accent:hover {
    background: linear-gradient(135deg, #ff8a3d 0%, var(--accent) 100%);
    border-color: var(--accent-light);
}
.process-num {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}
.process-card--accent .process-num { color: rgba(255, 255, 255, 0.40); }
.process-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
    line-height: 1.2;
}
.process-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.70);
    line-height: 1.6;
    margin: 0;
}
.process-card--accent p { color: rgba(255, 255, 255, 0.92); }

@media (max-width: 900px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .process-grid { grid-template-columns: 1fr; } }

/* ==========================================================
   PORTFOLIO
   ========================================================== */
.portfolio { background: var(--bg); }
.portfolio-filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.pf-btn {
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-2);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 100px;
    transition: all 0.25s var(--transition);
}
.pf-btn:hover { color: var(--accent); border-color: var(--accent); }
.pf-btn.is-active {
    background: var(--dark);
    color: var(--white);
    border-color: var(--dark);
}
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 240px;
    gap: 16px;
}
.pf-item {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    cursor: pointer;
}
.pf-item.pf-large { grid-column: span 2; grid-row: span 2; }
.pf-item.pf-tall  { grid-row: span 2; }
.pf-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--transition);
}
.pf-item:hover img { transform: scale(1.06); }
.pf-item.hidden { display: none; }
.pf-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(28, 29, 34, 0.92) 0%, rgba(28, 29, 34, 0) 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    color: var(--white);
    opacity: 0;
    transition: opacity 0.3s var(--transition);
}
.pf-item:hover .pf-overlay { opacity: 1; }
.pf-cat {
    display: inline-block;
    align-self: flex-start;
    background: var(--accent);
    color: var(--white);
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    margin-bottom: 10px;
}
.pf-overlay h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.3;
}
@media (max-width: 900px) {
    .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
    .pf-item.pf-large { grid-column: span 2; }
    .pf-item.pf-tall { grid-row: span 1; }
    .pf-overlay { opacity: 1; background: linear-gradient(to top, rgba(28,29,34,0.85) 0%, rgba(28,29,34,0) 60%); }
}
@media (max-width: 560px) {
    .portfolio-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
    .pf-item.pf-large { grid-column: span 1; grid-row: span 1; }
}

/* ==========================================================
   TESTIMONIALS — single-card carousel with auto-scroll + prev/next
   ========================================================== */
.testimonials { background: var(--surface); }
.testimonial-viewport {
    position: relative;
    overflow: hidden;
}
.testimonial-track-wrap {
    position: relative;
    overflow: hidden;
    padding: 8px 0 16px;
}
.testimonial-grid {
    display: flex;
    flex-direction: row;
    width: 100%;
    transition: transform 0.55s cubic-bezier(0.22, 0.61, 0.36, 1);
    will-change: transform;
}
.t-card {
    flex: 0 0 100%;
    min-width: 100%;
    max-width: 100%;
    width: 100%;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 36px;
    transition: all 0.3s var(--transition);
    position: relative;
    box-sizing: border-box;
}
.t-card::after {
    content: '“';
    position: absolute;
    top: 14px;
    right: 26px;
    font-family: 'Plus Jakarta Sans', serif;
    font-size: 80px;
    line-height: 1;
    color: var(--accent);
    opacity: 0.18;
    font-weight: 800;
    pointer-events: none;
}
.t-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: var(--accent);
}
.t-card-feature {
    background: var(--dark);
    border-color: var(--dark);
    color: var(--white);
}
.t-card-feature::after { color: var(--accent-light); opacity: 0.30; }
.t-stars {
    color: var(--accent);
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 16px;
}
.t-text {
    font-size: 17px;
    line-height: 1.75;
    color: var(--text-2);
    margin-bottom: 24px;
    font-style: italic;
    max-width: 720px;
}
.t-card-feature .t-text { color: rgba(255,255,255,0.85); }
.t-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.t-author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent);
}
.t-author strong {
    display: block;
    font-size: 14px;
    color: var(--text);
    font-weight: 700;
}
.t-card-feature .t-author strong { color: var(--white); }
.t-author span {
    display: block;
    font-size: 12px;
    color: var(--text-3);
}
.t-card-feature .t-author span { color: rgba(255,255,255,0.6); }
.t-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}
.t-arrow {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--border);
    color: var(--dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s var(--transition);
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}
.t-arrow:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(246, 130, 31, 0.30);
}
.t-progress {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-2);
    font-family: 'Plus Jakarta Sans', sans-serif;
    min-width: 150px;
    justify-content: center;
}
.t-progress-bar {
    width: 110px;
    height: 4px;
    background: var(--border);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}
.t-progress-fill {
    position: absolute;
    inset: 0;
    background: var(--accent);
    border-radius: 2px;
    transform-origin: left;
    transition: transform 0.55s cubic-bezier(0.22, 0.61, 0.36, 1);
}
@media (max-width: 600px) {
    .t-card { padding: 24px 22px; }
    .t-card::after { font-size: 56px; right: 18px; top: 8px; }
    .t-text { font-size: 15px; }
    .t-controls { gap: 12px; margin-top: 24px; }
    .t-arrow { width: 40px; height: 40px; }
    .t-progress { min-width: 110px; gap: 8px; font-size: 12px; }
    .t-progress-bar { width: 70px; }
}
/* ==========================================================
   BLOG
   ========================================================== */
.blog { background: var(--bg); }
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.b-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s var(--transition);
}
.b-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: var(--accent);
}
.b-img {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}
.b-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--transition);
}
.b-card:hover .b-img img { transform: scale(1.06); }
.b-date {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--accent);
    color: var(--white);
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 6px;
    letter-spacing: 1px;
}
.b-body { padding: 26px 24px; }
.b-cat {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent);
    margin-bottom: 12px;
}
.b-card h3 {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 12px;
}
.b-card p {
    font-size: 14px;
    color: var(--text-2);
    line-height: 1.6;
    margin-bottom: 16px;
}
.b-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    transition: gap 0.2s var(--transition);
}
.b-link:hover { gap: 10px; }
@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr; } }

/* ==========================================================
   CAREERS
   ========================================================== */
.careers { background: var(--surface); }
.careers-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 50px 56px;
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: 20px;
}
.careers-inner h2 { margin-bottom: 8px; }
.careers-inner p {
    font-size: 15px;
    color: var(--text-2);
    max-width: 580px;
    line-height: 1.65;
}
.careers .btn-primary { flex-shrink: 0; }
@media (max-width: 768px) {
    .careers-inner { flex-direction: column; align-items: flex-start; padding: 32px; }
}

/* ==========================================================
   CTA — WIDER
   ========================================================== */
.cta {
    padding: 0;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}
.cta::before {
    content: '';
    position: absolute;
    top: -300px;
    left: -200px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(246, 130, 31, 0.20) 0%, transparent 70%);
    pointer-events: none;
}
.cta::after {
    content: '';
    position: absolute;
    bottom: -300px;
    right: -200px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(246, 130, 31, 0.12) 0%, transparent 70%);
    pointer-events: none;
}
.cta-wrap {
    width: min(94%, 1600px);
    margin-inline: auto;
    padding: 100px 20px;
    position: relative;
    z-index: 1;
}
.cta-inner {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    color: var(--white);
}
.cta-title {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 800;
    line-height: 1.08;
    color: var(--white);
    margin-bottom: 20px;
}
.cta-desc {
    font-size: 18px;
    color: rgba(255,255,255,0.80);
    max-width: 640px;
    margin: 0 auto 36px;
    line-height: 1.6;
}
.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
@media (max-width: 768px) {
    .cta-wrap { padding: 70px 12px; }
}

/* ==========================================================
   FOOTER
   ========================================================== */
.footer {
    background: var(--darker);
    color: rgba(255,255,255,0.75);
    padding: 80px 0 30px;
}
.footer-top {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: 48px;
    margin-bottom: 60px;
}
.footer-logo img {
    height: 40px;
    width: auto;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}
.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255,255,255,0.6);
    max-width: 320px;
}
.footer-social {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 22px;
    flex-wrap: wrap;
}
.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.85);
    font-size: 16px;
    transition: all 0.25s var(--transition, ease);
}
.footer-social a:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(246,130,31,0.35);
}
.footer-col h4 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 20px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; line-height: 1.4; }
.footer-col a {
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    transition: color 0.2s var(--transition);
}
.footer-col a:hover { color: var(--accent-light); }

/* Footer Quick Links + Capabilities with icons */
.footer-col li > a {
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.4;
    color: rgba(255,255,255,0.65);
}
.footer-col li > a i.bi {
    font-size: 15px;
    color: var(--accent);
    width: 20px;
    text-align: center;
    flex-shrink: 0;
    transition: transform 0.25s var(--transition, ease), color 0.2s;
}
.footer-col li > a:hover i.bi {
    color: var(--accent-light);
    transform: translateX(3px);
}
.footer-col li > a span {
    line-height: 1.4;
}
.footer-col address {
    font-style: normal;
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255,255,255,0.65);
    margin-bottom: 16px;
}
.footer-hours {
    font-size: 13px;
    color: var(--accent-light);
    font-weight: 500;
}
.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    flex-wrap: wrap;
    gap: 12px;
}
.footer-status { display: flex; align-items: center; gap: 8px; }
.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #2ecc71;
    box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.20);
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.20); }
    50% { box-shadow: 0 0 0 6px rgba(46, 204, 113, 0.05); }
}
@media (max-width: 900px) {
    .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 560px) {
    .footer-top { grid-template-columns: 1fr; }
}

/* ==========================================================
   BACK TO TOP
   ========================================================== */
.back-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--white);
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s var(--transition);
    z-index: 90;
}
.back-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-top:hover {
    background: var(--accent-dark);
    transform: translateY(-4px);
}

/* ==========================================================
   WHATSAPP FLOATING BUTTON
   ========================================================== */
.whatsapp-float {
    position: fixed;
    bottom: 96px;        /* sits above the back-to-top button */
    right: 30px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45), 0 4px 12px rgba(18, 140, 126, 0.30);
    z-index: 95;
    transition: all 0.3s var(--transition);
    overflow: visible;
}
.whatsapp-float:hover {
    transform: translateY(-4px) scale(1.06);
    box-shadow: 0 16px 40px rgba(37, 211, 102, 0.55), 0 6px 16px rgba(18, 140, 126, 0.40);
}
.whatsapp-float:active { transform: scale(0.96); }
.whatsapp-float svg { display: block; }

/* Pulse ring */
.whatsapp-pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(37, 211, 102, 0.65);
    animation: whatsappPulse 2.4s ease-out infinite;
    pointer-events: none;
}
@keyframes whatsappPulse {
    0%   { transform: scale(1);   opacity: 0.65; }
    70%  { transform: scale(1.55); opacity: 0; }
    100% { transform: scale(1.55); opacity: 0; }
}

/* Tooltip */
.whatsapp-tooltip {
    position: absolute;
    right: calc(100% + 14px);
    top: 50%;
    transform: translateY(-50%);
    background: var(--darker);
    color: var(--white);
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.25s var(--transition);
    box-shadow: var(--shadow);
}
.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: var(--darker);
}
.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(-4px);
}
@media (max-width: 600px) {
    .whatsapp-tooltip { display: none; }
    .whatsapp-float { width: 52px; height: 52px; bottom: 90px; right: 20px; }
    .back-top { width: 44px; height: 44px; bottom: 22px; right: 20px; }
}

/* ==========================================================
   REVEAL ANIMATION
   ========================================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s var(--transition), transform 0.7s var(--transition);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================
   MOBILE NAV
   ========================================================== */
body.nav-open {
    overflow: hidden;
    position: fixed;
    inset: 0;
    width: 100%;
    touch-action: none;
}
.nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(28, 29, 34, 0.35);
    z-index: 104;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s var(--transition), visibility 0.3s var(--transition);
}
.nav-backdrop.is-open {
    opacity: 1;
    visibility: visible;
}
@media (max-width: 1024px) {
    .nav { gap: 18px; }
    .nav-link { font-size: 14px; }
}
@media (max-width: 900px) {
    .nav {
        position: fixed !important;
        top: 0;
        right: 0;
        width: 320px !important;
        max-width: 85vw !important;
        height: 100vh;
        height: 100dvh;
        background: var(--surface);
        display: flex !important;
        flex-direction: column !important;
        flex-wrap: nowrap !important;
        align-items: stretch !important;
        padding: 100px 0 32px !important;
        gap: 0;
        box-shadow: -16px 0 50px rgba(0,0,0,0.20);
        transform: translateX(100%);
        transition: transform 0.4s var(--transition);
        z-index: 200;
        overflow-y: auto;
        overflow-x: hidden !important;
        -webkit-overflow-scrolling: touch;
        visibility: hidden;
        box-sizing: border-box !important;
    }
    .nav.mobile-open {
        transform: translateX(0);
        visibility: visible;
    }
    .nav > * {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        flex: 0 0 auto !important;
    }
    .nav-link {
        font-size: 17px;
        padding: 14px 32px !important;
        width: 100%;
        border-bottom: 1px solid var(--border-soft);
    }
    .nav-link::after { display: none; }
    .nav-cta {
        margin-top: 18px;
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    .menu-btn { display: flex; }

    /* Mobile dropdown: inline accordion */
    .nav-dropdown {
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        border-bottom: 1px solid var(--border-soft);
    }
    .nav-dropdown-toggle {
        padding: 14px 32px !important;
        width: 100% !important;
        justify-content: space-between;
        font-size: 17px;
        color: var(--text);
        display: flex !important;
        align-items: center;
    }
    .nav-dropdown-toggle::after { display: none; }
    .nav-dropdown-toggle svg {
        margin-left: auto;
        flex-shrink: 0;
        transition: transform 0.25s var(--transition);
    }
    .nav-dropdown.is-open .nav-dropdown-toggle svg {
        transform: rotate(180deg);
    }
    .nav-dropdown-menu {
        position: static !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        transform: none !important;
        min-width: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 0 !important;
        margin: 0 !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        display: none;
        flex-direction: column !important;
        gap: 0;
        box-sizing: border-box !important;
    }
    .nav-dropdown-menu::before { display: none; }
    .nav-dropdown.is-open .nav-dropdown-menu { display: flex !important; }
    .nav-dropdown-item {
        display: block !important;
        padding: 11px 32px 11px 48px !important;
        font-size: 15px;
        font-weight: 500;
        color: var(--text-2);
        background: transparent !important;
        border: none !important;
        border-radius: 0 !important;
        white-space: normal !important;
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 1.4;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        box-sizing: border-box !important;
        transition: background 0.2s var(--transition), color 0.2s var(--transition);
    }
    .nav-dropdown-item + .nav-dropdown-item {
        margin-top: 0;
        border-top: 1px solid var(--border-soft);
    }
    .nav-dropdown-item:hover,
    .nav-dropdown-item.is-active {
        background: var(--accent-soft);
        color: var(--accent);
    }
}

/* ==========================================================
   PAGE-SPECIFIC STYLES — CONSOLIDATED INTO styles.css
   Each sub-page has a unique class prefix to avoid collisions:
   - About page         → ab-*
   - Web Designing page → wd-*
   - Digital Marketing  → dm-*
   ========================================================== */


/* ==========================================================
   ABOUT PAGE  (ab-*)
   ========================================================== */
.ab-hero {
    position: relative;
    width: 100%;
    min-height: clamp(280px, 44vh, 400px);
    background: var(--dark) url('images/banner/Inner-Banner-01.webp') center/cover no-repeat;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-top: 96px;
    padding-bottom: 56px;
}
.ab-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(100deg, rgba(28, 29, 34, 0.75) 0%, rgba(28, 29, 34, 0.55) 45%, rgba(28, 29, 34, 0.30) 75%, rgba(28, 29, 34, 0.15) 100%),
        radial-gradient(circle at 80% 80%, rgba(246, 130, 31, 0.10) 0%, transparent 60%);
    pointer-events: none;
}
.ab-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(28, 29, 34, 0.20) 0%, rgba(28, 29, 34, 0.50) 100%);
    pointer-events: none;
}
.ab-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 820px;
    margin: 0 auto;
}
.ab-hero h1 {
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}
.ab-hero h1 .text-accent { color: var(--accent); }
.ab-hero p {
    font-size: clamp(16px, 1.6vw, 19px);
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.6;
    max-width: 680px;
    margin: 0 auto;
}
.ab-breadcrumb {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 28px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 100px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}
.ab-breadcrumb a { color: rgba(255, 255, 255, 0.7); transition: color 0.2s var(--transition); }
.ab-breadcrumb a:hover { color: var(--accent); }
.ab-breadcrumb .sep { opacity: 0.4; }
.ab-breadcrumb .current { color: var(--accent); font-weight: 600; }

/* Story */
.ab-story-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 64px;
    align-items: center;
}
.ab-story-visual {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 16/10;
    box-shadow: var(--shadow-lg);
}
.ab-story-visual img { width: 100%; height: 100%; object-fit: cover; }
.ab-story-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: var(--accent);
    color: var(--white);
    padding: 16px 22px;
    border-radius: 14px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 12px;
}
.ab-story-badge-num {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 38px;
    font-weight: 800;
    line-height: 1;
}
.ab-story-badge-text {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.ab-story-content p {
    font-size: 16px;
    line-height: 1.75;
    color: var(--text);
    margin-bottom: 18px;
}
.ab-story-content p strong { color: var(--text); }
.ab-story-content .eyebrow { margin-bottom: 16px; }
.ab-story-content .section-title { margin-bottom: 20px; }

.ab-ab-story-badge-num {
    font-size: 50px;
}

/* Values */
.ab-values { background: var(--surface); }
.ab-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.ab-value-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 36px 30px;
    transition: all 0.3s var(--transition);
    position: relative;
    overflow: hidden;
}
.ab-value-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--transition);
}
.ab-value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: var(--accent);
}
.ab-value-card:hover::before { transform: scaleX(1); }
.ab-value-icon {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, rgba(246, 130, 31, 0.12), rgba(246, 130, 31, 0.04));
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 22px;
    color: var(--accent);
}
.ab-value-icon svg { width: 28px; height: 28px; }
.ab-value-card h3 {
    font-size: 20px; font-weight: 700;
    margin-bottom: 12px;
    color: var(--text);
}
.ab-value-card p {
    font-size: 15px; line-height: 1.65;
    color: var(--text-muted, #555);
}

/* Capabilities tags */
.ab-cap-wrap {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px;
}
.ab-cap-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}
.ab-cap-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    transition: all 0.25s var(--transition);
}
.ab-cap-tag:hover {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
    transform: translateY(-2px);
}
.ab-cap-tag svg {
    width: 14px; height: 14px;
    stroke: var(--accent);
    transition: stroke 0.25s var(--transition);
}
.ab-cap-tag:hover svg { stroke: var(--white); }

/* About CTA */
.ab-cta {
    background: var(--dark);
    position: relative;
    overflow: hidden;
}
.ab-cta::before {
    content: '';
    position: absolute;
    top: -200px; left: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(246, 130, 31, 0.18) 0%, transparent 70%);
    pointer-events: none;
}
.ab-cta::after {
    content: '';
    position: absolute;
    bottom: -300px; right: -200px;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(246, 130, 31, 0.12) 0%, transparent 70%);
    pointer-events: none;
}
.ab-cta-wrap {
    width: min(94%, 1600px);
    margin-inline: auto;
    padding: clamp(70px, 9vw, 110px) clamp(16px, 3vw, 24px);
    position: relative;
    z-index: 1;
}
.ab-cta .ab-cta-inner {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    color: var(--white);
    position: relative;
    z-index: 1;
}
.ab-cta .ab-cta-title {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 800;
    line-height: 1.08;
    color: var(--white);
    margin-bottom: 20px;
}
.ab-cta .ab-cta-desc {
    font-size: 18px;
    color: rgba(255,255,255,0.80);
    max-width: 640px;
    margin: 0 auto 36px;
    line-height: 1.6;
}
.ab-cta .ab-cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 900px) {
    .ab-story-grid { grid-template-columns: 1fr; gap: 40px; }
    .ab-story-visual { aspect-ratio: 16/10; order: -1; }
    .ab-values-grid { grid-template-columns: repeat(2, 1fr); }
    .ab-cap-wrap { padding: 28px 22px; }
}
@media (max-width: 560px) {
    .ab-values-grid { grid-template-columns: 1fr; }
    .ab-hero { min-height: 260px; padding-top: 88px; }
}


/* ==========================================================
   WEB DESIGNING PAGE  (wd-*)
   ========================================================== */
.wd-hero {
    position: relative;
    width: 100%;
    min-height: clamp(280px, 44vh, 400px);
    background: var(--dark) url('images/home/about-banner-v4.webp') center/cover no-repeat;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-top: 96px;
    padding-bottom: 56px;
}
.wd-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(100deg, rgba(28, 29, 34, 0.75) 0%, rgba(28, 29, 34, 0.55) 45%, rgba(28, 29, 34, 0.30) 75%, rgba(28, 29, 34, 0.15) 100%),
        radial-gradient(circle at 80% 80%, rgba(246, 130, 31, 0.10) 0%, transparent 60%);
    pointer-events: none;
}
.wd-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(28, 29, 34, 0.20) 0%, rgba(28, 29, 34, 0.50) 100%);
    pointer-events: none;
}
.wd-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 820px;
    margin: 0 auto;
}
.wd-hero h1 {
    font-size: clamp(36px, 5.5vw, 64px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}
.wd-hero h1 .text-accent { color: var(--accent); }
.wd-hero p {
    font-size: clamp(16px, 1.6vw, 19px);
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.6;
    max-width: 720px;
    margin: 0 auto;
}
.wd-breadcrumb {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 28px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 100px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}
.wd-breadcrumb a { color: rgba(255, 255, 255, 0.7); transition: color 0.2s var(--transition); }
.wd-breadcrumb a:hover { color: var(--accent); }
.wd-breadcrumb .sep { opacity: 0.4; }
.wd-breadcrumb .current { color: var(--accent); font-weight: 600; }

/* Intro */
.wd-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.wd-intro-content p {
    font-size: 16px;
    line-height: 1.75;
    color: var(--text);
    margin-bottom: 16px;
}
.wd-intro-content p strong { color: var(--accent); }
.wd-intro-visual {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow-lg);
}
.wd-intro-visual img { width: 100%; height: 100%; object-fit: cover; }

/* Feature cards */
.wd-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.wd-feature-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px 28px;
    transition: all 0.3s var(--transition);
    position: relative;
}
.wd-feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--transition);
}
.wd-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: var(--accent);
}
.wd-feature-card:hover::before { transform: scaleX(1); }
.wd-feature-icon {
    width: 52px; height: 52px;
    background: linear-gradient(135deg, rgba(246, 130, 31, 0.12), rgba(246, 130, 31, 0.04));
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
    color: var(--accent);
}
.wd-feature-icon svg { width: 26px; height: 26px; }
.wd-feature-card h3 {
    font-size: 19px; font-weight: 700;
    margin-bottom: 10px;
    color: var(--text);
}
.wd-feature-card p {
    font-size: 14.5px; line-height: 1.65;
    color: var(--text-muted, #555);
}

/* What we provide - numbered list */
.wd-provide-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.wd-provide-item {
    display: flex;
    gap: 20px;
    padding: 28px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: all 0.3s var(--transition);
}
.wd-provide-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
    border-color: var(--accent);
}
.wd-provide-num {
    flex-shrink: 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    width: 50px;
}
.wd-provide-content h3 {
    font-size: 18px; font-weight: 700;
    margin-bottom: 8px;
    color: var(--text);
}
.wd-provide-content p {
    font-size: 14.5px; line-height: 1.65;
    color: var(--text-muted, #555);
}

/* Why choose us - 4 columns */
.wd-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.wd-why-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s var(--transition);
}
.wd-why-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}
.wd-why-icon {
    width: 60px; height: 60px;
    background: var(--accent);
    border-radius: 16px;
    display: inline-flex;
    align-items: center; justify-content: center;
    margin-bottom: 20px;
    color: var(--white);
}
.wd-why-icon svg { width: 28px; height: 28px; }
.wd-why-card h3 {
    font-size: 17px; font-weight: 700;
    margin-bottom: 10px;
    color: var(--text);
}
.wd-why-card p {
    font-size: 14px; line-height: 1.6;
    color: var(--text-muted, #555);
}

/* Industries */
.wd-industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.wd-industry-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 24px 22px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 14px;
    transition: all 0.3s var(--transition);
}
.wd-industry-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
    border-color: var(--accent);
}
.wd-industry-num {
    flex-shrink: 0;
    width: 44px; height: 44px;
    background: linear-gradient(135deg, rgba(246, 130, 31, 0.14), rgba(246, 130, 31, 0.06));
    color: var(--accent);
    border: 1px solid rgba(246, 130, 31, 0.20);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s var(--transition);
}
.wd-industry-card:hover .wd-industry-num {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
    transform: scale(1.05);
}
.wd-industry-num svg {
    width: 22px; height: 22px;
    stroke-width: 1.8;
}
.wd-industry-card h4 {
    font-size: 15px; font-weight: 700;
    margin-bottom: 4px;
    color: var(--text);
}
.wd-industry-card p {
    font-size: 13px; line-height: 1.5;
    color: var(--text-muted, #555);
}

/* Process steps */
.wd-process-list { display: grid; gap: 18px; max-width: 960px; margin: 0 auto; }
.wd-process-step {
    display: flex;
    gap: 24px;
    padding: 32px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    align-items: center;
    transition: all 0.3s var(--transition);
    position: relative;
    overflow: hidden;
}
.wd-process-step::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 4px;
    background: var(--accent);
    transform: scaleY(0);
    transform-origin: center;
    transition: transform 0.3s var(--transition);
}
.wd-process-step:hover {
    border-color: var(--accent);
    transform: translateX(4px);
    box-shadow: var(--shadow-sm);
}
.wd-process-step:hover::before {
    transform: scaleY(1);
}
.wd-process-step-num {
    flex-shrink: 0;
    width: 56px; height: 56px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 22px; font-weight: 800;
    box-shadow: 0 6px 18px rgba(246, 130, 31, 0.30);
    position: relative;
}
.wd-process-step-num::after {
    content: '';
    position: absolute;
    inset: -6px;
    border: 2px solid var(--accent-soft);
    border-radius: 50%;
    pointer-events: none;
}
.wd-process-step-content h4 {
    font-size: 19px; font-weight: 800;
    margin-bottom: 6px;
    color: var(--text);
    letter-spacing: -0.01em;
}
.wd-process-step-content p {
    font-size: 15px; line-height: 1.6;
    color: var(--text-2);
    margin: 0;
    font-weight: 400;
}

/* FAQ accordion */
.faq-list {
    max-width: 860px;
    margin: 0 auto;
    display: grid;
    gap: 14px;
}
.faq-item {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.3s var(--transition);
}
.faq-item:hover { border-color: var(--accent); }
.faq-item.is-open { border-color: var(--accent); box-shadow: var(--shadow-sm); }
.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 28px;
    background: transparent;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    transition: color 0.2s var(--transition);
}
.faq-q:hover { color: var(--accent); }
.faq-q .icon {
    flex-shrink: 0;
    width: 24px; height: 24px;
    display: flex; align-items: center; justify-content: center;
    color: var(--accent);
    transition: transform 0.3s var(--transition);
}
.faq-item.is-open .faq-q .icon { transform: rotate(45deg); }
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s var(--transition), padding 0.3s var(--transition);
}
.faq-item.is-open .faq-a { max-height: 500px; }
.faq-a-inner {
    padding: 0 28px 24px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-muted, #555);
}

/* Web Designing CTA */
.wd-cta {
    background: var(--dark);
    position: relative;
    overflow: hidden;
}
.wd-cta::before {
    content: '';
    position: absolute;
    top: -200px; left: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(246, 130, 31, 0.18) 0%, transparent 70%);
    pointer-events: none;
}
.wd-cta::after {
    content: '';
    position: absolute;
    bottom: -300px; right: -200px;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(246, 130, 31, 0.12) 0%, transparent 70%);
    pointer-events: none;
}
.wd-cta .wd-cta-inner {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    color: var(--white);
    position: relative;
    z-index: 1;
}
.wd-cta .wd-cta-title {
    font-size: clamp(32px, 4.5vw, 56px);
    font-weight: 800;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 20px;
}
.wd-cta .wd-cta-desc {
    font-size: 17px;
    color: rgba(255,255,255,0.80);
    max-width: 640px;
    margin: 0 auto 32px;
    line-height: 1.6;
}
.wd-cta .wd-cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 900px) {
    .wd-intro-grid { grid-template-columns: 1fr; gap: 36px; }
    .wd-intro-visual { aspect-ratio: 16/10; order: -1; }
    .wd-features-grid { grid-template-columns: repeat(2, 1fr); }
    .wd-provide-list { grid-template-columns: 1fr; }
    .wd-why-grid { grid-template-columns: repeat(2, 1fr); }
    .wd-industries-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
    .wd-features-grid { grid-template-columns: 1fr; }
    .wd-why-grid { grid-template-columns: 1fr; }
    .wd-industries-grid { grid-template-columns: 1fr; }
    .wd-hero { min-height: 260px; padding-top: 88px; }
}


/* ==========================================================
   DIGITAL MARKETING PAGE  (dm-*)
   ========================================================== */
.dm-hero {
    position: relative;
    width: 100%;
    min-height: clamp(280px, 44vh, 400px);
    background: var(--dark) url('images/home/about-banner-v4.webp') center/cover no-repeat;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-top: 96px;
    padding-bottom: 56px;
}
.dm-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(100deg, rgba(28, 29, 34, 0.75) 0%, rgba(28, 29, 34, 0.55) 45%, rgba(28, 29, 34, 0.30) 75%, rgba(28, 29, 34, 0.15) 100%),
        radial-gradient(circle at 80% 80%, rgba(246, 130, 31, 0.10) 0%, transparent 60%);
    pointer-events: none;
}
.dm-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(28, 29, 34, 0.20) 0%, rgba(28, 29, 34, 0.50) 100%);
    pointer-events: none;
}
.dm-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 820px;
    margin: 0 auto;
}
.dm-hero h1 {
    font-size: clamp(36px, 5.5vw, 64px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}
.dm-hero h1 .text-accent { color: var(--accent); }
.dm-hero p {
    font-size: clamp(16px, 1.6vw, 19px);
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.6;
    max-width: 720px;
    margin: 0 auto;
}
.dm-breadcrumb {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 28px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 100px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}
.dm-breadcrumb a { color: rgba(255, 255, 255, 0.7); transition: color 0.2s var(--transition); }
.dm-breadcrumb a:hover { color: var(--accent); }
.dm-breadcrumb .sep { opacity: 0.4; }
.dm-breadcrumb .current { color: var(--accent); font-weight: 600; }

/* Intro */
.dm-intro-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 64px;
    align-items: center;
}
.dm-intro-content h2 { margin-bottom: 20px; }
.dm-intro-content p {
    font-size: 16px;
    line-height: 1.75;
    color: var(--text-2);
    margin-bottom: 16px;
}
.dm-intro-visual {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.dm-intro-visual img {
    width: 100%; height: 100%;
    object-fit: cover;
    aspect-ratio: 4 / 3;
}

/* Stats */
.dm-stats-band {
    background: var(--dark);
    color: var(--white);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}
.dm-stats-band::before {
    content: '';
    position: absolute;
    top: -150px; right: -150px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(246, 130, 31, 0.16) 0%, transparent 70%);
    pointer-events: none;
}
.dm-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}
.dm-stat { position: relative; }
.dm-stat-num {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 8px;
}
.dm-stat-num::after { content: '+'; color: var(--accent); }
.dm-stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Strategy banner */
.dm-strategy-banner {
    background: var(--bg-2);
    border-left: 4px solid var(--accent);
    padding: 36px 40px;
    border-radius: 14px;
    margin: 0 auto 56px;
    max-width: 900px;
    text-align: center;
}
.dm-strategy-banner h3 {
    font-size: clamp(20px, 2.4vw, 28px);
    font-weight: 800;
    color: var(--text);
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin: 0;
}
.dm-strategy-banner h3 .text-accent { color: var(--accent); }

/* Services - 4 main services as cards */
.dm-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.dm-service-card {
    position: relative;
    padding: 40px 36px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 18px;
    transition: all 0.3s var(--transition);
    overflow: hidden;
}
.dm-service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 4px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--transition);
}
.dm-service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: var(--accent);
}
.dm-service-card:hover::before { transform: scaleX(1); }
.dm-service-num {
    display: inline-block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--accent);
    background: var(--accent-soft);
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 18px;
    letter-spacing: 0.5px;
}
.dm-service-icon {
    width: 60px; height: 60px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: var(--white);
    border-radius: 14px;
    display: inline-flex;
    align-items: center; justify-content: center;
    margin-bottom: 22px;
    box-shadow: 0 8px 24px rgba(246, 130, 31, 0.30);
}
.dm-service-icon svg { width: 28px; height: 28px; }
.dm-service-card h3 {
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text);
    line-height: 1.3;
}
.dm-service-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-2);
    margin: 0;
}

/* Why Stand Out */
.dm-standout-wrap {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 64px;
    align-items: center;
}
.dm-standout-visual {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.dm-standout-visual img {
    width: 100%; height: 100%;
    object-fit: cover;
    aspect-ratio: 4 / 5;
}
.dm-standout-list { display: grid; gap: 18px; }
.dm-standout-item {
    display: flex;
    gap: 18px;
    padding: 22px 24px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    transition: all 0.3s var(--transition);
}
.dm-standout-item:hover {
    border-color: var(--accent);
    transform: translateX(4px);
}
.dm-standout-icon {
    flex-shrink: 0;
    width: 44px; height: 44px;
    background: var(--accent);
    color: var(--white);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
}
.dm-standout-icon svg { width: 22px; height: 22px; }
.dm-standout-item h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 6px;
}
.dm-standout-item p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-2);
    margin: 0;
}

/* Process steps */
.dm-process-list { display: grid; gap: 18px; max-width: 960px; margin: 0 auto; }
.dm-process-step {
    display: flex;
    gap: 24px;
    padding: 32px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    align-items: center;
    transition: all 0.3s var(--transition);
    position: relative;
    overflow: hidden;
}
.dm-process-step::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 4px;
    background: var(--accent);
    transform: scaleY(0);
    transform-origin: center;
    transition: transform 0.3s var(--transition);
}
.dm-process-step:hover {
    border-color: var(--accent);
    transform: translateX(4px);
    box-shadow: var(--shadow-sm);
}
.dm-process-step:hover::before {
    transform: scaleY(1);
}
.dm-process-step-num {
    flex-shrink: 0;
    width: 56px; height: 56px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 22px; font-weight: 800;
    box-shadow: 0 6px 18px rgba(246, 130, 31, 0.30);
    position: relative;
}
.dm-process-step-num::after {
    content: '';
    position: absolute;
    inset: -6px;
    border: 2px solid var(--accent-soft);
    border-radius: 50%;
    pointer-events: none;
}
.dm-process-step-content h4 {
    font-size: 19px; font-weight: 800;
    margin-bottom: 6px;
    color: var(--text);
    letter-spacing: -0.01em;
}
.dm-process-step-content p {
    font-size: 15px; line-height: 1.6;
    color: var(--text-2);
    margin: 0;
    font-weight: 400;
}

/* FAQ accordion */
.faq-list {
    max-width: 860px;
    margin: 0 auto;
    display: grid;
    gap: 14px;
}
.faq-item {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.3s var(--transition);
}
.faq-item:hover { border-color: var(--accent); }
.faq-item.is-open { border-color: var(--accent); box-shadow: var(--shadow-sm); }
.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 28px;
    background: transparent;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    transition: color 0.2s var(--transition);
}
.faq-q:hover { color: var(--accent); }
.faq-q .icon {
    flex-shrink: 0;
    width: 24px; height: 24px;
    display: flex; align-items: center; justify-content: center;
    color: var(--accent);
    transition: transform 0.3s var(--transition);
}
.faq-item.is-open .faq-q .icon { transform: rotate(45deg); }
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s var(--transition), padding 0.3s var(--transition);
}
.faq-item.is-open .faq-a { max-height: 500px; }
.faq-a-inner {
    padding: 0 28px 24px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-2);
}

/* Digital Marketing CTA */
.dm-cta {
    background: var(--dark);
    position: relative;
    overflow: hidden;
}
.dm-cta::before {
    content: '';
    position: absolute;
    top: -200px; left: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(246, 130, 31, 0.18) 0%, transparent 70%);
    pointer-events: none;
}
.dm-cta::after {
    content: '';
    position: absolute;
    bottom: -200px; right: -200px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(246, 130, 31, 0.10) 0%, transparent 70%);
    pointer-events: none;
}
.dm-cta-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
    padding: 80px 0;
}
.dm-cta h2 {
    font-size: clamp(30px, 4vw, 44px);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 18px;
    line-height: 1.15;
}
.dm-cta p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 32px;
    line-height: 1.6;
}

@media (max-width: 900px) {
    .dm-intro-grid, .dm-standout-wrap { grid-template-columns: 1fr; gap: 40px; }
    .dm-services-grid { grid-template-columns: 1fr; }
    .dm-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 20px; }
    .dm-standout-visual { order: -1; }
}
@media (max-width: 560px) {
    .dm-stats-grid { grid-template-columns: 1fr; }
    .dm-hero { min-height: 260px; padding-top: 88px; }
    .dm-strategy-banner { padding: 28px 20px; }
}

/* ==========================================================
   SEO PAGE
   ========================================================== */
.seo-hero {
    position: relative;
    width: 100%;
    min-height: clamp(280px, 44vh, 400px);
    background: var(--dark) url('images/home/about-banner-v4.webp') center/cover no-repeat;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-top: 96px;
    padding-bottom: 56px;
}
.seo-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(100deg, rgba(28, 29, 34, 0.75) 0%, rgba(28, 29, 34, 0.55) 45%, rgba(28, 29, 34, 0.30) 75%, rgba(28, 29, 34, 0.15) 100%),
        radial-gradient(circle at 80% 80%, rgba(246, 130, 31, 0.10) 0%, transparent 60%);
    pointer-events: none;
}
.seo-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(28, 29, 34, 0.20) 0%, rgba(28, 29, 34, 0.50) 100%);
    pointer-events: none;
}
.seo-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 820px;
    margin: 0 auto;
}
.seo-hero h1 {
    font-size: clamp(36px, 5.5vw, 64px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}
.seo-hero h1 .text-accent { color: var(--accent); }
.seo-hero p {
    font-size: clamp(16px, 1.6vw, 19px);
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.6;
    max-width: 720px;
    margin: 0 auto;
}
.seo-breadcrumb {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 28px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 100px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}
.seo-breadcrumb a { color: rgba(255, 255, 255, 0.7); transition: color 0.2s var(--transition); }
.seo-breadcrumb a:hover { color: var(--accent); }
.seo-breadcrumb .sep { opacity: 0.4; }
.seo-breadcrumb .current { color: var(--accent); font-weight: 600; }

/* Intro */
.seo-intro-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 64px;
    align-items: center;
}
.seo-intro-content h2 { margin-bottom: 20px; }
.seo-intro-content p {
    font-size: 16px;
    line-height: 1.75;
    color: var(--text-2);
    margin-bottom: 16px;
}
.seo-intro-visual {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.seo-intro-visual img {
    width: 100%; height: 100%;
    object-fit: cover;
    aspect-ratio: 4 / 3;
}

/* Stats */
.seo-stats-band {
    background: var(--dark);
    color: var(--white);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}
.seo-stats-band::before {
    content: '';
    position: absolute;
    top: -150px; right: -150px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(246, 130, 31, 0.16) 0%, transparent 70%);
    pointer-events: none;
}
.seo-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}
.seo-stat { position: relative; }
.seo-stat-num {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 8px;
}
.seo-stat-num::after { content: '+'; color: var(--accent); }
.seo-stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Strategy banner */
.seo-strategy-banner {
    background: var(--bg-2);
    border-left: 4px solid var(--accent);
    padding: 36px 40px;
    border-radius: 14px;
    margin: 0 auto 56px;
    max-width: 900px;
    text-align: center;
}
.seo-strategy-banner h3 {
    font-size: clamp(20px, 2.4vw, 28px);
    font-weight: 800;
    color: var(--text);
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin: 0;
}
.seo-strategy-banner h3 .text-accent { color: var(--accent); }

/* Services - 4 main services as cards */
.seo-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.seo-service-card {
    position: relative;
    padding: 40px 36px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 18px;
    transition: all 0.3s var(--transition);
    overflow: hidden;
}
.seo-service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 4px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--transition);
}
.seo-service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: var(--accent);
}
.seo-service-card:hover::before { transform: scaleX(1); }
.seo-service-num {
    display: inline-block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--accent);
    background: var(--accent-soft);
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 18px;
    letter-spacing: 0.5px;
}
.seo-service-icon {
    width: 60px; height: 60px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: var(--white);
    border-radius: 14px;
    display: inline-flex;
    align-items: center; justify-content: center;
    margin-bottom: 22px;
    box-shadow: 0 8px 24px rgba(246, 130, 31, 0.30);
}
.seo-service-icon svg { width: 28px; height: 28px; }
.seo-service-card h3 {
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text);
    line-height: 1.3;
}
.seo-service-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-2);
    margin: 0;
}

/* Why Stand Out */
.seo-standout-wrap {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 64px;
    align-items: center;
}
.seo-standout-visual {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.seo-standout-visual img {
    width: 100%; height: 100%;
    object-fit: cover;
    aspect-ratio: 4 / 5;
}
.seo-standout-list { display: grid; gap: 18px; }
.seo-standout-item {
    display: flex;
    gap: 18px;
    padding: 22px 24px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    transition: all 0.3s var(--transition);
}
.seo-standout-item:hover {
    border-color: var(--accent);
    transform: translateX(4px);
}
.seo-standout-icon {
    flex-shrink: 0;
    width: 44px; height: 44px;
    background: var(--accent);
    color: var(--white);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
}
.seo-standout-icon svg { width: 22px; height: 22px; }
.seo-standout-item h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 6px;
}
.seo-standout-item p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-2);
    margin: 0;
}

/* Process steps */
.seo-process-list { display: grid; gap: 18px; max-width: 960px; margin: 0 auto; }
.seo-process-step {
    display: flex;
    gap: 24px;
    padding: 32px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    align-items: center;
    transition: all 0.3s var(--transition);
    position: relative;
    overflow: hidden;
}
.seo-process-step::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 4px;
    background: var(--accent);
    transform: scaleY(0);
    transform-origin: center;
    transition: transform 0.3s var(--transition);
}
.seo-process-step:hover {
    border-color: var(--accent);
    transform: translateX(4px);
    box-shadow: var(--shadow-sm);
}
.seo-process-step:hover::before {
    transform: scaleY(1);
}
.seo-process-step-num {
    flex-shrink: 0;
    width: 56px; height: 56px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 22px; font-weight: 800;
    box-shadow: 0 6px 18px rgba(246, 130, 31, 0.30);
    position: relative;
}
.seo-process-step-num::after {
    content: '';
    position: absolute;
    inset: -6px;
    border: 2px solid var(--accent-soft);
    border-radius: 50%;
    pointer-events: none;
}
.seo-process-step-content h4 {
    font-size: 19px; font-weight: 800;
    margin-bottom: 6px;
    color: var(--text);
    letter-spacing: -0.01em;
}
.seo-process-step-content p {
    font-size: 15px; line-height: 1.6;
    color: var(--text-2);
    margin: 0;
    font-weight: 400;
}

/* FAQ accordion */
.faq-list {
    max-width: 860px;
    margin: 0 auto;
    display: grid;
    gap: 14px;
}
.faq-item {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.3s var(--transition);
}
.faq-item:hover { border-color: var(--accent); }
.faq-item.is-open { border-color: var(--accent); box-shadow: var(--shadow-sm); }
.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 28px;
    background: transparent;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    transition: color 0.2s var(--transition);
}
.faq-q:hover { color: var(--accent); }
.faq-q .icon {
    flex-shrink: 0;
    width: 24px; height: 24px;
    display: flex; align-items: center; justify-content: center;
    color: var(--accent);
    transition: transform 0.3s var(--transition);
}
.faq-item.is-open .faq-q .icon { transform: rotate(45deg); }
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s var(--transition), padding 0.3s var(--transition);
}
.faq-item.is-open .faq-a { max-height: 500px; }
.faq-a-inner {
    padding: 0 28px 24px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-2);
}

/* Digital Marketing CTA */
.seo-cta {
    background: var(--dark);
    position: relative;
    overflow: hidden;
}
.seo-cta::before {
    content: '';
    position: absolute;
    top: -200px; left: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(246, 130, 31, 0.18) 0%, transparent 70%);
    pointer-events: none;
}
.seo-cta::after {
    content: '';
    position: absolute;
    bottom: -200px; right: -200px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(246, 130, 31, 0.10) 0%, transparent 70%);
    pointer-events: none;
}
.seo-cta-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
    padding: 80px 0;
}
.seo-cta h2 {
    font-size: clamp(30px, 4vw, 44px);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 18px;
    line-height: 1.15;
}
.seo-cta p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 32px;
    line-height: 1.6;
}

@media (max-width: 900px) {
    .seo-intro-grid, .seo-standout-wrap { grid-template-columns: 1fr; gap: 40px; }
    .seo-services-grid { grid-template-columns: 1fr; }
    .seo-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 20px; }
    .seo-standout-visual { order: -1; }
}
@media (max-width: 560px) {
    .seo-stats-grid { grid-template-columns: 1fr; }
    .seo-hero { min-height: 260px; padding-top: 88px; }
    .seo-strategy-banner { padding: 28px 20px; }
}

/* --- SEO: Why It Matters (redesigned) --- */
.seo-why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto;
}
.seo-why-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 36px 32px 30px;
    transition: all 0.35s var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}
.seo-why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(246, 130, 31, 0.15);
    border-color: var(--accent);
}
.seo-why-strip {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--accent) 0%, #ff7a45 100%);
    border-radius: 20px 20px 0 0;
}
.seo-why-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--accent) 0%, #ff7a45 100%);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 18px;
    box-shadow: 0 8px 20px rgba(246, 130, 31, 0.30);
    position: relative;
    z-index: 1;
}
.seo-why-stat {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 52px;
    font-weight: 700;
    line-height: 1;
    color: var(--accent);
    margin-bottom: 6px;
    letter-spacing: -1.5px;
}
.seo-why-stat span {
    font-size: 30px;
    color: var(--text);
    font-weight: 600;
    margin-left: 2px;
}
.seo-why-card h4 {
    font-size: 21px;
    font-weight: 800;
    color: var(--text);
    margin: 8px 0 12px;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}
.seo-why-card > p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-2);
    margin: 0 0 20px;
    position: relative;
    z-index: 1;
}
.seo-why-points {
    list-style: none;
    padding: 18px 0 0;
    margin: 0;
    border-top: 1px dashed var(--border);
    display: grid;
    gap: 10px;
    position: relative;
    z-index: 1;
}
.seo-why-points li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    line-height: 1.55;
    color: var(--text);
    font-weight: 500;
}
.seo-why-points li i {
    color: var(--accent);
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

/* --- SEO: Industries We Serve (redesigned box style) --- */
.seo-industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.seo-industry-card {
    background: var(--bg);
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 32px 24px 26px;
    text-align: left;
    transition: all 0.35s var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.08);
    display: flex;
    flex-direction: column;
    min-height: 100%;
}
.seo-industry-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--accent) 0%, #ff7a45 100%);
}
.seo-industry-card::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle at top right, rgba(246, 130, 31, 0.12) 0%, transparent 70%);
    pointer-events: none;
    transition: all 0.4s var(--transition);
}
.seo-industry-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 48px rgba(246, 130, 31, 0.22);
    border-color: var(--accent);
}
.seo-industry-card:hover::after {
    width: 180px;
    height: 180px;
    background: radial-gradient(circle at top right, rgba(246, 130, 31, 0.22) 0%, transparent 70%);
}
.seo-industry-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    gap: 10px;
    position: relative;
    z-index: 1;
}
.seo-industry-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--accent) 0%, #ff7a45 100%);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    flex-shrink: 0;
    box-shadow: 0 6px 14px rgba(246, 130, 31, 0.30);
    transition: all 0.35s var(--transition);
}
.seo-industry-card:hover .seo-industry-icon {
    transform: rotate(-8deg) scale(1.08);
    box-shadow: 0 10px 20px rgba(246, 130, 31, 0.45);
}
.seo-industry-badge {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--accent);
    background: rgba(246, 130, 31, 0.12);
    padding: 5px 10px;
    border-radius: 999px;
    white-space: nowrap;
    line-height: 1.2;
    border: 1px solid rgba(246, 130, 31, 0.20);
}
.seo-industry-card h4 {
    font-size: 18px;
    font-weight: 800;
    color: var(--text);
    margin: 0 0 10px;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}
.seo-industry-card > p {
    font-size: 13.5px;
    line-height: 1.6;
    color: var(--text-2);
    margin: 0 0 18px;
    flex: 1;
    position: relative;
    z-index: 1;
}
.seo-industry-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding-top: 14px;
    border-top: 1px dashed var(--border);
    position: relative;
    z-index: 1;
}
.seo-industry-tags span {
    font-size: 11.5px;
    font-weight: 600;
    color: var(--text-2);
    background: var(--surface);
    padding: 4px 10px;
    border-radius: 6px;
    border: 1px solid var(--border);
    letter-spacing: 0.2px;
}

/* --- SEO: Responsive Grids --- */
@media (max-width: 1200px) {
    .seo-industries-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; }
    .seo-industry-card { padding: 28px 18px 22px; }
    .seo-industry-icon { width: 48px; height: 48px; font-size: 22px; }
    .seo-industry-card h4 { font-size: 16px; }
    .seo-industry-badge { font-size: 9px; padding: 4px 8px; }
    .seo-industry-tags span { font-size: 10.5px; padding: 3px 8px; }
}
@media (max-width: 900px) {
    .seo-why-grid { grid-template-columns: 1fr; }
    .seo-industries-grid { grid-template-columns: repeat(2, 1fr); }
    .seo-services-grid { grid-template-columns: 1fr; }
    .seo-why-stat { font-size: 44px; }
    .seo-why-stat span { font-size: 26px; }
}
@media (max-width: 560px) {
    .seo-industries-grid { grid-template-columns: 1fr; }
    .seo-why-card { padding: 28px 24px 24px; }
    .seo-why-stat { font-size: 40px; }
    .seo-why-stat span { font-size: 24px; }
    .seo-industry-card { padding: 24px 20px 20px; }
    .seo-why-icon { width: 56px; height: 56px; font-size: 24px; }
}

@media (max-width: 900px) {
    .seo-why-grid { grid-template-columns: 1fr; }
    .seo-tools-grid { grid-template-columns: repeat(2, 1fr); }
    .seo-industries-grid { grid-template-columns: repeat(2, 1fr); }
    .seo-services-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
    .seo-tools-grid { grid-template-columns: 1fr; }
    .seo-industries-grid { grid-template-columns: 1fr; }
    .seo-why-card, .seo-tool-card, .seo-industry-card { padding: 22px 18px; }
}


/* ============================================== */
/* SALES TRACKING APP PAGE STYLES                 */
/* ============================================== */

/* --- SA: Hero (matches wd-hero / dm-hero) --- */
.sa-hero {
    position: relative;
    width: 100%;
    min-height: clamp(280px, 44vh, 400px);
    background: var(--dark) url('images/home/about-banner-v4.webp') center/cover no-repeat;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-top: 96px;
    padding-bottom: 56px;
}
.sa-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(100deg, rgba(28, 29, 34, 0.78) 0%, rgba(28, 29, 34, 0.58) 45%, rgba(28, 29, 34, 0.30) 75%, rgba(28, 29, 34, 0.15) 100%),
        radial-gradient(circle at 80% 80%, rgba(246, 130, 31, 0.10) 0%, transparent 60%);
    pointer-events: none;
}
.sa-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(28, 29, 34, 0.20) 0%, rgba(28, 29, 34, 0.50) 100%);
    pointer-events: none;
}
.sa-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 820px;
    margin: 0 auto;
}
.sa-hero h1 {
    font-size: clamp(36px, 5.5vw, 64px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}
.sa-hero h1 .text-accent { color: var(--accent); }
.sa-hero p {
    font-size: clamp(16px, 1.6vw, 19px);
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.6;
    max-width: 720px;
    margin: 0 auto;
}
.sa-breadcrumb {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 28px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 100px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}
.sa-breadcrumb a { color: rgba(255, 255, 255, 0.7); transition: color 0.2s var(--transition); }
.sa-breadcrumb a:hover { color: var(--accent); }
.sa-breadcrumb .sep { opacity: 0.4; }
.sa-breadcrumb .current { color: var(--accent); font-weight: 600; }

/* --- SA: Intro --- */
.sa-intro-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}
.sa-intro-content h2 { margin-bottom: 20px; }
.sa-intro-content p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-2);
    margin-bottom: 16px;
}
.sa-intro-visual img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(15,23,42,0.15);
}

/* --- SA: Stats Band --- */
.sa-stats-band {
    background: linear-gradient(135deg, #f6821f 0%, #ff7a45 100%);
    color: var(--white);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}
.sa-stats-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.10) 0%, transparent 50%),
                        radial-gradient(circle at 80% 50%, rgba(255,255,255,0.08) 0%, transparent 50%);
    pointer-events: none;
}
.sa-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}
.sa-stat { position: relative; text-align: center; }
.sa-stat-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 52px;
    font-weight: 700;
    line-height: 1;
    color: var(--white);
    margin-bottom: 8px;
    letter-spacing: -1px;
}
.sa-stat-num::after { content: '%'; color: var(--white); }
.sa-stat:nth-child(3) .sa-stat-num::after,
.sa-stat:nth-child(4) .sa-stat-num::after { content: ''; }
.sa-stat-label {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,0.90);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* --- SA: Strategy Banner --- */
.sa-strategy-banner {
    background: linear-gradient(135deg, var(--accent) 0%, #ff7a45 100%);
    color: var(--white);
    padding: 36px 40px;
    border-radius: 16px;
    text-align: center;
    margin: 50px 0;
    box-shadow: 0 14px 30px rgba(246,130,31,0.25);
}
.sa-strategy-banner h3 {
    font-size: clamp(20px, 2.4vw, 26px);
    font-weight: 800;
    margin: 0;
    color: var(--white);
}
.sa-strategy-banner h3 .text-accent { color: var(--white); text-decoration: underline; text-underline-offset: 4px; }

/* --- SA: Services Grid (Features) --- */
.sa-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
.sa-service-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px 24px 26px;
    transition: all 0.35s var(--transition);
    position: relative;
    overflow: hidden;
}
.sa-service-card::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--transition);
}
.sa-service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: var(--accent);
}
.sa-service-card:hover::before { transform: scaleX(1); }
.sa-service-num {
    position: absolute;
    top: 18px;
    right: 22px;
    font-size: 42px;
    font-weight: 800;
    color: var(--accent);
    opacity: 0.15;
    line-height: 1;
}
.sa-service-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(246,130,31,0.15) 0%, rgba(255,122,69,0.15) 100%);
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 18px;
}
.sa-service-card h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--text);
    margin: 0 0 10px;
    line-height: 1.3;
}
.sa-service-card p {
    font-size: 14px;
    line-height: 1.65;
    color: var(--text-2);
    margin: 0;
}

/* --- SA: Why It Matters --- */
.sa-why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto;
}
.sa-why-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 36px 32px 30px;
    transition: all 0.35s var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}
.sa-why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(246, 130, 31, 0.15);
    border-color: var(--accent);
}
.sa-why-strip {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--accent) 0%, #ff7a45 100%);
    border-radius: 20px 20px 0 0;
}
.sa-why-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--accent) 0%, #ff7a45 100%);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 18px;
    box-shadow: 0 8px 20px rgba(246, 130, 31, 0.30);
    position: relative;
    z-index: 1;
}
.sa-why-stat {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 52px;
    font-weight: 700;
    line-height: 1;
    color: var(--accent);
    margin-bottom: 6px;
    letter-spacing: -1.5px;
}
.sa-why-stat span {
    font-size: 30px;
    color: var(--text);
    font-weight: 600;
    margin-left: 2px;
}
.sa-why-card h4 {
    font-size: 21px;
    font-weight: 800;
    color: var(--text);
    margin: 8px 0 12px;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}
.sa-why-card > p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-2);
    margin: 0 0 20px;
    position: relative;
    z-index: 1;
}
.sa-why-points {
    list-style: none;
    padding: 18px 0 0;
    margin: 0;
    border-top: 1px dashed var(--border);
    display: grid;
    gap: 10px;
    position: relative;
    z-index: 1;
}
.sa-why-points li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    line-height: 1.55;
    color: var(--text);
    font-weight: 500;
}
.sa-why-points li i {
    color: var(--accent);
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

/* --- SA: Standout --- */
.sa-standout-wrap {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}
.sa-standout-list { display: grid; gap: 18px; }
.sa-standout-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 22px 24px;
    transition: all 0.3s var(--transition);
}
.sa-standout-item:hover {
    border-color: var(--accent);
    transform: translateX(4px);
}
.sa-standout-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--accent) 0%, #ff7a45 100%);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}
.sa-standout-item h4 {
    font-size: 18px;
    font-weight: 800;
    color: var(--text);
    margin: 0 0 6px;
}
.sa-standout-item p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-2);
    margin: 0;
}
.sa-standout-visual img {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(15,23,42,0.12);
}

/* --- SA: Process --- */
.sa-process-list { display: grid; gap: 18px; max-width: 960px; margin: 0 auto; }
.sa-process-step {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 24px;
    align-items: start;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px 32px;
    transition: all 0.3s var(--transition);
}
.sa-process-step:hover {
    border-color: var(--accent);
    transform: translateX(6px);
}
.sa-process-step::before {
    content: "";
    position: absolute;
}
.sa-process-step-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent) 0%, #ff7a45 100%);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    box-shadow: 0 6px 14px rgba(246,130,31,0.30);
}
.sa-process-step-content h4 {
    font-size: 19px;
    font-weight: 800;
    color: var(--text);
    margin: 0 0 8px;
}
.sa-process-step-content p {
    font-size: 15px;
    line-height: 1.65;
    color: var(--text-2);
    margin: 0;
}

/* --- SA: Pricing --- */
.sa-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}
.sa-pricing-card {
    background: var(--bg);
    border: 2px solid var(--border);
    border-radius: 20px;
    padding: 36px 32px 32px;
    transition: all 0.35s var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}
.sa-pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(15,23,42,0.10);
    border-color: var(--accent);
}
.sa-pricing-featured {
    border-color: var(--accent);
    background: linear-gradient(180deg, #fff8f3 0%, var(--bg) 100%);
    box-shadow: 0 18px 40px rgba(246,130,31,0.18);
    transform: scale(1.04);
}
.sa-pricing-featured:hover {
    transform: scale(1.04) translateY(-6px);
}
.sa-pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent) 0%, #ff7a45 100%);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 6px 16px;
    border-radius: 999px;
    box-shadow: 0 6px 14px rgba(246,130,31,0.30);
}
.sa-pricing-header { margin-bottom: 24px; }
.sa-pricing-header h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--text);
    margin: 0 0 8px;
}
.sa-pricing-header p {
    font-size: 14px;
    line-height: 1.55;
    color: var(--text-2);
    margin: 0;
}
.sa-pricing-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}
.sa-pricing-price .currency {
    font-size: 24px;
    font-weight: 700;
    color: var(--text);
}
.sa-pricing-price .amount {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--text);
    line-height: 1;
    letter-spacing: -1.5px;
}
.sa-pricing-price .period {
    font-size: 14px;
    color: var(--text-2);
    font-weight: 500;
    margin-left: 4px;
}
.sa-pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    display: grid;
    gap: 12px;
    flex: 1;
}
.sa-pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    line-height: 1.55;
    color: var(--text);
}
.sa-pricing-features li i {
    color: var(--accent);
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}
.sa-pricing-card .btn {
    width: 100%;
    justify-content: center;
}

/* --- SA: CTA (matches wd-cta / seo-cta) --- */
.sa-cta {
    background: var(--dark);
    position: relative;
    overflow: hidden;
}
.sa-cta::before {
    content: '';
    position: absolute;
    top: -200px; left: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(246, 130, 31, 0.18) 0%, transparent 70%);
    pointer-events: none;
}
.sa-cta::after {
    content: '';
    position: absolute;
    bottom: -300px; right: -200px;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(246, 130, 31, 0.12) 0%, transparent 70%);
    pointer-events: none;
}
.sa-cta-inner {
    text-align: center;
    color: var(--white);
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto;
    padding: 80px 0;
}
.sa-cta h2 {
    font-size: clamp(30px, 4vw, 44px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 18px;
}
.sa-cta p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.80);
    line-height: 1.6;
    margin: 0 auto 32px;
    max-width: 640px;
}
.sa-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* --- SA: Responsive --- */
@media (max-width: 1100px) {
    .sa-services-grid { grid-template-columns: repeat(3, 1fr); }
    .sa-pricing-grid { grid-template-columns: 1fr; max-width: 480px; }
    .sa-pricing-featured { transform: none; }
    .sa-pricing-featured:hover { transform: translateY(-6px); }
}
@media (max-width: 900px) {
    .sa-intro-grid,
    .sa-standout-wrap { grid-template-columns: 1fr; gap: 40px; }
    .sa-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 20px; }
    .sa-standout-visual { order: -1; }
    .sa-services-grid { grid-template-columns: repeat(2, 1fr); }
    .sa-why-grid { grid-template-columns: 1fr; }
    .sa-why-stat { font-size: 44px; }
    .sa-why-stat span { font-size: 26px; }
    .sa-hero { min-height: 280px; padding-top: 100px; }
    .sa-strategy-banner { padding: 28px 20px; }
}
@media (max-width: 560px) {
    .sa-stats-grid { grid-template-columns: 1fr; }
    .sa-services-grid { grid-template-columns: 1fr; }
    .sa-why-card { padding: 28px 24px 24px; }
    .sa-why-stat { font-size: 40px; }
    .sa-why-stat span { font-size: 24px; }
    .sa-pricing-card { padding: 28px 24px 24px; }
    .sa-cta-buttons { flex-direction: column; }
    .sa-cta-buttons .btn { width: 100%; }
}


/* ============================================== */
/* SA INTRO                                       */
/* ============================================== */
.sa-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}
.sa-intro-content h2 { margin-bottom: 20px; }
.sa-intro-content p {
    font-size: 16px;
    line-height: 1.75;
    color: var(--text);
    margin-bottom: 16px;
}
.sa-intro-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 24px 0 28px;
}
.sa-intro-feature {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
    border: 1px solid #fed7aa;
    border-radius: 100px;
    color: #9a3412;
    font-size: 13px;
    font-weight: 600;
}
.sa-intro-feature i {
    color: var(--accent);
    font-size: 16px;
}
.sa-intro-visual {
    position: relative;
    border-radius: 20px;
    overflow: visible;
}
.sa-intro-visual-bg {
    position: absolute;
    inset: -20px;
    background: linear-gradient(135deg, rgba(246, 130, 31, 0.15) 0%, rgba(255, 122, 69, 0.10) 100%);
    border-radius: 30px;
    z-index: -1;
    transform: rotate(-2deg);
}
.sa-intro-visual img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.20);
}

/* ============================================== */
/* SA STATS BAND                                  */
/* ============================================== */
.sa-stats-band {
    background: linear-gradient(135deg, #f6821f 0%, #ff7a45 50%, #f6821f 100%);
    color: #ffffff;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}
.sa-stats-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.10) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(0,0,0,0.10) 0%, transparent 50%);
    pointer-events: none;
}
.sa-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
    z-index: 2;
}
.sa-stat {
    text-align: center;
    padding: 20px;
}
.sa-stat-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #ffffff;
}
.sa-stat-num {
    font-size: clamp(40px, 4.5vw, 56px);
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 8px;
    font-family: 'Space Grotesk', sans-serif;
}
.sa-stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ============================================== */
/* SA STRATEGY BANNER                             */
/* ============================================== */
.sa-strategy-banner {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 28px 36px;
    background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
    border: 2px solid #fed7aa;
    border-left: 6px solid var(--accent);
    border-radius: 16px;
    margin: 36px 0;
    box-shadow: 0 4px 14px rgba(246, 130, 31, 0.10);
}
.sa-strategy-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    border-radius: 14px;
    background: linear-gradient(135deg, #f6821f 0%, #ff7a45 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 8px 20px rgba(246, 130, 31, 0.30);
}
.sa-strategy-banner h3 {
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 700;
    color: #0f172a;
    margin: 0;
    line-height: 1.4;
}
.sa-strategy-banner h3 .text-accent { color: var(--accent); }

/* ============================================== */
/* SA SERVICES GRID                                */
/* ============================================== */
.sa-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.sa-service-card {
    position: relative;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 28px 22px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}
.sa-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #f6821f 0%, #ff7a45 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.sa-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 50px rgba(15, 23, 42, 0.12);
    border-color: #fed7aa;
}
.sa-service-card:hover::before { transform: scaleX(1); }
.sa-service-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}
.sa-service-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--accent);
    background: #fff7ed;
    padding: 6px 12px;
    border-radius: 100px;
    border: 1px solid #fed7aa;
}
.sa-service-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: linear-gradient(135deg, #f6821f 0%, #ff7a45 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 8px 20px rgba(246, 130, 31, 0.30);
    transition: all 0.4s ease;
}
.sa-service-card:hover .sa-service-icon {
    transform: rotate(-10deg) scale(1.10);
    box-shadow: 0 12px 24px rgba(246, 130, 31, 0.50);
}
.sa-service-card h3 {
    font-size: 19px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
    line-height: 1.3;
}
.sa-service-card p {
    font-size: 14px;
    line-height: 1.65;
    color: var(--text-2);
    margin: 0;
}

/* ============================================== */
/* SA PHONE SHOWCASE                              */
/* ============================================== */
.sa-phone-showcase { padding: 100px 0; }
.sa-phone-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(246, 130, 31, 0.20) 0%, transparent 60%);
    transform: translate(-50%, -50%);
    filter: blur(60px);
    pointer-events: none;
}
.sa-phone-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 0.85fr;
    gap: 60px;
    align-items: center;
}
.sa-phone-content h2 { color: #ffffff; }
.sa-phone-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 32px 0;
}
.sa-phone-feature {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}
.sa-phone-feature > i {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, #f6821f 0%, #ff7a45 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 8px 20px rgba(246, 130, 31, 0.40);
}
.sa-phone-feature h4 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}
.sa-phone-feature p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 13px;
    line-height: 1.55;
    margin: 0;
}
.sa-phone-download {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 12px;
}
.sa-store-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 22px;
    background: #ffffff;
    color: #0f172a;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    text-decoration: none;
    transition: all 0.3s ease;
}
.sa-store-btn:hover {
    background: #f8fafc;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(246, 130, 31, 0.30);
}
.sa-store-btn i {
    font-size: 30px;
    color: #0f172a;
}
.sa-store-btn span {
    display: block;
    font-size: 10px;
    color: #64748b;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.sa-store-btn strong {
    display: block;
    font-size: 15px;
    color: #0f172a;
    line-height: 1.2;
    font-weight: 700;
}
.sa-phone-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sa-phone-img {
    width: 100%;
    max-width: 360px;
    height: auto;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.6));
    animation: sa-float 6s ease-in-out infinite;
    position: relative;
    z-index: 2;
}
.sa-phone-decorations {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.sa-phone-deco {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
}
.sa-phone-deco-1 {
    width: 200px;
    height: 200px;
    background: rgba(246, 130, 31, 0.40);
    top: 10%;
    right: 10%;
}
.sa-phone-deco-2 {
    width: 180px;
    height: 180px;
    background: rgba(59, 130, 246, 0.30);
    bottom: 10%;
    left: 10%;
}

/* ============================================== */
/* SA WHY IT MATTERS                              */
/* ============================================== */
.sa-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
.sa-why-card {
    position: relative;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 32px 24px 28px;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
    transition: all 0.4s ease;
    overflow: hidden;
}
.sa-why-strip {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #f6821f 0%, #ff7a45 50%, #fbbf24 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}
.sa-why-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(15, 23, 42, 0.10); }
.sa-why-card:hover .sa-why-strip { transform: scaleX(1); }
.sa-why-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 18px;
    transition: all 0.4s ease;
}
.sa-why-card:hover .sa-why-icon {
    background: linear-gradient(135deg, #f6821f 0%, #ff7a45 100%);
    color: #ffffff;
    transform: scale(1.10) rotate(-8deg);
}
.sa-why-stat {
    font-size: 42px;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 14px;
    font-family: 'Space Grotesk', sans-serif;
}
.sa-why-stat span {
    font-size: 22px;
    font-weight: 600;
    color: #94a3b8;
    margin-left: 2px;
}
.sa-why-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
    line-height: 1.3;
}
.sa-why-card p {
    font-size: 14px;
    line-height: 1.65;
    color: var(--text-2);
    margin-bottom: 18px;
}
.sa-why-points {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 8px;
}
.sa-why-points li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text);
    font-weight: 500;
}
.sa-why-points li i {
    color: var(--accent);
    font-size: 14px;
    flex-shrink: 0;
}

/* ============================================== */
/* SA PRICING                                     */
/* ============================================== */
.sa-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}
.sa-pricing-card {
    position: relative;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 20px;
    padding: 36px 28px 32px;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.sa-pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 50px rgba(15, 23, 42, 0.10);
    border-color: #fed7aa;
}
.sa-pricing-featured {
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    border-color: var(--accent);
    color: #ffffff;
    transform: scale(1.04);
    box-shadow: 0 20px 50px rgba(246, 130, 31, 0.20);
}
.sa-pricing-featured:hover { transform: scale(1.04) translateY(-6px); }
.sa-pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #f6821f 0%, #ff7a45 100%);
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 14px rgba(246, 130, 31, 0.40);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.sa-pricing-badge i { font-size: 10px; }
.sa-pricing-header { margin-bottom: 24px; }
.sa-pricing-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: inherit;
    margin-bottom: 8px;
}
.sa-pricing-header p {
    font-size: 14px;
    line-height: 1.55;
    opacity: 0.75;
    margin: 0;
}
.sa-pricing-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(148, 163, 184, 0.20);
}
.sa-pricing-price .currency {
    font-size: 24px;
    font-weight: 600;
    color: var(--accent);
}
.sa-pricing-featured .sa-pricing-price .currency { color: #fbbf24; }
.sa-pricing-price .amount {
    font-size: 56px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1;
    font-family: 'Space Grotesk', sans-serif;
}
.sa-pricing-featured .sa-pricing-price .amount { color: #ffffff; }
.sa-pricing-price .period {
    font-size: 13px;
    color: #64748b;
    margin-left: 4px;
}
.sa-pricing-featured .sa-pricing-price .period { color: rgba(255, 255, 255, 0.65); }
.sa-pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    display: grid;
    gap: 12px;
    flex: 1;
}
.sa-pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    line-height: 1.5;
}
.sa-pricing-features li i {
    color: var(--accent);
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}
.sa-pricing-featured .sa-pricing-features li i { color: #fbbf24; }

/* ============================================== */
/* SA STANDOUT                                    */
/* ============================================== */
.sa-standout-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.sa-standout-list { display: grid; gap: 18px; }
.sa-standout-item {
    display: flex;
    gap: 16px;
    padding: 22px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    transition: all 0.35s ease;
}
.sa-standout-item:hover {
    transform: translateX(6px);
    border-color: #fed7aa;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}
.sa-standout-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, #f6821f 0%, #ff7a45 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 6px 14px rgba(246, 130, 31, 0.30);
}
.sa-standout-item h4 {
    font-size: 17px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 6px;
}
.sa-standout-item p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-2);
    margin: 0;
}
.sa-standout-visual {
    position: relative;
}
.sa-standout-visual-card {
    position: relative;
    padding: 40px;
    background: linear-gradient(135deg, #f6821f 0%, #ff7a45 100%);
    border-radius: 24px;
    color: #ffffff;
    box-shadow: 0 30px 60px rgba(246, 130, 31, 0.30);
    overflow: hidden;
}
.sa-standout-visual-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.10);
    border-radius: 50%;
}
.sa-standout-visual-card::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -20%;
    width: 300px;
    height: 300px;
    background: rgba(0, 0, 0, 0.10);
    border-radius: 50%;
}
.sa-standout-visual-quote {
    position: relative;
    z-index: 2;
}
.sa-standout-visual-quote > i {
    font-size: 50px;
    color: rgba(255, 255, 255, 0.30);
    display: block;
    margin-bottom: 12px;
}
.sa-standout-visual-quote p {
    font-size: 19px;
    line-height: 1.55;
    color: #ffffff;
    font-weight: 500;
    margin: 0 0 24px;
    font-style: italic;
}
.sa-standout-visual-author {
    display: flex;
    align-items: center;
    gap: 14px;
}
.sa-standout-visual-author .sa-avatar { border-color: #ffffff; }
.sa-standout-visual-author strong {
    display: block;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
}
.sa-standout-visual-author span {
    display: block;
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
}

/* ============================================== */
/* SA PROCESS                                     */
/* ============================================== */
.sa-process-list {
    display: grid;
    gap: 16px;
    max-width: 880px;
}
.sa-process-step {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 24px 28px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    transition: all 0.35s ease;
}
.sa-process-step:hover {
    transform: translateX(8px);
    border-color: #fed7aa;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}
.sa-process-step-num {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, #f6821f 0%, #ff7a45 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 800;
    font-family: 'Space Grotesk', sans-serif;
    box-shadow: 0 8px 20px rgba(246, 130, 31, 0.30);
}
.sa-process-step-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 6px;
}
.sa-process-step-content p {
    font-size: 14px;
    line-height: 1.65;
    color: var(--text-2);
    margin: 0;
}

/* ============================================== */
/* SA CTA                                         */
/* ============================================== */
.sa-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    position: relative;
    overflow: hidden;
}
.sa-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(246, 130, 31, 0.20) 0%, transparent 60%);
    border-radius: 50%;
    filter: blur(60px);
}
.sa-cta::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 60%);
    border-radius: 50%;
    filter: blur(60px);
}
.sa-cta-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
    padding: 48px 32px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    backdrop-filter: blur(10px);
}
.sa-cta-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    border-radius: 18px;
    background: linear-gradient(135deg, #f6821f 0%, #ff7a45 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    box-shadow: 0 12px 30px rgba(246, 130, 31, 0.50);
}
.sa-cta h2 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}
.sa-cta p {
    font-size: 17px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 32px;
}
.sa-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}
.sa-cta .btn-outline {
    border-color: rgba(255, 255, 255, 0.25);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
}
.sa-cta .btn-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.40);
    color: #ffffff;
}

/* ============================================== */
/* SA: Industries Box Style + Hover               */
/* ============================================== */
.seo-industries-grid { display: grid; gap: 20px; }
.seo-industry-card { cursor: pointer; }
.seo-industry-card:hover {
    transform: translateY(-12px) scale(1.03) !important;
    box-shadow: 0 28px 60px rgba(246, 130, 31, 0.28) !important;
    border-color: #f6821f !important;
    background: linear-gradient(180deg, #ffffff 0%, #fff8f3 100%) !important;
}
.seo-industry-card:hover .seo-industry-icon {
    transform: rotate(-12deg) scale(1.15) !important;
    box-shadow: 0 12px 24px rgba(246, 130, 31, 0.50) !important;
}
.seo-industry-card .seo-industry-icon {
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}
.seo-industry-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 14px;
}
.seo-industry-tags span {
    font-size: 11px;
    font-weight: 600;
    color: #9a3412;
    background: #fff7ed;
    padding: 4px 10px;
    border-radius: 100px;
    border: 1px solid #fed7aa;
}

/* ============================================== */
/* SA: RESPONSIVE                                 */
/* ============================================== */
@media (max-width: 1100px) {
    .sa-hero-v2-grid { grid-template-columns: 1fr; gap: 40px; }
    .sa-hero-v2-visual { min-height: auto; }
    .sa-hero-illustration { max-width: 100%; }
    .sa-intro-grid { grid-template-columns: 1fr; gap: 40px; }
    .sa-intro-visual { order: -1; }
    .sa-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .sa-services-grid { grid-template-columns: repeat(2, 1fr); }
    .sa-why-grid { grid-template-columns: repeat(2, 1fr); }
    .sa-pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .sa-pricing-featured { transform: none; }
    .sa-pricing-featured:hover { transform: translateY(-6px); }
    .sa-phone-grid { grid-template-columns: 1fr; gap: 50px; }
    .sa-phone-visual { order: -1; }
    .sa-standout-wrap { grid-template-columns: 1fr; gap: 40px; }
    .seo-industries-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 700px) {
    .sa-hero-v2 { padding: 100px 0 60px; min-height: auto; }
    .sa-hero-trust { flex-direction: column; text-align: center; }
    .sa-hero-float-1 { left: 0; top: 5%; }
    .sa-hero-float-2 { right: 0; bottom: 5%; }
    .sa-stats-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .sa-stat { padding: 12px; }
    .sa-services-grid { grid-template-columns: 1fr; }
    .sa-why-grid { grid-template-columns: 1fr; }
    .sa-phone-features { grid-template-columns: 1fr; }
    .sa-strategy-banner { flex-direction: column; text-align: center; padding: 24px; }
    .sa-standout-visual-card { padding: 28px; }
    .sa-standout-visual-quote p { font-size: 16px; }
    .seo-industries-grid { grid-template-columns: 1fr !important; }
    .sa-cta-inner { padding: 32px 20px; }
}
@media (max-width: 480px) {
    .sa-hero-cta { flex-direction: column; align-items: stretch; }
    .sa-hero-cta .btn { justify-content: center; }
    .sa-store-btn { flex: 1; }
}

/* =====================================================
   DM STAT SUFFIX OVERRIDES (used on sales page)
   ===================================================== */
.dm-stat-num.suffix-pct::after { content: '%'; }
.dm-stat-num.suffix-x::after { content: 'x'; }
.dm-stat-num.suffix-min::after { content: ' min'; font-size: 0.55em; opacity: 0.85; }
.dm-stat-num.suffix-slash7::after { content: '/7'; font-size: 0.6em; opacity: 0.85; }
.dm-stat-num.suffix-none::after { content: ''; }

/* =====================================================
   BOOK DEMO / CONSULTATION BOOTSTRAP MODAL STYLING
   ===================================================== */
#bookModal .modal-content {
    border: none;
    border-radius: 18px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.30);
    overflow: hidden;
    background: var(--surface, #ffffff);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}
#bookModal .book-modal-header {
    border: none;
    background: linear-gradient(135deg, #f6821f 0%, #ff8a3d 100%);
    color: #fff;
    padding: 22px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
#bookModal .book-modal-header .modal-title {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.2px;
}
#bookModal .book-btn-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    filter: brightness(0) invert(1);
    transition: background 0.2s;
    margin-left: 0;
    box-shadow: none;
}
#bookModal .book-btn-close:hover {
    background: rgba(255, 255, 255, 0.35);
    opacity: 1;
}
#bookModal .book-btn-close:focus {
    box-shadow: none;
    outline: none;
}
#bookModal .book-modal-body {
    padding: 28px;
    background: var(--surface, #ffffff);
}
#bookModal .book-modal-subtitle {
    font-size: 14px;
    color: var(--text-2, #5b6172);
    margin: 0 0 20px;
    line-height: 1.5;
}
#bookModal .book-modal-form .form-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-2, #5b6172);
    margin-bottom: 6px;
}
#bookModal .book-modal-form .form-control {
    border: 1.5px solid var(--border, #e3e6ee);
    border-radius: 8px;
    padding: 11px 14px;
    font-size: 14px;
    color: var(--text, #1c1d22);
    background: var(--surface, #ffffff);
    transition: border-color 0.2s, box-shadow 0.2s;
}
#bookModal .book-modal-form .form-control:focus {
    border-color: var(--accent, #f6821f);
    box-shadow: 0 0 0 3px rgba(246, 130, 31, 0.12);
    outline: none;
}
#bookModal .book-modal-form .form-control:focus-visible {
    outline: none;
}
#bookModal .book-submit-btn {
    background: linear-gradient(135deg, #f6821f 0%, #ff8a3d 100%);
    border: none;
    color: #fff;
    font-weight: 600;
    padding: 13px 20px;
    border-radius: 8px;
    font-size: 15px;
    margin-top: 6px;
    transition: transform 0.2s, box-shadow 0.2s;
}
#bookModal .book-submit-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(246, 130, 31, 0.35);
    color: #fff;
}
#bookModal .book-submit-btn:focus,
#bookModal .book-submit-btn:focus-visible,
#bookModal .book-submit-btn:active {
    outline: none !important;
    box-shadow: 0 8px 20px rgba(246, 130, 31, 0.45);
    color: #fff;
}
#bookModal .book-submit-btn:disabled {
    opacity: 0.85;
    cursor: not-allowed;
    transform: none;
}
#bookModal .modal-backdrop.show {
    background: rgba(28, 29, 34, 0.65);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 1 !important;
}

@media (max-width: 540px) {
    #bookModal .modal-dialog {
        margin: 12px;
    }
    #bookModal .book-modal-header,
    #bookModal .book-modal-body {
        padding: 20px;
    }
    #bookModal .book-modal-header .modal-title {
        font-size: 18px;
    }
}

/* ==========================================================
   CONTACT PAGE  (ct-*)
   ========================================================== */

/* --- Hero --- */
.ct-hero {
    position: relative;
    width: 100%;
    min-height: clamp(280px, 44vh, 400px);
    background: var(--dark) url('images/home/about-banner-v4.webp') center/cover no-repeat;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-top: 96px;
    padding-bottom: 56px;
}
.ct-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(100deg, rgba(28, 29, 34, 0.78) 0%, rgba(28, 29, 34, 0.55) 45%, rgba(28, 29, 34, 0.30) 75%, rgba(28, 29, 34, 0.15) 100%),
        radial-gradient(circle at 80% 80%, rgba(246, 130, 31, 0.12) 0%, transparent 60%);
    pointer-events: none;
}
.ct-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(28, 29, 34, 0.20) 0%, rgba(28, 29, 34, 0.50) 100%);
    pointer-events: none;
}
.ct-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 820px;
    margin: 0 auto;
}
.ct-hero h1 {
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}
.ct-hero h1 .text-accent { color: var(--accent); }
.ct-hero p {
    font-size: clamp(16px, 1.6vw, 19px);
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

/* --- Main contact section (info + form) --- */
.ct-section {
    background: var(--bg);
    padding-top: clamp(60px, 8vw, 100px);
    padding-bottom: clamp(60px, 8vw, 100px);
}
.ct-grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: clamp(40px, 5vw, 72px);
    align-items: start;
}
.ct-info .section-title { margin: 12px 0 20px; }
.ct-info-lead {
    font-size: 16px;
    color: var(--text-2);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 540px;
}
.ct-info-list {
    list-style: none;
    margin: 0 0 32px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.ct-info-list > li {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 22px;
    background: var(--surface);
    border: 1px solid var(--border-soft);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s var(--transition), box-shadow 0.25s var(--transition), border-color 0.25s var(--transition);
}
.ct-info-list > li:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
    border-color: var(--accent-soft);
}
.ct-info-icon {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--accent-soft);
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}
.ct-info-icon--whatsapp {
    background: rgba(37, 211, 102, 0.12);
    color: #25d366;
}
.ct-info-body { flex: 1; min-width: 0; }
.ct-info-body h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    color: var(--text-3);
    margin-bottom: 8px;
}
.ct-info-body p {
    font-size: 16px;
    line-height: 1.55;
    color: var(--text);
    margin: 0 0 4px;
}
.ct-info-body a {
    color: var(--text);
    border-bottom: 1px solid transparent;
    transition: color 0.2s var(--transition), border-color 0.2s var(--transition);
}
.ct-info-body a:hover {
    color: var(--accent);
    border-bottom-color: var(--accent);
}
.ct-info-meta {
    font-size: 13px !important;
    color: var(--text-3) !important;
    margin-top: 4px !important;
}
.ct-info-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent) !important;
    margin-top: 6px;
    border-bottom: 1px solid transparent !important;
}
.ct-info-link:hover { border-bottom-color: var(--accent) !important; }
.ct-info-link i { transition: transform 0.2s var(--transition); }
.ct-info-link:hover i { transform: translate(2px, -2px); }

.ct-info-socials {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 8px;
}
.ct-info-socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--surface-2);
    border: 1px solid var(--border);
    color: var(--text-2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    transition: all 0.25s var(--transition);
}
.ct-info-socials a:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(246, 130, 31, 0.30);
}

/* --- Form card --- */
.ct-form-wrap {
    position: sticky;
    top: 110px;
}
.ct-form-card {
    background: var(--surface);
    border: 1px solid var(--border-soft);
    border-radius: 20px;
    padding: 36px 36px 32px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}
.ct-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
}
.ct-form-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(22px, 2.4vw, 28px);
    font-weight: 700;
    color: var(--text);
    line-height: 1.2;
    margin: 10px 0 10px;
}
.ct-form-sub {
    font-size: 15px;
    color: var(--text-2);
    line-height: 1.55;
    margin-bottom: 24px;
}
.ct-form { display: flex; flex-direction: column; gap: 16px; }
.ct-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.ct-form-field { display: flex; flex-direction: column; }
.ct-form-field label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-2);
    margin-bottom: 6px;
    letter-spacing: 0.2px;
}
.ct-form-field input,
.ct-form-field select,
.ct-form-field textarea {
    width: 100%;
    padding: 12px 14px;
    font: inherit;
    font-size: 15px;
    color: var(--text);
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: 10px;
    transition: border-color 0.2s var(--transition), background 0.2s var(--transition), box-shadow 0.2s var(--transition);
    font-family: inherit;
}
.ct-form-field textarea { resize: vertical; min-height: 110px; }
.ct-form-field input:focus,
.ct-form-field select:focus,
.ct-form-field textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: var(--surface);
    box-shadow: 0 0 0 4px var(--accent-soft);
}
.ct-form-field input::placeholder,
.ct-form-field textarea::placeholder { color: var(--text-3); }
.ct-form-field select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6' fill='none' stroke='%238a8b8f' stroke-width='1.8'><polyline points='1 1 5 5 9 1'/></svg>"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.ct-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 10px;
    margin-top: 6px;
    width: 100%;
    transition: transform 0.2s var(--transition), box-shadow 0.2s var(--transition);
}
.ct-submit-btn i { font-size: 14px; }
.ct-submit-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(246, 130, 31, 0.32);
}
.ct-form-note {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-3);
    margin: 6px 0 0;
    text-align: center;
    justify-content: center;
}
.ct-form-note i { color: var(--accent); }

.ct-form-success {
    text-align: center;
    padding: 30px 20px 10px;
}
.ct-form-success-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: var(--accent-soft);
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
}
.ct-form-success h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}
.ct-form-success p {
    color: var(--text-2);
    font-size: 15px;
}

/* --- Map section --- */
.ct-map-section {
    background: var(--surface);
    padding-top: clamp(40px, 6vw, 80px);
    padding-bottom: clamp(40px, 6vw, 80px);
}
.ct-map-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 40px;
}
.ct-map-head .section-title { margin: 12px 0 14px; }
.ct-map-head p {
    color: var(--text-2);
    font-size: 16px;
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto 4px;
}
.ct-map-head .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.ct-map-wrap {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    background: var(--surface-2);
}
.ct-map-wrap iframe {
    display: block;
    width: 100%;
    height: clamp(360px, 50vw, 480px);
}
.ct-map-overlay-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--accent);
    color: #fff;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    box-shadow: var(--shadow-md);
    transition: transform .2s ease, background .2s ease;
}
.ct-map-overlay-btn:hover {
    background: #e0701a;
    color: #fff;
    transform: translateY(-1px);
}
.ct-map-wrap { position: relative; }

/* --- Quick links strip --- */
.ct-quicklinks {
    background: var(--bg-2);
    padding-top: clamp(60px, 8vw, 100px);
    padding-bottom: clamp(60px, 8vw, 100px);
}
.ct-quicklinks-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: clamp(40px, 5vw, 80px);
    align-items: start;
}
.ct-quicklinks-intro .section-title { margin: 12px 0 16px; }
.ct-quicklinks-intro p {
    color: var(--text-2);
    font-size: 15px;
    line-height: 1.7;
    max-width: 380px;
}
.ct-quicklinks-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
}
.ct-quicklinks-col h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text);
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--accent);
    display: inline-block;
}
.ct-quicklinks-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.ct-quicklinks-col ul li a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text-2);
    font-size: 15px;
    transition: color 0.2s var(--transition), transform 0.2s var(--transition);
}
.ct-quicklinks-col ul li a i {
    color: var(--accent);
    font-size: 14px;
    transition: transform 0.2s var(--transition);
}
.ct-quicklinks-col ul li a:hover { color: var(--accent); }
.ct-quicklinks-col ul li a:hover i { transform: translateX(3px); }
.ct-quicklinks-contact li {
    display: flex !important;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-2);
    font-size: 15px;
    line-height: 1.55;
}
.ct-quicklinks-contact li i {
    flex: 0 0 16px;
    margin-top: 4px;
}
.ct-quicklinks-contact li a {
    color: var(--text-2) !important;
    border-bottom: 1px solid transparent;
    transition: color 0.2s var(--transition), border-color 0.2s var(--transition);
}
.ct-quicklinks-contact li a:hover {
    color: var(--accent) !important;
    border-bottom-color: var(--accent);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .ct-grid { grid-template-columns: 1fr; gap: 48px; }
    .ct-form-wrap { position: static; }
    .ct-quicklinks-grid { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 720px) {
    .ct-form-card { padding: 28px 22px 24px; }
    .ct-form-row { grid-template-columns: 1fr; gap: 16px; }
    .ct-quicklinks-cols { grid-template-columns: 1fr; gap: 32px; }
    .ct-info-list > li { padding: 18px; gap: 14px; }
    .ct-info-icon { width: 42px; height: 42px; font-size: 18px; flex-basis: 42px; }
}
@media (max-width: 480px) {
    .ct-hero { min-height: 280px; padding-top: 88px; padding-bottom: 44px; }
    .ct-info-list { gap: 14px; }
    .ct-info-list > li { padding: 16px; }
}
