@charset "utf-8";

:root {
    --primary-color: #7c3aed;
    --secondary-color: #b93fcb;
    --accent-color: #231971;
    --accent-soft: #f4e8fb;
    --text-primary: #1f1f35;
    --text-secondary: #585a78;
    --text-light: #ffffff;
    --bg-primary: #ffffff;
    --bg-secondary: #faf7fd;
    --bg-dark: #120f2f;
    --bg-card: rgba(255, 255, 255, 0.92);
    --gradient-primary: linear-gradient(135deg, #b93fcb 0%, #7c3aed 55%, #231971 100%);
    --gradient-soft: linear-gradient(135deg, rgba(185, 63, 203, 0.12) 0%, rgba(124, 58, 237, 0.08) 100%);
    --shadow-sm: 0 10px 30px rgba(35, 25, 113, 0.08);
    --shadow-md: 0 18px 48px rgba(35, 25, 113, 0.12);
    --shadow-lg: 0 26px 70px rgba(35, 25, 113, 0.16);
    --radius-lg: 26px;
    --radius-md: 18px;
    --max-width: 1180px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Segoe UI", "Inter", Arial, sans-serif;
    color: var(--text-primary);
    background: var(--bg-primary);
    line-height: 1.65;
    overflow-x: hidden;
}

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

img {
    display: block;
    width: 100%;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

nav {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(124, 58, 237, 0.08);
    transition: all 0.3s ease;
}

nav.scrolled {
    box-shadow: 0 10px 35px rgba(35, 25, 113, 0.08);
    background: rgba(255, 255, 255, 0.95);
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links,
.mobile-nav-links {
    list-style: none;
}

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

.nav-links a {
    font-size: 0.95rem;
    color: var(--text-primary);
    position: relative;
    font-weight: 600;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.25s ease;
}

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.hamburger {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 999px;
    transition: all 0.3s ease;
}

.mobile-menu {
    position: fixed;
    inset: 72px 16px auto 16px;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(124, 58, 237, 0.1);
    box-shadow: var(--shadow-md);
    border-radius: 22px;
    padding: 18px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: all 0.25s ease;
    z-index: 999;
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.mobile-nav-links a {
    font-weight: 600;
    color: var(--text-primary);
}

.hero {
    position: relative;
    padding: 140px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background:
        radial-gradient(circle at 15% 20%, rgba(185, 63, 203, 0.18) 0%, transparent 28%),
        radial-gradient(circle at 85% 15%, rgba(124, 58, 237, 0.14) 0%, transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #fbf8fe 100%);
}

.hero-grid,
.why-grid,
.about-content {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 48px;
    align-items: center;
}

.hero-copy {
    position: relative;
    z-index: 2;
}

.hero-subtitle,
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 16px;
}

.hero h1,
.section-title {
    font-size: clamp(2.2rem, 4vw, 4.2rem);
    line-height: 1.06;
    letter-spacing: -0.04em;
}

.hero .subtitle,
.section-description,
.about-text p,
.why-copy p,
.contact-content p {
    color: var(--text-secondary);
    font-size: 1.08rem;
}

.hero .subtitle {
    margin: 22px 0 26px;
    max-width: 620px;
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
}

.hero-points span,
.skill-chip {
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.9);
    border: 1px solid rgba(124, 58, 237, 0.12);
    box-shadow: var(--shadow-sm);
    font-size: 0.95rem;
    color: var(--text-primary);
}

.hero-actions,
.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.cta-button,
.contact-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-weight: 700;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.cta-button {
    padding: 15px 24px;
    min-height: 54px;
}

.cta-button.primary {
    color: var(--text-light);
    background: var(--gradient-primary);
    box-shadow: var(--shadow-md);
}

.cta-button.secondary {
    color: var(--accent-color);
    background: rgba(255,255,255,0.9);
    border: 1px solid rgba(124, 58, 237, 0.14);
}

.cta-button:hover,
.contact-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.micro-note {
    margin-top: 18px;
    font-size: 0.92rem;
    color: #77789a;
}

.hero-card,
.about-image img,
.quote-card,
.info-card,
.result-card,
.contact-button {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.hero-card {
    overflow: hidden;
    background: white;
    border: 1px solid rgba(124, 58, 237, 0.08);
    transform: rotate(2deg);
}

.hero-card img {
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.floating-shapes,
.contact-floating-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.shape,
.contact-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
}

.shape-1 { width: 120px; height: 120px; background: rgba(185,63,203,0.12); top: 18%; left: 6%; }
.shape-2 { width: 70px; height: 70px; background: rgba(124,58,237,0.12); top: 70%; left: 8%; }
.shape-3 { width: 150px; height: 150px; background: rgba(35,25,113,0.08); top: 20%; right: 10%; }
.shape-4 { width: 90px; height: 90px; background: rgba(185,63,203,0.1); bottom: 10%; right: 18%; }

.scroll-indicator {
    position: absolute;
    bottom: 28px;
    left: 50%;
    width: 32px;
    height: 54px;
    border-radius: 999px;
    border: 2px solid rgba(35, 25, 113, 0.16);
    transform: translateX(-50%);
}

.scroll-indicator::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 50%;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--secondary-color);
    transform: translateX(-50%);
    animation: scrollDot 1.8s infinite;
}

@keyframes scrollDot {
    0% { opacity: 0; transform: translate(-50%, 0); }
    30% { opacity: 1; }
    100% { opacity: 0; transform: translate(-50%, 18px); }
}

section {
    padding: 110px 0;
}

.section-light {
    background: var(--bg-secondary);
}

.section-heading {
    margin-bottom: 42px;
}

.section-heading.center {
    text-align: center;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 48px;
}

.section-heading.light,
.section-heading.light .section-title,
.section-heading.light .section-description {
    color: var(--text-light);
}

.about-image img {
    aspect-ratio: 4 / 5.4;
    object-fit: cover;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.facts-grid,
.card-grid,
.mini-metrics {
    display: grid;
    gap: 18px;
}

.facts-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 10px;
}

.fact-card,
.info-card,
.result-card,
.quote-card {
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(124, 58, 237, 0.08);
    padding: 24px;
}

.fact-card strong,
.result-number,
.mini-metrics strong {
    display: block;
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 8px;
}

.fact-card span {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-card h3,
.result-card h3,
.quote-card h3 {
    font-size: 1.22rem;
    margin-bottom: 12px;
}

.info-card p,
.result-card p,
.quote-card p,
.contact-note {
    color: var(--text-secondary);
}

.result-number {
    font-size: 0.95rem;
    letter-spacing: 0.12em;
    color: var(--secondary-color);
}

.why-me {
    background:
        radial-gradient(circle at 8% 20%, rgba(185, 63, 203, 0.1) 0%, transparent 26%),
        linear-gradient(180deg, #ffffff 0%, #fcfafe 100%);
}

.benefits-list {
    list-style: none;
    display: grid;
    gap: 16px;
    margin-top: 18px;
}

.benefits-list li {
    position: relative;
    padding-left: 32px;
    color: var(--text-secondary);
    font-size: 1.04rem;
}

.benefits-list li::before {
    content: "•";
    position: absolute;
    left: 10px;
    top: -1px;
    font-size: 1.4rem;
    color: var(--secondary-color);
}

.quote-card {
    background: var(--gradient-soft);
}

.mini-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 22px;
}

.mini-metrics span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.contact {
    position: relative;
    background: linear-gradient(135deg, #161237 0%, #231971 55%, #3f2f93 100%);
    color: var(--text-light);
    overflow: hidden;
}

.contact-shape-1 { width: 180px; height: 180px; background: rgba(255,255,255,0.05); top: -30px; left: -50px; }
.contact-shape-2 { width: 120px; height: 120px; background: rgba(255,255,255,0.06); right: 8%; top: 16%; }
.contact-shape-3 { width: 240px; height: 240px; background: rgba(185,63,203,0.16); right: -60px; bottom: -60px; }
.contact-shape-4 { width: 90px; height: 90px; background: rgba(255,255,255,0.06); left: 12%; bottom: 14%; }

.contact-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.contact-actions {
    justify-content: center;
    margin-top: 30px;
}

.contact-button {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.12);
    color: var(--text-light);
    padding: 18px 22px;
    min-width: 250px;
    justify-content: flex-start;
    gap: 14px;
    text-align: left;
}

.contact-button small {
    display: block;
    color: rgba(255,255,255,0.72);
    margin-top: 4px;
}

.contact-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.16);
    font-size: 1.15rem;
}

.contact-note {
    margin-top: 22px;
    color: rgba(255,255,255,0.76);
}

.footer {
    background: #0d0b20;
    color: rgba(255,255,255,0.75);
    padding: 28px 0;
}

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

.fade-in,
.slide-in-left,
.slide-in-right,
.portfolio-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-left {
    transform: translateX(-22px);
}

.slide-in-right {
    transform: translateX(22px);
}

.fade-in.animate,
.slide-in-left.animate,
.slide-in-right.animate,
.portfolio-item.animate {
    opacity: 1;
    transform: translate(0, 0);
}

@media (max-width: 991px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-grid,
    .about-content,
    .why-grid,
    .card-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 120px;
        min-height: auto;
    }

    .hero-media {
        order: -1;
    }

    .hero-card {
        max-width: 440px;
        margin: 0 auto;
        transform: none;
    }

    .facts-grid,
    .mini-metrics {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    section {
        padding: 82px 0;
    }

    .container,
    .nav-container {
        padding-left: 18px;
        padding-right: 18px;
    }

    .hero h1,
    .section-title {
        font-size: 2.15rem;
    }

    .hero .subtitle,
    .section-description,
    .about-text p,
    .benefits-list li,
    .contact-content p {
        font-size: 1rem;
    }

    .facts-grid,
    .mini-metrics,
    .contact-actions {
        grid-template-columns: 1fr;
    }

    .contact-button {
        min-width: 100%;
    }

    .cta-button,
    .hero-actions {
        width: 100%;
    }

    .hero-actions .cta-button {
        width: 100%;
    }

    .scroll-indicator {
        display: none;
    }
}
