/* ========== RESET & VARIABLES ========== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

:root {
    --bg: #11131B;
    --bg-card: #191D2B;
    --bg-hover: #212640;
    --border: #2A2F45;
    --border-light: #3A3F5A;
    --text: #E8E9F0;
    --text-muted: #8A8FA8;
    --primary: #F5A623;
    --primary-dark: #D4891A;
    --primary-light: #FFC857;
    --secondary: #6C8BA0;
    --accent: #F5A623;
    --gradient: linear-gradient(135deg, #F5A623 0%, #D4891A 100%);
    --shadow: 0 20px 40px -12px rgba(0,0,0,0.6);
    --radius: 8px;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

::selection { background: var(--primary); color: var(--bg); }

/* ========== PRELOADER ========== */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--bg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.8s, visibility 0.8s;
}
.preloader.hide { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
}
.preloader-square {
    width: 16px;
    height: 16px;
    background: var(--primary);
    border-radius: 2px;
    animation: preloadGrid 1.2s ease-in-out infinite;
    opacity: 0.2;
}
.preloader-square:nth-child(1) { animation-delay: 0s; }
.preloader-square:nth-child(2) { animation-delay: 0.15s; }
.preloader-square:nth-child(3) { animation-delay: 0.3s; }
.preloader-square:nth-child(4) { animation-delay: 0.45s; }
.preloader-square:nth-child(5) { animation-delay: 0.6s; }
.preloader-square:nth-child(6) { animation-delay: 0.75s; }
.preloader-square:nth-child(7) { animation-delay: 0.9s; }
.preloader-square:nth-child(8) { animation-delay: 1.05s; }
.preloader-square:nth-child(9) { animation-delay: 1.2s; }
@keyframes preloadGrid {
    0%, 100% { opacity: 0.2; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}
.preloader-label {
    margin-top: 20px;
    font-size: 11px;
    letter-spacing: 6px;
    color: var(--text-muted);
    font-weight: 500;
}

/* ========== NAVIGATION ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: all 0.4s ease;
}
.navbar.scrolled {
    background: rgba(17, 19, 27, 0.94);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-weight: 900;
    font-size: 24px;
    color: #fff;
}
.logo-mark {
    font-size: 28px;
    color: var(--primary);
}
.logo-text { letter-spacing: -1px; }
.nav-menu {
    display: flex;
    list-style: none;
    gap: 36px;
}
.nav-link {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 13px;
    transition: color 0.3s;
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s;
}
.nav-link:hover, .nav-link.active { color: #fff; }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.btn-cv {
    background: var(--gradient);
    color: var(--bg);
    text-decoration: none;
    padding: 8px 20px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}
.btn-cv:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(245,166,35,0.3); }
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}
.menu-toggle span {
    width: 28px;
    height: 2px;
    background: #fff;
    transition: 0.3s;
}

/* ========== HOME ========== */
.home {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 60px;
    position: relative;
    overflow: hidden;
}
.home-backdrop {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}
.home-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
}
.home-blob-1 {
    width: 500px;
    height: 500px;
    top: -200px;
    right: -100px;
    background: rgba(245,166,35,0.08);
}
.home-blob-2 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    left: -100px;
    background: rgba(108,139,160,0.06);
}
.home-blob-3 {
    width: 300px;
    height: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(245,166,35,0.04);
}
.home-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    position: relative;
    z-index: 1;
}
.home-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.home-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(245,166,35,0.1);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    color: var(--primary);
    margin-bottom: 24px;
}
.tag-dot {
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
.home-title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 16px;
}
.home-title-line { display: block; }
.home-title-highlight {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.home-subtitle {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.home-divider-dot { color: var(--primary); }
.home-desc {
    font-size: 17px;
    color: var(--text-muted);
    max-width: 440px;
    margin-bottom: 32px;
}
.home-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}
.btn-primary {
    background: var(--gradient);
    color: var(--bg);
    padding: 14px 32px;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(245,166,35,0.3); }
.btn-secondary {
    border: 1.5px solid var(--border);
    color: #fff;
    padding: 14px 32px;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}
.btn-secondary:hover { border-color: var(--primary); background: rgba(245,166,35,0.05); }
.home-metrics {
    display: flex;
    gap: 40px;
}
.metric .metric-number {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
}
.metric .metric-label { font-size: 13px; color: var(--text-muted); }

/* Profile */
.home-profile {
    position: relative;
    display: flex;
    justify-content: center;
}
.profile-wrapper {
    position: relative;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    overflow: hidden;
}
.profile-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.profile-border {
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    opacity: 0.3;
    animation: spinSlow 20s linear infinite;
}
.profile-glow {
    position: absolute;
    inset: -20px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245,166,35,0.1), transparent 70%);
}
@keyframes spinSlow { to { transform: rotate(360deg); } }
.profile-float {
    position: absolute;
    background: var(--bg-card);
    padding: 10px 18px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    animation: floatBadge 4s ease-in-out infinite;
}
.profile-float i { color: var(--primary); font-size: 14px; }
.float-1 { top: 5%; right: -5%; animation-delay: 0s; }
.float-2 { bottom: 25%; right: -15%; animation-delay: 1.5s; }
.float-3 { bottom: 5%; left: -5%; animation-delay: 3s; }
@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.home-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--text-muted);
    font-size: 11px;
    animation: bounceScroll 2s infinite;
}
.home-scroll i { display: block; margin-top: 6px; }
@keyframes bounceScroll { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* ========== COMMUN ========== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-label {
    display: inline-block;
    background: rgba(245,166,35,0.08);
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 11px;
    color: var(--primary);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.section-header {
    text-align: center;
    margin-bottom: 50px;
}
.section-header h2 {
    font-size: 38px;
    font-weight: 800;
}
.section-header .accent {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.section-divider {
    width: 40px;
    height: 3px;
    background: var(--gradient);
    margin: 16px auto 12px;
    border-radius: 3px;
}
.section-header p { color: var(--text-muted); font-size: 15px; }
.accent { background: var(--gradient); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ========== ABOUT ========== */
.about { padding: 100px 0; background: var(--bg-card); }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.about-left .section-label { margin-bottom: 16px; }
.about-left h2 { font-size: 36px; font-weight: 800; margin-bottom: 16px; }
.about-left p { color: var(--text-muted); margin-bottom: 24px; }
.about-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.about-list div { color: var(--text-muted); font-size: 14px; display: flex; align-items: center; gap: 12px; }
.about-list i { color: var(--primary); width: 18px; }
.about-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.about-card {
    background: var(--bg);
    padding: 28px 24px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: all 0.3s;
}
.about-card:hover { border-color: var(--primary); transform: translateY(-4px); }
.about-card-icon { font-size: 28px; color: var(--primary); margin-bottom: 12px; }
.about-card h3 { font-size: 17px; margin-bottom: 8px; }
.about-card p { font-size: 13px; color: var(--text-muted); }

/* ========== PORTFOLIO ========== */
.portfolio { padding: 100px 0; }
.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.portfolio-filters .filter-btn {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-muted);
    padding: 8px 24px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s;
}
.portfolio-filters .filter-btn:hover { border-color: var(--primary); color: #fff; }
.portfolio-filters .filter-btn.active {
    background: var(--gradient);
    border-color: transparent;
    color: var(--bg);
}
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}
.work-item {
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.4s;
    opacity: 0;
    transform: translateY(30px);
}
.work-item.visible { opacity: 1; transform: translateY(0); }
.work-item:hover { border-color: var(--primary); transform: translateY(-6px); box-shadow: var(--shadow); }
.work-item img, .work-item video {
    width: 100%;
    height: 240px;
    object-fit: cover;
}
.work-info { padding: 16px 20px; }
.work-info h3 { font-size: 16px; margin-bottom: 4px; }
.work-info p { font-size: 13px; color: var(--text-muted); }

/* ========== SOCIAL ========== */
.social { padding: 100px 0; background: var(--bg-card); }
.social-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}
.social-stat {
    background: var(--bg);
    padding: 24px;
    border-radius: var(--radius);
    text-align: center;
    border: 1px solid var(--border);
}
.social-stat-number {
    font-size: 34px;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: block;
}
.social-stat-label { font-size: 12px; color: var(--text-muted); }
.social-showcase {
    display: grid;
    grid-template-columns: 1fr 0.6fr;
    gap: 40px;
    align-items: center;
}
.social-reels { overflow: hidden; }
.reels-track {
    display: flex;
    gap: 16px;
    transition: transform 0.8s cubic-bezier(0.2, 0.9, 0.4, 1.2);
}
.reel-item {
    flex: 0 0 190px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.4s;
}
.reel-item:hover { border-color: var(--primary); transform: scale(1.03); }
.reel-item video {
    width: 100%;
    aspect-ratio: 9/16;
    object-fit: cover;
}
.reels-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}
.reels-dots .dot {
    width: 8px;
    height: 8px;
    background: var(--border);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}
.reels-dots .dot.active { background: var(--primary); width: 24px; border-radius: 4px; }
.social-card {
    background: var(--bg);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
}
.social-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}
.social-card-body { padding: 24px; }
.social-card-body h3 { font-size: 20px; margin-bottom: 4px; }
.social-card-body p { color: var(--text-muted); font-size: 14px; margin-bottom: 16px; }
.social-skills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.social-skills span {
    background: rgba(245,166,35,0.08);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 12px;
    color: var(--primary);
}
.social-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245,166,35,0.05);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    color: var(--primary-light);
}
.social-badge i { font-size: 14px; }

