:root {
    --blue: #0a84ff;
    --blue-dark: #0067d4;
    --blue-soft: rgba(10, 132, 255, 0.12);
    --blue-border: rgba(10, 132, 255, 0.24);
    --green: #12b981;
    --green-soft: rgba(18, 185, 129, 0.12);
    --amber: #f59e0b;
    --amber-soft: rgba(245, 158, 11, 0.13);
    --bg: #f4f8ff;
    --bg-alt: #edf4ff;
    --surface: rgba(255, 255, 255, 0.9);
    --surface-solid: #ffffff;
    --text: #101828;
    --muted: #475467;
    --line: rgba(15, 23, 42, 0.08);
    --shadow: 0 18px 45px rgba(13, 37, 73, 0.12);
    --shadow-soft: 0 10px 24px rgba(13, 37, 73, 0.08);
    --radius-xl: 28px;
    --radius-lg: 22px;
    --radius-md: 16px;
    --max-width: 1150px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background:
        radial-gradient(circle at top left, rgba(10, 132, 255, 0.14), transparent 34%),
        linear-gradient(180deg, #f8fbff 0%, #f4f8ff 100%);
    color: var(--text);
    line-height: 1.65;
}

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

a {
    color: inherit;
}

button {
    font: inherit;
}

main {
    overflow: hidden;
}

.navbar {
    width: 100%;
    padding: 16px 6%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.logo {
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.logo a {
    text-decoration: none;
    color: var(--blue);
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 22px;
}

.nav-links a {
    text-decoration: none;
    color: var(--muted);
    font-weight: 500;
    position: relative;
    transition: color 0.25s ease;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: var(--blue);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.nav-links a:hover,
.nav-links a.is-current {
    color: var(--blue);
}

.nav-links a:hover::after,
.nav-links a.is-current::after {
    transform: scaleX(1);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    border: none;
    background: transparent;
    cursor: pointer;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--blue);
    border-radius: 999px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle.open span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.hero,
.section,
.proof-strip {
    padding: 32px 6% 0;
}

.hero {
    padding-top: 28px;
}

.hero-inner,
.highlights-grid,
.proof-grid,
.featured-grid,
.project-grid,
.services-grid,
.process-grid,
.skills-grid,
.contact-layout {
    max-width: var(--max-width);
    margin: 0 auto;
}

.hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 1fr);
    gap: 12px;
    align-items: stretch;
}

.hero-copy,
.hero-panel,
.proof-item,
.content-summary div,
.about-text,
.highlight-card,
.featured-card,
.project-card,
.service-card,
.process-card,
.skill-card,
.contact-card,
.contact-panel-card,
.social-card,
.social-skills {
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.hero-copy,
.hero-panel {
    border-radius: var(--radius-xl);
    padding: 28px;
    position: relative;
    overflow: hidden;
}

.hero-copy::before,
.hero-panel::before,
.proof-item::before,
.content-summary div::before,
.about-text::before,
.contact-card::before,
.contact-panel-card::before {
    content: "";
    position: absolute;
    inset: auto -40px -40px auto;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(10, 132, 255, 0.08);
    filter: blur(18px);
    pointer-events: none;
}

.hero-badge,
.eyebrow,
.panel-label,
.project-note {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: var(--blue-soft);
    border: 1px solid var(--blue-border);
    color: var(--blue);
    font-weight: 600;
    font-size: 0.88rem;
}

.proof-strip {
    padding-top: 18px;
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.proof-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    padding: 18px;
}

.proof-item:nth-child(2) {
    background: rgba(255, 255, 255, 0.88);
    border-color: rgba(18, 185, 129, 0.22);
}

.proof-item:nth-child(2)::before {
    background: var(--green-soft);
}

.proof-item:nth-child(3) {
    background: rgba(255, 255, 255, 0.88);
    border-color: rgba(245, 158, 11, 0.22);
}

.proof-item:nth-child(3)::before {
    background: var(--amber-soft);
}

.proof-item strong,
.content-summary strong {
    display: block;
    margin-bottom: 6px;
    color: var(--text);
}

.proof-item span,
.content-summary span {
    display: block;
    color: var(--muted);
    font-size: 0.94rem;
}

.hero-title {
    font-size: clamp(2.2rem, 4.8vw, 3.8rem);
    line-height: 1.05;
    letter-spacing: -0.05em;
    margin: 18px 0 16px;
    max-width: 13ch;
}

.hero-subtitle {
    font-size: 1.03rem;
    color: var(--muted);
    max-width: 64ch;
}

.hero-actions,
.cv-buttons,
.project-links,
.modern-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-actions {
    margin-top: 28px;
}

.hero-btn,
.cv-btn,
.project-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 600;
    border: 1px solid transparent;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.hero-btn:hover,
.cv-btn:hover,
.project-btn:hover,
.contact-item:hover,
.modern-socials a:hover {
    transform: translateY(-2px);
}

.primary,
.project-btn {
    background: var(--blue);
    color: #ffffff;
    box-shadow: 0 12px 24px rgba(10, 132, 255, 0.22);
}

.primary:hover,
.project-btn:hover {
    background: var(--blue-dark);
}

.secondary {
    background: #ffffff;
    border-color: var(--blue-border);
    color: var(--blue);
}

.secondary:hover {
    background: var(--blue);
    color: #ffffff;
}

.ghost {
    background: var(--blue-soft);
    color: var(--blue);
    border-color: var(--blue-border);
}

.ghost:hover {
    background: rgba(10, 132, 255, 0.18);
}

.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.hero-highlights span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid var(--line);
    color: var(--muted);
    font-size: 0.94rem;
}

.hero-highlights i {
    color: var(--blue);
}

.panel-label {
    margin-bottom: 18px;
}

.hero-stats {
    display: grid;
    gap: 14px;
}

.hero-stat,
.about-point,
.contact-item {
    position: relative;
    z-index: 1;
    background: var(--bg-alt);
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 18px;
}

.hero-stat {
    padding: 18px;
}

.hero-stat h3 {
    font-size: 1rem;
    margin-bottom: 6px;
}

.hero-stat p,
.section-heading p,
.featured-body p,
.service-card p,
.process-card p,
.skill-card p,
.contact-subtitle,
.project-card p {
    color: var(--muted);
}

.availability-card {
    position: relative;
    z-index: 1;
    margin-top: 16px;
    padding: 18px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(10, 132, 255, 0.16), rgba(10, 132, 255, 0.06));
    border: 1px solid var(--blue-border);
}

.availability-card strong {
    display: block;
    margin-bottom: 8px;
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 24px;
    text-align: center;
}

.section-heading h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
    letter-spacing: -0.04em;
    margin: 14px 0 12px;
}

