@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;600;700&display=swap");

:root {
    --color-bg: #050914;
    --color-surface: rgba(12, 20, 40, 0.78);
    --color-card: rgba(25, 45, 82, 0.86);
    --color-panel: rgba(18, 32, 60, 0.88);
    --color-highlight: rgba(249, 115, 22, 0.22);
    --color-glass: rgba(56, 189, 248, 0.14);
    --color-text: #f8fafc;
    --color-muted: #9fb0d3;
    --color-primary: #f97316;
    --color-accent: #38bdf8;
    --color-border: rgba(148, 163, 184, 0.22);
    --shadow-card: 0 42px 80px rgba(4, 7, 15, 0.65);
    --shadow-soft: 0 32px 68px rgba(5, 10, 32, 0.55);
    --radius-xl: 32px;
    --radius-lg: 26px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Noto Sans", "Segoe UI", "Arial", sans-serif;
    color: var(--color-text);
    background:
        radial-gradient(circle at 12% 18%, rgba(249, 115, 22, 0.24), transparent 55%),
        radial-gradient(circle at 85% 20%, rgba(56, 189, 248, 0.18), transparent 60%),
        linear-gradient(135deg, #04070f 0%, #091331 45%, #040813 100%);
    min-height: 100vh;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--color-accent);
    text-decoration: none;
}

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

h1, h2, h3 {
    margin: 0;
    line-height: 1.2;
    color: var(--color-text);
}

.page {
    max-width: 960px;
    margin: 0 auto;
    padding: 72px 24px 96px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.profile-card {
    position: relative;
    display: flex;
    gap: 36px;
    align-items: center;
    padding: 48px;
    background: var(--color-panel);
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-card);
    overflow: hidden;
    backdrop-filter: blur(22px);
}

.profile-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 18%, var(--color-highlight), transparent 55%),
                radial-gradient(circle at 78% -6%, rgba(56, 189, 248, 0.22), transparent 50%);
    pointer-events: none;
}

.profile-photo {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    width: 243px;
    height: 243px;
    border-radius: 54px;
    margin-left: -10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.55), rgba(124, 58, 237, 0.45));
    box-shadow: var(--shadow-soft);
}

.profile-photo::after {
    content: "";
    position: absolute;
    inset: 6px;
    border-radius: 45px;
    border: 1px solid rgba(248, 250, 252, 0.22);
}

.profile-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 45px;
}

.profile-info {
    position: relative;
    z-index: 1;
    margin-left: -12px;
}

.eyebrow {
    text-transform: uppercase;
    font-size: 0.78rem;
    letter-spacing: 0.32em;
    color: var(--color-primary);
    font-weight: 700;
}

.profile-info h1 {
    margin: 18px 0 14px;
    font-size: clamp(2.4rem, 4vw, 3rem);
}

.tagline {
    margin: 0;
    color: var(--color-muted);
    font-size: 1.05rem;
    max-width: 520px;
}

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 28px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.button.primary {
    background: linear-gradient(120deg, var(--color-primary), #fb923c);
    color: #0f172a;
    box-shadow: 0 24px 46px rgba(249, 115, 22, 0.4);
}

.button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 32px 60px rgba(249, 115, 22, 0.48);
}

.button.secondary {
    background: rgba(56, 189, 248, 0.14);
    color: var(--color-text);
    border-color: rgba(56, 189, 248, 0.35);
}

.button.secondary:hover {
    background: rgba(56, 189, 248, 0.2);
}

