:root {
    --blue: #3446ec;
    --blue-light: #4a5cf5;
    --blue-glow: rgba(52, 70, 236, 0.3);
    --black: #080810;
    --dark: #0e0e18;
    --card: #12121e;
    --card-border: rgba(52, 70, 236, 0.15);
    --white: #ffffff;
    --grey: #9090a8;
    --light-grey: #c0c0d8;
    --font-display: 'Syne', sans-serif;
    --font-mono: 'Space Mono', monospace;
    --font-body: 'DM Sans', sans-serif;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html { scroll-behavior: smooth; }

body {
    background-color: var(--black);
    color: var(--white);
    font-family: var(--font-body);
    overflow-x: hidden;
    cursor: none;
}

.cursor-dot {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--blue);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease;
}

.cursor-ring {
    position: fixed;
    width: 110px;
    height: 110px;
    border: 1.5px solid rgba(52, 70, 236, 0.6);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform 0.18s ease, width 0.2s ease, height 0.2s ease, opacity 0.2s ease;
}

body:has(a:hover) .cursor-ring,
body:has(button:hover) .cursor-ring {
    width: 54px;
    height: 54px;
    border-color: var(--blue);
}

.noise {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-size: 200px 200px;
}

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.4rem 4%;
    background: rgba(8, 8, 16, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: all 0.3s ease;
}

.nav.scrolled {
    padding: 1rem 4%;
    background: rgba(8, 8, 16, 0.95);
}

.nav-logo {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    text-decoration: none;
    letter-spacing: -1px;
}

.nav-logo span { color: var(--blue); }

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--grey);
    text-decoration: none;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

.nav-links a:hover { color: var(--white); }

.nav-cta {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 1.4rem;
    background: var(--blue);
    color: var(--white);
    text-decoration: none;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    border-radius: 50px;
    transition: background 0.3s ease, transform 0.2s ease;
}

.nav-cta:hover {
    background: var(--blue-light);
    transform: translateY(-1px);
}

.arrow-icon { font-size: 1rem; }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: none;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.35s ease;
    transform-origin: center;
}

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 85vw);
    height: 100vh;
    background: var(--dark);
    border-left: 1px solid var(--card-border);
    z-index: 99;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    padding: 4rem 3rem;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobile-menu.show { transform: translateX(0); }

.mobile-menu a {
    color: var(--light-grey);
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    transition: color 0.3s ease, transform 0.3s ease;
    display: block;
}

.mobile-menu a:hover {
    color: var(--blue);
    transform: translateX(8px);
}

section {
    position: relative;
    z-index: 1;
    padding: 2rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.section-tag {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--blue);
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 0.8rem;
}

.section-header {
    margin-bottom: 4rem;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.accent { color: var(--blue); }

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 8rem;
    position: relative;
    overflow: hidden;
}

.hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(52, 70, 236, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(52, 70, 236, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 0;
}

.hero-bg-grid::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 60% at 70% 50%, rgba(52, 70, 236, 0.1) 0%, transparent 70%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.4rem 1rem;
    border: 1px solid var(--card-border);
    border-radius: 50px;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--grey);
    margin-bottom: 2rem;
    background: rgba(52, 70, 236, 0.06);
    animation: fadeSlideUp 0.8s ease 0.1s both;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5); }
    50% { opacity: 0.7; box-shadow: 0 0 0 5px rgba(34, 197, 94, 0); }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(4rem, 9vw, 8.5rem);
    font-weight: 800;
    line-height: 0.9;
    letter-spacing: -0.04em;
    margin-bottom: 2rem;
}

.hero-title .line {
    display: block;
    overflow: hidden;
}

.hero-title .line-1 {
    animation: fadeSlideUp 0.8s ease 0.2s both;
}
.hero-title .line-2 {
    animation: fadeSlideUp 0.8s ease 0.35s both;
}
.hero-title .line-3 {
    animation: fadeSlideUp 0.8s ease 0.5s both;
}

.outline-text {
    -webkit-text-stroke: 2px rgba(255,255,255,0.3);
    color: transparent;
}

.hero-dot { color: var(--blue); -webkit-text-stroke: 0; }

.hero-sub {
    font-size: 1.1rem;
    color: var(--grey);
    max-width: 500px;
    line-height: 1.7;
    margin-bottom: 3rem;
    animation: fadeSlideUp 0.8s ease 0.65s both;
}

.hero-actions {
    display: flex;
    gap: 1.2rem;
    align-items: center;
    flex-wrap: wrap;
    animation: fadeSlideUp 0.8s ease 0.8s both;
}

.btn-primary {
    padding: 0.9rem 2rem;
    background: var(--blue);
    color: var(--white);
    text-decoration: none;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    border-radius: 8px;
    transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
}

