/* ==========================================================
   DevoEnv — Home Page
   ========================================================== */

/* HERO SECTION */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin-top: -80px;
    padding-top: 80px;
}

.hero-orb-1 {
    position: absolute;
    top: -15%; left: -10%;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(0, 62, 217, 0.1) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
    animation: orb-drift 18s ease-in-out infinite;
}

.hero-orb-2 {
    position: absolute;
    bottom: -20%; right: -5%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(0, 168, 120, 0.1) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
    animation: orb-drift 22s ease-in-out infinite reverse;
}

@keyframes orb-drift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33%  { transform: translate(60px, -40px) scale(1.08); }
    66%  { transform: translate(-30px, 60px) scale(0.95); }
}

.hero-bg-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.06;
}

.code-rain {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    opacity: 0.04;
}

.code-rain span {
    position: absolute;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--accent);
    white-space: nowrap;
    animation: rain-slide 18s linear infinite;
}

.code-rain span:nth-child(1)  { left: 5%;  animation-delay: 0s;  top: -60px; }
.code-rain span:nth-child(2)  { left: 18%; animation-delay: 3s;  top: -60px; }
.code-rain span:nth-child(3)  { left: 32%; animation-delay: 7s;  top: -60px; }
.code-rain span:nth-child(4)  { left: 55%; animation-delay: 1s;  top: -60px; }
.code-rain span:nth-child(5)  { left: 70%; animation-delay: 5s;  top: -60px; }
.code-rain span:nth-child(6)  { left: 85%; animation-delay: 9s;  top: -60px; }

@keyframes rain-slide {
    0%   { transform: translateY(-100px); opacity: 0; }
    5%   { opacity: 1; }
    95%  { opacity: 1; }
    100% { transform: translateY(110vh); opacity: 0; }
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    padding: 6rem 0 5rem;
}

.hero-text { animation: fadeInLeft 0.9s ease; }

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to   { opacity: 1; transform: translateX(0); }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(0, 82, 255, 0.12);
    border: 1px solid rgba(0, 200, 255, 0.25);
    padding: 0.45rem 1.1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--primary);
    margin-bottom: 1.8rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    backdrop-filter: blur(10px);
}

.hero-badge .dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--secondary);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.4; transform: scale(0.7); }
}

.hero h1 {
    font-size: 3.8rem;
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -2.5px;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.hero h1 em {
    font-style: normal;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: 1.15rem;
    line-height: 1.85;
    color: var(--text-secondary);
    max-width: 520px;
    margin-bottom: 2.5rem;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.hero-trust-avatars { display: flex; }

.hero-trust-avatars span {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--gradient-1);
    border: 2px solid var(--bg-dark);
    margin-left: -10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    color: white;
}

.hero-trust-avatars span:first-child { margin-left: 0; }

/* Hero Visual */
.hero-visual {
    position: relative;
    animation: fadeInRight 0.9s ease 0.2s backwards;
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(50px); }
    to   { opacity: 1; transform: translateX(0); }
}

.hero-mockup {
    background: var(--bg-card);
    border: 1px solid rgba(0, 62, 217, 0.12);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 30, 100, 0.14), 0 0 0 1px rgba(0, 62, 217, 0.06);
    position: relative;
}

.mockup-bar {
    background: rgba(0, 62, 217, 0.04);
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    border-bottom: 1px solid rgba(0, 62, 217, 0.08);
}

