* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Space Grotesk', sans-serif;
}

:root {
    --bg: #0b0b1e;
    --bg-2: #131333;
    --primary: #00e5ff;
    --secondary: #a855f7;
    --accent: #ec4899;
    --text: #cbd5e1;
    --text-bright: #f1f5f9;
    --gradient: linear-gradient(135deg, #00e5ff 0%, #a855f7 50%, #ec4899 100%);
    --gradient-2: linear-gradient(135deg, #00e5ff 0%, #a855f7 100%);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --mono: 'JetBrains Mono', monospace;
}

html { scroll-behavior: smooth; }

body {
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* Animated Background */
.bg-gradient {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background:
        radial-gradient(circle at 15% 20%, rgba(0, 229, 255, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 85% 60%, rgba(168, 85, 247, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 50% 80%, rgba(236, 72, 153, 0.1) 0%, transparent 40%);
    z-index: -2;
    animation: bgShift 20s ease-in-out infinite;
}
@keyframes bgShift {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(3deg); }
}

#particles-js {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: -1;
    opacity: 0.5;
}

/* Glassmorphism */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientMove 4s ease infinite;
}
@keyframes gradientMove {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Navbar */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: calc(100% - 60px);
    max-width: 1200px;
    background: rgba(11, 11, 30, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    padding: 15px 30px;
    transition: all 0.4s ease;
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-bright);
    text-decoration: none;
    font-family: var(--mono);
    letter-spacing: -1px;
}
.logo span {
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.nav-links {
    display: flex;
    list-style: none;
    gap: 8px;
    align-items: center;
}
.nav-links a {
    color: var(--text);
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}
.nav-links a:hover {
    color: var(--text-bright);
    background: rgba(255, 255, 255, 0.05);
}
.nav-cta {
    background: var(--gradient-2);
    color: white;
    padding: 10px 22px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(168, 85, 247, 0.4);
}
.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.6);
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 30px 60px;
    position: relative;
}
.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 229, 255, 0.08);
    border: 1px solid rgba(0, 229, 255, 0.3);
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 13px;
    color: var(--primary);
    margin-bottom: 25px;
    font-family: var(--mono);
    font-weight: 500;
}
.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary);
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hero-name {
    font-size: clamp(40px, 6vw, 68px);
    font-weight: 700;
    color: var(--text-bright);
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 20px;
}
.hero-role {
    font-size: clamp(20px, 3vw, 28px);
    color: var(--text);
    margin-bottom: 25px;
    font-family: var(--mono);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
}
.typing-prefix { color: var(--primary); }
#typing {
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.cursor-blink {
    color: var(--primary);
    animation: blink 1s infinite;
    font-weight: 300;
}
@keyframes blink { 0%, 50% { opacity: 1; } 51%, 100% { opacity: 0; } }

.hero-desc {
    font-size: 17px;
    color: var(--text);
    max-width: 550px;
    margin-bottom: 35px;
    line-height: 1.7;
}
.highlight {
    color: var(--text-bright);
    font-weight: 600;
    position: relative;
}
.highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-2);
    border-radius: 2px;
}

.hero-actions { display: flex; gap: 15px; margin-bottom: 40px; flex-wrap: wrap; }
.btn {
    padding: 14px 28px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    font-family: inherit;
}
.btn-primary {
    background: var(--gradient-2);
    color: white;
    box-shadow: 0 8px 25px rgba(168, 85, 247, 0.4);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(168, 85, 247, 0.6);
}
.btn-ghost {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-bright);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}
.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    border-color: var(--primary);
}
.btn-full { width: 100%; justify-content: center; }

.hero-socials { display: flex; gap: 12px; }
.hero-socials a {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}
.hero-socials a:hover {
    background: var(--gradient-2);
    color: white;
    transform: translateY(-4px);
    border-color: transparent;
    box-shadow: 0 10px 25px rgba(168, 85, 247, 0.4);
}

/* Profile Container */
.hero-right { display: flex; justify-content: center; align-items: center; }
.profile-container {
    position: relative;
    width: 400px;
    height: 400px;
}
.profile-glow {
    position: absolute;
    inset: -30px;
    background: var(--gradient);
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
    animation: rotate 10s linear infinite;
}
.profile-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--gradient);
    padding: 3px;
    animation: rotate 15s linear infinite;
}
.profile-ring::before {
    content: '';
    position: absolute;
    inset: 3px;
    background: var(--bg);
    border-radius: 50%;
}
@keyframes rotate { to { transform: rotate(360deg); } }

.profile-image {
    position: absolute;
    inset: 12px;
    border-radius: 50%;
    overflow: hidden;
    z-index: 2;
    border: 3px solid var(--bg);
}
.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
}

