/* === RESET & BASE === */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: #2d3748;
    background-color: #ffffff;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* === UTILITY CLASSES === */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section__header {
    text-align: center;
    margin-bottom: 4rem;
}

.section__title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section__subtitle {
    font-size: 1.125rem;
    color: #4a5568;
    max-width: 600px;
    margin: 0 auto;
}

/* === HEADER & NAVIGATION === */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid #e2e8f0;
}

.nav {
    padding: 1rem 0;
}

.nav__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav__brand h1 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #0f5132;
}

.nav__menu {
    display: flex;
}

.nav__list {
    display: flex;
    gap: 2rem;
}

.nav__link {
    font-weight: 500;
    color: #4a5568;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav__link:hover {
    color: #0f5132;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #0f5132;
    transition: width 0.3s ease;
}

.nav__link:hover::after {
    width: 100%;
}

.nav__toggle {
    display: none;
    font-size: 1.5rem;
    color: #4a5568;
}

/* === HERO SECTION === */
.hero {
    padding: 8rem 0 4rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.hero__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero__content {
    max-width: 500px;
}

.hero__title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    color: #1a202c;
    margin-bottom: 1.5rem;
}

.hero__accent {
    color: #0f5132;
}

.hero__description {
    font-size: 1.125rem;
    color: #4a5568;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero__features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.hero__feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #2d3748;
}

.hero__feature i {
    color: #0f5132;
    font-size: 1.25rem;
    width: 20px;
}

.hero__cta {
    display: inline-flex;
    align-items: center;
    background-color: #0f5132;
    color: white;
    padding: 1rem 2rem;
    font-weight: 600;
    font-size: 1.125rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(15, 81, 50, 0.3);
}

.hero__cta:hover {
    background-color: #0a3d26;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(15, 81, 50, 0.4);
}

.hero__image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero__image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* === SERVICES SECTION === */
.services {
    padding: 5rem 0;
    background-color: #ffffff;
}

.services__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.service__card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    text-align: center;
}

.service__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.service__icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0f5132, #198155);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service__icon i {
    font-size: 1.75rem;
    color: white;
}

.service__title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 1rem;
}

