@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/7.0.1/css/all.min.css');

:root {
  --primary-color: #2C3E50;
  --secondary-color: #1ABC9C;
  --accent-color: #34495E;
  --light-color: #ECF0F1;
  --dark-color: #1A252F;
  --gradient-primary: linear-gradient(135deg, #1ABC9C 0%, #2C3E50 100%);
  --hover-color: #16A085;
  --background-color: #FAFAFA;
  --text-color: #333333;
  --border-color: rgba(44, 62, 80, 0.2);
  --divider-color: rgba(26, 188, 156, 0.2);
  --shadow-color: rgba(0, 0, 0, 0.1);
  --highlight-color: #E74C3C;
  --main-font: 'Roboto Condensed', sans-serif;
  --alt-font: 'Open 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(--primary-color);
}

.text-white { color: #ffffff !important; }
.text-dark { color: var(--text-color) !important; }

/* Utilities */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}
.section-padding {
    padding-top: 10dvh;
    padding-bottom: 10dvh;
}
.bg-light { background-color: var(--light-color); }
.bg-dark { background-color: var(--primary-color); }

/* Neo-morphism */
.neo-box {
    background: var(--background-color);
    border-radius: 15px;
    box-shadow: 8px 8px 16px var(--shadow-color), -8px -8px 16px #ffffff;
    border: 1px solid var(--border-color);
    padding: 20px;
    transition: all 0.3s ease;
}
.neo-box:hover {
    box-shadow: inset 4px 4px 8px var(--shadow-color), inset -4px -4px 8px #ffffff;
}
.neo-input {
    background: var(--background-color);
    border: none;
    border-radius: 8px;
    box-shadow: inset 4px 4px 8px var(--shadow-color), inset -4px -4px 8px #ffffff;
    padding: 15px;
    font-family: var(--alt-font);
}
.neo-input:focus {
    outline: none;
    box-shadow: inset 6px 6px 12px var(--shadow-color), inset -6px -6px 12px #ffffff;
}
.neo-shadow {
    box-shadow: 10px 10px 20px var(--shadow-color);
}

/* Header */
.site-header {
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.site-header a { color: #ffffff; text-decoration: none; }
.menu-checkbox { display: none; }
.menu-icon {
    display: none;
    font-size: 28px;
    cursor: pointer;
}
.nav-list {
    display: flex;
    list-style: none;
    gap: 20px;
}
.hover-underline:hover { text-decoration: underline; color: var(--secondary-color); }

/* Buttons */
.btn-primary, .btn-highlight {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-family: var(--main-font);
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: background-color 0.3s;
}
.btn-primary {
    background: var(--gradient-primary);
    color: #ffffff;
}
.btn-primary:hover { background: var(--hover-color); color: #ffffff; }
.btn-highlight {
    background-color: var(--highlight-color);
    color: #ffffff;
}
.btn-highlight:hover { background-color: #c0392b; }

/* Hero */
.hero-section {
    position: relative;
    display: flex;
    align-items: center;
    text-align: center;
    color: #ffffff;
    background: url('./img/bg.jpg') no-repeat center center/cover;
}
.hero-overlay, .cta-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}
.hero-content, .cta-content {
    position: relative;
    z-index: 2;
}
.hero-content h1 { color: #ffffff; }

/* Flex Containers */
.flex-container, .flex-container-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); }
.rounded-image { border-radius: 15px; width: 100%; height: auto; display: block; }

/* Divider */
.divider-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
}
.divider-line {
    height: 1px;
    background-color: var(--border-color);
    flex-grow: 1;
    max-width: 30%;
}
.divider-text {
    padding: 0 20px;
    font-family: var(--main-font);
    font-weight: bold;
    color: var(--primary-color);
}

/* CTA Sections */
.cta-section {
    position: relative;
    padding: 10dvh 0;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    color: #ffffff;
}
.cta-section h2 { color: #ffffff; }

/* Timeline / Features */
.timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.feature-icon {
    font-size: 40px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* FAQ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { padding: 20px; }

/* Footer */
.site-footer {
    background-color: var(--dark-color);
    color: #ffffff;
    padding: 40px 0 20px;
}
.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.flex-footer-links {
    display: flex;
    list-style: none;
    gap: 15px;
}
.site-footer a { color: #ffffff; text-decoration: none; }

/* Responsive */
@media (max-width: 768px) {
    .menu-icon { display: block; }
    .nav-list {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--primary-color);
        padding: 20px;
        text-align: center;
    }
    .menu-checkbox:checked ~ .nav-list { display: flex; }
    .w-40, .w-50, .w-60 { width: 100%; }
    .flex-container-reverse { flex-direction: column-reverse; }
    .footer-container { flex-direction: column; text-align: center; gap: 20px; }
    .flex-footer-links { flex-direction: column; }
}