@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/7.0.1/css/all.min.css');

:root {
  --primary-color: #0F1021;
  --secondary-color: #D01257;
  --accent-color: #FB90B7;
  --light-color: #FFCEE4;
  --dark-color: #0a0a16;
  --gradient-primary: linear-gradient(135deg, #D01257 0%, #FB90B7 100%);
  --hover-color: #a80d45;
  --background-color: #14152b;
  --text-color: #e2e8f0;
  --border-color: rgba(251, 144, 183, 0.2);
  --divider-color: rgba(208, 18, 87, 0.3);
  --shadow-color: rgba(0, 0, 0, 0.5);
  --shadow-light: rgba(255, 255, 255, 0.05);
  --highlight-color: #FB90B7;
  --main-font: 'Oswald', sans-serif;
  --alt-font: 'Poppins', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--alt-font);
    color: var(--text-color);
    background-color: var(--background-color);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 { font-family: var(--main-font); color: var(--light-color); text-transform: uppercase; letter-spacing: 1px;}
.text-accent { color: var(--accent-color) !important; }
.text-white { color: #ffffff !important; }

/* Utilities */
.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.section-py { padding-top: 10dvh; padding-bottom: 10dvh; }
.bg-dark-alt { background-color: var(--dark-color); }

/* Dark Neumorphism */
.neo-card-dark {
    background: var(--background-color);
    border-radius: 16px;
    box-shadow: 8px 8px 16px var(--shadow-color), -8px -8px 16px var(--shadow-light);
    border: 1px solid var(--border-color);
    padding: 25px;
    transition: all 0.3s ease;
}
.neo-card-dark:hover {
    box-shadow: inset 4px 4px 8px var(--shadow-color), inset -4px -4px 8px var(--shadow-light);
}
.input-dark {
    background: var(--background-color);
    border: none;
    border-radius: 8px;
    box-shadow: inset 4px 4px 8px var(--shadow-color), inset -4px -4px 8px var(--shadow-light);
    padding: 15px;
    font-family: var(--alt-font);
    color: var(--text-color);
}
.input-dark:focus {
    outline: none;
    box-shadow: inset 6px 6px 12px var(--shadow-color), inset -6px -6px 12px var(--shadow-light);
    border: 1px solid var(--accent-color);
}
.neo-shadow-dark { box-shadow: 10px 10px 20px var(--shadow-color); }

/* Header */
.app-header {
    background-color: var(--primary-color);
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
}
.nav-trigger { display: none; }
.nav-btn { display: none; font-size: 28px; cursor: pointer; color: var(--light-color); }
.nav-menu { display: flex; list-style: none; gap: 20px; }
.app-header a { color: var(--text-color); text-decoration: none; font-weight: 600; text-transform: uppercase; font-size: 14px;}
.hover-link:hover { color: var(--accent-color); }

/* Buttons */
.btn-primary, .btn-accent {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-family: var(--main-font);
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
}
.btn-primary { background: var(--secondary-color); color: #ffffff; }
.btn-primary:hover { background: var(--hover-color); transform: translateY(-2px); }
.btn-accent { background: var(--gradient-primary); color: var(--primary-color); }
.btn-accent:hover { opacity: 0.9; }

/* Hero */
.hero-screen {
    position: relative; display: flex; align-items: center; text-align: center;
    background: url('./img/bg.jpg') no-repeat center center/cover;
}
.hero-bg-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(15, 16, 33, 0.8); z-index: 1;
}
.hero-wrap { position: relative; z-index: 2; }
.hero-wrap h1 { color: #ffffff; }

/* Layout Blocks */
.row-flex, .row-flex-reverse { display: flex; flex-wrap: wrap; align-items: center; gap: 40px; }
.w-40 { width: calc(40% - 20px); }
.w-50 { width: calc(50% - 20px); }
.w-60 { width: calc(60% - 20px); }
.img-rounded { border-radius: 12px; width: 100%; height: auto; display: block; }

/* Divider */
.section-divider { display: flex; align-items: center; justify-content: center; padding: 20px 0; }
.div-line { height: 1px; background-color: var(--divider-color); flex-grow: 1; max-width: 30%; }
.div-text { padding: 0 20px; font-family: var(--main-font); color: var(--accent-color); }

/* CTA Banners */
.cta-banner { position: relative; padding: 12dvh 0; background-attachment: fixed; background-size: cover; }
.cta-wrap { position: relative; z-index: 2; }

/* Grids */
.timeline-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.icon-feature { font-size: 35px; color: var(--secondary-color); margin-bottom: 15px; }

.testimonials-wrap { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 25px; }
.faq-list { max-width: 800px; margin: 0 auto; }

/* Form */
.contact-wrapper { padding: 40px; }

/* Footer */
.app-footer { background-color: var(--primary-color); padding: 50px 0 20px; border-top: 1px solid var(--border-color); }
.footer-layout { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; }
.footer-links-list { display: flex; list-style: none; gap: 15px; }
.app-footer a { color: var(--text-color); text-decoration: none; }

/* Responsive */
@media (max-width: 768px) {
    .nav-btn { display: block; }
    .nav-menu {
        display: none; flex-direction: column; position: absolute; top: 100%; left: 0;
        width: 100%; background-color: var(--primary-color); padding: 20px; text-align: center;
        border-bottom: 1px solid var(--border-color);
    }
    .nav-trigger:checked ~ .nav-menu { display: flex; }
    .w-40, .w-50, .w-60 { width: 100%; }
    .row-flex-reverse { flex-direction: column-reverse; }
    .footer-layout { flex-direction: column; text-align: center; gap: 20px; }
    .footer-links-list { flex-direction: column; }
    .contact-wrapper { padding: 20px; }
}