/* ========== STORIES ========== */
.stories { padding: 100px 0; }
.stories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.story-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: all 0.4s;
}
.story-card:hover { border-color: var(--primary); transform: translateY(-4px); }
.story-quote { font-size: 28px; color: var(--primary); opacity: 0.3; margin-bottom: 16px; }
.story-card p { color: var(--text-muted); font-size: 14px; line-height: 1.7; font-style: italic; margin-bottom: 20px; }
.story-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}
.story-avatar {
    width: 44px;
    height: 44px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--bg);
}
.story-author h4 { font-size: 15px; }
.story-author span { font-size: 12px; color: var(--text-muted); }

/* ========== EXPERIENCE ========== */
.experience { padding: 100px 0; background: var(--bg-card); }
.experience-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.exp-item {
    display: flex;
    gap: 20px;
    background: var(--bg);
    padding: 24px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: all 0.3s;
}
.exp-item:hover { border-color: var(--primary); transform: translateY(-4px); }
.exp-icon {
    font-size: 28px;
    color: var(--primary);
    flex-shrink: 0;
}
.exp-content h3 { font-size: 18px; }
.exp-content .exp-date { font-size: 12px; color: var(--primary); display: block; }
.exp-content .exp-company { color: var(--text-muted); font-size: 14px; display: block; margin-bottom: 8px; }
.exp-content ul { list-style: none; padding: 0; }
.exp-content ul li { padding: 3px 0; padding-left: 18px; position: relative; color: var(--text-muted); font-size: 13px; }
.exp-content ul li::before { content: '▹'; position: absolute; left: 0; color: var(--primary); }