main {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.section {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    padding: 40px 44px;
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(18px);
}

.section.social {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 28px 32px;
}

.section h2 {
    font-size: 1.85rem;
    margin-bottom: 22px;
}

.section.social h2 {
    margin-bottom: 0;
}

.section p {
    margin: 0;
    color: var(--color-muted);
}

.grid.three {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-top: 26px;
}

.grid.three article {
    position: relative;
    background: rgba(20, 34, 64, 0.88);
    border-radius: 22px;
    padding: 26px 24px;
    border: 1px solid rgba(148, 163, 184, 0.16);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.grid.three article:hover {
    transform: translateY(-6px);
    border-color: rgba(248, 250, 252, 0.32);
    box-shadow: 0 26px 46px rgba(8, 12, 28, 0.55);
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 32px 0 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.service-list li {
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: rgba(20, 31, 59, 0.9);
    border-radius: 22px;
    padding: 22px 26px;
    border: 1px solid rgba(148, 163, 184, 0.16);
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.service-list li:hover {
    transform: translateY(-4px);
    border-color: rgba(248, 250, 252, 0.32);
}

.service-title {
    font-weight: 600;
    font-size: 1.05rem;
}

.service-meta {
    color: var(--color-muted);
    font-size: 0.95rem;
}

.social-buttons {
    margin-top: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    align-items: stretch;
    justify-items: stretch;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    border-radius: 22px;
    font-weight: 600;
    color: #ffffff;
    box-shadow: 0 22px 50px rgba(8, 12, 28, 0.55);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease, border 0.2s ease;
    border: 1px solid transparent;
    position: relative;
    padding: 18px 20px;
    min-height: 108px;
    width: 100%;
}

.social-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.12);
}

.social-icon i {
    font-size: 1.9rem;
}

.social-label {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-align: center;
    color: inherit;
}

.social-link.gmail .social-label {
    color: #ea4335;
}

.social-link.instagram {
    background: linear-gradient(135deg, #f58529 0%, #dd2a7b 52%, #8134af 100%);
}

.social-link.facebook {
    background: #1877f2;
}

.social-link.tiktok {
    background: linear-gradient(135deg, #25f4ee 0%, #000000 48%, #fe2c55 100%);
}

.social-link.gmail {
    background: linear-gradient(135deg, #ffffff 0%, #fef4f3 100%);
    color: #ea4335;
    border: 1px solid rgba(234, 67, 53, 0.35);
    box-shadow: 0 22px 50px rgba(234, 67, 53, 0.25);
}

.social-link.gmail .social-icon {
    background: transparent;
    border: 1px solid rgba(234, 67, 53, 0.18);
}

.social-link:hover {
    transform: translateY(-6px);
    box-shadow: 0 32px 64px rgba(5, 10, 32, 0.65);
    filter: brightness(1.08);
}

.social-link.gmail:hover {
    filter: none;
    box-shadow: 0 34px 68px rgba(234, 67, 53, 0.38);
}

.gmail-icon {
    width: 52px;
    height: 40px;
    background: transparent;
}

.gmail-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
}

.footer {
    text-align: center;
    color: inherit;
    color: var(--color-muted);
    font-size: 0.95rem;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-contact a {
    font-weight: 600;
    color: var(--color-text);
}

.footer-note {
    margin: 0;
}

.back-link {
    font-weight: 600;
    color: var(--color-accent);
}

.back-link:hover {
    text-decoration: underline;
}

@media (max-width: 860px) {
    .profile-card {
        flex-direction: column;
        text-align: center;
    color: inherit;
        padding: 42px 32px;
    }

    .profile-photo {
        margin: 0 auto;
    }

    .profile-info {
        margin-left: 0;
    }

    .profile-info h1 {
        font-size: clamp(2.1rem, 8vw, 2.7rem);
    }

    .tagline {
        margin: 0 auto;
    }

    .contact-actions {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .page {
        padding: 52px 18px 72px;
        gap: 30px;
    }

    .section {
        padding: 34px 26px;
    }

    .section.social {
        padding: 24px;
        gap: 18px;
    }

    .social-buttons {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px;
        justify-items: stretch;
    }

    .social-link {
        width: 100%;
        min-height: 104px;
        padding: 16px;
    }

    .social-label {
        font-size: 0.78rem;
    }
}


