/* ===== Elegant Professional Theme ===== */
:root {
    /* Warm, sophisticated palette */
    --primary: #8b7355;
    --primary-light: #a89076;
    --accent: #c9a86c;
    --accent-glow: rgba(201, 168, 108, 0.2);

    /* Clean backgrounds */
    --bg-cream: #faf8f5;
    --bg-warm: #f5f2ed;
    --bg-card: #ffffff;

    /* Text colors */
    --text-dark: #2d2926;
    --text-medium: #5a5450;
    --text-light: #8a8580;

    /* Accents */
    --border-light: #e8e4de;
    --border-medium: #d4cfc6;

    /* Effects */
    --shadow-sm: 0 2px 8px rgba(45, 41, 38, 0.06);
    --shadow-md: 0 8px 24px rgba(45, 41, 38, 0.08);
    --shadow-lg: 0 16px 48px rgba(45, 41, 38, 0.12);

    --radius: 16px;
    --radius-sm: 8px;
    --radius-lg: 24px;
    --transition: all 0.3s ease;
}

/* ===== Reset & Base ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-cream);
    color: var(--text-dark);
    line-height: 1.75;
    font-size: 16px;
}

/* ===== Typography ===== */
h1,
h2,
h3,
h4 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-dark);
}

/* ===== Container ===== */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===== Navigation ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1rem 0;
    background: rgba(250, 248, 245, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-light);
}

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

.nav-logo {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--text-medium);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: var(--transition);
    position: relative;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    transition: var(--transition);
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    letter-spacing: 0.3px;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: transparent;
    color: var(--text-dark);
    border: 1.5px solid var(--border-medium);
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-ghost {
    background: transparent;
    color: var(--text-medium);
}

.btn-ghost:hover {
    color: var(--primary);
}

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 6rem;
    background: linear-gradient(180deg, var(--bg-cream) 0%, var(--bg-warm) 100%);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    border: 1px solid var(--border-light);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.8rem;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.hero-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(2.75rem, 5vw, 4rem);
    font-weight: 500;
    line-height: 1.15;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.hero-title span {
    display: block;
    color: var(--accent);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-description {
    font-size: 1.05rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
    max-width: 480px;
    line-height: 1.8;
}

.hero-description strong {
    color: var(--text-dark);
    font-weight: 600;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Photo Frame - Square with borders, no cropping */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-frame {
    position: relative;
    width: 380px;
    height: 440px;
    background: white;
    padding: 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
}

.image-frame::before {
    content: '';
    position: absolute;
    top: 10px;
    right: 10px;
    bottom: 10px;
    left: 10px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    pointer-events: none;
}

.image-frame img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: top center;
    border-radius: var(--radius-sm);
    background: var(--bg-warm);
}

.image-caption {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-light);
    white-space: nowrap;
}

/* ===== Sections ===== */
.section {
    padding: 6rem 0;
}

.section-alt {
    background: var(--bg-warm);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
}

.section-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 500;
    margin-bottom: 1rem;
}

