/* =========================
   RESET / BASE
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background: #fffdfd;
    color: #222;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    padding-left: 20px;
}

section {
    width: 100%;
}

/* =========================
   GLOBAL CONTAINERS
========================= */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.content-section,
.services-preview,
.pricing,
.final-cta,
.contact-section,
.form-section,
.trust-section {
    padding: 70px 20px;
}

.content-section {
    max-width: 1000px;
    margin: 0 auto;
}

/* =========================
   TYPOGRAPHY / HEADINGS
========================= */
.services-preview h2,
.final-cta h2,
.contact-section h2,
.form-section h2,
.content-section h2,
.trust-section h2,
.pricing h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 16px;
    color: #1f1f1f;
}

.services-preview > p,
.final-cta > p,
.contact-section > p,
.form-section > p,
.content-section > p,
.trust-section > p,
.pricing-sub {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 35px;
    color: #555;
}

.content-section h3 {
    margin-top: 22px;
    margin-bottom: 10px;
    color: #222;
}

.content-section ul li,
.content-section ol li {
    margin-bottom: 10px;
    color: #444;
}

/* =========================
   HEADER / HERO
========================= */
.hero {
    background: linear-gradient(135deg, #fff6fb, #ffe9f5);
    padding-bottom: 50px;
    border-bottom: 1px solid #f3d7e8;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 20px 40px;
    flex-wrap: wrap;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #222;
    line-height: 1.1;
}

.logo span {
    display: block;
    font-size: 0.95rem;
    font-weight: normal;
    color: #7a5a67;
    margin-top: 4px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.nav-links a {
    color: #333;
    font-weight: 600;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: #d94f9d;
}

.nav-cta {
    background: #ff69b4;
    color: #fff !important;
    padding: 10px 16px;
    border-radius: 999px;
    font-weight: 700;
    transition: background 0.2s ease, transform 0.2s ease;
}

.nav-cta:hover {
    background: #e754a6;
    transform: translateY(-1px);
}

.hero-content {
    max-width: 850px;
    margin: 0 auto;
    padding: 60px 20px 20px;
    text-align: center;
}

.hero-content h1 {
    font-size: 2.7rem;
    line-height: 1.15;
    margin-bottom: 18px;
    color: #1f1f1f;
}

.hero-content p {
    font-size: 1.1rem;
    color: #555;
    max-width: 760px;
    margin: 0 auto;
}

.hero-buttons {
    margin-top: 28px;
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* =========================
   BUTTONS
========================= */
.cta-button,
.btn {
    display: inline-block;
    background: #ff69b4;
    color: #fff;
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 700;
    transition: background 0.2s ease, transform 0.2s ease;
}

.cta-button:hover,
.btn:hover {
    background: #e754a6;
    transform: translateY(-1px);
}

.cta-secondary {
    background: #fff;
    color: #d94f9d;
    border: 2px solid #ff69b4;
}

.cta-secondary:hover {
    background: #fff3f9;
    color: #c43d8d;
}

.center-btn {
    text-align: center;
    margin-top: 20px;
}

/* =========================
   TRUST SECTION
========================= */
.trust-section {
    text-align: center;
}

.trust-content {
    max-width: 700px;
    margin: 0 auto;
}

.trust-section p {
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

/* =========================
   STANDARD CARD LAYOUTS
========================= */
.card-container {
    max-width: 1100px;
    margin: 40px auto 0;
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 25px;
    flex-wrap: nowrap;
}

.card,
.service-box,
.info-box,
.contact-box,
.content-section .content-card {
    background: #fff;
    border: 1px solid #f1e3eb;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.card {
    width: 320px;
    padding: 28px 24px;
    text-align: left;
}

.card h3 {
    font-size: 1.4rem;
    margin-bottom: 14px;
    color: #222;
}

.card p {
    color: #555;
    margin-bottom: 20px;
}

.highlight {
    border: 2px solid #ff69b4;
    transform: scale(1.05);
}

/* =========================
   SERVICE BOXES
========================= */
.service-boxes {
    max-width: 1200px;
    margin: 40px auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-box {
    padding: 28px 24px;
    text-align: left;
}

.service-box h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: #222;
}

.service-box p {
    color: #555;
    margin-bottom: 0;
}

/* =========================
   WHO / QUESTION BUBBLES
========================= */
.who-grid {
    max-width: 1000px;
    margin: 35px auto 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.who-card {
    background: #fff;
    border: 1px solid #f1e3eb;
    border-radius: 14px;
    padding: 18px 20px;
    text-align: center;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.04);
    color: #333;
}

.scattered-section h2 {
    text-align: center;
    margin-bottom: 35px;
}

.scattered-questions {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px 24px;
    padding-top: 10px;
}

.question-bubble {
    background: #fff;
    border: 1px solid #f1d9e7;
    border-radius: 999px;
    padding: 18px 28px;
    font-weight: 700;
    color: #222;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.04);
    text-align: center;
    max-width: 420px;
}

.bubble-1 {
    transform: translateX(-40px);
}

.bubble-2 {
    transform: translateX(35px);
}

.bubble-3 {
    transform: translateX(-90px);
}

.bubble-4 {
    transform: translateX(65px);
}

.bubble-5 {
    transform: translateX(-10px);
}

/* =========================
   PRICING
========================= */
.pricing {
    text-align: center;
    background: linear-gradient(180deg, #fffafc 0%, #fff 100%);
}

.pricing h2 {
    font-size: 2.1rem;
    margin-bottom: 10px;
}

.pricing-sub {
    max-width: 700px;
}

.pricing-cards {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 25px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
    padding: 32px 26px;
    width: 320px;
    text-align: left;
    border: 1px solid #eee;
    position: relative;
}

.pricing-card h3 {
    font-size: 1.45rem;
    margin-bottom: 12px;
    color: #222;
    line-height: 1.25;
}

.pricing-card .tag {
    color: #777;
    font-size: 0.95rem;
    margin-bottom: 18px;
    font-weight: 600;
}

.pricing-card ul {
    padding-left: 20px;
    margin-bottom: 22px;
}

.pricing-card li {
    margin-bottom: 10px;
    color: #444;
}

.price {
    font-size: 1.35rem;
    font-weight: bold;
    margin-bottom: 18px;
    color: #111;
}

.pricing-card .btn {
    width: 100%;
    text-align: center;
}

.starter {
    border-top: 5px solid #6cc48f;
}

.core {
    border: 2px solid #ff69b4;
    transform: scale(1.04);
}

.core::before {
    content: "MOST POPULAR";
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff69b4;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 6px 12px;
    border-radius: 999px;
}

.premium {
    border-top: 5px solid #ff8a65;
}

/* =========================
   FORMS
========================= */
form {
    max-width: 760px;
    margin: 0 auto;
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid #f0e4ea;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    color: #333;
}

input,
select,
textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 18px;
    border: 1px solid #d8d8d8;
    border-radius: 10px;
    font-size: 1rem;
    background: #fff;
    color: #222;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: #ff69b4;
    box-shadow: 0 0 0 3px rgba(255, 105, 180, 0.12);
}

textarea {
    min-height: 140px;
    resize: vertical;
}

button {
    border: none;
    cursor: pointer;
}

#form-status {
    text-align: center;
    margin-top: 18px;
    font-weight: 600;
    color: #d94f9d;
}

/* =========================
   CONTACT / INFO BLOCKS
========================= */
.contact-grid,
.info-grid {
    max-width: 1200px;
    margin: 40px auto 0;
    gap: 25px;
}

.contact-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.info-box,
.contact-box {
    padding: 28px 24px;
}

.contact-box {
    max-width: 500px;
    width: 100%;
}

.info-box h3,
.contact-box h3 {
    margin-bottom: 12px;
    color: #222;
}

.info-box p,
.contact-box p {
    color: #555;
}

/* =========================
   FINAL CTA
========================= */
.final-cta {
    text-align: center;
    background: #fff;
}

.final-cta p {
    max-width: 700px;
    margin: 0 auto 25px;
    color: #555;
}

/* =========================
   FOOTER
========================= */
footer {
    background: #1f1f1f;
    color: #f7f7f7;
    text-align: center;
    padding: 35px 20px;
    margin-top: 0;
}

footer p {
    margin-bottom: 8px;
    color: #eee;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }

    .core,
    .highlight {
        transform: none;
    }

    .service-boxes {
        grid-template-columns: repeat(2, 1fr);
    }

    .info-grid,
    .who-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 18px 20px;
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links {
        width: 100%;
        gap: 12px;
    }

    .hero-content {
        padding: 45px 20px 15px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .content-section,
    .services-preview,
    .pricing,
    .final-cta,
    .contact-section,
    .form-section,
    .trust-section {
        padding: 55px 16px;
    }

    .card,
    .pricing-card {
        width: 100%;
        max-width: 420px;
    }

    .service-boxes {
        grid-template-columns: 1fr;
    }

    .scattered-questions {
        flex-direction: column;
        align-items: center;
    }

    .question-bubble,
    .bubble-1,
    .bubble-2,
    .bubble-3,
    .bubble-4,
    .bubble-5 {
        transform: none;
        width: 100%;
        max-width: 420px;
    }

    form {
        padding: 22px;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.5rem;
    }

    .hero-content h1 {
        font-size: 1.75rem;
    }

    .services-preview h2,
    .pricing h2,
    .final-cta h2,
    .contact-section h2,
    .form-section h2,
    .content-section h2,
    .trust-section h2 {
        font-size: 1.6rem;
    }
	.trust-section p {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.8;
    color: #333;
}

    .cta-button,
    .btn {
        width: 100%;
        text-align: center;
    }
}
.big-cta {
    font-size: 1.25rem;
    padding: 18px 32px;
    border-radius: 12px;
}
.trust-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    max-width: 900px;
    margin: 0 auto;
}

.badge {
    background: #fff;
    border: 1px solid #f1d9e7;
    border-radius: 999px;
    padding: 12px 20px;
    font-weight: 600;
    font-size: 0.95rem;
    color: #333;
    box-shadow: 0 4px 10px rgba(0,0,0,0.04);
}
.badge {
    background: #fff7fb;
    border: 1px solid #ffd1e8;
    color: #b83280;
}
.personal-intro-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 40px;
    align-items: center;
}

.personal-photo img {
    width: 100%;
    max-width: 320px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    margin: 0 auto;
}

.personal-story h2 {
    text-align: left;
    margin-bottom: 18px;
}

.personal-story p {
    text-align: left;
    margin-bottom: 14px;
    color: #555;
}

@media (max-width: 768px) {
    .personal-intro-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .personal-story h2,
    .personal-story p {
        text-align: center;
    }
}