:root {
    --main-color: #ff8c00;
    --main-color-light-bg: #feead6;
}

/**/
.flex {
    display: flex;
}

.w50 {
    width: 50%;
}

.ai-c {
    align-items: center;
}

.gap8 {
    gap: 8px;
}

.border-radius {
    border-radius: 16px;
}

@media (max-width: 768px) {
    .w100-m {
        width: 100% !important;
    }

    .f-wrap-m {
        flex-wrap: wrap !important;
    }
}

/* Reset and base styles - eredeti votl gabor innen kezdőfid*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

img {
    max-width: 100%;
    height: auto;
}

/* Layout components */
.container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 16px;
}

/* Layout components */
.container-stats {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 16px;
}

/* Layout components */
.row {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 16px;
}

.section-wrapper {
    width: 100%;
}

.flex-row {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.flex-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Header */
.header {
    background-color: #ffffff;
    padding: 16px 0;
    position: relative;
}

.header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    width: 150px;
    height: auto;
}

.contact-info {
    font-size: 12px;
    font-family: 'Barlow', Arial, sans-serif;
    font-weight: 500;
    color: #7b8794;
    text-align: center;
}

.nav-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}

.nav-dot {
    width: 15px;
    height: 15px;
    background-color: #fc943159;
    border-radius: 50px;
}

.nav-text {
    font-size: 16px;
    font-family: 'Barlow Condensed', Arial, sans-serif;
    font-weight: 500;
    color: #000000;
}

/* Hero Section */
.hero-section {
    background-image: url('images/adriana_header.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 60px 0;
    position: relative;
    min-height: 400px;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    max-width: 800px;
}

.hero-title {
    font-size: 32px;
    font-family: 'Roboto', Arial, sans-serif;
    font-weight: 900;
    line-height: 1.1;
    color: #ffffff;
    text-shadow: 1px 2px 1px rgba(32, 32, 32, 0.3);
}

.hero-subtitle {
    font-size: 20px;
    font-family: 'Roboto', Arial, sans-serif;
    font-weight: 900;
    line-height: 1.2;
    color: #212529;
    margin-top: 8px;
}

.cta-button {
    background-color: #000000;
    color: #ffffff;
    padding: 16px 24px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-family: 'Barlow', Arial, sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0px 1px 11px rgba(18, 10, 3, 0.44);
    transition: all 0.3s ease;
    margin-top: 16px;
}

.cta-button:hover {
    background-color: #333;
    transform: translateY(-2px);
}

/* Problems Section */
.problems-section {
    padding: 60px 0;
    text-align: center;
}

.section-title {
    font-size: 36px;
    font-family: 'Roboto', Arial, sans-serif;
    font-weight: 900;
    line-height: 1.2;
    color: var(--main-color);
    margin-bottom: 32px;
    text-align: center;
}

.problems-text {
    font-size: 16px;
    font-family: 'Roboto', Arial, sans-serif;
    font-weight: 500;
    line-height: 1.8;
    color: #414951;
    max-width: 800px;
    margin: 0 auto 24px;
}

.problems-cta {
    font-size: 18px;
    font-family: 'Roboto', Arial, sans-serif;
    font-weight: 900;
    line-height: 1.2;
    color: #414951;
    margin-top: 24px;
}

/* Solutions Section */
.solutions-section {
    padding: 60px 0;
}

.solution-item {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 48px;
    align-items: center;
}

.solution-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0px 4px 34px rgba(0, 0, 0, 0.36);
}

.solution-content {
    flex: 1;
}

p a {
    font-size: 24px;
    font-family: 'Roboto', Arial, sans-serif;
    font-weight: 900;
    line-height: 1.2;
    color: #fc9431;
    margin-bottom: 48px;
    text-decoration: none;
}

.solution-title {
    font-size: 24px;
    font-family: 'Roboto', Arial, sans-serif;
    font-weight: 500;
    line-height: 1.2;
    color: #323f4b;
    margin-bottom: 16px;
}

.solution-text {
    font-size: 16px;
    font-family: 'Roboto', Arial, sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: #323f4b;
    text-align: justify;
}