.btn-primary:hover {
    background: var(--blue-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px var(--blue-glow);
}

.btn-ghost {
    padding: 0.9rem 1.5rem;
    color: var(--light-grey);
    text-decoration: none;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    transition: color 0.3s, border-color 0.3s;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.btn-ghost:hover {
    color: var(--white);
    border-color: rgba(255,255,255,0.3);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-top: 5rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255,255,255,0.06);
    animation: fadeSlideUp 0.8s ease 1s both;
    position: relative;
    z-index: 1;
}

.stat { text-align: left; }

.stat-num {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.04em;
    display: inline;
}

.stat-plus {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--blue);
}

.stat-label {
    display: block;
    font-size: 0.78rem;
    color: var(--grey);
    font-family: var(--font-mono);
    letter-spacing: 0.08em;
    margin-top: 0.2rem;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: rgba(255,255,255,0.08);
}

.scroll-hint {
    position: absolute;
    bottom: 2.5rem;
    right: 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    z-index: 1;
}

.scroll-hint span {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--grey);
    letter-spacing: 0.1em;
    writing-mode: vertical-rl;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--blue), transparent);
    animation: scroll-pulse 2s ease infinite;
}

@keyframes scroll-pulse {
    0%, 100% { opacity: 0.4; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.2); }
}

@keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.services { background: transparent; }

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.service-card {
    position: relative;
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.service-card::before {
    content: attr(data-num);
    position: absolute;
    top: 1.5rem;
    right: 1.8rem;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: rgba(52, 70, 236, 0.4);
    letter-spacing: 0.1em;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, var(--blue), var(--blue-light));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(52, 70, 236, 0.4);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 30px var(--blue-glow);
}

.service-card:hover::after { transform: scaleX(1); }

.service-icon {
    margin-bottom: 1.5rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(52, 70, 236, 0.08);
    border-radius: 12px;
    border: 1px solid rgba(52, 70, 236, 0.2);
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.service-card p {
    color: var(--grey);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.service-tags span {
    padding: 0.25rem 0.75rem;
    background: rgba(52, 70, 236, 0.1);
    border: 1px solid rgba(52, 70, 236, 0.2);
    border-radius: 50px;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--blue-light);
    letter-spacing: 0.05em;
}

.service-arrow {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 36px;
    height: 36px;
    background: rgba(52, 70, 236, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--blue);
    opacity: 0;
    transform: translateY(5px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.service-card:hover .service-arrow {
    opacity: 1;
    transform: translateY(0);
}

.portfolio {
    background: var(--dark);
    border-radius: 24px;
    padding: 5rem;
}

.portfolio-intro {
    color: var(--grey);
    font-size: 1rem;
    max-width: 600px;
    line-height: 1.7;
    margin-bottom: 3rem;
}

.slider-wrapper { position: relative; }

.slider-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.slider-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    background: transparent;
    color: var(--white);
    font-size: 1.2rem;
    cursor: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background: var(--blue);
    border-color: var(--blue);
}

.slide-counter {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--grey);
}

.container-slider {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

.slider {
    display: flex;
    align-items: stretch;
    gap: 2rem;
    width: max-content;
    transition: transform 0.7s cubic-bezier(0.77, 0, 0.175, 1);
}

.p {
    position: relative;
    width: 55vw;
    max-width: 800px;
    height: 55vh;
    min-height: 360px;
    border-radius: 16px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    flex-shrink: 0;
}

.p::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8,8,16,0.9) 0%, transparent 60%);
    z-index: 1;
}

.p1 { background-image: url('./images/p1.png'); background-color: #1a1a2e; }
.p2 { background-image: url('./images/p2.png'); background-color: #1a2a1a; }
.p3 { background-image: url('./images/p3.png'); background-color: #2a1a1a; }

.slide-info {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    z-index: 2;
}

.slide-tag {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--blue-light);
    letter-spacing: 0.1em;
    background: rgba(52, 70, 236, 0.2);
    border: 1px solid rgba(52, 70, 236, 0.3);
    padding: 0.2rem 0.7rem;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 0.6rem;
}

.slide-info h4 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.slide-info p {
    color: var(--grey);
    font-size: 0.9rem;
}

.skills {
    background: var(--dark);
    border-radius: 24px;
    padding: 5rem;
}

.skills-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem 5rem;
}

.skill-label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.7rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
}

.skill-pct {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--blue);
}

.skill-bar {
    height: 3px;
    background: rgba(255,255,255,0.07);
    border-radius: 10px;
    overflow: hidden;
}

