:root {
    --blue: #0F52BA;
    --blue-mid: #1A6FE8;
    --blue-light: #C8DCFF;
    --teal: #00C896;
    --teal-dark: #009E74;
    --dark: #080C14;
    --dark-2: #0E1622;
    --dark-3: #15202F;
    --dark-4: #1C2B3E;
    --glass: rgba(255, 255, 255, 0.04);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-hover: rgba(255, 255, 255, 0.07);
    --text: #F0F4FF;
    --text-muted: #7A8EA8;
    --text-dim: #3D5269;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--dark);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
}

/* ============ BACKGROUND ============ */
.bg-canvas {
    position: fixed;
    inset: 0;
    z-index: 0;
    background: var(--dark);
    overflow: hidden;
}

.bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
}

.bg-orb-1 {
    width: 600px;
    height: 600px;
    background: var(--blue);
    top: -200px;
    right: -100px;
}

.bg-orb-2 {
    width: 400px;
    height: 400px;
    background: var(--teal);
    bottom: 10%;
    left: -100px;
}

.bg-orb-3 {
    width: 300px;
    height: 300px;
    background: #6B21D6;
    top: 50%;
    right: 10%;
}

.bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 60px 60px;
}

/* ============ LAYOUT ============ */
.wrapper {
    position: relative;
    z-index: 1;
}

.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ============ NAV ============ */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 18px 0;
    border-bottom: 1px solid transparent;
    transition: all 0.3s;
}

nav.scrolled {
    background: rgba(8, 12, 20, 0.85);
    backdrop-filter: blur(20px);
    border-color: var(--glass-border);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-mark {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--blue-mid), var(--teal));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 16px;
    color: #fff;
}

.logo-text {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 17px;
    color: var(--text);
}

.logo-text span {
    color: var(--teal);
}

.nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--text);
}

.nav-cta {
    padding: 9px 22px;
    background: var(--blue-mid);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
}

.nav-cta:hover {
    background: var(--blue);
    transform: translateY(-1px);
}

/* ============ HERO ============ */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 100px;
    border: 1px solid var(--glass-border);
    background: var(--glass);
    font-size: 13px;
    color: var(--teal);
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--teal);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

.hero-title {
    font-family: 'Syne', sans-serif;
    font-size: 68px;
    font-weight: 800;
    line-height: 1.0;
    letter-spacing: -2px;
    margin-bottom: 24px;
    color: var(--text);
}

.hero-title .gradient-text {
    background: linear-gradient(90deg, var(--blue-mid), var(--teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 460px;
    margin-bottom: 36px;
    font-weight: 300;
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-primary {
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--blue-mid), var(--teal-dark));
    color: #fff;
    border: none;
    border-radius: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 24px rgba(26, 111, 232, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(26, 111, 232, 0.45);
}

.btn-outline {
    padding: 14px 28px;
    background: transparent;
    color: var(--text);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 400;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: border-color 0.2s, background 0.2s;
    backdrop-filter: blur(6px);
}

.btn-outline:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: var(--glass-hover);
}

.hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 52px;
    padding-top: 36px;
    border-top: 1px solid var(--glass-border);
}

/* .stat-item {} */

.stat-num {
    font-family: 'Syne', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: var(--text);
    line-height: 1;
}

.stat-num span {
    color: var(--teal);
}

.stat-label {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 4px;
}

/* Hero right panel */
.hero-visual {
    position: relative;
}

.hero-card-main {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 28px;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.hero-card-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
}

.card-tag {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 14px;
}

.card-project-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--glass-border);
}

.card-project-row:last-child {
    border-bottom: none;
}

.proj-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.proj-info {
    flex: 1;
}

.proj-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
}

.proj-type {
    font-size: 12px;
    color: var(--text-muted);
}

.proj-badge {
    font-size: 11px;
    padding: 3px 10px;
    border-radius: 100px;
    font-weight: 500;
}

.badge-live {
    background: rgba(0, 200, 150, 0.15);
    color: var(--teal);
}

.badge-ecom {
    background: rgba(26, 111, 232, 0.15);
    color: #6BAAFF;
}

