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

:root {
    --navy:     #0A0F1E;
    --navy-mid: #111827;
    --indigo:   #4F46E5;
    --indigo-light: #6366F1;
    --cyan:     #06B6D4;
    --text:     #334155;
    --text-light: #64748B;
    --white:    #FFFFFF;
    --off-white:#F8FAFC;
    --border:   #E2E8F0;
    --gradient: linear-gradient(135deg, #4F46E5 0%, #06B6D4 100%);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Karla', sans-serif;
    font-weight: 400;
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
}

h1, h2, h3, h4, h5 {
    font-family: 'Prompt', sans-serif;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ─── HEADER ────────────────────────────────────────── */
header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(10, 15, 30, 0.92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: background 0.3s;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    position: relative;
}

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

.logo img {
    height: 40px;
    width: auto;
}

.logo-text {
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--white);
    letter-spacing: -0.3px;
}

.logo-text span {
    color: var(--cyan);
}

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

.nav-links a {
    color: rgba(255,255,255,0.72);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.2px;
    transition: color 0.2s;
}

.nav-links a:hover { color: var(--white); }

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 8px;
    font-family: 'Karla', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    transition: all 0.25s ease;
}

.btn-primary {
    background: var(--gradient);
    color: var(--white);
    box-shadow: 0 4px 24px rgba(79,70,229,0.38);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(79,70,229,0.52);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.3);
}

.btn-outline:hover {
    border-color: var(--cyan);
    color: var(--cyan);
}

.btn-dark {
    background: var(--navy);
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.1);
}

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

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

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
}

/* animate to × when open */
.hamburger.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.hamburger.is-open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.hamburger.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ─── HERO ──────────────────────────────────────────── */
#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--navy);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?w=1800&q=80&fit=crop');
    background-size: cover;
    background-position: center;
    opacity: 0.18;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,15,30,0.95) 40%, rgba(79,70,229,0.4) 100%);
}

.hero-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(79,70,229,0.25) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    pointer-events: none;
}

/* two-column hero layout */
.hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 56px;
    padding-top: 72px;
    width: 100%;
}

.hero-left {
    flex: 1;
    min-width: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(79,70,229,0.18);
    border: 1px solid rgba(99,102,241,0.4);
    color: var(--cyan);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 28px;
}

.badge::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--cyan);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.4); }
}

.hero-title {
    font-size: clamp(2.6rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 24px;
}

.hero-title .gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 1.12rem;
    color: rgba(255,255,255,0.65);
    max-width: 560px;
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
}

.hero-stats {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 48px;
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.stat-value {
    font-family: 'Prompt', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--white);
}

.stat-value span {
    color: var(--cyan);
}

.stat-label {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.5);
    font-weight: 500;
    letter-spacing: 0.3px;
    margin-top: 2px;
}

/* ─── HERO VISUAL (right column) ───────────────────── */
.hero-visual {
    flex-shrink: 0;
    width: 440px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-10px); }
}

@keyframes floatY2 {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(8px); }
}

/* main dashboard card */
.hv-card {
    width: 100%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 20px;
    padding: 24px;
    backdrop-filter: blur(20px);
    box-shadow: 0 32px 80px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.06);
    animation: floatY 5s ease-in-out infinite;
}

.hv-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.hv-dots {
    display: flex;
    gap: 5px;
}

.hv-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
}

.hv-dots span:nth-child(1) { background: #FF5F57; }
.hv-dots span:nth-child(2) { background: #FEBC2E; }
.hv-dots span:nth-child(3) { background: #28C840; }

.hv-card-title {
    font-family: 'Prompt', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    flex: 1;
    text-align: center;
}

.hv-card-live {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.75rem;
    color: #34D399;
    font-weight: 600;
}

.hv-card-live span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #34D399;
    animation: pulse 2s infinite;
}

/* chart */
.hv-chart {
    background: rgba(255,255,255,0.04);
    border-radius: 12px;
    padding: 16px 16px 8px;
    margin-bottom: 20px;
}

.hv-chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 80px;
}

.hv-bar {
    flex: 1;
    height: var(--h);
    background: rgba(99,102,241,0.35);
    border-radius: 4px 4px 0 0;
    position: relative;
    transition: background 0.3s;
}

.hv-bar--accent {
    background: linear-gradient(180deg, #4F46E5, #06B6D4);
}

.hv-bar span {
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.6rem;
    color: rgba(255,255,255,0.35);
    white-space: nowrap;
}

.hv-chart-label {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.3);
    text-align: center;
    margin-top: 24px;
}

/* project rows */
.hv-projects {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.hv-project-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hv-avatar {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--white);
    flex-shrink: 0;
}

.hv-project-info {
    flex: 1;
    min-width: 0;
}

.hv-project-name {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.75);
    margin-bottom: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hv-progress-wrap {
    height: 4px;
    background: rgba(255,255,255,0.1);
    border-radius: 100px;
    overflow: hidden;
}

.hv-progress {
    height: 100%;
    border-radius: 100px;
    transition: width 1s ease;
}

.hv-pct {
    font-size: 0.72rem;
    font-weight: 600;
    color: rgba(255,255,255,0.45);
    flex-shrink: 0;
}

/* floating badges */
.hv-float {
    position: absolute;
    z-index: 10;
}

.hv-float--tl {
    top: -24px;
    left: -32px;
    animation: floatY2 4s ease-in-out infinite;
}

.hv-float--br {
    bottom: -28px;
    right: -28px;
    animation: floatY 4.5s ease-in-out infinite;
}

.hv-notify {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(20, 26, 46, 0.92);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 14px;
    padding: 12px 16px;
    backdrop-filter: blur(16px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.4);
    white-space: nowrap;
}

.hv-notify-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #34D399;
    flex-shrink: 0;
    animation: pulse 2s infinite;
}

