/* =================================================================
   DESIGN SYSTEM
   ================================================================= */
:root {
    /* Colors */
    --bg: #050508;
    --bg2: #0C0C14;
    --card: #11111C;
    --card-h: #1a1a2e;
    --border: rgba(255, 255, 255, 0.06);
    --border-a: rgba(0, 212, 255, 0.35);
    --cyan: #00D4FF;
    --purple: #7C3AED;
    --green: #00C896;
    --red: #FF4444;
    --text: #FFFFFF;
    --text2: #8892A4;
    --text3: #6b7280;
    --grad: linear-gradient(135deg, #00D4FF 0%, #7C3AED 100%);

    /* Radii */
    --r-md: 12px;
    --r-lg: 20px;

    /* Typography */
    --fs-hero: clamp(28px, 4.2vw, 48px);
    --fs-3xl: clamp(34px, 5.5vw, 56px);
    --fs-2xl: clamp(26px, 4vw, 38px);
    --fs-xl: clamp(20px, 2.5vw, 26px);
    --fs-lg: clamp(16px, 1.8vw, 19px);
    --fs-base: clamp(14px, 1.4vw, 16px);
    --fs-sm: clamp(12px, 1.2vw, 14px);
}

/* Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg);
    background-image:
        radial-gradient(ellipse at 15% 15%, rgba(0, 212, 255, 0.08) 0%, transparent 55%),
        radial-gradient(ellipse at 85% 85%, rgba(124, 58, 237, 0.08) 0%, transparent 55%),
        linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
    background-size: auto, auto, 60px 60px, 60px 60px;
    background-attachment: fixed;
    color: var(--text);
    line-height: 1.6;
    font-size: var(--fs-base);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Space Grotesk', sans-serif;
    color: var(--text);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

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

.w-full {
    width: 100%;
}

.text-center {
    text-align: center;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.mt-auto {
    margin-top: auto;
}

.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.section-padding {
    padding: clamp(60px, 10vw, 120px) 0;
}

.section-padding-lg {
    padding-top: clamp(80px, 12vw, 160px);
    padding-bottom: clamp(60px, 10vw, 120px);
}

section {
    position: relative;
    overflow: hidden;
}

#home {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Section Headers */
.section-header {
    margin-bottom: 50px;
    text-align: center;
}

.section-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 16px;
}

.section-title {
    font-size: var(--fs-3xl);
    font-weight: 700;
    margin-bottom: 20px;
}

.section-sub {
    font-size: var(--fs-lg);
    color: var(--text2);
    max-width: 600px;
}

/* =================================================================
   COMPONENTS
   ================================================================= */

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    padding: 14px 32px;
    font-size: var(--fs-base);
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: 'Space Grotesk', sans-serif;
}

.btn-primary {
    background: var(--grad);
    color: white;
    box-shadow: 0 4px 14px rgba(0, 212, 255, 0.1);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 212, 255, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--cyan);
    border: 1px solid var(--cyan);
}

.btn-secondary:hover {
    background: rgba(0, 212, 255, 0.08);
}

.btn-ghost {
    background: var(--card);
    border: 1px solid var(--border);
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    color: var(--text2);
}

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

/* Animations */
.reveal,
.reveal-up,
.reveal-left,
.reveal-right {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal,
.reveal-up {
    transform: translateY(40px);
}

.reveal-left {
    transform: translateX(-40px);
}

.reveal-right {
    transform: translateX(40px);
}

.reveal.visible,
.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible {
    opacity: 1;
    transform: translate(0, 0);
}

/* =================================================================
   NAVBAR
   ================================================================= */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 24px 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

#navbar.scrolled {
    padding: 16px 0;
    background: rgba(5, 5, 8, 0.85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 26px;
    font-weight: 700;
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-size: var(--fs-sm);
    font-weight: 500;
    color: var(--text2);
    transition: color 0.2s;
    position: relative;
}

.nav-link:hover {
    color: white;
}

.nav-link.active {
    color: white;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--grad);
    border-radius: 2px;
}