/* Statistics Section */
.stats-section {
    background-color: var(--main-color);
    padding: 48px 0;
    text-align: center;
    color: #ffffff;
}

.stats-title {
    font-size: 36px;
    font-family: 'Roboto', Arial, sans-serif;
    font-weight: 900;
    line-height: 1.2;
    color: #fc9431;
    margin-bottom: 48px;
}

.color-orange {
    color: #fc9431 !important;
    text-align: center;
}

.stats-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
    background-color: #ffffff;
    padding: 32px 16px;
    border-radius: 8px;
    margin: 0 auto;
    max-width: 100%;
}

.stat-item {
    text-align: center;
}

.align-center {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-family: 'Barlow Condensed', Arial, sans-serif;
    font-weight: 500;
    line-height: 1.2;
    color: #323f4b;
    margin-bottom: 8px;
}

.stat-text {
    font-size: 14px;
    font-family: 'Barlow', Arial, sans-serif;
    font-weight: 500;
    line-height: 1.4;
    color: #212529;
}

.stats-cta {
    margin-top: 32px;
}

.stats-cta-text {
    font-size: 24px;
    font-family: 'Roboto', Arial, sans-serif;
    font-weight: 900;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 24px;
}

/* Testimonials Section */
.testimonials-section {
    background-color: #f5f7fa;
    padding: 60px 0;
    text-align: center;
}

.testimonials-title {
    font-size: 36px;
    font-family: 'Roboto', Arial, sans-serif;
    font-weight: 900;
    line-height: 1.2;
    color: #fc9431;
    margin-bottom: 48px;
}

.testimonial-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin: 0 auto;
}

/* Consultation Section */
.consultation-section {
    padding: 60px 0;
}

.consultation-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.consultation-text {
    flex: 1;
}

.consultation-title {
    font-size: 32px;
    font-family: 'Roboto', Arial, sans-serif;
    font-weight: 900;
    line-height: 1.2;
    color: #323f4b;
    margin-bottom: 16px;
}

.consultation-subtitle {
    font-size: 24px;
    font-family: 'Roboto', Arial, sans-serif;
    font-weight: 400;
    line-height: 1.2;
    color: #323f4b;
    margin-bottom: 24px;
}

.consultation-description {
    font-size: 18px;
    font-family: 'Roboto', Arial, sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: #323f4b;
}

/* Form */
.form-container {
    background-color: #ffffff;
    padding: 32px;
    border-radius: 14px;
    box-shadow: 0px 4px 34px rgba(32, 32, 32, 0.2);
    max-width: 500px;
    margin: 0 auto;
}

.form-header {
    background-image: url('images/img_rectangle_72.svg');
    background-size: cover;
    background-position: center;
    padding: 32px;
    border-radius: 8px 8px 0 0;
    text-align: center;
    margin: -32px -32px 32px -32px;
}

.form-title {
    font-size: 28px;
    font-family: 'Roboto', Arial, sans-serif;
    font-weight: 900;
    line-height: 1.2;
    color: #ffffff;
}

.form-group {
    margin-bottom: 24px;
}

.form-input {
    width: 100%;
    padding: 14px 20px;
    border: none;
    border-radius: 26px;
    background-color: #ececec;
    font-size: 16px;
    font-family: 'Inter', Arial, sans-serif;
    color: #111;
}

.form-input::placeholder {
    color: rgba(17, 17, 17, 0.6);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 24px;
}

.checkbox {
    width: 16px;
    height: 16px;
    border: 1px solid #a5a5a5;
    background-color: #ffffff;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label {
    font-size: 14px;
    font-family: 'Inter', Arial, sans-serif;
    color: rgba(17, 17, 17, 0.6);
    line-height: 1.2;
}

.checkbox-label a {
    color: #fc9130;
    text-decoration: underline;
}

.form-submit {
    background-color: #000000;
    color: #ffffff;
    padding: 16px 24px;
    border: none;
    border-radius: 30px;
    font-size: 18px;
    font-family: 'Barlow', Arial, sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0px 1px 11px rgba(18, 10, 3, 0.44);
    transition: all 0.3s ease;
    width: 100%;
}

ul {
    list-style-position: inside;
}

