/* ======================================
   Craftsmen IT – style.css
   Dark professional theme: navy, teal, blue
   Font: Inter + Poppins
   ====================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

:root {
    --bg: #050d1a;
    --bg2: #08152a;
    --bg3: #0c1e36;
    --card: rgba(255, 255, 255, 0.035);
    --bdr: rgba(255, 255, 255, 0.08);
    --bdr2: rgba(255, 255, 255, 0.12);
    --accent: #1d7eea;
    --accent2: #0f4f9e;
    --teal: #0ea5e9;
    --purple: #7c3aed;
    --green: #10b981;
    --amber: #f59e0b;
    --text: #f0f4ff;
    --muted: #7a8ba8;
    --body: #a8bad4;
    --r: 14px;
    --rs: 8px;
    --tr: 0.28s ease;
}

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.65
}

/* ── Utilities ── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px
}

.section-pad {
    padding: 100px 0
}

.grad-text {
    background: linear-gradient(120deg, #3b9eff 0%, #0ea5e9 40%, #1d7eea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--teal);
    background: rgba(14, 165, 233, .1);
    border: 1px solid rgba(14, 165, 233, .2);
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 18px
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(30px, 5vw, 50px);
    font-weight: 700;
    line-height: 1.18;
    margin-bottom: 14px;
    color: var(--text)
}

.section-sub {
    font-size: 16px;
    color: var(--muted);
    max-width: 580px;
    margin: 0 auto 56px;
    text-align: center;
    line-height: 1.8
}

.glass-card {
    background: var(--card);
    border: 1px solid var(--bdr);
    border-radius: var(--r);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px)
}

.w-full {
    width: 100%;
    justify-content: center
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: var(--rs);
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all var(--tr);
    border: none;
    white-space: nowrap
}

.btn-primary {
    background: linear-gradient(135deg, #1d7eea, #0f4f9e);
    color: #fff;
    box-shadow: 0 4px 20px rgba(29, 126, 234, .3)
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(29, 126, 234, .45);
    background: linear-gradient(135deg, #2d8dfa, #1a60c0)
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--bdr2)
}

.btn-outline:hover {
    border-color: var(--teal);
    color: var(--teal);
    background: rgba(14, 165, 233, .07);
    transform: translateY(-2px)
}

.btn-ghost {
    background: rgba(255, 255, 255, .06);
    color: var(--text);
    border: 1px solid var(--bdr)
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, .1);
    transform: translateY(-2px)
}

/* ══════════════ HEADER ══════════════ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--tr)
}

.header.scrolled {
    background: rgba(5, 13, 26, .9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--bdr);
    padding: 10px 0
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--text)
}

.logo-it {
    color: var(--teal)
}

.main-nav {
    flex: 1;
    display: flex;
    justify-content: center
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none
}

.nav-link {
    color: var(--muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 7px 13px;
    border-radius: 6px;
    transition: all var(--tr)
}

.nav-link:hover,
.nav-link.active {
    color: var(--text);
    background: rgba(255, 255, 255, .05)
}

.nav-cta {
    font-size: 14px;
    padding: 10px 22px
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all .3s
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg)
}

.hamburger.open span:nth-child(2) {
    opacity: 0
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg)
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(14, 165, 233, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(14, 165, 233, .04) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, #000 40%, transparent 100%)
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .5
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(29, 126, 234, .35), transparent 70%);
    top: -100px;
    left: -100px
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(14, 165, 233, .2), transparent 70%);
    top: 20%;
    right: -80px
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(124, 58, 237, .15), transparent 70%);
    bottom: 0;
    left: 30%
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 0 80px
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--muted);
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    padding: 7px 20px;
    border-radius: 50px;
    margin-bottom: 28px
}

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

@keyframes pulse-dot {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(14, 165, 233, .7)
    }

    50% {
        box-shadow: 0 0 0 8px rgba(14, 165, 233, 0)
    }
}

.hero-h1 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(44px, 7.5vw, 84px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -2px;
    margin-bottom: 18px
}

.hero-h2 {
    font-size: clamp(16px, 2.5vw, 22px);
    font-weight: 400;
    color: var(--body);
    max-width: 640px;
    margin-bottom: 16px;
    line-height: 1.6
}

.hero-desc {
    font-size: 16px;
    color: var(--muted);
    max-width: 440px;
    margin-bottom: 36px
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 60px
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 0;
    background: rgba(255, 255, 255, .03);
    border: 1px solid var(--bdr);
    border-radius: 12px;
    padding: 20px 24px;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0
}

.hstat {
    text-align: center;
    padding: 0 28px
}

.hstat strong {
    display: block;
    font-size: 26px;
    font-weight: 800;
    color: var(--text)
}

.hstat span {
    font-size: 12px;
    color: var(--muted);
    margin-top: 2px;
    display: block
}

.hstat-div {
    width: 1px;
    height: 40px;
    background: var(--bdr)
}

.hero-scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%)
}

.hero-scroll-hint span {
    display: block;
    width: 2px;
    height: 36px;
    background: linear-gradient(to bottom, rgba(14, 165, 233, .8), transparent);
    border-radius: 2px;
    animation: scroll-line 2s ease-in-out infinite
}

@keyframes scroll-line {

    0%,
    100% {
        opacity: 1;
        transform: scaleY(1)
    }

    50% {
        opacity: .4;
        transform: scaleY(.6)
    }
}

/* ══════════════ TECH STACK SLIDER ══════════════ */
.tech-stack-section {
    padding: 60px 0;
    background: rgba(255, 255, 255, 0.01);
    border-top: 1px solid var(--bdr);
    border-bottom: 1px solid var(--bdr);
    overflow: hidden
}