.nav-right {
    display: flex;
    align-items: center;
}

.hamburger {
    display: none;
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
}

/* =================================================================
   HERO 
   ================================================================= */
.hero {
    min-height: 100vh;
    padding-top: clamp(80px, 15vh, 120px);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: 32px;
    width: 100%;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--card);
    border-radius: 999px;
    padding: 6px 14px;
    font-size: 11px;
    font-weight: 500;
    border: 1px solid var(--border);
    margin-bottom: 12px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 rgba(0, 200, 150, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 200, 150, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(0, 200, 150, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 200, 150, 0);
    }
}

.hero-name {
    font-family: 'JetBrains Mono', monospace;
    color: var(--cyan);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 12px;
    margin-bottom: 8px;
}

.hero-title {
    font-size: var(--fs-hero);
    line-height: 1.05;
    font-weight: 800;
    margin-bottom: 12px;
    text-wrap: balance;
}

.hero-sub {
    font-size: clamp(14px, 1.6vw, 17px);
    color: var(--text2);
    line-height: 1.5;
    max-width: 480px;
    margin-bottom: 12px;
}

.pain-ticker {
    background: var(--card);
    padding: 6px 14px;
    border-radius: 999px;
    display: inline-block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    margin-bottom: 16px;
    border: 1px solid var(--border);
}

.ticker-prefix {
    color: var(--text2);
}

.ticker-text {
    color: white;
    display: inline-block;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.hero-socials {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.hero-stats {
    display: flex;
    gap: clamp(16px, 3vw, 32px);
    margin-top: 16px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 28px;
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 12px;
    color: var(--text2);
}

.hero-right {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-photo-ring {
    width: clamp(240px, 32vw, 380px);
    height: clamp(240px, 32vw, 380px);
    border-radius: 50%;
    border: 2px solid rgba(0, 212, 255, 0.3);
    box-shadow: 0 0 80px rgba(0, 212, 255, 0.15);
    animation: float 4s ease-in-out infinite;
    overflow: hidden;
    position: relative;
    background: var(--card);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.1);
}

.hero-photo-ring img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 2;
}

.hero-circle-bg {
    position: absolute;
    width: 120%;
    height: 120%;
    background: var(--grad);
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.12;
    z-index: -1;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-14px);
    }

    100% {
        transform: translateY(0);
    }
}

/* =================================================================
   SERVICES (What I Build)
   ================================================================= */
.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.service-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 28px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: var(--cyan);
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.1);
}

.service-icon {
    width: 52px;
    height: 52px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cyan);
    margin-bottom: 24px;
}

.service-title {
    font-size: var(--fs-2xl);
    font-weight: 700;
    margin-bottom: 24px;
}

.problem-box {
    background: rgba(255, 68, 68, 0.07);
    border: 1px solid rgba(255, 68, 68, 0.15);
    border-radius: 10px;
    padding: 16px;
    margin-bottom: 32px;
}

.problem-label {
    color: var(--red);
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.solution-list {
    margin-bottom: 32px;
}

.solution-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--text2);
}

.solution-list .check {
    color: var(--green);
    width: 18px;
}

.service-tags {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: var(--text3);
    margin-bottom: 40px;
    line-height: 1.8;
}

/* =================================================================
   PROJECTS
   ================================================================= */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.project-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.project-card:hover {
    transform: translateY(-6px);
    border-color: var(--cyan);
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.1);
}

.project-images {
    height: 200px;
    display: flex;
    gap: 2px;
    background: var(--bg2);
    border-bottom: 1px solid var(--border);
}

.project-images img {
    width: 50%;
    height: 100%;
    object-fit: cover;
}

.project-images.single-img img {
    width: 100%;
    object-fit: contain;
    padding: 20px;
}

.project-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.project-category {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: var(--cyan);
    margin-bottom: 12px;
}

.project-title {
    font-size: var(--fs-xl);
    font-weight: 700;
    margin-bottom: 6px;
}