.hv-notify-title {
    font-family: 'Prompt', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--white);
}

.hv-notify-sub {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.45);
    margin-top: 1px;
}

.hv-stack {
    background: rgba(20, 26, 46, 0.92);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 14px;
    padding: 12px 16px;
    backdrop-filter: blur(16px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.hv-stack-label {
    font-size: 0.68rem;
    font-weight: 600;
    color: rgba(255,255,255,0.4);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.hv-stack-icons {
    display: flex;
    gap: 8px;
}

.hv-stack-icons span {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: rgba(99,102,241,0.2);
    border: 1px solid rgba(99,102,241,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--white);
}

/* ─── SECTION COMMON ────────────────────────────────── */
section {
    padding: 100px 0;
}

.section-tag {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--indigo-light);
    margin-bottom: 14px;
}

.section-title {
    font-size: clamp(1.9rem, 3.5vw, 2.6rem);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.25;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 560px;
    line-height: 1.8;
}

/* ─── ABOUT ─────────────────────────────────────────── */
#about {
    background: var(--off-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image-wrap {
    position: relative;
}

.about-image-wrap img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
}

.about-badge {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background: var(--white);
    border-radius: 16px;
    padding: 20px 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    text-align: center;
}

.about-badge .num {
    font-family: 'Prompt', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--indigo);
    line-height: 1;
}

.about-badge .lbl {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 500;
    margin-top: 4px;
}

.about-content .section-desc {
    margin-bottom: 32px;
}

.about-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 40px;
}

.about-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.97rem;
    color: var(--text);
}

.about-list li::before {
    content: '';
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    background: var(--gradient);
    border-radius: 50%;
    margin-top: 2px;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='10' cy='10' r='10' fill='url(%23g)'/%3E%3Cpath d='M6 10.5l3 3 5-5' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cdefs%3E%3ClinearGradient id='g' x1='0' y1='0' x2='20' y2='20' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%234F46E5'/%3E%3Cstop offset='1' stop-color='%2306B6D4'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E");
    background-size: cover;
}

/* ─── SERVICES ──────────────────────────────────────── */
#services {
    background: var(--white);
}

.services-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

.services-header .section-desc {
    margin: 0 auto;
}

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

.service-card {
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 36px 32px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient);
    opacity: 0;
    transition: opacity 0.3s;
    border-radius: 18px;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(79,70,229,0.15);
    border-color: transparent;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card > * {
    position: relative;
    z-index: 1;
}

.service-card:hover .service-icon,
.service-card:hover .service-title,
.service-card:hover .service-desc {
    color: var(--white);
}

.service-card:hover .service-icon-wrap {
    background: rgba(255,255,255,0.15);
}

.service-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(79,70,229,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: background 0.3s;
}

.service-icon {
    font-size: 1.6rem;
    color: var(--indigo);
    transition: color 0.3s;
}

.service-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 12px;
    transition: color 0.3s;
}

.service-desc {
    font-size: 0.93rem;
    color: var(--text-light);
    line-height: 1.75;
    transition: color 0.3s;
}

/* ─── TESTIMONIALS ──────────────────────────────────── */
#testimonials {
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

#testimonials::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(79,70,229,0.2) 0%, transparent 70%);
    bottom: -200px;
    left: -100px;
    pointer-events: none;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 64px;
}

.testimonials-header .section-tag {
    color: var(--cyan);
}

.testimonials-header .section-title {
    color: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.testi-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    padding: 36px;
    transition: all 0.3s;
}

.testi-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(99,102,241,0.4);
    transform: translateY(-4px);
}

.stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.star {
    color: #F59E0B;
    font-size: 0.9rem;
}