.badge-biz {
    background: rgba(107, 33, 214, 0.15);
    color: #B07BFF;
}

.floating-chip {
    position: absolute;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(16px);
    border-radius: 12px;
    padding: 10px 14px;
    font-size: 12px;
    font-weight: 500;
}

.chip-1 {
    bottom: -20px;
    left: -30px;
    color: var(--teal);
}

.chip-2 {
    top: -20px;
    right: -10px;
    color: #6BAAFF;
    z-index: 1;
}

/* ============ TRUST BAR ============ */
.trust-bar {
    padding: 40px 0;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.trust-label {
    text-align: center;
    font-size: 12px;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 24px;
}

.trust-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.trust-logo {
    font-family: 'Syne', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dim);
    letter-spacing: 0.05em;
    transition: color 0.2s;
}

.trust-logo:hover {
    color: var(--text-muted);
}

/* ============ SECTION HEADERS ============ */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-eyebrow {
    display: inline-block;
    font-size: 12px;
    color: var(--teal);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 14px;
    font-weight: 500;
}

.section-title {
    font-family: 'Syne', sans-serif;
    font-size: 44px;
    font-weight: 800;
    color: var(--text);
    line-height: 1.1;
    letter-spacing: -1px;
}

.section-sub {
    font-size: 16px;
    color: var(--text-muted);
    margin-top: 14px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

/* ============ SERVICES ============ */
#services {
    padding: 100px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 18px;
    padding: 32px 28px;
    transition: border-color 0.3s, background 0.3s, transform 0.2s;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.service-card:hover {
    border-color: rgba(26, 111, 232, 0.3);
    background: rgba(26, 111, 232, 0.05);
    transform: translateY(-4px);
}

.service-card.featured {
    border-color: rgba(0, 200, 150, 0.2);
    background: rgba(0, 200, 150, 0.04);
}

.service-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.icon-blue {
    background: rgba(26, 111, 232, 0.15);
}

.icon-teal {
    background: rgba(0, 200, 150, 0.15);
}

.icon-purple {
    background: rgba(107, 33, 214, 0.15);
}

.icon-amber {
    background: rgba(245, 158, 11, 0.15);
}

.icon-pink {
    background: rgba(236, 72, 153, 0.15);
}

.icon-cyan {
    background: rgba(6, 182, 212, 0.15);
}

.service-name {
    font-family: 'Syne', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
}

.service-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
    font-weight: 300;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.tag {
    font-size: 11px;
    padding: 3px 10px;
    border-radius: 100px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    color: var(--text-muted);
}

/* ============ PORTFOLIO ============ */
#portfolio {
    padding: 100px 0;
}

.filter-bar {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 20px;
    border-radius: 100px;
    border: 1px solid var(--glass-border);
    background: transparent;
    color: var(--text-muted);
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--blue-mid);
    border-color: var(--blue-mid);
    color: #fff;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.port-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 18px;
    overflow: hidden;
    transition: transform 0.25s, box-shadow 0.25s;
    backdrop-filter: blur(10px);
}

.port-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.port-thumb {
    height: 190px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 52px;
    position: relative;
    overflow: hidden;
}

.port-thumb-overlay {
    position: absolute;
    inset: 0;
    background: rgba(8, 12, 20, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.25s;
    font-size: 14px;
    color: var(--teal);
    font-weight: 500;
    gap: 8px;
}

.port-card:hover .port-thumb-overlay {
    opacity: 1;
}

.port-body {
    padding: 20px;
}

.port-category {
    font-size: 11px;
    color: var(--teal);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 6px;
    font-weight: 500;
}

.port-title {
    font-family: 'Syne', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 6px;
}

.port-desc {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 14px;
    font-weight: 300;
}

.port-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.port-tech {
    display: flex;
    gap: 5px;
}

.tech-pill {
    font-size: 10px;
    padding: 2px 8px;
    border-radius: 100px;
    background: rgba(26, 111, 232, 0.12);
    color: #6BAAFF;
    border: 1px solid rgba(26, 111, 232, 0.15);
}

.port-arrow {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--text-muted);
    transition: all 0.2s;
}