.skill-fill {
    height: 100%;
    background: linear-gradient(to right, var(--blue), var(--blue-light));
    border-radius: 10px;
    width: 0%;
    transition: width 1.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.skill-fill.animated { width: var(--target-width, 100%); }

.about-grid {
 display: flex;
 align-items: center;
 gap: 5rem;
 justify-content: space-between;
}

.about-lead {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.about-text p {
    color: var(--grey);
    font-size: 0.95rem;
    line-height: 1.8;
    
}

.about-socials {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    flex-wrap: wrap;
}

.about-socials span {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--grey);
    letter-spacing: 0.08em;
}

.social-link {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    color: var(--light-grey);
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    padding-bottom: 2px;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.social-link:hover {
    color: var(--blue);
    border-color: var(--blue);
}

.about-visual { position: relative;
  }

.about-photo-frame {
    position: relative;
    width: 240px;
    height: 280px;
}

.about-photo {
    position: absolute;
    inset: 0;
    background-image: url('./images/TrainDevs.png');
    background-size: cover;
    background-position: center;
    border-radius: 50%;
    z-index: 1;
}

.about-photo-border {
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, var(--blue), transparent 40%, var(--blue) 80%, transparent);
    animation: spin 4s linear infinite;
    z-index: 0;
}

@keyframes spin { to { transform: rotate(360deg); } }

.about-numbers {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    text-align: right;
}

.big-num {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--white);
    display: block;
    line-height: 1;
}

.big-num sup {
    font-size: 1.2rem;
    color: var(--blue);
    vertical-align: super;
}

.num-label {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--grey);
    letter-spacing: 0.08em;
    display: block;
    margin-top: 0.3rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: 6rem;
    align-items: start;
}

.contact-intro {
    color: var(--grey);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.contact-detail {
    margin-bottom: 2rem;
}

.detail-label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--blue);
    letter-spacing: 0.15em;
    display: block;
    margin-bottom: 0.4rem;
}

.detail-value {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

a.detail-value:hover { color: var(--blue); }

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--grey);
    letter-spacing: 0.1em;
}

.form-group input,
.form-group textarea {
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: 10px;
    padding: 0.9rem 1.2rem;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    outline: none;
    resize: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(144, 144, 168, 0.5);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: rgba(52, 70, 236, 0.5);
    box-shadow: 0 0 0 3px rgba(52, 70, 236, 0.1);
}

.form-submit {
    align-self: flex-start;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2.2rem;
    background: var(--blue);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    cursor: none;
    transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
}

.form-submit:hover {
    background: var(--blue-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px var(--blue-glow);
}

.form-submit .btn-icon {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.form-submit:hover .btn-icon { transform: translateX(3px) translateY(-3px); }

.footer {
    border-top: 1px solid rgba(255,255,255,0.04);
    padding: 2.5rem 5%;
    position: relative;
    z-index: 1;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 800;
}

.footer-logo span { color: var(--blue); }

.footer-copy {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--grey);
    letter-spacing: 0.05em;
    text-align: center;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--grey);
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: color 0.3s;
}

.footer-links a:hover { color: var(--blue); }

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1024px) {
    .services-grid { grid-template-columns: 1fr; }
    .about-grid { flex-direction: column; text-align: center; }
    .about-visual { display: flex; justify-content: center; }
    .about-numbers { flex-direction: row; justify-content: center; text-align: center; }
    .about-numbers .big-num { font-size: 2rem; }
    .contact-grid { grid-template-columns: 1fr; gap: 3rem; }

}

@media (max-width: 768px) {
    .nav-links, .nav-cta { display: none; }
    .hamburger { display: flex; }
    .slide-info h4 {
    font-family: var(--font-display);
    font-size: 0.5rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}
.slide-info p {
    display: none;
}
    section { padding: 1rem 5%; }
    
    .hero-title { font-size: clamp(3rem, 12vw, 5rem); }
    .hero-stats { flex-direction: column; gap: 2rem; align-items: flex-start; }
    .stat-divider { display: none; }
    
    .services-grid { grid-template-columns: 1fr; }
    .portfolio { padding: 2.5rem; }
    .skills { padding: 2.5rem; }
    .skills-grid { grid-template-columns: 1fr; gap: 2rem; }
    
    .p { width: 80vw; height: 260px; }
    
    .about-numbers { flex-wrap: wrap; }
    .form-row { grid-template-columns: 1fr; }
    
    .footer-inner { flex-direction: column; text-align: center; }
    
    .cursor-dot, .cursor-ring { display: none; }
    body { cursor: auto; }
    * { cursor: auto !important; }
}

@media (max-width: 480px) {
    .hero-actions { flex-direction: column; align-items: flex-start; }
    .hero-badge { font-size: 0.65rem; }
    .section-header h2 { font-size: 2rem; }
    .about-numbers { flex-direction: column; gap: 1.5rem; }
}