.tech-orb {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    z-index: 3;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: floatOrb 4s ease-in-out infinite;
}
.orb-1 { top: 5%; left: -5%; color: #f89820; animation-delay: 0s; }
.orb-2 { top: 15%; right: -8%; color: #4b8bbe; animation-delay: 0.8s; }
.orb-3 { bottom: 20%; left: -10%; color: var(--primary); animation-delay: 1.6s; }
.orb-4 { bottom: 5%; right: -5%; color: #a4c639; animation-delay: 2.4s; }
.orb-5 { top: 50%; right: -12%; color: var(--accent); animation-delay: 3.2s; }
@keyframes floatOrb {
    0%, 100% { transform: translateY(0) rotate(0); }
    50% { transform: translateY(-15px) rotate(5deg); }
}

.scroll-hint {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text);
    font-size: 11px;
    font-family: var(--mono);
    letter-spacing: 3px;
    opacity: 0.6;
}
.scroll-line {
    width: 1px;
    height: 40px;
    background: var(--gradient-2);
    animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
    0%, 100% { transform: scaleY(1); transform-origin: top; }
    50% { transform: scaleY(0.3); transform-origin: bottom; }
}

/* Section Common */
section { padding: 120px 30px; position: relative; }
.section-header { margin-bottom: 70px; }
.section-header.center { text-align: center; }
.section-tag {
    display: inline-block;
    color: var(--primary);
    font-family: var(--mono);
    font-size: 13px;
    letter-spacing: 3px;
    margin-bottom: 15px;
    padding: 6px 15px;
    background: rgba(0, 229, 255, 0.08);
    border-radius: 100px;
    border: 1px solid rgba(0, 229, 255, 0.2);
}
.section-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    color: var(--text-bright);
    letter-spacing: -1.5px;
    line-height: 1.1;
}
.section-subtitle {
    color: var(--text);
    font-size: 17px;
    margin-top: 20px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* About */
.about-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: start;
}
.about-lead {
    font-size: 20px;
    color: var(--text-bright);
    line-height: 1.6;
    margin-bottom: 20px;
}
.about-main p {
    color: var(--text);
    margin-bottom: 18px;
    line-height: 1.8;
    font-size: 16px;
}
.about-main strong { color: var(--text-bright); font-weight: 600; }
.about-main em {
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-style: normal;
    font-weight: 600;
}
.about-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 40px;
}
.highlight-card {
    padding: 25px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}
.highlight-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 229, 255, 0.15);
}
.highlight-number {
    font-size: 40px;
    font-weight: 700;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 5px;
    line-height: 1;
}
.highlight-label {
    color: var(--text);
    font-size: 13px;
    font-family: var(--mono);
}

.about-side { display: flex; flex-direction: column; gap: 20px; }
.info-card {
    padding: 25px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}
.info-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 229, 255, 0.3);
    box-shadow: 0 15px 40px rgba(0, 229, 255, 0.1);
}
.info-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: var(--gradient-2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 5px 20px rgba(168, 85, 247, 0.3);
}
.info-card h4 {
    color: var(--text-bright);
    font-size: 16px;
    margin-bottom: 8px;
    font-weight: 600;
}
.info-card p { color: var(--text); font-size: 14px; line-height: 1.6; }
.info-card span { color: var(--primary); font-size: 12px; font-family: var(--mono); }

/* Skills */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}
.skill-block {
    padding: 35px;
}
.skill-block:hover {
    transform: translateY(-5px);
    border-color: rgba(168, 85, 247, 0.4);
    box-shadow: 0 15px 40px rgba(168, 85, 247, 0.15);
}
.skill-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}
.skill-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: var(--gradient-2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    box-shadow: 0 5px 20px rgba(168, 85, 247, 0.3);
}
.skill-header h3 {
    color: var(--text-bright);
    font-size: 20px;
    font-weight: 600;
}
.skill-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.skill-tags span {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-bright);
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 13px;
    font-family: var(--mono);
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
    cursor: default;
}
.skill-tags span:hover {
    background: var(--gradient-2);
    border-color: transparent;
    transform: translateY(-2px);
    color: white;
}

/* Projects */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}
.project-card {
    padding: 30px;
    position: relative;
    overflow: hidden;
}
.project-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: var(--gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.project-card:hover::before { transform: scaleX(1); }
.project-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 229, 255, 0.3);
    box-shadow: 0 20px 50px rgba(0, 229, 255, 0.15);
}
.project-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
}
.project-icon-wrap {
    width: 55px;
    height: 55px;
    border-radius: 14px;
    background: var(--gradient-2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    box-shadow: 0 8px 25px rgba(168, 85, 247, 0.3);
}
.project-actions { display: flex; gap: 12px; }
.project-actions a {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-bright);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid var(--glass-border);
    font-size: 14px;
}
.project-actions a:hover {
    background: var(--gradient-2);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
}
.project-card h3 {
    color: var(--text-bright);
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 600;
}
.project-card p {
    color: var(--text);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}