.mockup-dot { width: 12px; height: 12px; border-radius: 50%; }
.mockup-dot.r { background: #FF5F57; }
.mockup-dot.y { background: #FFBD2E; }
.mockup-dot.g { background: #28CA41; }

.mockup-url {
    flex: 1;
    background: rgba(0, 62, 217, 0.05);
    border-radius: 6px;
    padding: 0.3rem 0.8rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-align: center;
    border: 1px solid rgba(0, 62, 217, 0.1);
}

.mockup-body { padding: 2rem; }

.mockup-hero-bar {
    height: 10px;
    background: var(--gradient-1);
    border-radius: 5px;
    margin-bottom: 1.5rem;
    width: 70%;
}

.mockup-line {
    height: 8px;
    background: rgba(0, 62, 217, 0.06);
    border: 1px solid rgba(0, 62, 217, 0.08);
    border-radius: 4px;
    margin-bottom: 0.8rem;
}

.mockup-line.short { width: 50%; }
.mockup-line.shorter { width: 35%; }

.mockup-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.mockup-card {
    background: rgba(0, 62, 217, 0.04);
    border: 1px solid rgba(0, 62, 217, 0.08);
    border-radius: 10px;
    padding: 1rem;
}

.mockup-card-icon {
    width: 28px; height: 28px;
    border-radius: 8px;
    background: var(--gradient-green);
    margin-bottom: 0.6rem;
}

.mockup-card-line {
    height: 6px;
    background: rgba(0, 62, 217, 0.08);
    border-radius: 3px;
    margin-bottom: 0.4rem;
}

.mockup-card-line.s { width: 60%; }

/* Floating cards */
.float-card {
    position: absolute;
    background: #FFFFFF;
    border: 1px solid rgba(0, 62, 217, 0.12);
    border-radius: 16px;
    padding: 1rem 1.4rem;
    box-shadow: 0 10px 40px rgba(0, 30, 100, 0.15);
}

.float-card-1 {
    top: -20px; right: -30px;
    animation: float-card 4s ease-in-out infinite;
}

.float-card-2 {
    bottom: -20px; left: -30px;
    animation: float-card 4s ease-in-out infinite 2s;
}

@keyframes float-card {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-12px); }
}

.float-stat { display: flex; align-items: center; gap: 0.8rem; }

.float-stat-icon {
    width: 40px; height: 40px;
    border-radius: 10px;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.float-stat-num { font-size: 1.4rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.float-stat-label { font-size: 0.75rem; color: var(--text-secondary); }

/* SECTION SHARED STYLES */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.78rem;
    color: var(--primary);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    background: rgba(0, 62, 217, 0.07);
    padding: 0.35rem 0.9rem;
    border-radius: 50px;
    border: 1px solid rgba(0, 62, 217, 0.15);
    font-weight: 600;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -1.5px;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.section-title em {
    font-style: normal;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-sub {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 580px;
    margin: 0 auto;
}

.section-header { text-align: center; margin-bottom: 4.5rem; }
.section-header.left { text-align: left; }
.section-header.left .section-sub { margin: 0; }
[dir="rtl"] .section-header { text-align: right; }
[dir="rtl"] .section-header.left { text-align: right; }

/* SERVICES SECTION */
.services-section { padding: 7rem 0; }

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
}

/* Card shell */
.svc-card {
    background: var(--bg-card);
    border: 1px solid rgba(0, 62, 217, 0.1);
    border-radius: 22px;
    overflow: hidden;
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}

.svc-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0, 62, 217, 0.22);
}

/* Left accent bar on hover */
.svc-card::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 4px;
    background: var(--gradient-1);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.35s ease;
    z-index: 2;
}

.svc-card:hover::before { transform: scaleY(1); }

/* Image area */
.svc-img {
    height: 210px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.svc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    display: block;
}

.svc-card:hover .svc-img img { transform: scale(1.07); }

.svc-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.08) 0%, rgba(5, 10, 30, 0.72) 100%);
}

/* Category label on image */
.svc-cat {
    position: absolute;
    bottom: 1rem;
    left: 1.4rem;
    right: 1.4rem;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.75);
    font-family: 'JetBrains Mono', monospace;
    z-index: 1;
}

/* Content body */
.svc-body {
    padding: 1.8rem 1.8rem 1.6rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.svc-body h3 {
    font-size: 1.18rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.7rem;
    letter-spacing: -0.4px;
    line-height: 1.3;
}

.svc-body p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.75;
    flex: 1;
    margin-bottom: 1.4rem;
}

.svc-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    margin-top: auto;
}

.svc-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.svc-tag {
    font-size: 0.72rem;
    padding: 0.22rem 0.65rem;
    background: rgba(0, 62, 217, 0.06);
    border: 1px solid rgba(0, 62, 217, 0.14);
    border-radius: 50px;
    color: var(--primary);
    font-family: 'JetBrains Mono', monospace;
    font-weight: 500;
}

