/* ============================================
   TECRAT — style.css  (full updated)
   Palette: #00ffff (aqua), #ffb347 (orange), #ff00cc (pinkish)
   ============================================ */

:root {
    --green: #00ffff;
    --orange: #ffb347;
    --pinkish: #ff00cc;
    --bg: #020408;
    --bg2: #060c14;
    --bg3: #0a1220;
    --text: #c8d8e8;
    --text-dim: #4a6070;
    --border: rgba(0, 255, 255, 0.15);
    --font-main: 'Orbitron', monospace;
    --font-mono: 'Share Tech Mono', monospace;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-mono);
    overflow-x: hidden;
    cursor: none;
}

::selection {
    background: var(--green);
    color: var(--bg);
}

/* ── NOISE + SCANLINES ── */
.noise-overlay {
    position: fixed;
    inset: 0;
    z-index: 9998;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    opacity: 0.4;
}

.scanlines {
    position: fixed;
    inset: 0;
    z-index: 9997;
    pointer-events: none;
    background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0, 0, 0, 0.08) 2px, rgba(0, 0, 0, 0.08) 4px);
}

/* ── CURSOR ── */
.cursor-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    pointer-events: none;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 10px var(--green);
}

.cursor-ring {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid var(--green);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, border-color 0.2s;
    opacity: 0.7;
}

.cursor-ring.hovered {
    width: 50px;
    height: 50px;
    border-color: var(--pinkish);
    opacity: 1;
}

/* ── NAV ── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 4rem;
    background: rgba(2, 4, 8, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
}

.nav.scrolled {
    padding: 0.8rem 4rem;
    border-bottom-color: var(--green);
    box-shadow: 0 4px 40px rgba(10, 255, 157, 0.08);
}

.nav-logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 45px;
    width: auto;
    display: block;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.nav-logo:hover .logo-img {
    transform: scale(1.05);
    filter: drop-shadow(0 0 10px var(--green));
}

.nav-links {
    display: flex;
    gap: 0.5rem;
    list-style: none;
}

.nav-link {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    color: var(--text-dim);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border: 1px solid transparent;
    transition: all 0.2s;
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--green);
    transition: width 0.3s;
}

.nav-link:hover {
    color: var(--green);
    border-color: var(--border);
}

.nav-link:hover::before {
    width: 100%;
}

/* ── NAV TOGGLE ── */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: none;
    z-index: 1001;
    padding: 0;
}

.nav-toggle .bar {
    width: 100%;
    height: 2px;
    background: var(--green);
    transition: all 0.3s ease;
    transform-origin: center;
}

.nav-toggle.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.nav-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    color: var(--text-dim);
}

.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
    animation: pulse 2s infinite;
}

/* ── SECTIONS ── */
.section {
    min-height: 100vh;
    padding: 8rem 4rem;
    position: relative;
    overflow: hidden;
}

.section-label {
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    color: var(--orange);
    margin-bottom: 2rem;
}

.section-title {
    font-family: var(--font-main);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: 0.05em;
    color: #fff;
    margin-bottom: 2rem;
}

.section-title.center {
    text-align: center;
}

.section-sub {
    text-align: center;
    color: var(--text-dim);
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    margin-bottom: 4rem;
}

.accent {
    color: var(--green);
}

/* ── GLITCH ── */
.glitch {
    position: relative;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.glitch::before {
    color: var(--pinkish);
    clip-path: polygon(0 30%, 100% 30%, 100% 50%, 0 50%);
    animation: glitch-before 4s infinite steps(1);
}

.glitch::after {
    color: var(--green);
    clip-path: polygon(0 60%, 100% 60%, 100% 75%, 0 75%);
    animation: glitch-after 4s infinite steps(1);
}

.cursor-blink {
    animation: blink 1s step-end infinite;
    color: var(--green);
}

/* ── HERO ── */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg);
    padding-top: 6rem;
}

#matrixCanvas {
    position: absolute;
    inset: 0;
    opacity: 0.15;
    z-index: 0;
}