.project-tagline {
    color: var(--text2);
    margin-bottom: 24px;
}

.live-badge {
    background: rgba(0, 200, 150, 0.1);
    color: var(--green);
    border: 1px solid rgba(0, 200, 150, 0.2);
    font-size: 11px;
    padding: 4px 12px;
    border-radius: 99px;
    font-family: 'JetBrains Mono', monospace;
}

.prob-res-block {
    margin-bottom: 24px;
}

.p-block {
    padding: 12px;
    border-radius: 8px;
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 12px;
}

.pb-prob {
    background: rgba(255, 68, 68, 0.05);
    border: 1px solid rgba(255, 68, 68, 0.1);
}

.pb-res {
    background: rgba(0, 200, 150, 0.05);
    border: 1px solid rgba(0, 200, 150, 0.1);
}

.pr-label {
    display: block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.pb-prob .pr-label {
    color: var(--red);
}

.pb-res .pr-label {
    color: var(--green);
}

.project-tech {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: var(--text3);
    margin-bottom: 32px;
    margin-top: auto;
}

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

.span-grid {
    grid-column: 1 / -1;
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
}

/* =================================================================
   N8N WORKFLOWS
   ================================================================= */
.automation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 40px;
}

.auto-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 24px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: all 0.3s ease;
    position: relative;
}

.auto-card:hover {
    background: var(--card-h);
    border-color: var(--border-a);
    transform: translateY(-4px);
}

.auto-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    font-weight: 500;
    opacity: 0.6;
    position: absolute;
    top: 28px;
    right: 28px;
}

.auto-iconbox {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(0, 212, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.auto-title {
    font-size: var(--fs-base);
    font-weight: 700;
    margin-bottom: 6px;
}

.auto-desc {
    font-size: 14px;
    color: var(--text2);
    line-height: 1.6;
}

.strip-banner {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.06), rgba(124, 58, 237, 0.06));
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 32px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.strip-text h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 4px;
}

.strip-text p {
    font-size: 15px;
    color: var(--text2);
}

/* =================================================================
   TECH STACK
   ================================================================= */
.skills-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    color: var(--text2);
    transition: all 0.2s;
    cursor: default;
}

.badge:hover {
    border-color: var(--border-a);
    color: var(--text);
    background: var(--card-h);
    transform: translateY(-2px);
}

.badge svg {
    width: 16px;
}

/* =================================================================
   PRICING
   ================================================================= */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 28px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-6px);
    border-color: var(--cyan);
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.1);
}

.pricing-card.featured {
    border-color: var(--cyan);
    background: linear-gradient(180deg, rgba(0, 212, 255, 0.05) 0%, var(--card) 40%);
    box-shadow: 0 0 60px rgba(0, 212, 255, 0.1);
    transform: scale(1.02);
}

.pop-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--cyan);
    color: white;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    padding: 4px 16px;
    border-radius: 99px;
    font-weight: 600;
}

.ghost-badge {
    background: var(--card);
    border: 1px solid var(--border);
    color: var(--text);
}

.green-badge {
    background: var(--green);
}

.p-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
    color: var(--text2);
}

.p-price {
    font-size: clamp(34px, 4vw, 42px);
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    margin-bottom: 4px;
}

.p-suffix {
    font-size: 18px;
    color: var(--text3);
}

.p-sublabel {
    font-size: 15px;
    color: var(--text2);
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.p-features {
    margin-bottom: 40px;
}

.p-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 14px;
}

.p-features .check {
    color: var(--cyan);
    width: 18px;
    flex-shrink: 0;
}

.pricing-trust {
    text-align: center;
    font-size: 15px;
    color: var(--text2);
    margin-top: 40px;
}

/* =================================================================
   ABOUT
   ================================================================= */
.about-grid {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 60px;
    align-items: center;
}

.about-p {
    margin-bottom: 24px;
    font-size: 16px;
    color: var(--text2);
}

