/* styles-new.css - Additional styles for new marketing content */
/* Works alongside existing styles.css */

/* ========================
   HERO STATS (€1/day, 90 Days, Unlimited)
   ======================== */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 40px auto 40px;
    max-width: 700px;
}
.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.hero-stat-value {
    font-family: "Unna", serif;
    font-size: 35px;
    font-weight: 700;
    line-height: 1.2;
    color: #000;
}
.hero-stat-label {
    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-style: italic;
    font-weight: 400;
    color: #555;
    margin-top: 4px;
}
@media only screen and (max-width: 767px) {
    .hero-stats {
        gap: 20px;
        margin: 30px auto;
    }
    .hero-stat-value {
        font-size: 23px;
    }
    .hero-stat-label {
        font-size: 10px;
    }
}

/* ========================
   STEP NUMBERS (1, 2, 3 in how-it-works cards)
   ======================== */
.step-number {
    font-family: "Unna", serif;
    font-size: 47px;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
.image-container.orange .step-number {
    color: #fff;
}

/* ========================
   NETWORK MATH SECTION
   ======================== */
.network-math {
    padding: 0 0 100px;
}
.math-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}
.math-card {
    background: #f8f8f8;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.math-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.math-card-highlight {
    background: #000;
    color: #fff;
}
.math-card-highlight .math-big {
    color: #FFA163;
}
.math-card-icon {
    margin-bottom: 16px;
}
.math-card-icon span {
    display: inline-block;
    font-family: "Inter", sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 16px;
    border-radius: 20px;
    background: #e8e8e8;
    color: #333;
}
.math-card-highlight .math-card-icon span {
    background: #FFA163;
    color: #000;
}
.math-card h3 {
    font-family: "Inter", sans-serif;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 20px;
}
.math-big {
    font-family: "Unna", serif;
    font-size: 63px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 8px;
    color: #000;
}
.math-detail {
    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-style: italic;
    font-weight: 500;
    color: #666;
    margin-bottom: 16px;
}
.math-card-highlight .math-detail {
    color: #ccc;
}
.math-explain {
    font-family: "Inter", sans-serif;
    font-size: 11px;
    font-style: italic;
    line-height: 20px;
    color: #888;
}
.math-card-highlight .math-explain {
    color: #aaa;
}
@media only screen and (max-width: 1023px) {
    .network-math {
        padding: 0 0 70px;
    }
    .math-big {
        font-size: 47px;
    }
}
@media only screen and (max-width: 767px) {
    .math-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 400px;
    }
    .network-math {
        padding: 0 0 50px;
    }
    .math-card {
        padding: 30px 20px;
    }
    .math-big {
        font-size: 47px;
    }
}

/* ========================
   OBJECTIONS SECTION
   ======================== */
.objections-section {
    padding: 100px 0;
    background: #fafafa;
}
.objection-block {
    max-width: 800px;
    margin: 0 auto 50px;
    padding: 40px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.04);
}
.objection-block:last-child {
    margin-bottom: 0;
}
.objection-question {
    font-family: "Unna", serif;
    font-size: 27px;
    line-height: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
}
.objection-points {
    margin-top: 20px;
}
.objection-point {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-style: italic;
    line-height: 28px;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}
.objection-point:last-child {
    border-bottom: none;
}
@media only screen and (max-width: 1023px) {
    .objections-section {
        padding: 70px 0;
    }
    .objection-block {
        padding: 30px;
    }
    .objection-question {
        font-size: 23px;
        line-height: 32px;
    }
}
@media only screen and (max-width: 767px) {
    .objections-section {
        padding: 50px 0;
    }
    .objection-block {
        padding: 24px 20px;
        margin-bottom: 30px;
    }
    .objection-question {
        font-size: 19px;
        line-height: 28px;
    }
    .objection-point {
        font-size: 12px;
        line-height: 24px;
    }
}

/* ========================
   ROI CALCULATOR
   ======================== */
.roi-calc {
    margin: 20px 0;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e8e8e8;
}
.roi-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    font-family: "Inter", sans-serif;
    font-size: 13px;
    font-style: italic;
    line-height: 24px;
    border-bottom: 1px solid #f0f0f0;
}
.roi-row:last-child {
    border-bottom: none;
}
.roi-label {
    font-weight: 500;
    color: #333;
}
.roi-value {
    font-weight: 400;
    color: #555;
    text-align: right;
}
.roi-without {
    background: #fff5f5;
}
.roi-without .roi-value {
    color: #c0392b;
    font-weight: 600;
}
.roi-with {
    background: #f0faf0;
}
.roi-with .roi-value {
    color: #27ae60;
    font-weight: 600;
}
.roi-result {
    background: #000;
}
.roi-result .roi-label,
.roi-result .roi-value {
    color: #FFA163;
    font-weight: 700;
    font-size: 15px;
}
@media only screen and (max-width: 767px) {
    .roi-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        padding: 12px 16px;
    }
    .roi-value {
        text-align: left;
    }
    .roi-row {
        font-size: 12px;
    }
    .roi-result .roi-label,
    .roi-result .roi-value {
        font-size: 13px;
    }
}