.hero-grid-lines {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: linear-gradient(var(--border) 1px, transparent 1px), linear-gradient(90deg, var(--border) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridMove 20s linear infinite;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    animation: fadeUp 1s ease 0.3s both;
}

.hero-label {
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    color: var(--text-dim);
    margin-bottom: 2rem;
}

.hero-title {
    font-family: var(--font-main);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2em;
}

.hero-title .line {
    display: block;
}

#heroLine1 {
    font-size: clamp(1rem, 3vw, 1.8rem);
    color: var(--text-dim);
    letter-spacing: 0.5em;
    animation: fadeUp 0.8s ease 0.6s both;
}

.hero-name {
    font-size: clamp(4rem, 12vw, 9rem);
    font-weight: 900;
    color: var(--green);
    letter-spacing: 0.1em;
    line-height: 0.9;
    text-shadow: 0 0 60px rgba(10, 255, 157, 0.4), 0 0 120px rgba(10, 255, 157, 0.2);
    animation: fadeUp 0.8s ease 0.7s both;
}

.hero-sub {
    font-size: clamp(0.7rem, 2vw, 1rem);
    color: var(--orange);
    letter-spacing: 0.5em;
    animation: fadeUp 0.8s ease 0.8s both;
}

.hero-tagline {
    margin-top: 2rem;
    font-size: clamp(0.85rem, 2vw, 1.1rem);
    color: var(--text);
    letter-spacing: 0.1em;
    min-height: 2em;
    animation: fadeUp 0.8s ease 1s both;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 3rem;
    animation: fadeUp 0.8s ease 1.1s both;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    color: var(--text-dim);
    animation: scrollBounce 2s infinite;
    z-index: 2;
}

.scroll-arrow {
    display: inline-block;
    animation: bounce 1.5s infinite;
}

/* ── BUTTONS ── */
.btn-primary {
    position: relative;
    font-family: var(--font-main);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: var(--bg);
    background: var(--green);
    padding: 1rem 2.5rem;
    border: none;
    cursor: none;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
    overflow: hidden;
    display: inline-block;
}

.btn-primary:hover {
    background: var(--pinkish);
    box-shadow: 0 0 30px rgba(255, 0, 204, 0.5);
    transform: translateY(-2px);
}

.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.15) 50%, transparent 100%);
    transform: translateX(-100%);
    transition: transform 0.5s;
}

.btn-primary:hover::after {
    transform: translateX(100%);
}

.btn-ghost {
    font-family: var(--font-main);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: var(--green);
    background: transparent;
    padding: 1rem 2.5rem;
    border: 1px solid var(--green);
    text-decoration: none;
    transition: all 0.3s;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

.btn-ghost:hover {
    background: rgba(10, 255, 157, 0.1);
    box-shadow: 0 0 20px rgba(10, 255, 157, 0.3);
}

.btn-full {
    width: 100%;
    text-align: center;
}

/* ── ABOUT ── */
.about {
    background: var(--bg2);
    display: flex;
    align-items: center;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.about-text {
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    border-left: 2px solid var(--green);
    padding-left: 1.5rem;
}

.about-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 2rem;
}

.badge {
    font-family: var(--font-main);
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    color: var(--green);
    border: 1px solid var(--green);
    padding: 0.4rem 0.8rem;
    transition: all 0.2s;
}

.badge:hover {
    background: var(--green);
    color: var(--bg);
}

/* Terminal */
.terminal-window {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-top-color: var(--green);
    box-shadow: 0 0 40px rgba(10, 255, 157, 0.08);
}

.terminal-bar {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--bg);
    padding: 0.8rem 1rem;
    border-bottom: 1px solid var(--border);
}

.t-btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.t-red {
    background: var(--orange);
}

.t-yellow {
    background: #ffcc00;
}

.t-green {
    background: var(--green);
}

.t-title {
    font-size: 0.7rem;
    color: var(--text-dim);
    margin-left: 0.5rem;
}

.terminal-body {
    padding: 1.5rem;
    font-size: 0.8rem;
    line-height: 2;
}

.t-line {
    opacity: 0;
    animation: termLine 0.3s forwards;
}

