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

:root {
    --bg-primary: #06080d;
    --bg-secondary: #0c0f16;
    --bg-tertiary: #12151e;
    --bg-card: #161a25;
    --bg-card-hover: #1c2030;
    --accent: #6c63ff;
    --accent-light: #8b83ff;
    --accent-glow: rgba(108, 99, 255, 0.15);
    --accent-glow-strong: rgba(108, 99, 255, 0.3);
    --cyan: #00d4aa;
    --cyan-glow: rgba(0, 212, 170, 0.15);
    --text-primary: #eaedf3;
    --text-secondary: #9ba3b5;
    --text-muted: #5a6278;
    --border: rgba(255, 255, 255, 0.06);
    --border-hover: rgba(108, 99, 255, 0.3);
    --radius: 16px;
    --radius-sm: 10px;
    --radius-xs: 6px;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.6);
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
}

::selection { background: var(--accent); color: #fff; }

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--bg-card-hover); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

@supports (scrollbar-color: auto) {
    html { scrollbar-color: var(--bg-card-hover) var(--bg-primary); scrollbar-width: thin; }
}

.ambient { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.ambient-orb { position: absolute; border-radius: 50%; filter: blur(120px); opacity: 0.07; animation: drift 25s ease-in-out infinite; }
.ambient-orb:nth-child(1) { width: 600px; height: 600px; background: var(--accent); top: -10%; left: -5%; }
.ambient-orb:nth-child(2) { width: 500px; height: 500px; background: var(--cyan); bottom: -10%; right: -5%; animation-delay: -8s; animation-duration: 30s; }
.ambient-orb:nth-child(3) { width: 400px; height: 400px; background: #ff6b6b; top: 50%; left: 50%; transform: translate(-50%, -50%); animation-delay: -15s; animation-duration: 35s; opacity: 0.04; }
@keyframes drift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(40px, -30px) scale(1.05); }
    50% { transform: translate(-20px, 40px) scale(0.95); }
    75% { transform: translate(30px, 20px) scale(1.02); }
}

.grain {
    position: fixed; inset: 0; z-index: 1; pointer-events: none; opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat; background-size: 256px;
}

.wrapper { position: relative; z-index: 2; }
.container { max-width: 1120px; margin: 0 auto; padding: 0 1.5rem; }
section { position: relative; }

.nav {
    position: fixed; top: 0; width: 100%; z-index: 1000;
    background: rgba(6, 8, 13, 0.8); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border); transition: var(--transition);
}
.nav-inner { max-width: 1120px; margin: 0 auto; padding: 0 1.5rem; height: 64px; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { font-family: 'JetBrains Mono', monospace; font-weight: 700; font-size: 1.25rem; color: var(--accent); text-decoration: none; letter-spacing: -0.5px; }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a { color: var(--text-secondary); text-decoration: none; font-size: 0.875rem; font-weight: 500; letter-spacing: 0.02em; transition: color var(--transition); position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--accent); border-radius: 1px; transition: width var(--transition); }
.nav-links a:hover, .nav-links a.active { color: var(--text-primary); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-toggle { display: none; background: none; border: none; color: var(--text-primary); cursor: pointer; padding: 0.5rem; touch-action: manipulation; -webkit-tap-highlight-color: transparent; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--text-primary); margin: 5px 0; border-radius: 2px; transition: var(--transition); }
.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); }

.mobile-menu {
    display: none; position: fixed; top: 64px; left: 0; right: 0; bottom: 0;
    background: rgba(6, 8, 13, 0.97); backdrop-filter: blur(24px); z-index: 999;
    padding: 2rem 1.5rem; opacity: 0; transform: translateY(-10px); transition: var(--transition);
    pointer-events: none;
}
.mobile-menu.active { opacity: 1; transform: translateY(0); pointer-events: auto; }
.mobile-menu a { display: block; padding: 1rem 0; color: var(--text-secondary); text-decoration: none; font-size: 1.25rem; font-weight: 500; border-bottom: 1px solid var(--border); transition: color var(--transition); touch-action: manipulation; }
.mobile-menu a:hover { color: var(--accent); }