.tech-slider-header {
    text-align: center;
    margin-bottom: 40px
}

.tech-slider-wrap {
    width: 100%;
    mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent)
}

.tech-track {
    display: flex;
    gap: 60px;
    width: max-content;
    animation: tech-scroll 40s linear infinite;
    padding: 10px 0
}

.tech-track:hover {
    animation-play-state: paused
}

.tech-item {
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0.65;
    transition: all var(--tr);
    filter: grayscale(1)
}

.tech-item:hover {
    opacity: 1;
    filter: grayscale(0);
    transform: translateY(-2px)
}

.tech-item img {
    height: 32px;
    width: auto
}

.tech-item span {
    font-size: 15px;
    font-weight: 600;
    color: var(--muted);
    white-space: nowrap
}

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

.tech-filter-white {
    filter: brightness(0) invert(1)
}

@keyframes tech-scroll {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(calc(-50% - 30px))
    }
}

/* ══════════════ SERVICES ══════════════ */
.services {
    text-align: center
}

.services .section-sub {
    margin-bottom: 64px
}

.svc-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    padding: 60px 0;
    border-top: 1px solid var(--bdr);
    text-align: left
}

.svc-block:first-of-type {
    border-top: none;
    padding-top: 0
}

.svc-flip {
    direction: rtl
}

.svc-flip>* {
    direction: ltr
}

.svc-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    border: 1px solid rgba(var(--ic, 14, 165, 233), .25);
    background: rgba(var(--ic, 14, 165, 233), .09);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    transition: all var(--tr);
    flex-shrink: 0
}

.svc-block:hover .svc-icon-wrap {
    box-shadow: 0 0 28px rgba(14, 165, 233, .15)
}

.svc-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 700;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap
}

.svc-badge {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    background: rgba(14, 165, 233, .12);
    border: 1px solid rgba(14, 165, 233, .25);
    color: var(--teal);
    padding: 3px 12px;
    border-radius: 50px;
    letter-spacing: .04em
}

.svc-badge-green {
    background: rgba(16, 185, 129, .12);
    border-color: rgba(16, 185, 129, .25);
    color: var(--green)
}

.svc-text p {
    font-size: 15px;
    color: var(--body);
    line-height: 1.8;
    margin-bottom: 24px
}

.svc-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none
}

.svc-tags li {
    font-size: 12px;
    font-weight: 500;
    color: var(--muted);
    background: rgba(255, 255, 255, .05);
    border: 1px solid var(--bdr);
    padding: 5px 12px;
    border-radius: 50px;
    transition: all var(--tr)
}

.svc-tags li:hover {
    color: var(--teal);
    border-color: rgba(14, 165, 233, .3)
}

.svc-visual {
    border-radius: var(--r);
    overflow: hidden;
    border: 1px solid var(--bdr);
    background: var(--bg2)
}