.t-line:nth-child(1) {
    animation-delay: 0.3s
}

.t-line:nth-child(2) {
    animation-delay: 0.7s
}

.t-line:nth-child(3) {
    animation-delay: 1.1s
}

.t-line:nth-child(4) {
    animation-delay: 1.5s
}

.t-line:nth-child(5) {
    animation-delay: 1.9s
}

.t-line:nth-child(6) {
    animation-delay: 2.3s
}

.t-line:nth-child(7) {
    animation-delay: 2.7s
}

.t-prompt {
    color: var(--green);
    margin-right: 0.8rem;
}

.t-out {
    color: var(--text-dim);
    padding-left: 1.8rem;
}

.accent-text {
    color: var(--green);
}

/* ── SERVICES ── */
.services {
    background: var(--bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    position: relative;
    background: var(--bg3);
    border: 1px solid var(--border);
    padding: 2.5rem 2rem;
    transition: all 0.3s;
    overflow: hidden;
    cursor: none;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--green), var(--pinkish));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
}

.service-card:hover {
    border-color: rgba(10, 255, 157, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.card-glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(ellipse at 50% 100%, rgba(10, 255, 157, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
}

.service-card:hover .card-glow {
    opacity: 1;
}

.card-index {
    font-family: var(--font-main);
    font-size: 0.65rem;
    color: var(--orange);
    letter-spacing: 0.3em;
    margin-bottom: 1.5rem;
}

.card-icon {
    font-size: 2rem;
    color: var(--green);
    margin-bottom: 1rem;
    display: block;
    animation: iconFloat 3s ease-in-out infinite;
}

.service-card:nth-child(even) .card-icon {
    animation-delay: 1.5s;
    color: var(--pinkish);
}

.card-title {
    font-family: var(--font-main);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: #fff;
    margin-bottom: 1rem;
}

.card-desc {
    font-size: 0.8rem;
    color: var(--text-dim);
    line-height: 1.7;
}

/* ── TECH STACK ── */
.stack {
    background: var(--bg);
}

.stack-slider {
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden;
    position: relative;
    padding: 3rem 0;
    margin-top: 2rem;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.stack-slider::before,
.stack-slider::after {
    content: '';
    position: absolute;
    top: 0;
    width: 250px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.stack-slider::before {
    left: 0;
    background: linear-gradient(to right, var(--bg) 0%, transparent 100%);
}

.stack-slider::after {
    right: 0;
    background: linear-gradient(to left, var(--bg) 0%, transparent 100%);
}

.stack-track {
    display: flex;
    gap: 5rem;
    padding-right: 5rem;
    align-items: center;
    animation: scrollStack 30s linear infinite;
    will-change: transform;
}

.stack-slider:hover .stack-track {
    animation-play-state: paused;
}

.stack-logo {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: grayscale(100%) opacity(0.4);
}

.stack-logo img {
    height: 65px;
    width: auto;
    object-fit: contain;
    transition: all 0.4s;
    user-select: none;
}

.stack-logo:hover {
    filter: grayscale(0%) opacity(1) drop-shadow(0 0 25px rgba(10, 255, 157, 0.6));
    transform: translateY(-8px) scale(1.15);
}

.stack-logo::after {
    content: attr(data-name);
    position: absolute;
    bottom: -30px;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: bold;
    color: var(--green);
    letter-spacing: 0.15em;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s;
    white-space: nowrap;
}

.stack-logo:hover::after {
    opacity: 1;
    transform: translateY(0);
}

/* ── WHY CHOOSE US ── */
.why-us {
    background: var(--bg2);
}

.why-stats-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 5rem;
    padding: 3rem;
    border: 1px solid var(--border);
    background: var(--bg3);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
}

.why-stats-row::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--green), var(--orange), var(--pinkish), var(--green));
    background-size: 200% 100%;
    animation: gradientSlide 3s linear infinite;
}

.why-stat-item {
    text-align: center;
}

.why-stat-top {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
}

.why-stat-num {
    font-family: var(--font-main);
    font-size: 3rem;
    font-weight: 900;
    color: var(--green);
}

.why-stat-suffix {
    font-family: var(--font-main);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--green);
}