.svc-arrow {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(0, 62, 217, 0.07);
    border: 1px solid rgba(0, 62, 217, 0.14);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.svc-card:hover .svc-arrow {
    background: var(--gradient-1);
    border-color: transparent;
    color: white;
    transform: translateX(3px);
}

/* TECHNOLOGIES SECTION */
.tech-section {
    padding: 6rem 0;
    background: var(--bg-darker);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(0, 62, 217, 0.08);
    border-bottom: 1px solid rgba(0, 62, 217, 0.08);
}

.tech-section::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 1000px; height: 400px;
    transform: translate(-50%, -50%);
    background: radial-gradient(ellipse, rgba(0, 62, 217, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.tech-item {
    background: var(--bg-card);
    border: 1px solid rgba(0, 62, 217, 0.1);
    border-radius: 16px;
    padding: 1.4rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.7rem;
    transition: all 0.3s ease;
    cursor: default;
    box-shadow: var(--shadow-sm);
}

.tech-item:hover {
    border-color: rgba(0, 62, 217, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 30, 100, 0.14);
    background: rgba(0, 62, 217, 0.04);
}

.tech-logo {
    width: 44px; height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    font-weight: 800;
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: -0.5px;
    transition: transform 0.3s ease;
}

.tech-item:hover .tech-logo { transform: scale(1.08); }

.tech-item span {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-align: center;
    transition: color 0.3s;
    font-family: 'JetBrains Mono', monospace;
}

.tech-item:hover span { color: var(--primary); }

/* WHY CHOOSE US SECTION */
.why-section { padding: 7rem 0; position: relative; }

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.why-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.why-card {
    background: var(--bg-card);
    border: 1px solid rgba(0, 62, 217, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.why-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gradient-green);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.why-card:hover::before { transform: scaleX(1); }
.why-card:hover {
    border-color: rgba(0, 168, 120, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0, 30, 100, 0.12);
}

.why-icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    background: rgba(0, 62, 217, 0.07);
    border: 1px solid rgba(0, 62, 217, 0.14);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
    transition: all 0.3s ease;
}

.why-card:hover .why-icon {
    background: var(--gradient-green);
    border-color: transparent;
}

.why-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.6rem;
}

.why-card p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.75; }

.why-visual { position: relative; }

.why-big-card {
    background: var(--bg-card);
    border: 1px solid rgba(0, 62, 217, 0.1);
    border-radius: 28px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.why-big-card::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 250px; height: 250px;
    background: radial-gradient(circle, rgba(0, 62, 217, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

.why-big-num {
    font-size: 5rem;
    font-weight: 900;
    background: var(--gradient-green);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    letter-spacing: -4px;
    margin-bottom: 0.5rem;
}

.why-big-label {
    font-size: 1.1rem;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.why-progress-list { list-style: none; }

.why-progress-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.why-progress-label {
    font-size: 0.88rem;
    color: var(--text-secondary);
    white-space: nowrap;
    min-width: 120px;
}

.why-progress-bar {
    flex: 1;
    height: 6px;
    background: rgba(0, 62, 217, 0.08);
    border-radius: 3px;
    overflow: hidden;
}

.why-progress-fill {
    height: 100%;
    border-radius: 3px;
    background: var(--gradient-1);
    animation: progress-in 1.5s ease forwards;
    transform-origin: left;
}

@keyframes progress-in {
    from { transform: scaleX(0); }
    to   { transform: scaleX(1); }
}

.why-progress-pct {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary);
    font-family: 'JetBrains Mono', monospace;
    min-width: 38px;
    text-align: right;
}

/* PORTFOLIO SECTION */
.portfolio-section {
    padding: 7rem 0;
    background: var(--bg-darker);
    border-top: 1px solid rgba(0,62,217,0.07);
    border-bottom: 1px solid rgba(0,62,217,0.07);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 1.5rem;
}

.portfolio-card {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    background: var(--bg-card);
    border: 1px solid rgba(0, 62, 217, 0.1);
    transition: all 0.4s ease;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.portfolio-card:hover {
    border-color: rgba(0, 62, 217, 0.25);
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

.portfolio-card.featured { grid-column: span 2; }

.portfolio-thumb {
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.portfolio-card.featured .portfolio-thumb { height: 300px; }

.portfolio-thumb-bg {
    position: absolute;
    inset: 0;
    transition: transform 0.5s ease;
}

.portfolio-card:hover .portfolio-thumb-bg { transform: scale(1.06); }

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(8, 12, 20, 0.95) 100%);
}

.portfolio-browser {
    position: relative;
    z-index: 1;
    background: rgba(10, 15, 30, 0.92);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    overflow: hidden;
    width: 85%;
    box-shadow: 0 20px 60px rgba(0,0,0,0.35);
    transform: perspective(800px) rotateX(5deg);
    transition: transform 0.4s ease;
}

.portfolio-card:hover .portfolio-browser { transform: perspective(800px) rotateX(0deg); }

.pb-bar {
    background: rgba(255,255,255,0.05);
    padding: 0.6rem 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    border-bottom: 1px solid var(--glass-border);
}

.pb-dot { width: 8px; height: 8px; border-radius: 50%; }
.pb-dot.r { background: #FF5F57; }
.pb-dot.y { background: #FFBD2E; }
.pb-dot.g { background: #28CA41; }

.pb-body { padding: 1rem; }
.pb-hero { height: 6px; background: var(--gradient-1); border-radius: 3px; margin-bottom: 0.6rem; width: 60%; }
.pb-line { height: 5px; background: rgba(255,255,255,0.06); border-radius: 3px; margin-bottom: 0.4rem; }
.pb-line.s { width: 45%; }
.pb-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.4rem; margin-top: 0.6rem; }
.pb-card { height: 28px; background: rgba(0, 82, 255, 0.15); border-radius: 5px; border: 1px solid rgba(0, 200, 255, 0.1); }

.portfolio-info { padding: 1.5rem 1.8rem; }

.portfolio-category {
    font-size: 0.75rem;
    color: var(--secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.4rem;
    font-family: 'JetBrains Mono', monospace;
}

.portfolio-info h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.4rem;
}

.portfolio-info p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.6; }

.portfolio-tech-pills {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
    margin-top: 0.8rem;
}

.tech-pill {
    font-size: 0.7rem;
    padding: 0.2rem 0.6rem;
    background: rgba(0, 62, 217, 0.07);
    border: 1px solid rgba(0, 62, 217, 0.14);
    border-radius: 50px;
    color: var(--primary);
    font-family: 'JetBrains Mono', monospace;
    font-weight: 500;
}

/* Mobile card */
.portfolio-mobile-thumb {
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #EBF0FC 0%, #E0EAF8 100%);
}

.mobile-mockup {
    width: 120px;
    background: rgba(12, 18, 32, 0.95);
    border: 1px solid var(--glass-border);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    position: relative;
    z-index: 1;
    transition: transform 0.4s ease;
}

.portfolio-card:hover .mobile-mockup { transform: scale(1.05) translateY(-5px); }

.mm-notch { height: 18px; background: rgba(255,255,255,0.04); display: flex; align-items: center; justify-content: center; }
.mm-dot { width: 30px; height: 4px; background: rgba(255,255,255,0.15); border-radius: 2px; }
.mm-body { padding: 0.8rem 0.6rem; }
.mm-header { height: 5px; background: var(--gradient-green); border-radius: 3px; margin-bottom: 0.5rem; width: 50%; }
.mm-line { height: 4px; background: rgba(255,255,255,0.06); border-radius: 2px; margin-bottom: 0.3rem; }
.mm-line.s { width: 40%; }
.mm-card { height: 45px; background: rgba(0,229,168,0.08); border: 1px solid rgba(0,229,168,0.1); border-radius: 6px; margin-top: 0.5rem; }

/* STATS SECTION */
.stats-section { padding: 6rem 0; }

.stats-wrap {
    background: var(--bg-card);
    border: 1px solid rgba(0, 62, 217, 0.1);
    border-radius: 30px;
    padding: 4rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.stats-wrap::before {
    content: '';
    position: absolute;
    top: -50%; left: -10%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(0, 62, 217, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: 1rem 2rem;
    border-right: 1px solid rgba(0, 62, 217, 0.1);
}

.stat-item:last-child { border-right: none; }

.stat-num {
    font-size: 3.2rem;
    font-weight: 900;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    letter-spacing: -2px;
    margin-bottom: 0.4rem;
}

.stat-lbl { font-size: 0.9rem; color: var(--text-secondary); font-weight: 500; }

/* TESTIMONIALS SECTION */
.testimonials-section { padding: 7rem 0; }

.testimonials-slider { position: relative; overflow: hidden; }

.testimonials-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-slide { min-width: 100%; padding: 0 2rem; }

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid rgba(0, 62, 217, 0.1);
    border-radius: 28px;
    padding: 3.5rem;
    position: relative;
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: var(--shadow-md);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -20px; left: 40px;
    font-size: 10rem;
    font-weight: 900;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    opacity: 0.15;
    font-family: Georgia, serif;
}

.testimonial-stars { display: flex; gap: 0.3rem; margin-bottom: 1.5rem; }
.testimonial-stars span { color: #FFBD2E; font-size: 1.1rem; }

.testimonial-text {
    font-size: 1.15rem;
    line-height: 1.85;
    color: var(--text-primary);
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.testimonial-author { display: flex; align-items: center; gap: 1rem; }

.author-avatar {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    color: white;
    flex-shrink: 0;
}

.author-name { font-weight: 700; color: var(--text-primary); font-size: 1rem; }
.author-role { font-size: 0.85rem; color: var(--text-secondary); }

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.slider-btn {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid rgba(0, 62, 217, 0.15);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    box-shadow: var(--shadow-sm);
}

.slider-btn:hover {
    background: var(--gradient-1);
    border-color: transparent;
}

.slider-dots { display: flex; gap: 0.5rem; }

.slider-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(0, 62, 217, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: var(--primary);
    width: 24px;
    border-radius: 4px;
}

/* CONTACT CTA SECTION */
.contact-cta-section { padding: 5rem 0 7rem; }

.cta-wrap {
    background: var(--gradient-1);
    border-radius: 30px;
    padding: 5rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 40px 40px;
}

.cta-wrap::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 600px; height: 300px;
    background: radial-gradient(ellipse, rgba(255,255,255,0.15) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content { position: relative; z-index: 1; }

.cta-title {
    font-size: 2.8rem;
    font-weight: 900;
    color: white;
    letter-spacing: -1.5px;
    margin-bottom: 1rem;
}

.cta-sub {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    max-width: 560px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}

.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.btn-glass {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.3);
    color: white;
}

.btn-glass:hover {
    background: white;
    color: var(--accent);
    border-color: white;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.btn-dark {
    background: rgba(8, 12, 20, 0.8);
    border: 2px solid rgba(255,255,255,0.15);
    color: white;
}

.btn-dark:hover { background: var(--bg-dark); border-color: white; }

/* RESPONSIVE */
@media (max-width: 1200px) {
    .tech-grid { grid-template-columns: repeat(7, 1fr); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .services-grid { grid-template-columns: 1fr; }
    .svc-img { height: 180px; }
}

@media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
    .hero-text  { order: 2; }
    .hero-visual { order: 1; }
    .hero-sub { margin: 0 auto 2.5rem; }
    .hero-ctas { justify-content: center; }
    .hero-trust { justify-content: center; }
    .float-card { display: none; }
    .why-grid { grid-template-columns: 1fr; }
    .why-visual { display: none; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-item:nth-child(2) { border-right: none; }
    .stat-item:nth-child(3) { border-top: 1px solid var(--glass-border); }
    .stat-item:nth-child(4) { border-top: 1px solid var(--glass-border); border-right: none; }
}

@media (max-width: 900px) {
    .tech-grid { grid-template-columns: repeat(4, 1fr); }
    .portfolio-grid { grid-template-columns: 1fr; }
    .portfolio-card.featured { grid-column: span 1; }
}

@media (max-width: 768px) {
    .hero h1 { font-size: 2.6rem; letter-spacing: -1.5px; }
    .section-title { font-size: 2rem; }
    .cta-title { font-size: 2rem; }
    .tech-grid { grid-template-columns: repeat(3, 1fr); }
    .why-features { grid-template-columns: 1fr; }
    .testimonial-card { padding: 2rem; }
    .stats-wrap { padding: 2.5rem 1.5rem; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .cta-wrap { padding: 3rem 2rem; }
}

@media (max-width: 480px) {
    .tech-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: 1fr; }
    .stat-item { border-right: none; border-bottom: 1px solid var(--glass-border); }
    .stat-item:last-child { border-bottom: none; }
    .hero h1 { font-size: 2rem; }
}
