/* ══════════════════════════════════════════════
   SHONICHI CO.,LTD — Custom Design System
   Dark Navy • Electric Blue • Glassmorphism
══════════════════════════════════════════════ */

:root {
    --c-dark:       #060c1a;
    --c-dark-2:     #0b1730;
    --c-dark-3:     #0d2244;
    --c-mid:        #111827;
    --c-blue:       #00d4ff;
    --c-blue-dim:   rgba(0, 212, 255, 0.15);
    --c-purple:     #7c3aed;
    --c-purple-dim: rgba(124, 58, 237, 0.15);
    --c-pink:       #ec4899;
    --c-white:      #ffffff;
    --c-text:       rgba(255,255,255,0.85);
    --c-text-dim:   rgba(255,255,255,0.55);
    --c-glass:      rgba(255,255,255,0.04);
    --c-glass-border: rgba(255,255,255,0.09);
    --r-card:       16px;
    --shadow-glow:  0 0 40px rgba(0,212,255,0.18);
    --shadow-card:  0 8px 40px rgba(0,0,0,0.18);
    --font-main:    'Inter', 'Poppins', sans-serif;
    --font-head:    'Poppins', 'Inter', sans-serif;
}

/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-main);
    font-size: 15px;
    line-height: 1.75;
    color: #1a202c;
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
}

/* Gradient text utility */
.gradient-text {
    background: linear-gradient(135deg, #00d4ff 0%, #7c3aed 60%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ─── LOADER ─── */
#loading {
    position: fixed; z-index: 99999; inset: 0;
    background: var(--c-dark);
    display: flex; align-items: center; justify-content: center;
}
#loading-center { position: relative; }
.loader .cube { width: 48px; height: 48px; animation: cubeSpin 1.4s infinite ease-in-out; }
.loader .cube .sides { position: relative; width: 48px; height: 48px; transform-style: preserve-3d; }
.loader .cube .sides div {
    position: absolute; width: 48px; height: 48px; border: 2px solid var(--c-blue);
    background: rgba(0,212,255,0.07);
}
.loader .cube .sides .front  { transform: translateZ(24px); }
.loader .cube .sides .back   { transform: rotateY(180deg) translateZ(24px); }
.loader .cube .sides .left   { transform: rotateY(-90deg) translateZ(24px); }
.loader .cube .sides .right  { transform: rotateY(90deg) translateZ(24px); }
.loader .cube .sides .top    { transform: rotateX(90deg) translateZ(24px); }
.loader .cube .sides .bottom { transform: rotateX(-90deg) translateZ(24px); }
@keyframes cubeSpin { 0%{transform:rotateX(-20deg) rotateY(0);} 100%{transform:rotateX(-20deg) rotateY(360deg);} }

/* ─── HEADER ─── */
.sn-header, #main-header, #main-header.menu-sticky {
    position: fixed !important; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(6, 12, 26, 0.97) !important;
    backdrop-filter: blur(20px) !important;
    border-bottom: 1px solid rgba(0, 212, 255, 0.1) !important;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3) !important;
    transition: all 0.35s ease !important;
    padding: 0 !important;
}
.sn-header .container { max-width: 1200px; }
.sn-header .navbar { padding: 0; min-height: 72px; }
.sn-logo { height: 52px; width: auto; display: block; }

/* ─── NAV ─── */
.sn-nav { gap: 4px; align-items: center; }
.sn-nav .nav-link {
    color: rgba(255,255,255,0.75) !important;
    font-family: var(--font-head);
    font-size: 13.5px;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 8px 14px !important;
    border-radius: 8px;
    transition: all 0.25s ease;
    text-decoration: none !important;
}
.sn-nav .nav-link:hover, .sn-nav .nav-link.active {
    color: var(--c-blue) !important;
    background: rgba(0,212,255,0.08) !important;
}
/* Also override template nav */
#main-header .navbar-nav .nav-link { color: rgba(255,255,255,0.75) !important; }
#main-header .navbar-nav .nav-link:hover { color: var(--c-blue) !important; }

.sn-toggler {
    color: #fff; font-size: 22px; line-height: 1;
    border: 1px solid rgba(255,255,255,0.2); border-radius: 8px;
    padding: 6px 10px;
    background: transparent;
    cursor: pointer;
}