/* ========================
   PRICING TRIAL NOTE & PROMISE BLOCK
   ======================== */
.pricing-trial-note {
    font-family: "Inter", sans-serif;
    font-size: 11px;
    font-style: italic;
    color: #888;
    margin-top: 12px;
    text-align: center;
}
.promise-block {
    max-width: 600px;
    margin: 50px auto 0;
    text-align: center;
    padding: 30px;
    background: #f8f8f8;
    border-radius: 12px;
}
.promise-block h3 {
    font-family: "Unna", serif;
    font-size: 23px;
    font-weight: 700;
    margin-bottom: 14px;
    color: #000;
}
.promise-block p {
    font-family: "Inter", sans-serif;
    font-size: 13px;
    font-style: italic;
    line-height: 26px;
    color: #555;
}
@media only screen and (max-width: 767px) {
    .promise-block {
        padding: 24px 20px;
        margin-top: 30px;
    }
    .promise-block h3 {
        font-size: 19px;
    }
    .promise-block p {
        font-size: 12px;
        line-height: 24px;
    }
}

/* ========================
   CONTACT FORM SECTION
   ======================== */
.contact-section {
    padding: 100px 0;
    background: #fff;
}
.contact-inner {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}
.contact-inner h2 {
    font-family: "Unna", serif;
    font-size: 39px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #000;
}
.contact-inner .contact-subtitle {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-style: italic;
    color: #555;
    margin-bottom: 40px;
}
.contact-form {
    text-align: left;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #333;
    margin-bottom: 8px;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-style: italic;
    color: #333;
    background: #f8f8f8;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    outline: none;
    transition: border-color 0.2s ease;
    box-sizing: border-box;
}
.form-group input:focus,
.form-group textarea:focus {
    border-color: #FFA163;
}
.form-group textarea {
    height: 140px;
    resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aaa;
    font-style: italic;
}
.hp-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    width: 0;
    overflow: hidden;
}
.contact-submit {
    display: inline-block;
    width: 100%;
    padding: 16px;
    font-family: "Inter", sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #000;
    background: #FFA163;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
    margin-top: 10px;
}
.contact-submit:hover {
    background: #ff8c3a;
    transform: translateY(-2px);
}
.contact-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}
.contact-message {
    margin-top: 20px;
    padding: 14px 18px;
    border-radius: 8px;
    font-family: "Inter", sans-serif;
    font-size: 13px;
    font-style: italic;
    display: none;
}
.contact-message.success {
    background: #f0faf0;
    color: #27ae60;
    border: 1px solid #d4edda;
}
.contact-message.error {
    background: #fff5f5;
    color: #c0392b;
    border: 1px solid #f5c6cb;
}
@media only screen and (max-width: 1023px) {
    .contact-section {
        padding: 70px 0;
    }
    .contact-inner h2 {
        font-size: 33px;
    }
}
@media only screen and (max-width: 767px) {
    .contact-section {
        padding: 50px 0;
    }
    .contact-inner h2 {
        font-size: 27px;
    }
    .contact-inner .contact-subtitle {
        font-size: 12px;
    }
    .form-group input,
    .form-group textarea {
        padding: 12px 14px;
        font-size: 13px;
    }
    .contact-submit {
        font-size: 13px;
        padding: 14px;
    }
}

/* ========================
   TESTIMONIALS STATIC GRID
   ======================== */
.review-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}
.review-grid .review-content {
    flex: 0 0 280px;
    width: 280px;
}
@media only screen and (max-width: 1023px) {
    .review-grid {
        gap: 20px;
    }
    .review-grid .review-content {
        flex: 0 0 250px;
        width: 250px;
    }
}
@media only screen and (max-width: 767px) {
    .review-grid .review-content {
        flex: 0 0 260px;
        width: 260px;
    }
}

/* ========================
   PROPERTIES STATIC GRID
   ======================== */
.properties-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
}
.properties-grid .properties-content {
    width: 280px;
    flex-shrink: 0;
}
@media only screen and (max-width: 767px) {
    .properties-grid {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }
    .properties-grid .properties-content {
        width: 260px;
    }
}

/* ========================
   BACK TO TOP
   ======================== */
.back-to-top {
    text-align: right;
    padding: 20px 0;
}
.back-to-top a {
    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #999;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: color 0.2s ease;
}
.back-to-top a:hover {
    color: #FFA163;
}