.svc-visual svg {
    display: block;
    width: 100%;
    height: auto
}

/* ══════════════ QUIZ PLATFORM ══════════════ */
.quiz-section {
    position: relative;
    text-align: center
}

.quiz-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden
}

.quiz-orb {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 500px;
    background: radial-gradient(ellipse, rgba(29, 126, 234, .12), transparent 70%)
}

.quiz-section .container {
    position: relative;
    z-index: 1
}

.quiz-section .section-sub {
    margin-bottom: 48px
}

.quiz-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 64px
}

.quiz-feat {
    background: var(--card);
    border: 1px solid var(--bdr);
    border-radius: var(--r);
    padding: 28px 22px;
    text-align: left;
    transition: all var(--tr)
}

.quiz-feat:hover {
    border-color: rgba(14, 165, 233, .3);
    transform: translateY(-4px)
}

.qf-icon {
    width: 44px;
    height: 44px;
    background: rgba(29, 126, 234, .1);
    border: 1px solid rgba(29, 126, 234, .2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    flex-shrink: 0
}

.qf-icon i {
    display: block
}

.qf-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--accent);
    color: var(--accent)
}

.quiz-feat strong {
    display: block;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px
}

.quiz-feat p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.7
}

.quiz-plans-title {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 36px
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start
}

.plan-card {
    padding: 40px 28px;
    text-align: left;
    position: relative;
    transition: all var(--tr)
}

.plan-card:hover {
    transform: translateY(-6px);
    border-color: rgba(14, 165, 233, .3)
}

.plan-featured {
    border-color: rgba(29, 126, 234, .5);
    background: linear-gradient(160deg, rgba(29, 126, 234, .12), rgba(255, 255, 255, .02))
}

.plan-popular {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(135deg, #1d7eea, #0f4f9e);
    padding: 5px 18px;
    border-radius: 50px;
    white-space: nowrap
}

.plan-tier {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--teal);
    margin-bottom: 12px
}

.plan-price-wrap {
    margin-bottom: 14px;
    display: flex;
    align-items: baseline;
    gap: 4px
}

.plan-price {
    font-family: 'Poppins', sans-serif;
    font-size: 44px;
    font-weight: 800;
    letter-spacing: -2px
}

.plan-period {
    font-size: 14px;
    color: var(--muted)
}

.plan-tagline {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 24px
}

.plan-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 32px
}

.plan-list li {
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px
}

.plan-list li.ok {
    color: var(--body)
}

.plan-list li.ok::before {
    content: "✓";
    color: var(--green);
    font-weight: 700;
    flex-shrink: 0
}

.plan-list li.no {
    color: rgba(255, 255, 255, .2)
}

.plan-list li.no::before {
    content: "✗";
    flex-shrink: 0
}

/* ══════════════ PORTFOLIO ══════════════ */
.portfolio {
    text-align: center
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 36px
}

.port-card {
    padding: 36px 28px;
    text-align: left;
    transition: all var(--tr)
}

.port-card:hover {
    transform: translateY(-6px);
    border-color: rgba(14, 165, 233, .3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .3)
}

.port-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--rs);
    border: 1px solid;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px
}

.port-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 14px
}

.port-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3
}

.port-card p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 24px
}

.port-result {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 20px;
    border-top: 1px solid var(--bdr)
}