/* ─── BUTTONS ─── */
.sn-btn-primary {
    display: inline-flex; align-items: center;
    padding: 11px 26px;
    background: linear-gradient(135deg, #00d4ff 0%, #7c3aed 100%);
    color: #fff !important;
    border: none; border-radius: 50px;
    font-family: var(--font-head);
    font-size: 13.5px; font-weight: 600;
    letter-spacing: 0.3px;
    text-decoration: none !important;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,212,255,0.3);
    white-space: nowrap;
}
.sn-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0,212,255,0.45);
    color: #fff !important;
}
.sn-btn-ghost {
    display: inline-flex; align-items: center;
    padding: 10px 26px;
    background: transparent;
    color: rgba(255,255,255,0.85) !important;
    border: 1.5px solid rgba(255,255,255,0.25);
    border-radius: 50px;
    font-family: var(--font-head);
    font-size: 13.5px; font-weight: 500;
    text-decoration: none !important;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}
.sn-btn-ghost:hover {
    border-color: var(--c-blue);
    color: var(--c-blue) !important;
    background: rgba(0,212,255,0.06);
    transform: translateY(-2px);
}
.sn-btn-lg { padding: 14px 32px !important; font-size: 15px !important; }

/* ─── HERO ─── */
.sn-hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(145deg, #060c1a 0%, #0b1730 40%, #0d2244 70%, #0c1a38 100%);
    overflow: hidden;
}

.hero-blob {
    position: absolute; border-radius: 50%;
    filter: blur(100px); pointer-events: none;
}
.hero-blob-1 {
    width: 700px; height: 700px; top: -200px; right: -200px;
    background: radial-gradient(circle, rgba(0,212,255,0.18) 0%, transparent 70%);
    animation: blobFloat1 12s ease-in-out infinite;
}
.hero-blob-2 {
    width: 500px; height: 500px; bottom: -100px; left: -100px;
    background: radial-gradient(circle, rgba(124,58,237,0.2) 0%, transparent 70%);
    animation: blobFloat2 15s ease-in-out infinite;
}
.hero-blob-3 {
    width: 350px; height: 350px; top: 50%; right: 30%;
    background: radial-gradient(circle, rgba(236,72,153,0.1) 0%, transparent 70%);
    animation: blobFloat3 18s ease-in-out infinite;
}
.hero-grid {
    position: absolute; inset: 0; pointer-events: none;
    background-image:
        linear-gradient(rgba(0,212,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,212,255,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
}

@keyframes blobFloat1 { 0%,100%{transform:translate(0,0);} 33%{transform:translate(-40px,30px);} 66%{transform:translate(30px,-20px);} }
@keyframes blobFloat2 { 0%,100%{transform:translate(0,0);} 33%{transform:translate(30px,-40px);} 66%{transform:translate(-20px,30px);} }
@keyframes blobFloat3 { 0%,100%{transform:translate(0,0);} 50%{transform:translate(40px,20px);} }

.hero-eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 12px; font-weight: 600; letter-spacing: 2px;
    text-transform: uppercase; color: var(--c-blue);
    margin-bottom: 20px;
}
.eyebrow-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--c-blue);
    box-shadow: 0 0 12px var(--c-blue);
    animation: dotPulse 2s ease-in-out infinite;
    flex-shrink: 0;
}
@keyframes dotPulse { 0%,100%{opacity:1;transform:scale(1);} 50%{opacity:0.5;transform:scale(0.7);} }

.hero-headline {
    font-family: var(--font-head);
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 800;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 24px;
    letter-spacing: -1px;
}
.hero-sub {
    font-size: 17px; line-height: 1.8;
    color: rgba(255,255,255,0.65);
    max-width: 520px;
    margin-bottom: 40px;
}
.hero-actions {
    display: flex; flex-wrap: wrap; gap: 14px;
    margin-bottom: 48px;
}
.hero-stats {
    display: flex; align-items: center;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 16px;
    padding: 18px 24px;
    backdrop-filter: blur(10px);
    width: fit-content;
}
.hstat { text-align: center; padding: 0 24px; }
.hstat:first-child { padding-left: 0; }
.hstat:last-child  { padding-right: 0; }
.hstat-num {
    display: block;
    font-family: var(--font-head);
    font-size: 28px; font-weight: 800;
    color: #fff; line-height: 1;
}
.hstat-num sup { font-size: 16px; color: var(--c-blue); }
.hstat-label { font-size: 11px; color: rgba(255,255,255,0.5); letter-spacing: 0.5px; margin-top: 4px; display: block; }
.hstat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.1); flex-shrink: 0; }