.why-stat-label {
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    color: var(--text-dim);
    display: block;
    margin-top: 0.5rem;
}

.why-stat-divider {
    color: var(--border);
    font-size: 3rem;
}

.why-boxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.why-box {
    background: var(--bg3);
    border: 1px solid var(--border);
    padding: 2rem;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.why-box::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--green), var(--orange));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
}

.why-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(10, 255, 157, 0.1);
    border-color: rgba(10, 255, 157, 0.3);
}

.why-box:hover::before {
    transform: scaleX(1);
}

.why-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.why-title {
    color: #fff;
    font-family: var(--font-main);
    letter-spacing: 0.1em;
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
}

.why-desc {
    color: var(--text-dim);
    font-size: 0.8rem;
    line-height: 1.7;
}

/* ── TESTIMONIALS — TRAIN ── */
.testimonials {
    background: var(--bg);
}

.testimonial-train-wrap {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    overflow: hidden;
    margin-top: 1rem;
}

.testimonial-train {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    overflow: hidden;
    position: relative;
}

.testimonial-train::before,
.testimonial-train::after {
    content: '';
    position: absolute;
    top: 0;
    width: 200px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.testimonial-train::before {
    left: 0;
    background: linear-gradient(to right, var(--bg) 0%, transparent 100%);
}

.testimonial-train::after {
    right: 0;
    background: linear-gradient(to left, var(--bg) 0%, transparent 100%);
}

.testimonial-track {
    display: flex;
    gap: 1.5rem;
    width: max-content;
    padding: 1rem 0;
}

.train-ltr .testimonial-track {
    animation: trainLTR 40s linear infinite;
}

.train-rtl .testimonial-track {
    animation: trainRTL 40s linear infinite;
}

.testimonial-train:hover .testimonial-track {
    animation-play-state: paused;
}

.tcard {
    background: var(--bg3);
    border: 1px solid var(--border);
    padding: 2rem;
    width: 340px;
    flex-shrink: 0;
    position: relative;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.tcard:hover {
    border-color: rgba(10, 255, 157, 0.4);
    box-shadow: 0 10px 30px rgba(10, 255, 157, 0.08);
}

.tcard-quote {
    font-family: 'Georgia', serif;
    font-size: 4rem;
    line-height: 0.8;
    color: var(--green);
    opacity: 0.3;
    margin-bottom: 0.5rem;
}

.tcard-quote.red-q {
    color: var(--orange);
}

.tcard-text {
    font-size: 0.82rem;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.tcard-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.tcard-avatar {
    width: 40px;
    height: 40px;
    border-radius: 4px;
    background: linear-gradient(135deg, var(--bg), #0a2018);
    border: 1px solid rgba(10, 255, 157, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-main);
    font-size: 0.7rem;
    font-weight: 900;
    color: var(--green);
    flex-shrink: 0;
}

.tcard-avatar.red-av {
    background: linear-gradient(135deg, var(--bg), #300a20);
    border-color: rgba(255, 0, 204, 0.4);
    color: var(--pinkish);
}

.tcard-name {
    font-family: var(--font-main);
    font-size: 0.75rem;
    color: #fff;
    letter-spacing: 0.05em;
}

.tcard-role {
    font-size: 0.65rem;
    color: var(--text-dim);
    letter-spacing: 0.1em;
    margin-top: 0.2rem;
}

.tcard-stars {
    color: var(--green);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
}

.tcard-stars.red-stars {
    color: var(--orange);
}

/* ── FAQ ── */
.faq {
    background: var(--bg2);
}

.faq-container {
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.faq-item {
    background: var(--bg3);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: border-color 0.3s;
}

.faq-item.active {
    border-color: rgba(10, 255, 157, 0.5);
}

.faq-toggle {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background 0.3s;
}

.faq-toggle:hover {
    background: rgba(10, 255, 157, 0.04);
}

.faq-q {
    font-family: var(--font-main);
    color: var(--green);
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    margin: 0;
    font-weight: 400;
    flex: 1;
    padding-right: 1rem;
}

.faq-icon {
    color: var(--green);
    font-size: 1.5rem;
    font-family: monospace;
    transition: transform 0.3s, color 0.3s;
    line-height: 1;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--pinkish);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.faq-a {
    color: var(--text);
    font-size: 0.82rem;
    line-height: 1.8;
    padding: 0 2rem 1.5rem 2rem;
    border-top: 1px solid var(--border);
    padding-top: 1rem;
}

/* ── CONTACT ── */
.contact {
    background: var(--bg);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.contact-desc {
    color: var(--text);
    line-height: 1.8;
    font-size: 0.9rem;
    margin-bottom: 2.5rem;
}

.contact-info {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border);
}

.ci-label {
    font-family: var(--font-main);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    color: var(--green);
    min-width: 100px;
}

.ci-val {
    font-size: 0.8rem;
    color: var(--text);
}

.contact-form-wrap {
    padding: 2.5rem;
    background: var(--bg3);
    border: 1px solid var(--border);
}

.form-field {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-family: var(--font-main);
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    color: var(--green);
    margin-bottom: 0.6rem;
}

.form-input {
    width: 100%;
    background: var(--bg);
    border: 1px solid var(--border);
    color: var(--text);
    padding: 0.8rem 1rem;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    outline: none;
    transition: border-color 0.2s;
}

.form-input:focus {
    border-color: var(--green);
    box-shadow: 0 0 15px rgba(10, 255, 157, 0.1);
}

.form-input::placeholder {
    color: var(--text-dim);
}

.form-textarea {
    height: 120px;
    resize: vertical;
}

/* ── FOOTER ── */
.footer {
    border-top: 1px solid var(--border);
    padding: 2.5rem 4rem;
    background: var(--bg2);
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-logo .logo-img {
    height: 65px;
}

.footer-copy {
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    color: var(--text-dim);
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--green);
}

/* ── SOCIAL ICONS — Real icons with brand color animation ── */
.footer-socials {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.social-icon-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    border-radius: 4px;
    color: var(--text-dim);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.social-icon-link svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    transition: all 0.3s;
    position: relative;
    z-index: 1;
}

.social-icon-link::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.3s;
    border-radius: 3px;
}

/* Instagram — gradient pink/orange/purple on hover */
.social-icon-link.instagram::before {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
}

.social-icon-link.instagram:hover {
    color: #fff;
    border-color: #d6249f;
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 8px 25px rgba(214, 36, 159, 0.5);
}

.social-icon-link.instagram:hover::before {
    opacity: 1;
}

/* LinkedIn — blue on hover */
.social-icon-link.linkedin::before {
    background: #0077b5;
}

.social-icon-link.linkedin:hover {
    color: #fff;
    border-color: #0077b5;
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 119, 181, 0.5);
}

.social-icon-link.linkedin:hover::before {
    opacity: 1;
}

/* ── FLOATING CHAT ── */
.floating-chat {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.floating-chat svg {
    width: 35px;
    height: 35px;
    fill: #fff;
}

.floating-chat:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.7);
}

/* ── SCROLL REVEAL ── */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-card.reveal {
    transition-delay: calc(var(--i, 0) * 0.1s);
}

.why-box.reveal {
    transition-delay: calc(var(--i, 0) * 0.08s);
}

/* ── ANIMATIONS ── */
@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 6px var(--green)
    }

    50% {
        opacity: 0.4;
        box-shadow: none
    }
}

@keyframes blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: 0
    }
}