.about-stats {
    display: flex;
    gap: 24px;
    margin: 32px 0;
}

.a-stat-box {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 15px;
    font-weight: 600;
}

.a-stat-num {
    font-size: 24px;
    display: block;
}

.about-btns {
    display: flex;
    gap: 16px;
}

.about-promises {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.promise-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    padding: 24px;
    transition: all 0.3s;
}

.promise-card:hover {
    border-color: var(--border-a);
    transform: translateY(-4px);
}

.promise-icon {
    font-size: 28px;
    margin-bottom: 16px;
}

.promise-title {
    font-size: var(--fs-base);
    font-weight: 700;
    margin-bottom: 8px;
}

.promise-txt {
    font-size: 14px;
    color: var(--text2);
    line-height: 1.5;
}

/* =================================================================
   CONTACT
   ================================================================= */
.contact-grid {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 60px;
}

.trust-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--text2);
    font-size: 14px;
    transition: color 0.2s;
}

.trust-item:hover {
    color: white;
}

.t-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(0, 212, 255, 0.08);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cyan);
}

.t-icon svg {
    width: 18px;
}

.availability-badges {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.a-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text2);
    margin-bottom: 2px;
}

.a-badge svg {
    width: 16px;
    color: var(--text3);
}

.dot-green {
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
}

#contactForm {
    background: var(--card);
    padding: 40px;
    border-radius: var(--r-lg);
    border: 1px solid var(--border);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text3);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    padding: 14px 18px;
    color: var(--text);
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--cyan);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.form-group input:invalid:focus,
.form-group textarea:invalid:focus {
    border-color: var(--red);
}

.form-disclaimer {
    text-align: center;
    font-size: 13px;
    color: var(--text3);
    margin-top: 16px;
}

/* =================================================================
   FOOTER
   ================================================================= */
#footer {
    background: var(--bg2);
    border-top: 1px solid var(--border);
    padding: 60px 0 32px;
    margin-top: 0;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

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

.footer-logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 28px;
    font-weight: 700;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
}

.footer-tagline {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--text2);
    line-height: 1.7;
    text-align: left;
    /* Prompt says align center in mobile, left is default here? */
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 32px;
    justify-content: center;
    padding: 24px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.footer-link {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--text2);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-link:hover {
    color: var(--text);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-copy,
.footer-built {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: var(--text3);
}

/* Scroll To Top */
#scrollTop {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--grad);
    color: white;
    border: none;
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s, transform 0.3s;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.3);
}

#scrollTop.visible {
    opacity: 1;
    transform: translateY(0);
}

#scrollTop:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 212, 255, 0.4);
}

/* =================================================================
   RESPONSIVE BREAKPOINTS
   ================================================================= */
@media (max-width: 1200px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .hero-grid {
        gap: 30px;
    }

    .hero-photo-ring {
        width: clamp(260px, 30vw, 360px);
        height: clamp(260px, 30vw, 360px);
    }
}

@media (max-width: 1024px) {
    .hero {
        height: auto;
        padding-top: 120px;
        padding-bottom: 80px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-left {
        order: 2;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-right {
        order: 1;
    }

    .hero-sub {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-stats {
        justify-content: center;
    }

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

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .automation-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .d-none-mobile {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--bg2);
        border-left: 1px solid var(--border);
        flex-direction: column;
        padding: 80px 40px;
        gap: 30px;
        text-align: left;
        box-shadow: -20px 0 40px rgba(0, 0, 0, 0.5);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
    }

    .nav-links.open {
        right: 0;
    }

    .nav-link {
        font-size: 20px;
    }

    .hero-photo-ring {
        width: 220px;
        height: 220px;
    }

    .hero-title {
        font-size: clamp(32px, 10vw, 52px);
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

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

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

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

    .footer-tagline {
        text-align: center;
    }

    .footer-bottom {
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .about-promises {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        gap: 20px;
    }

    .stat-item {
        min-width: 80px;
    }

    #contactForm {
        padding: 24px;
    }
}