.hero-visual {
    position: relative; width: 380px; height: 380px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto;
}
.hero-glow-ring {
    position: absolute; inset: 0;
    border: 1px solid rgba(0,212,255,0.2);
    border-radius: 50%;
    box-shadow: 0 0 80px rgba(0,212,255,0.15), inset 0 0 80px rgba(0,212,255,0.05);
    animation: ringPulse 4s ease-in-out infinite;
}
@keyframes ringPulse {
    0%,100%{box-shadow: 0 0 80px rgba(0,212,255,0.15), inset 0 0 80px rgba(0,212,255,0.05);}
    50%{box-shadow: 0 0 120px rgba(0,212,255,0.3), inset 0 0 120px rgba(0,212,255,0.1);}
}
.hero-logo-float {
    width: 240px; height: 240px; object-fit: contain;
    border-radius: 32px;
    animation: logoFloat 5s ease-in-out infinite;
    filter: drop-shadow(0 0 30px rgba(0,212,255,0.4));
}
@keyframes logoFloat { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-18px);} }

/* Tech marquee */
.tech-marquee-wrap {
    position: relative; overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.07);
    background: rgba(0,0,0,0.25);
    padding: 16px 0;
}
.tech-marquee-wrap::before, .tech-marquee-wrap::after {
    content: '';
    position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2;
    pointer-events: none;
}
.tech-marquee-wrap::before { left: 0; background: linear-gradient(90deg, #060c1a, transparent); }
.tech-marquee-wrap::after  { right: 0; background: linear-gradient(270deg, #060c1a, transparent); }
.tech-track {
    display: flex; gap: 48px; white-space: nowrap;
    animation: marqueeSlide 32s linear infinite;
    width: max-content;
}
.tech-track span {
    font-size: 12px; font-weight: 600; letter-spacing: 1.5px;
    text-transform: uppercase; color: rgba(255,255,255,0.35);
    transition: color 0.3s;
}
.tech-track span:hover { color: var(--c-blue); }
@keyframes marqueeSlide { from{transform:translateX(0);} to{transform:translateX(-50%);} }

/* ─── SECTION SYSTEM ─── */
.sn-section { padding: 90px 0; }

.sn-section-label {
    display: inline-block;
    font-size: 11px; font-weight: 700; letter-spacing: 3px;
    text-transform: uppercase; color: var(--c-blue);
    margin-bottom: 12px;
    position: relative; padding-left: 20px;
}
.sn-section-label::before {
    content: '';
    position: absolute; left: 0; top: 50%;
    transform: translateY(-50%);
    width: 12px; height: 2px; background: var(--c-blue);
}
.sn-section-label.light { color: rgba(0,212,255,0.8); }
.sn-section-label.light::before { background: rgba(0,212,255,0.8); }

.sn-section-title {
    font-family: var(--font-head);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800; line-height: 1.2;
    letter-spacing: -0.5px; color: #0f172a;
    text-align: center; margin-bottom: 16px;
}
.sn-section-title.text-white { color: #fff; }
.sn-section-title.text-left  { text-align: left; }

.sn-section-sub {
    font-size: 16px; color: #64748b; line-height: 1.8;
    max-width: 600px; text-align: center; margin: 0 auto;
}
.sn-section-sub.text-white-70 { color: rgba(255,255,255,0.6); }

/* ─── SERVICE CARDS (What We Do) ─── */
.sn-service-card {
    background: #fff; border: 1.5px solid #e8eef7;
    border-radius: 20px; padding: 36px 32px; height: 100%;
    transition: all 0.35s cubic-bezier(.23,1,.32,1);
    position: relative; overflow: hidden;
}
.sn-service-card::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(0,212,255,0.03) 0%, rgba(124,58,237,0.03) 100%);
    opacity: 0; transition: opacity 0.35s;
}
.sn-service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0,212,255,0.25);
    box-shadow: 0 20px 60px rgba(0,0,0,0.1), 0 0 0 1px rgba(0,212,255,0.1);
}
.sn-service-card:hover::before { opacity: 1; }
.sn-service-card--featured {
    background: linear-gradient(145deg, #060c1a 0%, #0d2244 100%);
    border-color: rgba(0,212,255,0.2);
}
.sn-service-card--featured .ssc-title { color: #fff; }
.sn-service-card--featured .ssc-desc  { color: rgba(255,255,255,0.65); }
.sn-service-card--featured .ssc-tags span {
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.7);
    border-color: rgba(255,255,255,0.1);
}
.ssc-featured-badge {
    display: inline-block; font-size: 10px; font-weight: 700;
    letter-spacing: 1.5px; text-transform: uppercase; color: var(--c-blue);
    border: 1px solid rgba(0,212,255,0.3); border-radius: 20px;
    padding: 3px 12px; margin-bottom: 16px;
}
.ssc-icon {
    width: 60px; height: 60px; border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 28px; margin-bottom: 20px;
}
.ssc-icon-blue   { background: rgba(0,212,255,0.1); color: var(--c-blue); }
.ssc-icon-purple { background: rgba(124,58,237,0.12); color: #9f6dff; }
.ssc-icon-cyan   { background: rgba(6,182,212,0.1); color: #06b6d4; }
.ssc-title {
    font-family: var(--font-head); font-size: 19px; font-weight: 700;
    color: #0f172a; margin-bottom: 12px; line-height: 1.3;
}
.ssc-desc { font-size: 14px; color: #64748b; line-height: 1.75; margin-bottom: 20px; }
.ssc-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 24px; }
.ssc-tags span {
    font-size: 11px; font-weight: 600; color: #475569;
    background: #f1f5f9; border: 1px solid #e2e8f0;
    border-radius: 20px; padding: 3px 10px;
}
.ssc-line { height: 3px; border-radius: 2px; width: 40px; }
.ssc-line-blue   { background: linear-gradient(90deg, #00d4ff, transparent); }
.ssc-line-purple { background: linear-gradient(90deg, #7c3aed, transparent); }
.ssc-line-cyan   { background: linear-gradient(90deg, #06b6d4, transparent); }

/* ─── ABOUT ─── */
.sn-about-section {
    background: linear-gradient(160deg, #0b1730 0%, #060c1a 100%);
    padding: 90px 0;
}
.about-visual { position: relative; }
.about-img {
    width: 100%; border-radius: 20px; object-fit: cover; height: 440px;
    filter: brightness(0.9) saturate(1.1);
}
.about-badge-float {
    position: absolute; bottom: -20px; right: -20px;
    background: linear-gradient(135deg, #00d4ff, #7c3aed);
    border-radius: 16px; padding: 18px 24px; text-align: center;
    box-shadow: 0 12px 40px rgba(0,212,255,0.35);
}
.abf-num { font-family: var(--font-head); font-size: 30px; font-weight: 800; color: #fff; line-height: 1; }
.abf-num sup { font-size: 16px; }
.abf-label { font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.8); letter-spacing: 0.5px; display: block; margin-top: 4px; }
.about-card-float {
    position: absolute; top: 20px; left: -24px;
    background: #fff; border-radius: 12px; padding: 12px 18px;
    display: flex; align-items: center; gap: 10px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    font-size: 13px; font-weight: 600; color: #1a202c; white-space: nowrap;
}
.sn-about-section .sn-section-title { color: #fff; text-align: left; }
.about-text { font-size: 15.5px; color: rgba(255,255,255,0.65); line-height: 1.85; margin-bottom: 16px; }
.about-text strong { color: var(--c-blue); font-weight: 600; }
.about-values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 24px; }
.av-item { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.75); }
.av-item i { font-size: 18px; color: var(--c-blue); flex-shrink: 0; }

/* ─── FEATURE CARDS (Our Services) ─── */
.sn-feature-card {
    background: #fff; border: 1.5px solid #e8eef7;
    border-radius: 18px; padding: 32px 28px; height: 100%;
    transition: all 0.35s cubic-bezier(.23,1,.32,1); position: relative;
}
.sn-feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0,212,255,0.25);
    box-shadow: 0 16px 50px rgba(0,0,0,0.1);
}
.sfc-num {
    font-family: var(--font-head); font-size: 36px; font-weight: 900;
    color: #f1f5f9; line-height: 1; margin-bottom: 16px; transition: color 0.3s;
}
.sn-feature-card:hover .sfc-num { color: rgba(0,212,255,0.12); }
.sfc-icon {
    font-size: 28px; display: block; margin-bottom: 14px;
    background: linear-gradient(135deg, var(--c-blue), var(--c-purple));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.sfc-title {
    font-family: var(--font-head); font-size: 16.5px; font-weight: 700;
    color: #0f172a; margin-bottom: 10px;
}
.sfc-desc { font-size: 14px; color: #64748b; line-height: 1.75; }

/* ─── WHY CHOOSE US ─── */
.sn-why-section {
    background: linear-gradient(160deg, #060c1a 0%, #0b1730 50%, #0d2244 100%);
    padding: 90px 0;
}
.sn-why-card {
    background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px; padding: 32px 24px; height: 100%;
    transition: all 0.35s ease; backdrop-filter: blur(10px);
}
.sn-why-card:hover {
    background: rgba(0,212,255,0.07); border-color: rgba(0,212,255,0.2);
    transform: translateY(-6px);
    box-shadow: 0 16px 50px rgba(0,0,0,0.2), 0 0 0 1px rgba(0,212,255,0.1);
}
.swc-icon {
    width: 52px; height: 52px;
    background: linear-gradient(135deg, rgba(0,212,255,0.15), rgba(124,58,237,0.15));
    border: 1px solid rgba(0,212,255,0.2); border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; color: var(--c-blue); margin-bottom: 18px; transition: all 0.3s;
}
.sn-why-card:hover .swc-icon {
    background: linear-gradient(135deg, rgba(0,212,255,0.25), rgba(124,58,237,0.25));
    transform: scale(1.08);
}
.sn-why-card h5 {
    font-family: var(--font-head); font-size: 16px; font-weight: 700;
    color: #fff; margin-bottom: 10px;
}
.sn-why-card p { font-size: 13.5px; color: rgba(255,255,255,0.55); line-height: 1.7; margin: 0; }

/* ─── STATS COUNTER ─── */
.sn-stats-section {
    background: linear-gradient(90deg, #060c1a 0%, #0d2244 50%, #060c1a 100%);
    padding: 70px 0;
    border-top: 1px solid rgba(0,212,255,0.07);
    border-bottom: 1px solid rgba(0,212,255,0.07);
    position: relative;
}
.sn-stats-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
}
.sn-stat-item {
    text-align: center; padding: 20px;
    border-right: 1px solid rgba(255,255,255,0.07);
}
.sn-stat-item:last-child { border-right: none; }
.ssi-icon {
    font-size: 28px; display: block; margin-bottom: 8px;
    background: linear-gradient(135deg, var(--c-blue), var(--c-purple));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.ssi-num {
    font-family: var(--font-head); font-size: 52px; font-weight: 900;
    color: #fff; line-height: 1; display: inline-block;
}
.ssi-plus {
    display: inline-block; font-size: 28px; font-weight: 800;
    background: linear-gradient(135deg, var(--c-blue), var(--c-purple));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    vertical-align: top; margin-top: 8px;
}
.ssi-label {
    display: block; font-size: 13px; font-weight: 500;
    color: rgba(255,255,255,0.45); letter-spacing: 0.5px; margin-top: 6px;
}

/* ─── PORTFOLIO ─── */
.sn-portfolio-slider .slider-single-image {
    border-radius: 12px; height: 320px;
    object-fit: cover; object-position: top;
    padding: 0 8px; transition: all 0.4s ease;
}
.sn-portfolio-slider .slider-left,
.sn-portfolio-slider .slider-right {
    background: rgba(255,255,255,0.1) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15) !important;
    color: #fff !important; border-radius: 50% !important;
    width: 46px !important; height: 46px !important;
    line-height: 46px !important; font-size: 20px !important;
    transition: all 0.3s !important;
}
.sn-portfolio-slider .slider-left:hover,
.sn-portfolio-slider .slider-right:hover {
    background: rgba(0,212,255,0.2) !important;
    border-color: var(--c-blue) !important;
}

/* ─── TESTIMONIALS ─── */
.sn-testi-section {
    background: linear-gradient(160deg, #060c1a 0%, #0b1730 100%);
    padding: 90px 0;
}
.sn-testi-card {
    background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.09);
    border-radius: 20px; padding: 32px 28px; height: 100%;
    transition: all 0.35s ease; backdrop-filter: blur(10px);
}
.sn-testi-card:hover {
    background: rgba(0,212,255,0.05); border-color: rgba(0,212,255,0.18);
    transform: translateY(-4px); box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}
.stc-stars { margin-bottom: 16px; }
.stc-stars .fa { color: #f59e0b; font-size: 13px; margin-right: 2px; }
.stc-quote {
    font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.8;
    font-style: italic; margin-bottom: 24px;
    position: relative; padding-left: 16px;
}
.stc-quote::before {
    content: ''; position: absolute; left: 0; top: 4px;
    width: 3px; height: calc(100% - 8px);
    background: linear-gradient(180deg, var(--c-blue), var(--c-purple));
    border-radius: 2px;
}
.stc-author { display: flex; align-items: center; gap: 14px; }
.stc-author img {
    width: 44px; height: 44px; border-radius: 50%;
    object-fit: cover; border: 2px solid rgba(0,212,255,0.3); flex-shrink: 0;
}
.stc-author strong { display: block; color: #fff; font-size: 14px; font-weight: 600; }
.stc-author span { display: block; font-size: 12px; color: rgba(255,255,255,0.45); }
.sn-testi-section .owl-dots { margin-top: 36px; text-align: center; }
.sn-testi-section .owl-dots .owl-dot span {
    background: rgba(255,255,255,0.2) !important; width: 8px; height: 8px;
    border-radius: 50%; transition: all 0.3s; margin: 0 4px; display: inline-block;
}
.sn-testi-section .owl-dots .owl-dot.active span,
.sn-testi-section .owl-dots .owl-dot:hover span {
    background: var(--c-blue) !important; width: 24px; border-radius: 4px;
}

/* ─── EXPERTISE / SKILL BARS ─── */
.sn-skill-item {
    background: #fff; border: 1.5px solid #e8eef7;
    border-radius: 16px; padding: 24px; transition: all 0.3s ease; margin-bottom: 8px;
}
.sn-skill-item:hover { border-color: rgba(0,212,255,0.25); box-shadow: 0 8px 30px rgba(0,0,0,0.08); }
.skill-header { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.skill-icon {
    width: 42px; height: 42px; flex-shrink: 0;
    background: rgba(0,212,255,0.08); border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; color: var(--c-blue);
}
.skill-info { flex: 1; min-width: 0; }
.skill-name { display: block; font-weight: 700; font-size: 14px; color: #0f172a; margin-bottom: 2px; }
.skill-tech { font-size: 11.5px; color: #94a3b8; }
.skill-pct {
    font-family: var(--font-head); font-size: 18px;
    font-weight: 800; color: var(--c-blue); flex-shrink: 0;
}
.skill-bar { height: 6px; background: #f1f5f9; border-radius: 4px; overflow: hidden; }
.skill-fill {
    height: 100%; width: 0;
    background: linear-gradient(90deg, #00d4ff, #7c3aed);
    border-radius: 4px;
    transition: width 1.4s cubic-bezier(0.1, 0.8, 0.2, 1);
}

/* ─── FAQ ─── */
.sn-faq-section {
    background: linear-gradient(160deg, #f8fafc 0%, #f0f7ff 100%);
    padding: 90px 0;
}
.sn-faq-section .sn-section-title { color: #0f172a; }
.sn-faq-section .about-text { color: #64748b; }
.sn-faq-section .sn-section-label { color: var(--c-blue); }
.sn-faq-list { display: flex; flex-direction: column; gap: 12px; }
.sn-faq-item {
    background: #fff; border: 1.5px solid #e8eef7;
    border-radius: 14px; overflow: hidden; transition: all 0.3s ease;
}
.sn-faq-item.active { border-color: rgba(0,212,255,0.3); }
.faq-q {
    padding: 20px 24px; font-size: 15px; font-weight: 600; color: #0f172a;
    cursor: pointer; display: flex; justify-content: space-between; align-items: center;
    transition: all 0.3s; user-select: none;
}
.faq-q i { font-size: 16px; color: #94a3b8; transition: transform 0.35s; flex-shrink: 0; margin-left: 12px; }
.sn-faq-item.active .faq-q { color: var(--c-blue); }
.sn-faq-item.active .faq-q i { transform: rotate(180deg); color: var(--c-blue); }
.faq-a {
    max-height: 0; overflow: hidden; padding: 0 24px;
    font-size: 14px; color: #64748b; line-height: 1.8;
    transition: max-height 0.4s ease, padding 0.35s ease;
}
.sn-faq-item.active .faq-a { max-height: 200px; padding: 0 24px 20px; }

/* ─── CLIENTS ─── */
.sn-clients-section {
    background: #f8fafc; padding: 50px 0;
    border-top: 1px solid #e8eef7; border-bottom: 1px solid #e8eef7;
}
.clients-label {
    text-align: center; font-size: 12px; font-weight: 600;
    letter-spacing: 2px; text-transform: uppercase; color: #94a3b8; margin-bottom: 32px;
}
.sn-client-logo {
    opacity: 0.45; filter: grayscale(1); transition: all 0.35s;
    max-height: 40px; object-fit: contain;
}
.sn-client-logo:hover { opacity: 1; filter: grayscale(0); }

/* ─── CTA BAND ─── */
.sn-cta-band {
    position: relative; overflow: hidden;
    background: linear-gradient(145deg, #060c1a 0%, #0b1730 50%, #060c1a 100%);
    padding: 80px 0; border-top: 1px solid rgba(0,212,255,0.07);
}
.cta-glow-left {
    position: absolute; left: -100px; top: 50%; transform: translateY(-50%);
    width: 400px; height: 400px; border-radius: 50%; pointer-events: none;
    background: radial-gradient(circle, rgba(0,212,255,0.12) 0%, transparent 70%);
}
.cta-glow-right {
    position: absolute; right: -100px; top: 50%; transform: translateY(-50%);
    width: 400px; height: 400px; border-radius: 50%; pointer-events: none;
    background: radial-gradient(circle, rgba(124,58,237,0.12) 0%, transparent 70%);
}
.cta-headline {
    font-family: var(--font-head);
    font-size: clamp(28px, 4vw, 42px); font-weight: 800;
    color: #fff; margin-bottom: 16px; line-height: 1.2;
}
.cta-sub { font-size: 16px; color: rgba(255,255,255,0.6); max-width: 520px; margin: 0 auto 36px; }
.cta-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; }

/* ─── CONTACT ─── */
.sn-contact-info { display: flex; flex-direction: column; gap: 16px; }
.sci-item {
    display: flex; gap: 16px; padding: 20px;
    background: #f8fafc; border: 1.5px solid #e8eef7; border-radius: 14px; transition: all 0.3s;
}
.sci-item:hover { border-color: rgba(0,212,255,0.25); box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
.sci-icon {
    width: 44px; height: 44px; flex-shrink: 0;
    background: rgba(0,212,255,0.08); border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; color: var(--c-blue);
}
.sci-item strong { display: block; font-weight: 700; color: #0f172a; font-size: 12px; margin-bottom: 4px; letter-spacing: 0.5px; text-transform: uppercase; }
.sci-item p { margin: 0; font-size: 14px; color: #475569; line-height: 1.6; }
.sci-item a { color: #475569; text-decoration: none; }
.sci-item a:hover { color: var(--c-blue); }

.sn-contact-form input,
.sn-contact-form textarea {
    width: 100%; padding: 14px 18px;
    font-size: 14px; font-family: var(--font-main); color: #0f172a;
    background: #fff; border: 1.5px solid #e2e8f0; border-radius: 12px;
    transition: all 0.25s ease; outline: none; display: block;
}
.sn-contact-form input::placeholder,
.sn-contact-form textarea::placeholder { color: #94a3b8; }
.sn-contact-form input:focus,
.sn-contact-form textarea:focus {
    border-color: var(--c-blue); box-shadow: 0 0 0 3px rgba(0,212,255,0.1);
}
.sn-contact-form textarea { resize: vertical; min-height: 140px; }
.sn-contact-form button { border: none; cursor: pointer; }
.sn-map { border-radius: 16px; overflow: hidden; box-shadow: 0 8px 40px rgba(0,0,0,0.1); }

/* ─── FOOTER ─── */
.sn-footer {
    background: #060c1a; padding: 70px 0 0;
    border-top: 1px solid rgba(0,212,255,0.07);
}
.footer-logo { max-height: 80px; width: auto; }
.footer-desc {
    font-size: 14px; color: rgba(255,255,255,0.45);
    line-height: 1.8; max-width: 280px; margin-bottom: 24px;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 36px; height: 36px; background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1); border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.5); font-size: 14px; transition: all 0.25s; text-decoration: none;
}
.footer-social a:hover {
    background: rgba(0,212,255,0.12); border-color: rgba(0,212,255,0.3);
    color: var(--c-blue); transform: translateY(-3px);
}
.footer-col-title {
    font-family: var(--font-head); font-size: 12px; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase;
    color: rgba(255,255,255,0.85); margin-bottom: 18px;
}
.footer-nav { list-style: none; padding: 0; margin: 0; }
.footer-nav li { margin-bottom: 10px; }
.footer-nav a { color: rgba(255,255,255,0.45); font-size: 13.5px; text-decoration: none; transition: color 0.25s; }
.footer-nav a:hover { color: var(--c-blue); }
.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li {
    display: flex; gap: 10px; font-size: 13px;
    color: rgba(255,255,255,0.45); margin-bottom: 12px; line-height: 1.6;
}
.footer-contact i { font-size: 15px; color: var(--c-blue); flex-shrink: 0; margin-top: 1px; }
.footer-contact a { color: rgba(255,255,255,0.45); text-decoration: none; }
.footer-contact a:hover { color: var(--c-blue); }
.footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 10px; padding: 22px 0; margin-top: 48px;
    border-top: 1px solid rgba(255,255,255,0.06);
    font-size: 13px; color: rgba(255,255,255,0.3);
}

/* ─── BACK TO TOP ─── */
.sn-back-top {
    position: fixed; bottom: 28px; right: 28px; z-index: 999;
    width: 42px; height: 42px;
    background: linear-gradient(135deg, var(--c-blue), var(--c-purple));
    color: #fff !important; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; text-decoration: none !important;
    opacity: 0; pointer-events: none;
    box-shadow: 0 4px 20px rgba(0,212,255,0.35); transition: all 0.3s ease;
}
.sn-back-top.visible { opacity: 1; pointer-events: all; }
.sn-back-top:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,212,255,0.5); }

/* ─── RESPONSIVE ─── */
@media (max-width: 991px) {
    #navMain {
        background: rgba(6,12,26,0.98); border-top: 1px solid rgba(255,255,255,0.07);
        padding: 16px 0; margin-top: 8px; border-radius: 0 0 16px 16px;
    }
    .sn-nav { flex-direction: column; gap: 4px; }
    .sn-btn-primary.ml-3 { margin-left: 0 !important; margin-top: 8px; width: 100%; justify-content: center; }
    .hero-stats { width: 100%; }
    .about-card-float { left: 10px; top: 10px; }
    .about-badge-float { right: 10px; bottom: -10px; }
    .hero-visual { width: 280px; height: 280px; }
    .hero-logo-float { width: 180px; height: 180px; }
}
@media (max-width: 767px) {
    .sn-section { padding: 60px 0; }
    .sn-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .sn-stat-item:nth-child(2) { border-right: none; }
    .sn-stat-item:nth-child(3) { border-right: 1px solid rgba(255,255,255,0.07); }
    .sn-stat-item:last-child { border-right: none; }
    .sn-stat-item { border-bottom: 1px solid rgba(255,255,255,0.07); padding: 16px; }
    .ssi-num { font-size: 38px; }
    .about-values-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .hero-stats { flex-direction: column; gap: 12px; align-items: flex-start; }
    .hstat-divider { width: 80%; height: 1px; }
    .cta-actions { flex-direction: column; align-items: center; }
    .hero-actions { flex-direction: column; }
}

/* ─── BACK TO TOP visibility via scroll ─── */
/* handled by JS at end of HTML */

/* ─── ADDITIONAL POLISH ─── */
/* Smooth scroll offset for fixed header */
[id] { scroll-margin-top: 80px; }

/* Remove any template body styles that conflict */
body { direction: ltr !important; text-align: left !important; }