.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

.hero { min-height: 100vh; display: flex; align-items: center; padding: 8rem 0 6rem; position: relative; overflow: hidden; }
.hero .reveal { transition-delay: 0.5s; }
.hero .reveal.reveal-delay-2 { transition-delay: 0.7s; }
.hero .reveal.reveal-delay-3 { transition-delay: 0.9s; }
.hero .reveal.reveal-delay-4 { transition-delay: 1.1s; }
.hero-grid {
    position: absolute; inset: 0; pointer-events: none;
    background-image: linear-gradient(rgba(108, 99, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(108, 99, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 20%, transparent 70%);
}
.hero .container { position: relative; }
.hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.4rem 1rem; background: var(--accent-glow); border: 1px solid rgba(108, 99, 255, 0.2); border-radius: 100px; font-size: 0.8rem; font-weight: 500; color: var(--accent-light); margin-bottom: 1.5rem; letter-spacing: 0.04em; }
.hero-badge .pulse { width: 8px; height: 8px; background: var(--cyan); border-radius: 50%; animation: pulse 2s ease-in-out infinite; }
@keyframes pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(0, 212, 170, 0.4); }
    50% { opacity: 0.7; box-shadow: 0 0 0 8px rgba(0, 212, 170, 0); }
}
.hero h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 800; line-height: 1.1; letter-spacing: -0.03em; margin-bottom: 1.25rem; max-width: 800px; white-space: nowrap; }
.hero h1 .gradient-text {
    display: inline-block;
    background: linear-gradient(
        90deg,
        var(--accent) 0%,
        var(--cyan) 35%,
        var(--accent-light) 48%,
        #fff 50%,
        var(--accent-light) 52%,
        var(--cyan) 65%,
        var(--accent) 100%
    );
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: nameReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) both, textShimmer 4s ease-in-out infinite;
}
@keyframes nameReveal {
    from { opacity: 0; transform: translateY(25px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes textShimmer {
    0%, 100% { background-position: 100% 50%; }
    50% { background-position: 0% 50%; }
}
.hero-subtitle { font-size: clamp(1rem, 2vw, 1.25rem); color: var(--text-secondary); max-width: 620px; line-height: 1.7; margin-bottom: 2rem; white-space: nowrap; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3.5rem; }
.hero-stats { display: flex; gap: 3rem; flex-wrap: wrap; }
.hero-stat { text-align: left; }
.hero-stat-value { font-family: 'JetBrains Mono', monospace; font-size: 1.75rem; font-weight: 700; color: var(--text-primary); line-height: 1.2; }
.hero-stat-value .accent { color: var(--accent); }
.hero-stat-label { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 0.15rem; }

.btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.75rem 1.5rem; border-radius: var(--radius-sm); font-size: 0.9rem; font-weight: 600; text-decoration: none; cursor: pointer; border: none; transition: all var(--transition); letter-spacing: 0.01em; touch-action: manipulation; -webkit-tap-highlight-color: transparent; }
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 4px 16px rgba(108, 99, 255, 0.3); }
.btn-primary:hover { background: var(--accent-light); box-shadow: 0 6px 24px rgba(108, 99, 255, 0.4); }
.btn-outline { background: transparent; color: var(--text-secondary); border: 1px solid var(--border); }
.btn-outline:hover { color: var(--text-primary); border-color: var(--border-hover); background: var(--accent-glow); }
.btn-arrow { transition: transform var(--transition); }
.btn:hover .btn-arrow { transform: translateX(3px); }

.section-label { display: inline-flex; align-items: center; gap: 0.5rem; font-family: 'JetBrains Mono', monospace; font-size: 0.75rem; font-weight: 600; color: var(--accent); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 0.75rem; }
.section-label::before { content: ''; width: 24px; height: 1px; background: var(--accent); }
.section-heading { font-size: clamp(1.75rem, 4vw, 2.75rem); font-weight: 800; letter-spacing: -0.02em; line-height: 1.15; margin-bottom: 1rem; }
.section-desc { color: var(--text-secondary); font-size: 1.05rem; max-width: 560px; line-height: 1.7; }
.section-header-group { margin-bottom: 3.5rem; }

.about { padding: 7rem 0; background: var(--bg-secondary); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: stretch; }
.about-text p { color: var(--text-secondary); margin-bottom: 1.25rem; font-size: 1.02rem; line-height: 1.8; }
.about-text p strong { color: var(--text-primary); font-weight: 600; }
.about-photo { border-radius: var(--radius); border: 1px solid var(--border); background: var(--bg-card); overflow: hidden; transition: all var(--transition); min-height: 0; }
.about-photo:hover { border-color: var(--border-hover); }
.about-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

.accomplishments { padding: 7rem 0; }
.accomplishments-list { display: grid; gap: 1rem; }
.accomplishment-item { display: flex; align-items: center; gap: 1.5rem; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem 2rem; transition: all var(--transition); }
.accomplishment-item:hover { border-color: var(--border-hover); background: var(--bg-card-hover); }
.accomplishment-icon { width: 52px; height: 52px; border-radius: 50%; background: var(--accent-glow); display: flex; align-items: center; justify-content: center; font-size: 1.35rem; flex-shrink: 0; }
.accomplishment-item:nth-child(even) .accomplishment-icon { background: var(--cyan-glow); }
.accomplishment-content { flex: 1; min-width: 0; }
.accomplishment-title { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.15rem; }
.accomplishment-org { font-size: 0.875rem; color: var(--accent-light); margin-bottom: 0.2rem; }
.accomplishment-desc { font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; }
.accomplishment-year { font-family: 'JetBrains Mono', monospace; font-size: 0.75rem; color: var(--text-muted); white-space: nowrap; background: var(--bg-tertiary); padding: 0.3rem 0.75rem; border-radius: 100px; flex-shrink: 0; }

.experience { padding: 7rem 0; background: var(--bg-secondary); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.timeline { position: relative; padding-left: 2.5rem; }
.timeline::before { content: ''; position: absolute; left: 7px; top: 8px; bottom: 8px; width: 2px; background: linear-gradient(to bottom, var(--accent), var(--cyan)); border-radius: 2px; }
.timeline-item { position: relative; margin-bottom: 2rem; }
.timeline-item:last-child { margin-bottom: 0; }
.timeline-dot { position: absolute; left: -2.5rem; top: 1.5rem; width: 16px; height: 16px; border-radius: 50%; background: var(--bg-secondary); border: 3px solid var(--accent); z-index: 1; transition: all var(--transition); }
.timeline-item:hover .timeline-dot { background: var(--accent); box-shadow: 0 0 12px var(--accent-glow-strong); }
.timeline-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; transition: all var(--transition); }
.timeline-card:hover { border-color: var(--border-hover); background: var(--bg-card-hover); }
.timeline-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 0.75rem; flex-wrap: wrap; gap: 0.75rem; }
.timeline-role { font-size: 1.15rem; font-weight: 700; }
.timeline-company { color: var(--accent-light); font-size: 0.95rem; font-weight: 500; }
.timeline-date { font-family: 'JetBrains Mono', monospace; font-size: 0.75rem; color: var(--text-muted); background: var(--bg-tertiary); padding: 0.3rem 0.75rem; border-radius: 100px; white-space: nowrap; }
.timeline-desc { color: var(--text-secondary); font-size: 0.92rem; line-height: 1.75; margin-bottom: 1rem; }
.timeline-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.tag { padding: 0.25rem 0.7rem; background: var(--accent-glow); border: 1px solid rgba(108, 99, 255, 0.15); border-radius: 100px; font-size: 0.75rem; font-weight: 500; color: var(--accent-light); }