.port-card:hover .port-arrow {
    border-color: var(--teal);
    color: var(--teal);
}

/* ============ PROCESS ============ */
#process {
    padding: 100px 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 14%;
    right: 14%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--glass-border), var(--glass-border), transparent);
}

.process-step {
    text-align: center;
    padding: 28px 20px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 18px;
    backdrop-filter: blur(10px);
    transition: border-color 0.3s, transform 0.2s;
}

.process-step:hover {
    border-color: rgba(26, 111, 232, 0.3);
    transform: translateY(-4px);
}

.step-num {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue-mid), var(--teal-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Syne', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    margin: 0 auto 18px;
    box-shadow: 0 4px 20px rgba(26, 111, 232, 0.3);
}

.step-title {
    font-family: 'Syne', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.step-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    font-weight: 300;
}

/* ============ ABOUT ============ */
#about {
    padding: 100px 0;
}

.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* .about-left {} */

.about-avatar-wrap {
    position: relative;
    display: inline-block;
    margin-bottom: 32px;
}

.about-avatar {
    width: 200px;
    height: 200px;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--dark-3), var(--dark-4));
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 72px;
    position: relative;
    overflow: hidden;
}

.about-avatar::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 111, 232, 0.1), rgba(0, 200, 150, 0.1));
}

.about-badge-float {
    position: absolute;
    bottom: -12px;
    right: -12px;
    background: var(--dark-3);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 10px 14px;
    backdrop-filter: blur(10px);
}

.about-badge-float .ab-num {
    font-family: 'Syne', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--teal);
    line-height: 1;
}

.about-badge-float .ab-label {
    font-size: 11px;
    color: var(--text-muted);
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.timeline-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.tl-year {
    font-family: 'Syne', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: var(--teal);
    min-width: 42px;
    padding-top: 2px;
}

.tl-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 1px solid var(--teal);
    flex-shrink: 0;
    margin-top: 6px;
}

/* .tl-content {} */

.tl-title {
    font-size: 15px;
    font-weight: 500;
    color: var(--text);
}

.tl-sub {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 300;
}

/* .about-right {} */

.about-right h2 {
    font-family: 'Syne', sans-serif;
    font-size: 40px;
    font-weight: 800;
    color: var(--text);
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 18px;
}

.about-right p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 16px;
    font-weight: 300;
}

.skills-section {
    margin-top: 32px;
}

.skills-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-dim);
    margin-bottom: 12px;
    font-weight: 500;
}

.skills-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.skill-chip {
    padding: 7px 16px;
    border-radius: 100px;
    border: 1px solid var(--glass-border);
    background: var(--glass);
    font-size: 13px;
    color: var(--text-muted);
    transition: all 0.2s;
}

.skill-chip:hover {
    border-color: var(--blue-mid);
    color: var(--text);
}

/* ============ TESTIMONIALS ============ */
#testimonials {
    padding: 100px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.testimonial-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 18px;
    padding: 28px;
    backdrop-filter: blur(10px);
    transition: border-color 0.3s, transform 0.2s;
}

.testimonial-card:hover {
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-3px);
}

.stars {
    font-size: 14px;
    margin-bottom: 16px;
    color: #F59E0B;
    letter-spacing: 2px;
}

.t-quote {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 24px;
    font-weight: 300;
    font-style: italic;
}

.t-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.t-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue-mid), var(--teal-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Syne', sans-serif;
    font-size: 14px;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
}

.t-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
}

.t-role {
    font-size: 12px;
    color: var(--text-muted);
}

/* ============ PRICING ============ */
#pricing {
    padding: 100px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.pricing-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 36px 28px;
    backdrop-filter: blur(10px);
    position: relative;
    transition: transform 0.25s;
}

.pricing-card:hover {
    transform: translateY(-4px);
}

.pricing-card.featured {
    border-color: rgba(26, 111, 232, 0.4);
    background: rgba(26, 111, 232, 0.06);
}

.pricing-popular {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--blue-mid), var(--teal-dark));
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 16px;
    border-radius: 100px;
    white-space: nowrap;
    letter-spacing: 0.05em;
}