.testi-text {
    font-size: 0.97rem;
    color: rgba(255,255,255,0.72);
    line-height: 1.8;
    margin-bottom: 28px;
    font-style: italic;
}

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

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(99,102,241,0.4);
}

.author-name {
    font-family: 'Prompt', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
}

.author-role {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.45);
    margin-top: 2px;
}

/* ─── CTA ───────────────────────────────────────────── */
#cta {
    background: var(--off-white);
    padding: 100px 0;
}

.cta-inner {
    background: var(--gradient);
    border-radius: 28px;
    padding: 72px 64px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 56px;
    position: relative;
    overflow: hidden;
}

.cta-form-layout {
    align-items: flex-start;
}

.cta-form-layout .cta-content {
    flex: 0 0 auto;
    max-width: 340px;
}

/* ─── CONTACT FORM ──────────────────────────────────── */
.contact-form {
    position: relative;
    z-index: 1;
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255,255,255,0.75);
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.form-group input,
.form-group textarea {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 10px;
    padding: 12px 16px;
    font-family: 'Karla', sans-serif;
    font-size: 0.95rem;
    color: var(--white);
    outline: none;
    transition: border-color 0.2s, background 0.2s;
    resize: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.38);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: rgba(255,255,255,0.55);
    background: rgba(255,255,255,0.15);
}

.form-submit-btn {
    align-self: flex-start;
    margin-top: 4px;
    cursor: pointer;
    border: none;
}

.form-submit-btn:disabled {
    opacity: 0.65;
    cursor: not-allowed;
    transform: none !important;
}

.form-status {
    font-size: 0.88rem;
    font-weight: 500;
    min-height: 20px;
}

.form-status--ok  { color: #86efac; }
.form-status--err { color: #fca5a5; }

.cta-inner::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255,255,255,0.07);
}

.cta-inner::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: 200px;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
}

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

.cta-title {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.25;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.cta-desc {
    font-size: 1rem;
    color: rgba(255,255,255,0.78);
    max-width: 460px;
    line-height: 1.75;
}

.cta-actions {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 14px;
    flex-shrink: 0;
}

.btn-white {
    background: var(--white);
    color: var(--indigo);
    font-weight: 700;
}

.btn-white:hover {
    background: var(--off-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

/* ─── FOOTER ────────────────────────────────────────── */
footer {
    background: var(--navy-mid);
    color: rgba(255,255,255,0.6);
    padding: 72px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo-text {
    font-size: 1.2rem;
    margin-bottom: 16px;
    display: block;
}

.footer-about {
    font-size: 0.9rem;
    line-height: 1.8;
    max-width: 280px;
    margin-bottom: 28px;
}

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

.social-link {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    transition: all 0.2s;
    cursor: pointer;
}

.social-link:hover {
    background: var(--indigo);
    border-color: var(--indigo);
    color: var(--white);
}

.footer-col h4 {
    font-family: 'Prompt', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--cyan);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.footer-contact-item .icon {
    color: var(--cyan);
    font-size: 0.9rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    font-size: 0.85rem;
}

.footer-bottom a {
    color: rgba(255,255,255,0.45);
    transition: color 0.2s;
}

.footer-bottom a:hover { color: var(--cyan); }

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

/* ─── RESPONSIVE ────────────────────────────────────── */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .hero-visual { width: 380px; }

    .cta-inner {
        flex-direction: column;
        padding: 56px 40px;
    }

    .cta-form-layout .cta-content {
        max-width: 100%;
    }

    .contact-form {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .hamburger { display: flex; }

    .nav-links {
        display: flex;
        flex-direction: column;
        gap: 0;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(10, 15, 30, 0.98);
        backdrop-filter: blur(16px);
        border-bottom: 1px solid rgba(255,255,255,0.08);
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease, padding 0.35s ease;
    }

    .nav-links.nav-open {
        max-height: 400px;
        padding: 12px 0 20px;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 14px 24px;
        font-size: 1rem;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    .nav-links li:last-child a {
        border-bottom: none;
    }

    section { padding: 72px 0; }

    .hero-container {
        flex-direction: column;
        gap: 48px;
    }

    .hero-visual {
        width: 100%;
        max-width: 420px;
        margin: 0 auto;
    }

    .hv-float--tl { top: -18px; left: -8px; }
    .hv-float--br { bottom: -18px; right: -8px; }

    .hero-stats {
        flex-wrap: wrap;
        gap: 28px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-badge {
        right: 16px;
        bottom: -20px;
    }

    .services-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }

    .cta-inner {
        flex-direction: column;
        padding: 48px 32px;
    }

    .cta-form-layout .cta-content {
        max-width: 100%;
    }

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

    .contact-form {
        width: 100%;
    }

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

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

    .footer-bottom-links {
        gap: 16px;
    }
}