.port-result-num {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 800;
    background: linear-gradient(120deg, #3b9eff, #0ea5e9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.port-result-label {
    font-size: 13px;
    color: var(--muted)
}

.portfolio-note {
    font-size: 14px;
    color: var(--muted);
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    line-height: 1.7;
    font-style: italic
}

/* ══════════════ TESTIMONIALS ══════════════ */
.testimonials {
    text-align: center
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 8px
}

.testi-card {
    padding: 36px 28px;
    text-align: left;
    transition: all var(--tr)
}

.testi-card:hover {
    transform: translateY(-5px);
    border-color: rgba(14, 165, 233, .25)
}

.testi-stars {
    color: #fbbf24;
    font-size: 17px;
    letter-spacing: 2px;
    margin-bottom: 16px
}

.testi-card blockquote {
    font-size: 14px;
    color: var(--body);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
    position: relative
}

.testi-card blockquote::before {
    content: '"';
    font-size: 48px;
    color: rgba(14, 165, 233, .15);
    position: absolute;
    top: -24px;
    left: -8px;
    font-family: Georgia, serif;
    line-height: 1
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 12px
}

.testi-av {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0
}

.testi-author strong {
    display: block;
    font-size: 14px;
    font-weight: 600
}

.testi-author span {
    font-size: 12px;
    color: var(--muted)
}

/* ══════════════ FAQ ══════════════ */
.faq-section {
    text-align: center
}

.faq-list {
    max-width: 760px;
    margin: 8px auto 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 10px
}

.faq-item {
    background: var(--card);
    border: 1px solid var(--bdr);
    border-radius: var(--rs);
    overflow: hidden;
    transition: border-color var(--tr)
}

.faq-item.open {
    border-color: rgba(29, 126, 234, .4)
}

.faq-q {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: none;
    border: none;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: var(--text);
    cursor: pointer;
    text-align: left;
    gap: 16px
}

.faq-q h3 {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    margin: 0
}

.faq-ico {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform .3s
}

.faq-ico i {
    display: block
}

.faq-ico svg {
    width: 20px;
    height: 20px;
    stroke: var(--teal);
    color: var(--teal)
}

.faq-item.open .faq-ico {
    transform: rotate(180deg)
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s cubic-bezier(.4, 0, .2, 1)
}

.faq-item.open .faq-a {
    max-height: 300px
}

.faq-a p {
    padding: 0 24px 20px;
    font-size: 14px;
    color: var(--muted);
    line-height: 1.8
}

/* ══════════════ ABOUT ══════════════ */
.about-section {
    text-align: center
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 8px
}

.about-card {
    padding: 32px 24px;
    text-align: left;
    transition: all var(--tr)
}

.about-card:hover {
    transform: translateY(-5px);
    border-color: rgba(14, 165, 233, .3)
}

.about-ico {
    width: 52px;
    height: 52px;
    background: rgba(14, 165, 233, .1);
    border: 1px solid rgba(14, 165, 233, .2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    flex-shrink: 0
}

.about-ico i {
    display: block
}

.about-ico svg {
    width: 26px;
    height: 26px;
    stroke: var(--teal);
    color: var(--teal)
}

.about-card h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px
}

.about-card p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.75
}

/* ══════════════ CONTACT ══════════════ */
.contact-section {
    position: relative;
    text-align: center
}

.contact-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden
}

.contact-orb {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 500px;
    background: radial-gradient(ellipse, rgba(15, 79, 158, .15), transparent 70%)
}

.contact-section .container {
    position: relative;
    z-index: 1
}

.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 72px;
    align-items: start;
    text-align: left
}

.contact-text .section-eyebrow {
    display: inline-flex
}

.contact-text p {
    font-size: 15px;
    color: var(--body);
    line-height: 1.8;
    margin-bottom: 28px
}

.contact-promises {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px
}

.contact-promises li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--body)
}

.cp-icon {
    width: 22px;
    height: 22px;
    background: rgba(29, 126, 234, .15);
    border: 1px solid rgba(29, 126, 234, .3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.cp-icon i {
    display: block
}

.cp-icon svg {
    width: 12px;
    height: 12px;
    stroke: var(--teal);
    color: var(--teal)
}

.contact-form-wrap {
    padding: 36px
}

.form-title {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 24px
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px
}

.form-field label {
    font-size: 13px;
    font-weight: 500;
    color: var(--muted)
}

.form-field input,
.form-field select,
.form-field textarea {
    background: rgba(255, 255, 255, .05);
    border: 1px solid var(--bdr);
    border-radius: var(--rs);
    padding: 11px 14px;
    color: var(--text);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    outline: none;
    transition: border-color var(--tr);
    resize: none
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: rgba(29, 126, 234, .5);
    box-shadow: 0 0 0 3px rgba(29, 126, 234, .1)
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: var(--muted)
}

.form-field select {
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none
}

.form-field select option {
    background: #0c1e36;
    color: var(--text)
}

.form-note {
    font-size: 13px;
    color: var(--green);
    text-align: center;
    margin-top: 12px;
    font-weight: 500
}

/* ══════════════ FOOTER ══════════════ */
.footer {
    border-top: 1px solid var(--bdr);
    background: rgba(0, 0, 0, .2);
    padding: 72px 0 36px
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 52px
}

.footer-brand .logo {
    margin-bottom: 16px
}

.footer-tagline {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 24px
}

.social-row {
    display: flex;
    gap: 10px
}

.soc-btn {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid var(--bdr);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    text-decoration: none;
    transition: all var(--tr)
}

.soc-btn:hover {
    background: rgba(29, 126, 234, .15);
    border-color: rgba(29, 126, 234, .4);
    color: var(--teal)
}

.footer-nav-group h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 18px;
    color: var(--text)
}

.footer-nav-group ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px
}