.plan-name {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-muted);
    margin-bottom: 10px;
    font-weight: 500;
}

.plan-price {
    font-family: 'Syne', sans-serif;
    font-size: 44px;
    font-weight: 800;
    color: var(--text);
    line-height: 1;
    margin-bottom: 6px;
}

.plan-price span {
    font-size: 18px;
    vertical-align: top;
    margin-top: 8px;
    display: inline-block;
    color: var(--text-muted);
}

.plan-period {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 28px;
}

.plan-features {
    list-style: none;
    margin-bottom: 32px;
}

.plan-features li {
    font-size: 14px;
    color: var(--text-muted);
    padding: 8px 0;
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    gap: 10px;
}

.plan-features li::before {
    content: '✓';
    color: var(--teal);
    font-weight: 700;
    font-size: 14px;
}

.plan-btn {
    width: 100%;
    padding: 13px;
    border-radius: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
}

.plan-btn-outline {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text);
}

.plan-btn-outline:hover {
    border-color: var(--blue-mid);
    color: var(--blue-mid);
}

.plan-btn-filled {
    background: linear-gradient(135deg, var(--blue-mid), var(--teal-dark));
    border: none;
    color: #fff;
    box-shadow: 0 4px 20px rgba(26, 111, 232, 0.3);
}

.plan-btn-filled:hover {
    box-shadow: 0 8px 32px rgba(26, 111, 232, 0.4);
    transform: translateY(-1px);
}

/* ============ CONTACT ============ */
#contact {
    padding: 100px 0;
}

.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-left h2 {
    font-family: 'Syne', sans-serif;
    font-size: 44px;
    font-weight: 800;
    color: var(--text);
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 18px;
}

.contact-left p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 36px;
    font-weight: 300;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    backdrop-filter: blur(10px);
}

.ci-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(26, 111, 232, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.ci-label {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.ci-value {
    font-size: 14px;
    color: var(--text);
    font-weight: 500;
}

.avail-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--teal);
    display: inline-block;
    margin-right: 6px;
    animation: pulse 2s infinite;
}

.contact-form {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 36px;
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    padding: 13px 16px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: var(--text);
    outline: none;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: rgba(26, 111, 232, 0.5);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-dim);
}

.form-group select {
    appearance: none;
}

.form-group textarea {
    height: 110px;
    resize: none;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-submit {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--blue-mid), var(--teal-dark));
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 24px rgba(26, 111, 232, 0.3);
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(26, 111, 232, 0.45);
}

/* ============ FOOTER ============ */
footer {
    padding: 48px 0;
    border-top: 1px solid var(--glass-border);
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    text-decoration: none;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 28px;
    margin-bottom: 24px;
    list-style: none;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--text);
}

.footer-copy {
    font-size: 13px;
    color: var(--text-dim);
}

.footer-copy span {
    color: var(--teal);
}

/* ============ SCROLL ANIMATIONS ============ */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-up:nth-child(2) {
    transition-delay: 0.1s;
}

.fade-up:nth-child(3) {
    transition-delay: 0.2s;
}

.fade-up:nth-child(4) {
    transition-delay: 0.3s;
}

.fade-up:nth-child(5) {
    transition-delay: 0.4s;
}

.fade-up:nth-child(6) {
    transition-delay: 0.5s;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {

    .hero-inner,
    .about-inner,
    .contact-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-visual {
        display: none;
    }

    .hero-title {
        font-size: 48px;
    }

    .services-grid,
    .portfolio-grid,
    .testimonials-grid,
    .pricing-grid {
        grid-template-columns: 1fr 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr 1fr;
    }

    .process-steps::before {
        display: none;
    }

    .container {
        padding: 0 24px;
    }

    .section-title {
        font-size: 34px;
    }

    .contact-left h2 {
        font-size: 34px;
    }

    .about-right h2 {
        font-size: 32px;
    }
}

@media (max-width: 600px) {

    .services-grid,
    .portfolio-grid,
    .testimonials-grid,
    .pricing-grid,
    .process-steps {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 38px;
    }

    .nav-links {
        display: none;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}