@keyframes glitch-before {

    0%,
    94% {
        transform: none
    }

    95% {
        transform: translate(-2px, 0)
    }

    96% {
        transform: translate(2px, 0)
    }

    97% {
        transform: translate(-1px, 0)
    }

    98%,
    100% {
        transform: none
    }
}

@keyframes glitch-after {

    0%,
    94% {
        transform: none
    }

    95% {
        transform: translate(2px, 0)
    }

    96% {
        transform: translate(-2px, 0)
    }

    98%,
    100% {
        transform: none
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes gridMove {
    from {
        background-position: 0 0
    }

    to {
        background-position: 60px 60px
    }
}

@keyframes scrollBounce {

    0%,
    100% {
        opacity: 0.4
    }

    50% {
        opacity: 1
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(5px)
    }
}

@keyframes termLine {
    from {
        opacity: 0;
        transform: translateX(-8px)
    }

    to {
        opacity: 1;
        transform: translateX(0)
    }
}

@keyframes iconFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg)
    }

    50% {
        transform: translateY(-6px) rotate(10deg)
    }
}

@keyframes scrollStack {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

@keyframes trainLTR {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

@keyframes trainRTL {
    0% {
        transform: translateX(-50%)
    }

    100% {
        transform: translateX(0)
    }
}

@keyframes gradientSlide {
    0% {
        background-position: 0% 50%
    }

    100% {
        background-position: 200% 50%
    }
}
/* ── PRICING ── */
.pricing {
    background: var(--bg);
}

.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.pricing-tab {
    font-family: var(--font-main);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: var(--text-dim);
    background: var(--bg3);
    border: 1px solid var(--border);
    padding: 0.8rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

.pricing-tab:hover,
.pricing-tab.active {
    background: var(--green);
    color: var(--bg);
    border-color: var(--green);
    box-shadow: 0 0 20px rgba(10, 255, 157, 0.3);
}

.pricing-category-section {
    display: none;
    animation: fadeUp 0.5s ease both;
}

.pricing-category-section.active {
    display: block;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg3);
    border: 1px solid var(--border);
    padding: 3rem 2rem;
    position: relative;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.pricing-card.popular {
    border-color: var(--green);
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 0 40px rgba(10, 255, 157, 0.1);
}

.popular-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--orange);
    color: var(--bg);
    font-family: var(--font-main);
    font-size: 0.6rem;
    padding: 0.4rem 1rem;
    font-weight: 900;
    letter-spacing: 0.1em;
}

.card-plan {
    font-family: var(--font-main);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    color: var(--orange);
    margin-bottom: 1rem;
}

.card-price {
    font-family: var(--font-main);
    font-size: 2.5rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 0.5rem;
}

.card-price span {
    font-size: 1rem;
    color: var(--text-dim);
    font-weight: 400;
}

.card-price-sub {
    font-size: 0.75rem;
    color: var(--text-dim);
    margin-bottom: 2rem;
    letter-spacing: 0.1em;
}

.card-features {
    list-style: none;
    margin-bottom: 3rem;
    flex-grow: 1;
}

.card-features li {
    font-size: 0.85rem;
    color: var(--text);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.card-features li::before {
    content: '▶';
    font-size: 0.6rem;
    color: var(--green);
}

.pricing-card:hover {
    border-color: var(--green);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transform: translateY(-8px);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-8px);
}

.pricing-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(10, 255, 157, 0.15), transparent 50%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.pricing-card:hover::after {
    opacity: 1;
}

.custom-solutions-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 900px;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-boxes {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section {
        padding: 6rem 2rem;
    }

    .nav {
        padding: 1rem 2rem;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--bg2);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 1000;
        backdrop-filter: blur(20px);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-link {
        font-size: 1.2rem;
    }

    .nav-status {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .about-container,
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .services-grid,
    .why-boxes,
    .pricing-grid,
    .custom-solutions-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.popular {
        transform: scale(1);
        margin: 1rem 0;
    }

    .pricing-card.popular:hover {
        transform: translateY(-8px);
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }

    .why-stats-row {
        flex-wrap: wrap;
        gap: 2rem;
    }

    .why-stat-divider {
        display: none;
    }

    .floating-chat {
        bottom: 1rem;
        right: 1rem;
        width: 50px;
        height: 50px;
    }

    .floating-chat svg {
        width: 28px;
        height: 28px;
    }

    .tcard {
        width: 280px;
    }

    .pricing-tabs {
        gap: 0.5rem;
    }

    .pricing-tab {
        padding: 0.6rem 1rem;
        font-size: 0.6rem;
    }
}