.service__description {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* === ADVANTAGES SECTION === */
.advantages {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.advantages__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.advantages__grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.advantage__card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}

.advantage__card:nth-child(even) {
    direction: rtl;
}

.advantage__card:nth-child(even) .advantage__content {
    direction: ltr;
}

.advantage__image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.advantage__title {
    font-size: 1.75rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 1.5rem;
}

.advantage__text {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.advantage__text:last-child {
    margin-bottom: 0;
}

/* === CATALOG SECTION === */
.catalog {
    padding: 5rem 0;
    background-color: #ffffff;
}

.catalog__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.catalog__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.catalog__card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.catalog__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.catalog__image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.catalog__content {
    padding: 2rem;
}

.catalog__title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 1rem;
}

.catalog__description {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.catalog__features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.catalog__feature {
    background: #e2e8f0;
    color: #0f5132;
    font-weight: 500;
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

/* === PROCESS SECTION === */
.process {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.process__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.process__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.process__step {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    position: relative;
    transition: all 0.3s ease;
}

.process__step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.step__number {
    width: 50px;
    height: 50px;
    background: #0f5132;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step__image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.step__title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 1rem;
}

.step__description {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

/* === INSURANCE SECTION === */
.insurance {
    padding: 5rem 0;
    background-color: #ffffff;
}

.insurance__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.insurance__content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.insurance__subtitle {
    font-size: 1.75rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 1.5rem;
}

.insurance__description {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    font-size: 1.125rem;
}

.insurance__benefits {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.insurance__benefit {
    display: flex;
    gap: 1rem;
}

.insurance__benefit i {
    color: #0f5132;
    font-size: 1.5rem;
    margin-top: 0.25rem;
    min-width: 24px;
}

.insurance__benefit h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.insurance__benefit p {
    color: #4a5568;
    line-height: 1.6;
}

.insurance__image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* === CONTACT SECTION === */
.contact {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.contact__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact__info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 2rem;
}

.contact__benefits {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact__benefit {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 1.25rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.contact__benefit i {
    color: #0f5132;
    font-size: 1.25rem;
    min-width: 20px;
}

.contact__benefit span {
    font-weight: 500;
    color: #2d3748;
}

.contact__form-container {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}

.form__group {
    margin-bottom: 1.5rem;
}

.form__label {
    display: block;
    font-weight: 500;
    color: #2d3748;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form__input,
.form__select,
.form__textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: #f8fafc;
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
    outline: none;
    border-color: #0f5132;
    background: white;
}

.form__textarea {
    resize: vertical;
    min-height: 100px;
}

.form__submit {
    width: 100%;
    background: #0f5132;
    color: white;
    padding: 1rem 2rem;
    font-weight: 600;
    font-size: 1.125rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.form__submit:hover {
    background: #0a3d26;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(15, 81, 50, 0.3);
}

.form__disclaimer {
    font-size: 0.875rem;
    color: #4a5568;
    line-height: 1.5;
    text-align: center;
}

.form__disclaimer a {
    color: #0f5132;
    text-decoration: underline;
}

.form__disclaimer a:hover {
    color: #0a3d26;
}

/* === FOOTER === */
.footer {
    background-color: #1a202c;
    color: white;
    padding: 4rem 0 2rem;
}

.footer__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer__content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer__title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #0f5132;
    margin-bottom: 1rem;
}

.footer__description {
    color: #a0aec0;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.footer__contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer__contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #a0aec0;
}

.footer__contact-item i {
    color: #0f5132;
    min-width: 16px;
}

.footer__subtitle {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
}

.footer__list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer__list a {
    color: #a0aec0;
    transition: color 0.3s ease;
}

.footer__list a:hover {
    color: #0f5132;
}

.footer__bottom {
    border-top: 1px solid #2d3748;
    padding-top: 2rem;
    text-align: center;
}

.footer__bottom p {
    color: #a0aec0;
}

/* === COOKIE NOTICE === */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid #e2e8f0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-notice.show {
    transform: translateY(0);
}

.cookie-notice__content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-notice__text {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #4a5568;
    line-height: 1.5;
}

.cookie-notice__text i {
    color: #0f5132;
    font-size: 1.5rem;
}

.cookie-notice__actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.cookie-notice__accept {
    background: #0f5132;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    transition: background 0.3s ease;
}

.cookie-notice__accept:hover {
    background: #0a3d26;
}

.cookie-notice__learn {
    color: #0f5132;
    text-decoration: underline;
    font-weight: 500;
}

.cookie-notice__learn:hover {
    color: #0a3d26;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 1024px) {
    .hero__container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .hero__title {
        font-size: 2.5rem;
    }
    
    .advantage__card {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .advantage__card:nth-child(even) {
        direction: ltr;
    }
    
    .insurance__content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact__content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer__content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav__menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        border-top: 1px solid #e2e8f0;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .nav__menu.show {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav__list {
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
    }
    
    .nav__toggle {
        display: block;
    }
    
    .hero {
        padding: 6rem 0 3rem;
    }
    
    .hero__title {
        font-size: 2rem;
    }
    
    .section__title {
        font-size: 2rem;
    }
    
    .services__grid,
    .catalog__grid,
    .process__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .advantage__card {
        padding: 2rem;
    }
    
    .advantage__title {
        font-size: 1.5rem;
    }
    
    .contact__form-container {
        padding: 2rem;
    }
    
    .footer__content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cookie-notice__content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .cookie-notice__text {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero__title {
        font-size: 1.75rem;
    }
    
    .section__title {
        font-size: 1.75rem;
    }
    
    .hero__features {
        align-items: flex-start;
    }
    
    .service__card,
    .process__step {
        padding: 1.5rem;
    }
    
    .advantage__card {
        padding: 1.5rem;
    }
    
    .contact__form-container {
        padding: 1.5rem;
    }
    
    .form__input,
    .form__select,
    .form__textarea {
        font-size: 16px; /* Prevents zoom on iOS */
    }
}

/* === ACCESSIBILITY === */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* === FOCUS STYLES === */
.nav__link:focus,
.hero__cta:focus,
.form__input:focus,
.form__select:focus,
.form__textarea:focus,
.form__submit:focus,
.cookie-notice__accept:focus {
    outline: 2px solid #0f5132;
    outline-offset: 2px;
}

/* === POLICY PAGES === */
.policy-page {
    padding: 8rem 0 4rem;
    background-color: #ffffff;
}

.policy-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.policy-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e2e8f0;
}

.policy-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1rem;
}

.policy-subtitle {
    color: #0f5132;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.policy-intro {
    font-size: 1.125rem;
    color: #4a5568;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

.policy-content {
    margin-bottom: 3rem;
}

.policy-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #f7fafc;
}

.policy-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.policy-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #0f5132;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e2e8f0;
}

.policy-section p {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 1.25rem;
    text-align: justify;
}

.policy-section p:last-child {
    margin-bottom: 0;
}

.policy-footer {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    text-align: center;
}

.policy-footer p {
    color: #4a5568;
    margin-bottom: 0.5rem;
}

.policy-footer p:last-child {
    margin-bottom: 0;
}

/* === POLICY PAGES RESPONSIVE === */
@media (max-width: 768px) {
    .policy-page {
        padding: 6rem 0 3rem;
    }
    
    .policy-header h1 {
        font-size: 2rem;
    }
    
    .policy-intro {
        font-size: 1rem;
    }
    
    .policy-section h2 {
        font-size: 1.25rem;
    }
    
    .policy-section p {
        text-align: left;
    }
    
    .policy-footer {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .policy-header h1 {
        font-size: 1.75rem;
    }
    
    .policy-section h2 {
        font-size: 1.125rem;
    }
} 