.footer-nav-group a {
    font-size: 13px;
    color: var(--muted);
    text-decoration: none;
    transition: color var(--tr)
}

.footer-nav-group a:hover {
    color: var(--text)
}

.footer-bottom {
    border-top: 1px solid var(--bdr);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--muted)
}

.footer-bottom-links {
    display: flex;
    gap: 20px
}

.footer-bottom-links a {
    color: var(--muted);
    text-decoration: none;
    transition: color var(--tr)
}

.footer-bottom-links a:hover {
    color: var(--text)
}

/* ══════════════ REVEAL ══════════════ */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .65s ease, transform .65s ease
}

.reveal.visible {
    opacity: 1;
    transform: none
}

.reveal:nth-child(2) {
    transition-delay: .08s
}

.reveal:nth-child(3) {
    transition-delay: .16s
}

.reveal:nth-child(4) {
    transition-delay: .24s
}

.reveal:nth-child(5) {
    transition-delay: .32s
}

.reveal:nth-child(6) {
    transition-delay: .4s
}

.hide-sm {
    display: inline
}

/* ══════════════ RESPONSIVE ══════════════ */
@media(max-width:1024px) {

    .svc-block,
    .svc-flip {
        grid-template-columns: 1fr;
        direction: ltr
    }

    .svc-block {
        gap: 40px
    }

    .svc-visual {
        max-width: 500px;
        margin: 0 auto
    }

    .portfolio-grid,
    .testi-grid,
    .about-grid {
        grid-template-columns: 1fr 1fr
    }

    .plans-grid,
    .quiz-features-grid {
        grid-template-columns: 1fr 1fr
    }

    .contact-inner {
        grid-template-columns: 1fr
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px
    }
}

@media(max-width:768px) {
    .section-pad {
        padding: 70px 0
    }

    .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: #050d1a;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateX(-100%);
        transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 2000;
        visibility: hidden;
        pointer-events: none
    }

    .main-nav.open {
        transform: translateX(0);
        visibility: visible;
        pointer-events: all
    }

    .nav-list {
        flex-direction: column;
        gap: 32px;
        text-align: center;
        width: 100%
    }

    .nav-link {
        display: block;
        font-size: 28px;
        font-weight: 700;
        color: var(--text);
        padding: 10px;
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.4s ease
    }

    .main-nav.open .nav-link {
        opacity: 1;
        transform: translateY(0);
        transition-delay: calc(0.1s * var(--i, 0))
    }

    .nav-link.active,
    .nav-link:hover {
        background: none;
        color: var(--teal)
    }

    .hamburger {
        display: flex;
        z-index: 2100;
        position: relative;
        margin-left: auto
    }

    .nav-cta {
        display: none
    }

    .hero-h1 {
        letter-spacing: -1px
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px
    }

    .hstat-div {
        width: 80px;
        height: 1px;
        background: var(--bdr)
    }

    .portfolio-grid,
    .testi-grid {
        grid-template-columns: 1fr
    }

    .about-grid {
        grid-template-columns: 1fr
    }

    .plans-grid,
    .quiz-features-grid {
        grid-template-columns: 1fr
    }

    .form-row {
        grid-template-columns: 1fr
    }

    .footer-top {
        grid-template-columns: 1fr
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center
    }

    .hero-btns {
        flex-direction: column;
        align-items: center
    }

    .hide-sm {
        display: none
    }
}

@media(max-width:480px) {
    .hero-h1 {
        font-size: 38px
    }

    .plans-grid {
        grid-template-columns: 1fr
    }
}