.section-heading.compact {
    margin-top: 28px;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.highlight-card,
.project-card,
.service-card,
.process-card,
.skill-card,
.contact-card,
.contact-panel-card {
    border-radius: var(--radius-lg);
    padding: 24px;
}

.hero-copy:hover,
.hero-panel:hover,
.proof-item:hover,
.about-text:hover,
.highlight-card:hover,
.featured-card:hover,
.project-card:hover,
.service-card:hover,
.process-card:hover,
.skill-card:hover,
.contact-card:hover,
.contact-panel-card:hover,
.content-summary div:hover,
.social-card:hover,
.social-skills:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    border-color: var(--blue-border);
}

.highlight-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: var(--blue-soft);
    border: 1px solid var(--blue-border);
    color: var(--blue);
    margin-bottom: 16px;
    font-size: 1.25rem;
}

.highlight-card h3,
.service-card h3,
.process-card h3,
.skill-card h3,
.contact-panel-card h3,
.project-card h3,
.featured-body h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.about {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
    gap: 22px;
    align-items: center;
}

.about-media {
    display: flex;
    justify-content: center;
}

.profile-pic {
    width: min(100%, 360px);
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: var(--shadow);
}

.about-text {
    border-radius: var(--radius-xl);
    padding: 30px;
    position: relative;
    overflow: hidden;
}

.about-text h2 {
    font-size: clamp(2rem, 4vw, 2.9rem);
    line-height: 1.1;
    margin: 14px 0 14px;
    letter-spacing: -0.04em;
}

.about-points {
    display: grid;
    gap: 12px;
    margin: 24px 0;
}

.about-point {
    padding: 14px 16px;
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 12px;
}

.about-point strong {
    color: var(--text);
}

.about-point span {
    color: var(--muted);
}

.featured-grid {
    display: grid;
    gap: 20px;
}

.featured-card {
    display: grid;
    grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1fr);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.project-visual {
    min-height: 240px;
    padding: 24px;
    display: flex;
    align-items: flex-end;
    position: relative;
    overflow: hidden;
}

.project-visual::before {
    content: "";
    position: absolute;
    inset: 16px;
    border-radius: 24px;
    background:
        linear-gradient(transparent 60%, rgba(0, 0, 0, 0.18)),
        repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 18px),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 18px);
    opacity: 0.5;
}