.form-submit:hover {
    background-color: #333;
    transform: translateY(-2px);
}

/* Footer */
.footer-container {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-around;
    align-content: flex-start;
    align-items: center;
}

.footer {
    background-color: #323f4b;
    color: #ffffff;
    padding: 32px 0;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.footer-logo {
    width: 150px;
    height: auto;
}

.footer-menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.dot-container {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    align-content: space-around;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.footer-menu-item {
    font-size: 16px;
    font-family: 'Barlow Condensed', Arial, sans-serif;
    font-weight: 500;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-menu-item:hover {
    color: #fc9431;
}

.footer-contact {
    text-align: center;
    margin-bottom: 24px;
}

.footer-contact-text {
    font-size: 14px;
    font-family: 'Barlow', Arial, sans-serif;
    font-weight: 500;
    color: #d6d6d6;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
}

.social-icon {
    width: 50px;
    height: 40px;
    object-fit: contain;
}

.footer-divider {
    width: 100%;
    height: 2px;
    background-color: #c0c0c0;
    margin: 24px 0;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}

.footer-copyright {
    font-size: 12px;
    font-family: 'Barlow', Arial, sans-serif;
    font-weight: 500;
    color: rgba(214, 214, 214, 0.7);
}

/* Interactive states */
.cta-button:active {
    transform: scale(0.98);
}

.form-input:focus {
    outline: 2px solid #fc9431;
    outline-offset: 2px;
}

/* Background */
.eclipse-1 {
    background: url(images/Ellipse_3.png);
    background-repeat: no-repeat;
    background-size: contain;
}

.eclipse-2 {
    background: url(images/Ellipse_4.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right;
}

.eclipse-3 {
    background: url(images/img_vector.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right;
}

@media only screen and (max-width:465px) {

    /* Background */
    .eclipse-1 {
        background: none !important
    }

    .eclipse-2 {
        background: none !important
    }

    .eclipse-3 {
        background: none !important
    }

    .testimonial-image {
        margin-top: -250px !important
    }

    .footer-container {
        flex-direction: column !important;
    }
}

@media only screen and (max-width:768px) {
    .stats-grid {
        flex-direction: column !important;
    }

    /* Background */
    .eclipse-1 {
        background: none !important
    }

    .eclipse-2 {
        background: none !important
    }

    .eclipse-3 {
        background: none !important
    }
}

/* Responsive media queries */
@media (min-width: 640px) {
    .container {
        padding: 0 24px;
    }

    .hero-title {
        font-size: 42px;
    }

    .section-title {
        font-size: 48px;
    }

    .stats-grid {
        flex-direction: row;
        justify-content: space-around;
    }

    .stat-number {
        font-size: 60px;
    }
}

@media (min-width: 768px) {
    .container {
        padding: 0 32px;
    }

    .header-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .contact-info {
        font-size: 14px;
        text-align: right;
    }

    .hero-title {
        font-size: 48px;
    }

    .section-title {
        font-size: 54px;
    }

    .solution-item {
        flex-direction: row;
        text-align: left;
    }

    .solution-item:nth-child(even) {
        flex-direction: row-reverse;
    }

    .consultation-content {
        flex-direction: row;
    }

    .footer-nav {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 48px;
    }

    .hero-title {
        font-size: 56px;
    }

    .section-title {
        font-size: 60px;
    }

    .stat-number {
        font-size: 80px;
    }

    .consultation-title {
        font-size: 42px;
    }
}

@media (min-width: 1280px) {
    .hero-section {
        min-height: 600px;
    }

    .stats-grid {
        max-width: 100%;
    }
}

/**
* Gabor
*/
a[href^="mailto:"],
a[href^="tel:"] {
    all: unset;
    cursor: pointer;
    text-decoration: none !important;
    color: inherit !important;
}

.problems-example {
    max-width: 600px;
    margin: 0 auto;
    background: #feead6;
    border-radius: 16px;
    box-shadow: 0 2px 16px #0001;
    padding: 32px 24px;
}

.problems-example-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--main-color);
    margin-bottom: 16px;
}

.problems-example-list {
    list-style: none;
    padding: 0;
    margin-bottom: 16px;
}

.problems-example-item {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.problems-example-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 12px;
    background: #bbb;
}

.problems-example-dot-new {
    background: #27ae60;
}

.problems-example-label {
    font-weight: 500;
}

.problems-example-value {
    margin-left: 8px;
    font-weight: 700;
}

.problems-example-value-success {
    color: #27ae60;
}

.problems-example-desc {
    font-size: 16px;
    font-weight: 500;
    color: #333;
}

/**
*
*/
.pricing-section {
    padding: 64px 0 32px 0;
}

.pricing-box {
    max-width: 600px;
    margin: 0 auto 32px auto;
    background: var(--main-color-light-bg);
    border-radius: 16px;
    box-shadow: 0 2px 16px #0001;
    padding: 32px 24px;
    text-align: center;
}

.pricing-highlight {
    font-size: 20px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 16px;
}

.pricing-info {
    font-size: 16px;
    color: #323f4b;
    margin-bottom: 24px;
    line-height: 1.6;
}

.pricing-cta-row {
    margin-top: 16px;
}

.pricing-cta-link {
    display: inline-block;
    background: #ff8c00;
    color: #fff;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s;
}

.pricing-cta-link:hover {
    background: #e67600;
}

/**
*
*/
.consultation-section {
    padding: 64px 0;
}

.consultation-box {
    max-width: 600px;
    margin: 0 auto 32px auto;
    background: var(--main-color-light-bg);
    border-radius: 16px;
    box-shadow: 0 2px 16px #0001;
    padding: 32px 24px;
    text-align: center;
}

.consultation-lead {
    font-size: 18px;
    font-weight: 500;
    color: #323f4b;
    margin-bottom: 20px;
}

.consultation-list {
    list-style: none;
    padding: 0;
    margin-bottom: 24px;
    text-align: left;
}

.consultation-list li {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    margin-bottom: 10px;
    gap: 10px;
}

.consultation-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--main-color);
    margin-right: 8px;
    flex-shrink: 0;
}

.consultation-cta-row {
    margin: 24px 0 12px 0;
}

.consultation-cta-link {
    display: inline-block;
    background: #ff8c00;
    color: #fff;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s;
}

.consultation-cta-link:hover {
    background: #e67600;
}

.consultation-note {
    font-size: 15px;
    color: #7b8794;
    margin-top: 8px;
}

.text-c {
    text-align: center;
}

/**
* FOOTER CTA
*/
.cta-final-section {
    padding: 64px 0 32px 0;
}

.cta-final-box {
    max-width: 600px;
    margin: 0 auto 32px auto;
    background: #fffbe6;
    border-radius: 16px;
    box-shadow: 0 2px 16px #0001;
    padding: 32px 24px;
    text-align: center;
}

.cta-final-lead {
    font-size: 20px;
    font-weight: 700;
    color: #ff8c00;
    margin-bottom: 12px;
}

.cta-final-sub {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: #323f4b;
    margin-top: 6px;
}

.cta-final-desc {
    font-size: 17px;
    font-weight: 500;
    color: #323f4b;
    margin-bottom: 24px;
}

.cta-final-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    margin-bottom: 18px;
}

@media (min-width: 600px) {
    .cta-final-actions {
        flex-direction: row;
        justify-content: center;
    }
}

@media (max-width: 600px) {

    .problems-features-row,
    .problems-benefits-row {
        flex-direction: column;
    }
}

.cta-final-btn {
    display: inline-block;
    background: #ff8c00;
    color: #fff;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    transition: background 0.2s;
    box-shadow: 0 1px 8px #0001;
}

.cta-final-btn-main {
    background: #ff8c00;
}

.cta-final-btn-alt {
    background: #323f4b;
}

.cta-final-btn:hover {
    background: #e67600;
    color: #fff;
}

.cta-final-btn-alt:hover {
    background: #444d5a;
}

.cta-final-note {
    font-size: 15px;
    color: #7b8794;
    margin-top: 10px;
}

/**
*
*/
.normal_link {
    color: inherit !important;
    text-decoration: none !important;
    font-weight: normal !important;
    font-size: inherit !important;
}

.highlighted {
    color: var(--main-color);
    font-weight: 700;
}