.section-description {
    color: var(--text-medium);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== About Section ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-lead {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-content p {
    color: var(--text-medium);
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.about-content p strong {
    color: var(--primary);
}

.about-highlight {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
    margin-top: 2rem;
    box-shadow: var(--shadow-sm);
}

.highlight-icon {
    color: var(--accent);
    flex-shrink: 0;
}

.about-highlight strong {
    color: var(--primary);
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.stat-card {
    background: white;
    padding: 1.75rem;
    border-radius: var(--radius);
    text-align: center;
    border: 1px solid var(--border-light);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.stat-number {
    display: block;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--primary);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 0.25rem;
    letter-spacing: 0.5px;
}

/* ===== Skills Section ===== */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.skill-category {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.skill-category:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.skill-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-warm);
    border-radius: var(--radius-sm);
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.skill-category h3 {
    font-size: 1.15rem;
    margin-bottom: 1.25rem;
    font-weight: 600;
}

.skill-list {
    list-style: none;
}

.skill-list li {
    color: var(--text-medium);
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 0.95rem;
}

.skill-list li:last-child {
    border-bottom: none;
}

/* ===== Tools Section ===== */
.tools-section {
    background: white;
    padding: 3rem;
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

.tools-title {
    text-align: center;
    font-size: 1rem;
    margin-bottom: 2rem;
    color: var(--text-light);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 1.5rem;
}

.tool-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem;
    background: var(--bg-cream);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    cursor: default;
}

.tool-item:hover {
    background: var(--bg-warm);
}

.tool-icon {
    color: var(--primary);
}

.tool-item span {
    font-size: 0.8rem;
    color: var(--text-medium);
    text-align: center;
}

/* ===== Timeline / Experience ===== */
.timeline {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 2rem;
    padding-bottom: 3rem;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.marker-dot {
    width: 14px;
    height: 14px;
    background: var(--accent);
    border-radius: 50%;
    border: 3px solid var(--bg-cream);
    box-shadow: 0 0 0 2px var(--accent);
    flex-shrink: 0;
}

.marker-line {
    width: 1px;
    flex: 1;
    background: var(--border-medium);
    margin-top: 0.75rem;
}

.timeline-content {
    background: white;
    padding: 2rem;
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.timeline-content:hover {
    box-shadow: var(--shadow-md);
}

.timeline-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.timeline-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.timeline-company {
    color: var(--primary);
    font-weight: 500;
}

.timeline-date {
    font-size: 0.8rem;
    color: var(--text-light);
    background: var(--bg-warm);
    padding: 0.35rem 0.85rem;
    border-radius: 100px;
    letter-spacing: 0.5px;
}

.timeline-bullets {
    list-style: none;
    margin-bottom: 1.5rem;
}

.timeline-bullets li {
    color: var(--text-medium);
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
    line-height: 1.6;
}

.timeline-bullets li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--accent);
}

.timeline-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    background: var(--bg-warm);
    color: var(--text-medium);
    padding: 0.3rem 0.75rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* ===== Education Section ===== */
.education-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.education-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
    position: relative;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.education-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.education-featured {
    border-color: var(--accent);
    background: linear-gradient(180deg, white 0%, rgba(201, 168, 108, 0.03) 100%);
}

.education-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.education-icon {
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.education-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.education-school {
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.education-details {
    color: var(--text-medium);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.education-year {
    font-size: 0.85rem;
    color: var(--text-light);
}

.education-focus {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-light);
}

.education-focus h4 {
    font-size: 0.85rem;
    color: var(--text-medium);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.education-focus ul {
    list-style: none;
}

.education-focus li {
    color: var(--text-medium);
    font-size: 0.85rem;
    padding: 0.3rem 0;
    padding-left: 1rem;
    position: relative;
}

.education-focus li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent);
}

/* ===== Now / Next Section ===== */
.now-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.now-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

.now-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    margin-bottom: 1.5rem;
}

.now-icon-current {
    background: rgba(201, 168, 108, 0.15);
    color: var(--accent);
}

.now-icon-future {
    background: rgba(139, 115, 85, 0.1);
    color: var(--primary);
}

.now-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.now-card>p {
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.now-list {
    list-style: none;
}

.now-list li {
    color: var(--text-medium);
    padding: 0.5rem 0;
    padding-left: 1.75rem;
    position: relative;
    font-size: 0.95rem;
}

.now-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

/* ===== Career Targets ===== */
.career-targets {
    background: white;
    padding: 3rem;
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

.targets-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    text-align: center;
    font-weight: 500;
}

.targets-subtitle {
    color: var(--text-medium);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.targets-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.target-card {
    background: var(--bg-cream);
    padding: 1.5rem;
    border-radius: var(--radius-sm);
    text-align: center;
    transition: var(--transition);
}

.target-card:hover {
    background: var(--bg-warm);
    transform: translateY(-2px);
}

.target-icon {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    display: block;
}

.target-card h4 {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.target-card p {
    color: var(--text-light);
    font-size: 0.8rem;
    line-height: 1.5;
}

.targets-note {
    background: var(--bg-warm);
    padding: 1.5rem;
    border-radius: var(--radius-sm);
    color: var(--text-medium);
    text-align: center;
    font-size: 0.95rem;
}

.targets-note strong {
    color: var(--primary);
}

/* ===== Projects Section ===== */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.project-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.project-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.project-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-warm);
    border-radius: var(--radius-sm);
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.project-card h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.project-description {
    color: var(--text-medium);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.project-details {
    border-top: 1px solid var(--border-light);
    padding-top: 1.5rem;
}

.detail-row {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
}

.detail-label {
    color: var(--primary);
    font-weight: 600;
    flex-shrink: 0;
}

.detail-row span:last-child {
    color: var(--text-medium);
}

/* ===== Contact Section ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-card {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

.contact-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-warm);
    border-radius: var(--radius-sm);
    color: var(--primary);
    flex-shrink: 0;
}

.contact-card h4 {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0.25rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.contact-card a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
}

.contact-card a:hover {
    color: var(--primary);
}

.contact-card p {
    color: var(--text-dark);
}

.contact-cta {
    display: flex;
    align-items: center;
}

.cta-box {
    background: linear-gradient(135deg, var(--bg-warm) 0%, white 100%);
    border: 1px solid var(--border-light);
    padding: 3rem;
    border-radius: var(--radius);
    text-align: center;
    width: 100%;
    box-shadow: var(--shadow-sm);
}

.cta-box h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.75rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.cta-box p {
    color: var(--text-medium);
    margin-bottom: 2rem;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== Footer ===== */
.footer {
    background: var(--bg-warm);
    padding: 2.5rem 0;
    border-top: 1px solid var(--border-light);
}

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

.footer-content p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.footer-tagline {
    margin-top: 0.5rem;
    color: var(--primary);
}

/* ===== Mobile Responsive ===== */
@media (max-width: 1024px) {

    .skills-grid,
    .education-grid,
    .projects-grid,
    .targets-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .about-stats {
        grid-template-columns: repeat(4, 1fr);
    }

    .education-featured {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--bg-cream);
        flex-direction: column;
        padding: 6rem 2rem;
        gap: 1.5rem;
        transition: var(--transition);
        border-left: 1px solid var(--border-light);
    }

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

    .nav-toggle {
        display: flex;
        z-index: 101;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero-content {
        order: 2;
    }

    .hero-image {
        order: 1;
    }

    .image-frame {
        width: 280px;
        height: 340px;
    }

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

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

    .skills-grid,
    .education-grid,
    .projects-grid,
    .targets-grid,
    .now-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .education-featured {
        grid-column: span 1;
    }

    .timeline-item {
        grid-template-columns: 40px 1fr;
        gap: 1rem;
    }

    .timeline-header {
        flex-direction: column;
    }

    .contact-cta {
        order: -1;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1.25rem;
    }

    .section {
        padding: 4rem 0;
    }

    .hero {
        padding-top: 6rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

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

    .stat-number {
        font-size: 2rem;
    }

    .tools-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .cta-buttons {
        flex-direction: column;
    }
}

/* ===== Hidden Elements ===== */
.bg-grid,
.glow-orb,
.glow-orb-1,
.glow-orb-2,
.hero-scroll,
.scroll-indicator {
    display: none;
}