.project-visual::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    right: -80px;
    top: -80px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent 70%);
    opacity: 0.7;
}

.visual-title {
    position: absolute;
    left: 24px;
    bottom: 78px;
    font-size: 1.15rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.92);
    letter-spacing: -0.01em;
    z-index: 2;
}

.visual-ui {
    position: absolute;
    inset: 24px 24px 90px;
    display: grid;
    gap: 10px;
    padding: 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.24);
    backdrop-filter: blur(10px);
    z-index: 1;
}

.visual-ui .ui-header {
    height: 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.55);
}

.visual-ui .ui-row {
    height: 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.35);
}

.visual-ui .ui-row.short {
    width: 65%;
}

.visual-ui .ui-pill {
    justify-self: start;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 0.78rem;
    font-weight: 600;
    color: #ffffff;
}

.visual-ui .ui-chart {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    align-items: end;
}

.visual-ui .ui-chart span {
    height: 64px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.3);
}

.visual-ui .ui-chart span:nth-child(2) {
    height: 84px;
    background: rgba(255, 255, 255, 0.4);
}

.visual-ui .ui-chart span:nth-child(3) {
    height: 48px;
}

.visual-ui .ui-chart span:nth-child(4) {
    height: 96px;
    background: rgba(255, 255, 255, 0.42);
}

.visual-ui .ui-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.visual-ui .ui-stats span {
    height: 40px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.visual-ui .ui-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.visual-ui .ui-cards span {
    height: 70px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.22);
}

.visual-ui .ui-wide {
    height: 70px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.24);
    border: 1px solid rgba(255, 255, 255, 0.22);
}

.project-visual span,
.hero-highlights span,
.tags span,
.chips span {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.project-visual span:hover,
.hero-highlights span:hover,
.tags span:hover,
.chips span:hover {
    transform: translateY(-2px);
}

.project-visual span {
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    border-radius: 999px;
    font-weight: 600;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
    position: relative;
    z-index: 2;
}

.mock-ui {
    position: absolute;
    inset: 24px 24px 70px;
    display: grid;
    gap: 10px;
    padding: 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    z-index: 1;
}

.mock-bar {
    height: 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.5);
}

.mock-row {
    height: 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.35);
}

.mock-row.short {
    width: 70%;
}

.mock-card {
    height: 36px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.mock-card.wide {
    height: 54px;
}

.mock-pill {
    justify-self: start;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.22);
    font-size: 0.78rem;
    font-weight: 600;
    color: #ffffff;
}

.project-visual.climate {
    --accent: #34d399;
    --accent-2: #3b82f6;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.24), transparent 28%),
        linear-gradient(135deg, #166534 0%, #1d4ed8 100%);
}

.project-visual.statement {
    --accent: #60a5fa;
    --accent-2: #0a84ff;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.18), transparent 28%),
        linear-gradient(135deg, #0f172a 0%, #0a84ff 100%);
}

.project-visual.blog {
    --accent: #c084fc;
    --accent-2: #0a84ff;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.18), transparent 28%),
        linear-gradient(135deg, #7c3aed 0%, #0a84ff 100%);
}

.project-visual.stockflow {
    --accent: #2dd4bf;
    --accent-2: #3b82f6;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.2), transparent 28%),
        linear-gradient(135deg, #0f766e 0%, #1d4ed8 100%);
}

.featured-body {
    padding: 28px;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 12px 0 14px;
}

.tags span,
.chips span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 12px;
    border-radius: 999px;
    background: var(--blue-soft);
    border: 1px solid var(--blue-border);
    color: var(--blue);
    font-size: 0.83rem;
    font-weight: 600;
}

.project-points,
.service-list,
.contact-list {
    list-style: none;
    display: grid;
    gap: 10px;
}

.project-points {
    margin: 18px 0;
}

.project-points li,
.service-list li,
.contact-list li {
    position: relative;
    padding-left: 18px;
    color: var(--muted);
}

.project-points li::before,
.service-list li::before,
.contact-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--blue);
}

.project-note {
    background: rgba(16, 24, 40, 0.04);
    border-color: rgba(16, 24, 40, 0.08);
    color: var(--muted);
}

.project-grid,
.services-grid,
.process-grid,
.skills-grid {
    display: grid;
    gap: 18px;
}

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

.service-card {
    text-align: left;
}

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

.service-list {
    margin-top: 16px;
}

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

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: var(--blue-soft);
    border: 1px solid var(--blue-border);
    color: var(--blue);
    font-weight: 700;
    margin-bottom: 16px;
}

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