.lifestyle { padding: 7rem 0; }
.lifestyle-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.lifestyle-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 2.5rem; position: relative; overflow: hidden; transition: all var(--transition); }
.lifestyle-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; border-radius: var(--radius) var(--radius) 0 0; }
.lifestyle-card.muay-thai::before { background: linear-gradient(90deg, #ff6b6b, #ee5a24); }
.lifestyle-card.calisthenics::before { background: linear-gradient(90deg, var(--cyan), #00b894); }
.lifestyle-card:hover { border-color: var(--border-hover); background: var(--bg-card-hover); }
.lifestyle-icon { font-size: 2.5rem; margin-bottom: 1.25rem; display: block; }
.lifestyle-card h3 { font-size: 1.35rem; font-weight: 700; margin-bottom: 0.75rem; }
.lifestyle-card p { color: var(--text-secondary); font-size: 0.92rem; line-height: 1.75; }
.lifestyle-traits { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.25rem; }
.lifestyle-trait { padding: 0.3rem 0.75rem; border-radius: 100px; font-size: 0.75rem; font-weight: 500; }
.muay-thai .lifestyle-trait { background: rgba(255, 107, 107, 0.1); border: 1px solid rgba(255, 107, 107, 0.2); color: #ff8787; }
.calisthenics .lifestyle-trait { background: var(--cyan-glow); border: 1px solid rgba(0, 212, 170, 0.2); color: var(--cyan); }

.projects { padding: 7rem 0; background: var(--bg-secondary); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.project-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: all var(--transition); display: flex; flex-direction: column; }
.project-card:hover { border-color: var(--border-hover); box-shadow: var(--shadow-lg); }
.project-thumb { height: 160px; background: var(--bg-tertiary); display: flex; align-items: center; justify-content: center; font-size: 3rem; position: relative; overflow: hidden; text-decoration: none; color: inherit; }
.project-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition); }
.project-card:hover .project-thumb img { transform: scale(1.05); }
.project-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.project-name { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.5rem; }
.project-lang-badge { display: inline-block; padding: 0.2rem 0.6rem; font-size: 0.7rem; font-weight: 600; border-radius: 100px; background: var(--accent-glow); color: var(--accent-light); border: 1px solid rgba(108, 99, 255, 0.15); margin-bottom: 0.75rem; width: fit-content; }
.project-desc { color: var(--text-secondary); font-size: 0.85rem; line-height: 1.6; flex: 1; margin-bottom: 1.25rem; }
.project-actions { display: flex; gap: 0.5rem; }
.project-btn { flex: 1; padding: 0.6rem; text-align: center; font-size: 0.8rem; font-weight: 600; text-decoration: none; border-radius: var(--radius-xs); transition: all var(--transition); color: var(--text-secondary); background: var(--bg-tertiary); border: 1px solid var(--border); touch-action: manipulation; -webkit-tap-highlight-color: transparent; }
.project-btn:hover { color: var(--text-primary); border-color: var(--border-hover); background: var(--accent-glow); }
.projects-footer { text-align: center; margin-top: 2.5rem; }

.skills { padding: 7rem 0; }
.sphere-wrap { display: flex; justify-content: center; align-items: center; position: relative; width: 100%; max-width: 700px; height: 700px; margin: 0 auto; cursor: grab; user-select: none; -webkit-user-select: none; overflow: hidden; touch-action: none; }
.sphere-wrap:active { cursor: grabbing; }
.sphere-tag { position: absolute; top: 50%; left: 50%; padding: 0.35rem 0.85rem; background: var(--bg-card); border: 1px solid var(--border); border-radius: 100px; font-size: 0.8rem; font-weight: 500; color: var(--text-secondary); white-space: nowrap; transform: translate(-50%, -50%); transition: color 0.2s, background 0.2s, border-color 0.2s; pointer-events: auto; will-change: transform, opacity; touch-action: none; }
.sphere-tag:hover { color: var(--text-primary); background: var(--accent-glow); border-color: var(--border-hover); z-index: 10 !important; }
.sphere-glow { position: absolute; top: 50%; left: 50%; width: 55%; height: 55%; transform: translate(-50%, -50%); border-radius: 50%; background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%); pointer-events: none; z-index: 0; }

.skills .section-header-group { text-align: center; display: flex; flex-direction: column; align-items: center; }
.skills .section-desc { text-align: center; }

.contact { padding: 7rem 0; background: var(--bg-secondary); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); text-align: center; }
.contact .section-header-group { display: flex; flex-direction: column; align-items: center; }
.contact .section-desc { text-align: center; }
.contact-buttons { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

.footer { padding: 2.5rem 0; text-align: center; border-top: 1px solid var(--border); }
.footer p { font-size: 0.8rem; color: var(--text-muted); }
.footer a { color: var(--accent-light); text-decoration: none; }
.footer a:hover { text-decoration: underline; }

.loading-shimmer { background: linear-gradient(90deg, var(--bg-card) 0%, var(--bg-card-hover) 50%, var(--bg-card) 100%); background-size: 200% 100%; animation: shimmer 1.5s ease-in-out infinite; border-radius: var(--radius); height: 280px; }
@keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }

@media (max-width: 1024px) {
    .projects-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-toggle { display: block; min-width: 44px; min-height: 44px; padding: 9px 11px; }
    .mobile-menu { display: block; }
    .hero { padding: 7rem 0 4rem; }
    .hero h1 { font-size: 2.25rem; white-space: normal; }
    .hero-subtitle { white-space: normal; }
    .hero-stats { gap: 2rem; }
    .hero-stat-value { font-size: 1.4rem; }
    .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .about-photo { max-width: 500px; }
    .about-photo img { height: auto; }
    .lifestyle-grid { grid-template-columns: 1fr; }
    .projects-grid { grid-template-columns: 1fr; }
    .accomplishment-item { flex-wrap: wrap; gap: 1rem; padding: 1.25rem; }
    .accomplishment-year { width: auto; }
    .timeline { padding-left: 2rem; }
    .timeline-dot { left: -2rem; width: 14px; height: 14px; }
    .timeline-card { padding: 1.5rem; }
    .timeline-top { flex-direction: column; gap: 0.5rem; }
    section { padding-top: 5rem; padding-bottom: 5rem; }
    .sphere-wrap { max-width: 100%; height: 420px; }
    .sphere-tag { font-size: 0.68rem; padding: 0.25rem 0.6rem; }
}

@media (max-width: 480px) {
    .hero { padding: 6rem 0 3rem; }
    .hero h1 { font-size: 1.85rem; }
    .about-photo { max-width: 100%; }
    .hero-stats { gap: 1.5rem; }
    .hero-stat-value { font-size: 1.25rem; }
    .accomplishment-icon { width: 42px; height: 42px; font-size: 1.1rem; }
    .sphere-wrap { height: 360px; }
    .sphere-tag { font-size: 0.6rem; padding: 0.2rem 0.5rem; }
}

@media (hover: hover) {
    .btn-primary:hover { transform: translateY(-2px); }
    .about-photo:hover { transform: translateY(-3px); }
    .accomplishment-item:hover { transform: translateX(6px); }
    .lifestyle-card:hover { transform: translateY(-4px); }
    .project-card:hover { transform: translateY(-4px); }
}

@media (max-width: 768px) {
    .btn { min-height: 48px; }
    .project-btn { min-height: 44px; display: inline-flex; align-items: center; justify-content: center; }
    .contact-buttons .btn { width: 100%; justify-content: center; }
}