.project-tech { display: flex; flex-wrap: wrap; gap: 8px; }
.project-tech span {
    color: var(--primary);
    font-size: 12px;
    font-family: var(--mono);
    padding: 5px 12px;
    background: rgba(0, 229, 255, 0.08);
    border-radius: 100px;
    border: 1px solid rgba(0, 229, 255, 0.15);
}

/* Timeline */
.timeline { position: relative; max-width: 900px; margin: 0 auto; padding-left: 40px; }
.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 10px; bottom: 10px;
    width: 2px;
    background: var(--gradient);
    border-radius: 2px;
}
.timeline-item {
    position: relative;
    margin-bottom: 40px;
}
.timeline-marker {
    position: absolute;
    left: -33px;
    top: 30px;
}
.marker-dot {
    width: 16px;
    height: 16px;
    background: var(--gradient-2);
    border-radius: 50%;
    border: 3px solid var(--bg);
    box-shadow: 0 0 15px var(--primary);
}
.timeline-card { padding: 30px; }
.timeline-card:hover {
    transform: translateX(10px);
    border-color: rgba(168, 85, 247, 0.3);
    box-shadow: 0 15px 40px rgba(168, 85, 247, 0.15);
}
.timeline-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
    gap: 20px;
    flex-wrap: wrap;
}
.timeline-header h3 {
    color: var(--text-bright);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
}
.timeline-header h4 {
    color: var(--primary);
    font-size: 15px;
    font-weight: 500;
    font-family: var(--mono);
}
.timeline-date {
    color: var(--text);
    font-family: var(--mono);
    font-size: 13px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 100px;
    border: 1px solid var(--glass-border);
    white-space: nowrap;
}
.timeline-card p {
    color: var(--text);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 15px;
}
.timeline-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.timeline-tags span {
    color: var(--secondary);
    font-size: 12px;
    font-family: var(--mono);
    padding: 5px 12px;
    background: rgba(168, 85, 247, 0.08);
    border-radius: 100px;
    border: 1px solid rgba(168, 85, 247, 0.2);
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    margin-top: 60px;
}
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.contact-card {
    padding: 25px;
    display: flex;
    gap: 20px;
    align-items: center;
    text-decoration: none;
    color: inherit;
}
.contact-card:hover {
    transform: translateX(10px);
    border-color: rgba(0, 229, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 229, 255, 0.1);
}
.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: var(--gradient-2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 5px 20px rgba(168, 85, 247, 0.3);
}
.contact-card h4 { color: var(--text-bright); margin-bottom: 5px; font-size: 15px; }
.contact-card p { color: var(--text); font-size: 14px; }

.contact-form {
    padding: 35px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.contact-form input, .contact-form textarea {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    padding: 15px 20px;
    border-radius: 12px;
    color: var(--text-bright);
    font-family: inherit;
    font-size: 14px;
    transition: all 0.3s ease;
    resize: vertical;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--text); opacity: 0.6; }
.contact-form input:focus, .contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(0, 229, 255, 0.05);
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.15);
}

/* Footer */
.footer {
    padding: 60px 30px 30px;
    border-top: 1px solid var(--glass-border);
    background: rgba(11, 11, 30, 0.5);
    backdrop-filter: blur(10px);
}
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--glass-border);
    flex-wrap: wrap;
    gap: 20px;
}
.footer-brand p {
    color: var(--text);
    font-size: 14px;
    margin-top: 8px;
    font-family: var(--mono);
}
.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--glass-bg);
    color: var(--text-bright);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid var(--glass-border);
}
.footer-socials a:hover {
    background: var(--gradient-2);
    transform: translateY(-3px);
    border-color: transparent;
}
.footer-bottom { text-align: center; }
.footer-bottom p { color: var(--text); font-size: 13px; font-family: var(--mono); }
.footer-bottom strong {
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 968px) {
    .hero-container { grid-template-columns: 1fr; text-align: center; }
    .hero-desc { margin-left: auto; margin-right: auto; }
    .hero-actions, .hero-socials { justify-content: center; }
    .hero-badge { margin-left: auto; margin-right: auto; }
    .profile-container { width: 320px; height: 320px; margin: 0 auto; }
    .about-grid, .contact-grid { grid-template-columns: 1fr; }
    .skills-grid { grid-template-columns: 1fr; }
    .about-highlights { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .navbar { padding: 12px 20px; top: 10px; width: calc(100% - 20px); }
    .nav-links { display: none; }
    .nav-cta { padding: 8px 16px; font-size: 12px; }
    section { padding: 80px 20px; }
    .container { padding: 0 20px; }
    .form-row { grid-template-columns: 1fr; }
    .footer-content { flex-direction: column; text-align: center; }
    .timeline { padding-left: 30px; }
    .timeline-marker { left: -26px; }
}