.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.social-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.content-summary {
    max-width: var(--max-width);
    margin: 0 auto 18px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.content-summary div {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    padding: 18px;
}

.content-summary div:nth-child(1) {
    border-color: rgba(18, 185, 129, 0.22);
}

.content-summary div:nth-child(2) {
    border-color: rgba(245, 158, 11, 0.22);
}

.content-summary div:nth-child(1)::before {
    background: var(--green-soft);
}

.content-summary div:nth-child(2)::before {
    background: var(--amber-soft);
}

.social-card,
.social-skills {
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.social-shot {
    min-height: 190px;
    aspect-ratio: 16 / 9;
    display: grid;
    place-items: center;
    padding: 0;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    letter-spacing: -0.01em;
    overflow: hidden;
}

.social-shot span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
    margin: 16px;
}

.social-shot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.25s ease;
}

.social-card:hover .social-shot img {
    transform: scale(1.03);
}

.social-shot.tiktok {
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.22), transparent 35%),
        linear-gradient(135deg, #111827 0%, #0a84ff 100%);
}

.social-shot.instagram {
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.22), transparent 35%),
        linear-gradient(135deg, #f97316 0%, #db2777 55%, #0a84ff 100%);
}

.social-shot.youtube {
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.2), transparent 35%),
        linear-gradient(135deg, #dc2626 0%, #111827 100%);
}

.social-body {
    padding: 22px;
}

.social-body h3 {
    font-size: 1.05rem;
    margin-bottom: 12px;
}

.social-meta {
    list-style: none;
    display: grid;
    gap: 10px;
    color: var(--muted);
    font-size: 0.95rem;
}

.social-meta li {
    position: relative;
    padding-left: 18px;
}

.social-meta li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--blue);
}

.social-skills {
    max-width: var(--max-width);
    margin: 18px auto 0;
    padding: 22px;
}

.social-skills h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.social-footnote {
    max-width: var(--max-width);
    margin: 16px auto 0;
    text-align: center;
    color: var(--muted);
    font-size: 0.95rem;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
    gap: 18px;
}

.contact-card,
.contact-panel-card {
    position: relative;
    overflow: hidden;
}

.contact-items {
    display: grid;
    gap: 12px;
    margin-top: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    text-decoration: none;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-item i {
    width: 24px;
    color: var(--blue);
    font-size: 1.05rem;
}

.contact-item:hover {
    border-color: var(--blue-border);
    box-shadow: 0 12px 24px rgba(13, 37, 73, 0.08);
}

.contact-side {
    display: grid;
    gap: 18px;
}

.modern-socials {
    justify-content: center;
    max-width: var(--max-width);
    margin: 22px auto 0;
}

.modern-socials a {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    text-decoration: none;
    background: var(--blue-soft);
    border: 1px solid var(--blue-border);
    color: var(--blue);
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.modern-socials a:hover {
    background: var(--blue);
    color: #ffffff;
}

footer {
    margin-top: 40px;
    padding: 24px 6% 36px;
    text-align: center;
    color: var(--muted);
}

@media (max-width: 1080px) {
    .hero-inner,
    .about,
    .featured-card,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .services-grid,
    .proof-grid,
    .content-summary,
    .skills-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .highlights-grid,
    .project-grid,
    .process-grid,
    .social-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
    .navbar {
        padding: 14px 20px;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: calc(100% + 1px);
        right: 0;
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 18px;
        background: rgba(255, 255, 255, 0.97);
        border-bottom: 1px solid rgba(15, 23, 42, 0.06);
        box-shadow: 0 16px 30px rgba(15, 23, 42, 0.08);
        padding: 22px 20px 28px;
        display: none;
    }

    .nav-links.active {
        display: flex;
    }

    .hero,
    .section {
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero-copy,
    .hero-panel,
    .about-text,
    .featured-body,
    .highlight-card,
    .project-card,
    .service-card,
    .process-card,
    .skill-card,
    .contact-card,
    .contact-panel-card {
        padding: 22px;
    }

    .hero-title {
        max-width: none;
    }
}

@media (max-width: 640px) {
    .highlights-grid,
    .proof-grid,
    .project-grid,
    .services-grid,
    .process-grid,
    .skills-grid,
    .content-summary,
    .social-grid {
        grid-template-columns: 1fr;
    }

    .about-point {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .hero-highlights {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-btn,
    .cv-btn,
    .project-btn {
        width: 100%;
    }

    .project-visual {
        min-height: 210px;
    }

    .social-shot {
        min-height: 170px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition: none !important;
        animation: none !important;
    }
}