/* ========== CONTACT ========== */
.contact { padding: 100px 0; background: var(--bg); }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}
.contact-left .section-label { margin-bottom: 16px; }
.contact-left h2 { font-size: 36px; font-weight: 800; margin-bottom: 16px; }
.contact-left p { color: var(--text-muted); margin-bottom: 32px; }
.contact-info-list { display: flex; flex-direction: column; gap: 20px; }
.contact-info-item {
    display: flex;
    align-items: center;
    gap: 16px;
}
.contact-info-item i {
    width: 44px;
    height: 44px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg);
    font-size: 18px;
}
.contact-info-item div { display: flex; flex-direction: column; }
.contact-info-item span { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }
.contact-info-item a, .contact-info-item span:last-child { color: #fff; text-decoration: none; font-size: 15px; }
.contact-info-item a:hover { color: var(--primary); }

.contact-right {
    background: var(--bg-card);
    padding: 35px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}
.contact-form .form-group {
    position: relative;
    margin-bottom: 24px;
}
.contact-form .form-group input,
.contact-form .form-group textarea {
    width: 100%;
    padding: 12px 0;
    background: transparent;
    border: none;
    border-bottom: 2px solid var(--border);
    color: #fff;
    font-size: 15px;
    outline: none;
    font-family: 'Space Grotesk', sans-serif;
}
.contact-form .form-group label {
    position: absolute;
    left: 0;
    top: 12px;
    color: var(--text-muted);
    transition: all 0.3s;
    pointer-events: none;
    font-size: 14px;
}
.contact-form .form-group input:focus ~ label,
.contact-form .form-group input:valid ~ label,
.contact-form .form-group textarea:focus ~ label,
.contact-form .form-group textarea:valid ~ label {
    top: -16px;
    font-size: 12px;
    color: var(--primary);
}
.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
    border-bottom-color: var(--primary);
}
.btn-submit {
    width: 100%;
    padding: 14px;
    background: var(--gradient);
    border: none;
    border-radius: var(--radius);
    color: var(--bg);
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
    font-family: 'Space Grotesk', sans-serif;
}
.btn-submit:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(245,166,35,0.3); }

/* ========== FOOTER ========== */
.footer { padding: 40px 0; border-top: 1px solid var(--border); }
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}
.footer-brand h3 { font-size: 18px; }
.footer-brand p { font-size: 13px; color: var(--text-muted); }
.footer-copy p { font-size: 13px; color: var(--text-muted); }

/* ========== BACK TOP ========== */
.back-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    background: var(--gradient);
    border: none;
    border-radius: var(--radius);
    color: var(--bg);
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 999;
}
.back-top.show { opacity: 1; visibility: visible; }
.back-top:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(245,166,35,0.3); }

/* ========== RESPONSIVE ========== */
@media (max-width: 968px) {
    .home-content { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .home-desc { margin: 0 auto 32px; }
    .home-actions { justify-content: center; }
    .home-metrics { justify-content: center; }
    .home-title { font-size: 40px; }
    .about-grid { grid-template-columns: 1fr; }
    .about-right { grid-template-columns: 1fr 1fr; }
    .social-stats { grid-template-columns: repeat(2, 1fr); }
    .social-showcase { grid-template-columns: 1fr; }
    .stories-grid { grid-template-columns: 1fr; }
    .experience-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .section-header h2 { font-size: 30px; }
    .profile-wrapper { width: 240px; height: 240px; }
    .profile-float { display: none; }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--bg);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: left 0.4s;
        gap: 20px;
    }
    .nav-menu.active { left: 0; }
    .menu-toggle { display: flex; }
    .menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .menu-toggle.active span:nth-child(2) { opacity: 0; }
    .menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -6px); }
    .nav-link { font-size: 18px; }
}

@media (max-width: 576px) {
    .home-title { font-size: 32px; }
    .home-metrics { flex-direction: column; gap: 16px; }
    .about-right { grid-template-columns: 1fr; }
    .social-stats { grid-template-columns: 1fr; }
    .reel-item { flex: 0 0 150px; }
    .portfolio-grid { grid-template-columns: 1fr; }
    .contact-right { padding: 20px; }
    .footer-content { flex-direction: column; text-align: center; }
    .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
}