@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* =========================
   RESET
========================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: #f6f6f4;
    color: #111;
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    width: 100%;
    display: block;
}

/* =========================
   HEADER
========================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 999;

    backdrop-filter: blur(14px);

    background: rgba(246,246,244,.82);

    border-bottom: 1px solid rgba(0,0,0,.05);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;

    padding: 20px 24px;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

/* MENU */

.main-navigation ul {
    display: flex;
    gap: 32px;

    list-style: none;
    margin: 0;
    padding: 0;
}

.main-navigation a {
    color: #444;
    font-size: 15px;
    position: relative;
}

.main-navigation a::after {
    content: "";

    position: absolute;

    bottom: -6px;
    left: 0;

    width: 0%;
    height: 1px;

    background: #111;

    transition: width .3s ease;
}

.main-navigation a:hover::after {
    width: 100%;
}

/* MOBILE BUTTON */

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

/* =========================
   LAYOUT
========================= */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 90px 24px;
}

/* =========================
   HERO
========================= */

.hero {
    text-align: center;
    margin-bottom: 120px;
}

.hero h1 {
    font-size: 86px;
    line-height: .95;
    letter-spacing: -4px;
    margin-bottom: 24px;
    font-weight: 700;
}

.subtitle {
    max-width: 700px;
    margin: 0 auto;

    color: #666;
    font-size: 22px;
}

/* =========================
   FEATURED
========================= */

.featured-card {
    overflow: hidden;
    border-radius: 24px;

    background: #fff;

    box-shadow:
        0 10px 40px rgba(0,0,0,.04);

    transition:
        transform .45s ease,
        box-shadow .45s ease;
}

.featured-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 25px 60px rgba(0,0,0,.08);
}

.featured-image {
    position: relative;
    overflow: hidden;
}

.featured-image::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,.15),
            transparent
        );
}

.featured-card img {
    transition: transform .8s ease;
}

.featured-card:hover img {
    transform: scale(1.05);
}

.featured-content {
    padding: 40px;
}

.featured-content h2 {
    font-size: 40px;
    line-height: 1.1;
    margin-bottom: 18px;
    letter-spacing: -1px;
}

.featured-content p {
    color: #666;
    font-size: 18px;
}

/* =========================
   GRID
========================= */

.grid-posts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 34px;

    margin-top: 90px;
}

.grid-post {
    background: #fff;

    border-radius: 20px;

    overflow: hidden;

    box-shadow:
        0 8px 30px rgba(0,0,0,.04);

    transition:
        transform .4s ease,
        box-shadow .4s ease;
}

.grid-post:hover {
    transform: translateY(-8px);

    box-shadow:
        0 20px 45px rgba(0,0,0,.08);
}

.grid-image {
    overflow: hidden;
}

.grid-image img {
    transition: transform .6s ease;
}

.grid-post:hover img {
    transform: scale(1.06);
}

.grid-post h3 {
    font-size: 22px;
    line-height: 1.3;

    padding:
        22px
        24px
        8px;
}

.grid-excerpt {
    color: #666;

    padding:
        0
        24px
        26px;

    font-size: 15px;
}

/* =========================
   REFERENCES
========================= */

.references {
    margin-top: 150px;
}

.references h2 {
    text-align: center;

    font-size: 42px;

    margin-bottom: 50px;

    letter-spacing: -1px;
}

.swiper-slide {
    background: #fff;

    border-radius: 22px;

    padding: 60px;

    box-shadow:
        0 10px 35px rgba(0,0,0,.05);

    text-align: center;
}

.swiper-slide p {
    font-size: 28px;
    line-height: 1.5;
}

.swiper-slide span {
    display: block;

    margin-top: 24px;

    color: #777;
}

/* =========================
   SINGLE
========================= */

.single-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 100px 24px;
}

.single-header {
    margin-bottom: 60px;
}

.single-header h1 {
    font-size: 68px;
    line-height: 1;
    letter-spacing: -3px;
    margin-bottom: 20px;
}

.post-meta {
    color: #777;
}

.single-featured-image {
    overflow: hidden;
    border-radius: 24px;
    margin-bottom: 70px;
}

.single-content {
    font-size: 22px;
    line-height: 1.95;
    color: #222;
}

.single-content p {
    margin-bottom: 38px;
}

.single-content h2,
.single-content h3 {
    margin-top: 70px;
    line-height: 1.2;
}

.single-content blockquote {
    margin: 60px 0;

    border-left: 3px solid #111;

    padding-left: 26px;

    font-size: 30px;

    line-height: 1.5;
}

/* =========================
   FOOTER
========================= */

.site-footer {
    margin-top: 160px;

    border-top: 1px solid rgba(0,0,0,.06);

    padding: 80px 24px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;

    display: flex;
    justify-content: space-between;
    gap: 50px;
}

.footer-brand h3 {
    margin-bottom: 10px;
}

.footer-brand p {
    color: #666;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: #444;
}

/* =========================
   ANIMATIONS
========================= */

.fade-in {
    opacity: 0;
    transform: translateY(40px);

    transition:
        opacity 1s ease,
        transform 1s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1024px) {

    .hero h1 {
        font-size: 60px;
    }

    .grid-posts {
        grid-template-columns: repeat(2, 1fr);
    }

    .single-header h1 {
        font-size: 52px;
    }
}

@media (max-width: 768px) {

    .menu-toggle {
        display: block;
    }

    .main-navigation {
        display: none;

        position: absolute;

        top: 80px;
        left: 0;

        width: 100%;

        background: #f6f6f4;

        padding: 28px;

        border-bottom: 1px solid rgba(0,0,0,.06);
    }

    .main-navigation.active {
        display: block;
    }

    .main-navigation ul {
        flex-direction: column;
        gap: 22px;
    }

    .hero {
        margin-bottom: 80px;
    }

    .hero h1 {
        font-size: 42px;
        letter-spacing: -2px;
    }

    .subtitle {
        font-size: 18px;
    }

    .featured-content {
        padding: 26px;
    }

    .featured-content h2 {
        font-size: 28px;
    }

    .grid-posts {
        grid-template-columns: 1fr;
    }

    .swiper-slide {
        padding: 32px;
    }

    .swiper-slide p {
        font-size: 20px;
    }

    .single-header h1 {
        font-size: 40px;
    }

    .single-content {
        font-size: 18px;
    }

    .footer-container {
        flex-direction: column;
    }
}
/* =========================
   PAGE TEMPLATE
========================= */

.page-container {
    max-width: 920px;
    margin: 0 auto;
    padding: 100px 24px;
}

.page-content h1 {
    font-size: 56px;
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 40px;
}

.page-body {
    font-size: 20px;
    line-height: 1.9;
}

.page-body p {
    margin-bottom: 30px;
}

/* =========================
   ARCHIVE
========================= */

.archive-header {
    margin-bottom: 70px;
    text-align: center;
}

.archive-header h1 {
    font-size: 64px;
    letter-spacing: -2px;
    margin-bottom: 12px;
}

.archive-header p {
    color: #666;
    font-size: 19px;
}

/* =========================
   CONTACT SECTION
========================= */

.contact-section {
    margin-top: 150px;
}

.contact-box {
    background: #111;
    color: #fff;
    border-radius: 28px;
    padding: 70px;
    text-align: center;
}

.contact-box h2 {
    font-size: 46px;
    letter-spacing: -1px;
    margin-bottom: 14px;
}

.contact-box p {
    color: #cfcfcf;
    font-size: 18px;
    margin-bottom: 40px;
}

.contact-form {
    max-width: 620px;
    margin: 0 auto;
    text-align: left;
}

/* WPForms styling */

.contact-form .wpforms-field-label {
    color: #fff;
}

.contact-form input,
.contact-form textarea {
    border-radius: 12px !important;
    border: none !important;
    padding: 14px 16px !important;
}

.contact-form button[type="submit"] {
    background: #fff !important;
    color: #111 !important;
    border-radius: 999px !important;
    padding: 14px 28px !important;
    font-weight: 600 !important;
}

/* MOBILE */

@media (max-width: 768px) {

    .page-container {
        padding: 60px 18px;
    }

    .page-content h1,
    .archive-header h1 {
        font-size: 38px;
    }

    .page-body {
        font-size: 18px;
    }

    .contact-box {
        padding: 40px 22px;
        border-radius: 22px;
    }

    .contact-box h2 {
        font-size: 34px;
    }
}
/* =========================
   ABOUT + CTA
========================= */

.hero-button {
    display: inline-block;
    margin-top: 34px;
    background: #111;
    color: #fff;
    padding: 15px 28px;
    border-radius: 999px;
    font-weight: 600;
    transition: transform .3s ease, opacity .3s ease;
}

.hero-button:hover {
    transform: translateY(-3px);
    opacity: .85;
}

.about-section {
    margin-bottom: 120px;
}

.about-content {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.section-label {
    display: inline-block;
    margin-bottom: 16px;
    color: #777;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.about-content h2 {
    font-size: 42px;
    line-height: 1.15;
    letter-spacing: -1.5px;
    margin-bottom: 28px;
}

.about-content p {
    font-size: 20px;
    color: #555;
}

/* MOBILE */

@media (max-width: 768px) {
    .about-section {
        margin-bottom: 80px;
    }

    .about-content h2 {
        font-size: 30px;
    }

    .about-content p {
        font-size: 17px;
    }

    .hero-button {
        padding: 13px 22px;
        font-size: 14px;
    }
}
/* =========================
   COACHING + PROCESS
========================= */

.section-heading {
    max-width: 760px;
    margin: 0 auto 50px;
    text-align: center;
}

.section-heading h2 {
    font-size: 46px;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin: 0;
}

.coaching-section,
.process-section {
    margin-bottom: 130px;
}

.coaching-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.coaching-card {
    background: #fff;
    border-radius: 22px;
    padding: 32px;
    box-shadow: 0 8px 30px rgba(0,0,0,.04);
}

.coaching-card h3 {
    font-size: 21px;
    line-height: 1.25;
    margin-bottom: 14px;
}

.coaching-card p {
    color: #666;
    font-size: 15px;
}

.process-list {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    border-radius: 26px;
    padding: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,.04);
}

.process-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 24px;
    padding: 28px;
    border-bottom: 1px solid #eee;
}

.process-item:last-child {
    border-bottom: none;
}

.process-item span {
    font-weight: 700;
    color: #999;
    font-size: 18px;
}

.process-item h3 {
    margin: 0 0 8px;
    font-size: 22px;
}

.process-item p {
    margin: 0;
    color: #666;
}

/* MOBILE */

@media (max-width: 1024px) {
    .coaching-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section-heading h2 {
        font-size: 34px;
    }

    .coaching-grid {
        grid-template-columns: 1fr;
    }

    .process-item {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 24px;
    }
}
/* =========================
   FAQ
========================= */

.faq-section {
    margin-top: 140px;
    margin-bottom: 130px;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 18px;
}

.faq-item {
    background: #fff;
    border-radius: 22px;
    padding: 32px;
    box-shadow: 0 8px 30px rgba(0,0,0,.04);
}

.faq-item h3 {
    margin: 0 0 12px;
    font-size: 22px;
    line-height: 1.3;
}

.faq-item p {
    margin: 0;
    color: #666;
    font-size: 16px;
}

/* MOBILE */

@media (max-width: 768px) {
    .faq-section {
        margin-top: 90px;
        margin-bottom: 90px;
    }

    .faq-item {
        padding: 24px;
    }

    .faq-item h3 {
        font-size: 19px;
    }
}
/* =========================
   BENEFITS
========================= */

.benefits-section {
    margin-bottom: 130px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 24px;
}

.benefit-card {
    background: #fff;
    border-radius: 22px;
    padding: 32px;
    box-shadow: 0 8px 30px rgba(0,0,0,.04);
}

.benefit-card h3 {
    margin-bottom: 14px;
    font-size: 22px;
}

.benefit-card p {
    color: #666;
    margin: 0;
}

@media (max-width: 1024px) {

    .benefits-grid {
        grid-template-columns: repeat(2,1fr);
    }

}

@media (max-width: 768px) {

    .benefits-grid {
        grid-template-columns: 1fr;
    }

}
/* Fix sticky menu when WordPress admin bar is visible */

body.admin-bar .site-header {
    top: 32px;
}

@media (max-width: 782px) {
    body.admin-bar .site-header {
        top: 46px;
    }
}
/* =========================
   STATIC PAGES
========================= */

.about-page-intro,
.service-page-intro,
.contact-page-intro {
    max-width: 900px;
    margin: 0 auto 100px;
}

.about-page-intro h2,
.service-page-intro h2,
.contact-page-intro h2 {
    font-size: 48px;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 30px;
}

.about-page-intro p,
.service-page-intro p,
.contact-page-intro p {
    font-size: 20px;
    color: #555;
    line-height: 1.9;
}

.about-values,
.service-blocks {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 24px;
}

.value-card,
.service-card {
    background: #fff;
    border-radius: 22px;
    padding: 32px;
    box-shadow: 0 8px 30px rgba(0,0,0,.04);
}

.value-card h3,
.service-card h3 {
    margin-bottom: 14px;
}

.value-card p,
.service-card p {
    color: #666;
}

.contact-page-form {
    max-width: 720px;
    margin: 0 auto;
    background: #111;
    padding: 60px;
    border-radius: 28px;
}

@media (max-width: 768px) {
    .about-page-intro h2,
    .service-page-intro h2,
    .contact-page-intro h2 {
        font-size: 34px;
    }

    .about-page-intro p,
    .service-page-intro p,
    .contact-page-intro p {
        font-size: 18px;
    }

    .about-values,
    .service-blocks {
        grid-template-columns: 1fr;
    }

    .contact-page-form {
        padding: 30px 20px;
    }
}
/* =========================
   FOOTER V2
========================= */

.site-footer {

    margin-top: 160px;

    border-top: 1px solid rgba(0,0,0,.08);

    padding-top: 70px;

}

.footer-container {

    max-width: 1200px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: 2fr 1fr 1fr;

    gap: 60px;

}

.footer-column h3,
.footer-column h4 {

    margin-bottom: 18px;

}

.footer-column p {

    color: #666;

}

.footer-column ul {

    list-style: none;

    padding: 0;

    margin: 0;

}

.footer-column li {

    margin-bottom: 10px;

}

.footer-column a {

    color: #444;

    transition: opacity .3s ease;

}

.footer-column a:hover {

    opacity: .7;

}

.footer-bottom {

    max-width: 1200px;

    margin: 60px auto 0;

    padding: 30px 0;

    border-top: 1px solid rgba(0,0,0,.08);

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 20px;

    flex-wrap: wrap;

}

.footer-bottom p,
.footer-bottom a {

    color: #777;

    font-size: 14px;

}

/* MOBILE */

@media (max-width: 768px) {

    .footer-container {

        grid-template-columns: 1fr;

        gap: 40px;

    }

    .footer-bottom {

        flex-direction: column;

        align-items: flex-start;

    }

}
/* =========================
   WPFORMS DARK CONTACT FIX
========================= */

.contact-section .wpforms-container,
.contact-box .wpforms-container {
    color: #fff !important;
}

.contact-section .wpforms-field-label,
.contact-section .wpforms-field-sublabel,
.contact-section .wpforms-required-label,
.contact-box .wpforms-field-label,
.contact-box .wpforms-field-sublabel,
.contact-box .wpforms-required-label {
    color: #fff !important;
}

.contact-section .wpforms-field-description,
.contact-box .wpforms-field-description {
    color: #d0d0d0 !important;
}

.contact-section input,
.contact-section textarea,
.contact-section select,
.contact-box input,
.contact-box textarea,
.contact-box select {
    background: #fff !important;
    color: #111 !important;
    border: none !important;
    border-radius: 14px !important;
}

.contact-section input::placeholder,
.contact-section textarea::placeholder,
.contact-box input::placeholder,
.contact-box textarea::placeholder {
    color: #777 !important;
}

.contact-section .wpforms-submit,
.contact-box .wpforms-submit {
    background: #fff !important;
    color: #111 !important;
    border: none !important;
    border-radius: 999px !important;
    padding: 14px 28px !important;
    font-weight: 700 !important;
    transition: transform .25s ease, opacity .25s ease !important;
}

.contact-section .wpforms-submit:hover,
.contact-box .wpforms-submit:hover {
    transform: translateY(-2px);
    opacity: .85;
}
/* =========================
   ABOUT DARK PAGE
========================= */

.about-dark-page {
    background: #0f0f0f;
    color: #fff;
    border-radius: 32px;
    overflow: hidden;
    margin-top: -40px;
}

.about-hero-dark {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 80px 70px;
    border-bottom: 1px solid rgba(199, 145, 70, .35);
}

.about-photo img {
    max-height: 680px;
    object-fit: contain;
    object-position: bottom center;
}

.about-hero-text h2 {
    font-size: 74px;
    line-height: 1;
    margin: 10px 0 28px;
    font-family: Georgia, serif;
    letter-spacing: -2px;
}

.about-hero-text h3 {
    font-size: 27px;
    line-height: 1.35;
    color: #c79146;
    margin-bottom: 32px;
}

.about-hero-text p {
    font-size: 18px;
    line-height: 1.85;
    color: #e6e6e6;
}

.gold-label {
    color: #c79146;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
}

.gold-text {
    color: #c79146 !important;
    font-weight: 700;
}

.about-dark-block {
    max-width: 900px;
    margin: 0 auto;
    padding: 70px 40px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.about-dark-block h3 {
    font-size: 42px;
    font-family: Georgia, serif;
    margin-bottom: 28px;
    position: relative;
}

.about-dark-block h3::after {
    content: "";
    display: block;
    width: 52px;
    height: 2px;
    background: #c79146;
    margin-top: 14px;
}

.about-dark-block p,
.about-dark-block li {
    font-size: 18px;
    line-height: 1.85;
    color: #e2e2e2;
}

.about-dark-block ul {
    padding-left: 22px;
}

.about-dark-block li {
    margin-bottom: 10px;
}

@media (max-width: 900px) {
    .about-hero-dark {
        grid-template-columns: 1fr;
        padding: 50px 26px;
        gap: 30px;
    }

    .about-hero-text h2 {
        font-size: 52px;
    }

    .about-hero-text h3 {
        font-size: 22px;
    }

    .about-photo img {
        max-height: 520px;
        margin: 0 auto;
    }

    .about-dark-block {
        padding: 50px 26px;
    }

    .about-dark-block h3 {
        font-size: 32px;
    }
}
/* =========================
   SERVICES DARK PAGE
========================= */

.services-dark-page {
    background: #0f0f0f;
    color: #fff;
    border-radius: 32px;
    overflow: hidden;
    margin-top: -40px;
    padding: 80px 70px;
}

.services-hero-dark {
    max-width: 900px;
    margin: 0 auto 80px;
    text-align: center;
}

.services-hero-dark h2 {
    font-size: 56px;
    line-height: 1.08;
    font-family: Georgia, serif;
    letter-spacing: -2px;
    margin: 18px 0 28px;
}

.services-hero-dark p {
    font-size: 19px;
    color: #e2e2e2;
    line-height: 1.85;
}

.services-dark-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 90px;
}

.service-dark-card {
    background: rgba(255,255,255,.045);
    border: 1px solid rgba(199,145,70,.25);
    border-radius: 24px;
    padding: 36px;
}

.service-dark-card span {
    color: #c79146;
    font-weight: 700;
    letter-spacing: 1px;
}

.service-dark-card h3 {
    font-size: 26px;
    margin: 24px 0 16px;
    font-family: Georgia, serif;
}

.service-dark-card p {
    color: #dedede;
    line-height: 1.8;
}

.services-dark-block {
    max-width: 900px;
    margin: 0 auto;
    padding: 70px 0;
    border-top: 1px solid rgba(255,255,255,.08);
}

.services-dark-block h3 {
    font-size: 42px;
    font-family: Georgia, serif;
    margin-bottom: 28px;
}

.services-dark-block h3::after {
    content: "";
    display: block;
    width: 52px;
    height: 2px;
    background: #c79146;
    margin-top: 14px;
}

.services-dark-block p,
.services-dark-block li {
    color: #e2e2e2;
    font-size: 18px;
    line-height: 1.85;
}

.services-dark-block li {
    margin-bottom: 10px;
}

.services-cta-dark {
    max-width: 900px;
    margin: 60px auto 0;
    padding: 60px;
    background: linear-gradient(135deg, rgba(199,145,70,.22), rgba(255,255,255,.04));
    border: 1px solid rgba(199,145,70,.25);
    border-radius: 28px;
    text-align: center;
}

.services-cta-dark h3 {
    font-size: 34px;
    line-height: 1.25;
    font-family: Georgia, serif;
    margin-bottom: 30px;
}

.services-cta-dark a {
    display: inline-block;
    background: #c79146;
    color: #111;
    padding: 15px 28px;
    border-radius: 999px;
    font-weight: 700;
}

@media (max-width: 900px) {
    .services-dark-page {
        padding: 50px 24px;
    }

    .services-hero-dark h2 {
        font-size: 38px;
    }

    .services-dark-grid {
        grid-template-columns: 1fr;
    }

    .services-dark-block h3 {
        font-size: 32px;
    }

    .services-cta-dark {
        padding: 40px 24px;
    }

    .services-cta-dark h3 {
        font-size: 26px;
    }
}
/* =========================
   HOMEPAGE PREMIUM UPGRADE - CLEAN
========================= */

.home-hero-dark {
    background: #0f0f0f;
    color: #fff;
    border-radius: 32px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: 20px;
    padding: 80px 70px 0;
    margin-top: -35px;
    margin-bottom: 120px;
}

.home-hero-text h1 {
    font-family: Georgia, serif;
    font-size: 64px;
    line-height: 1.02;
    letter-spacing: -2.5px;
    margin: 18px 0 28px;
}

.home-hero-text p {
    color: #e2e2e2;
    font-size: 19px;
    line-height: 1.85;
    max-width: 620px;
    margin-bottom: 0;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 10px;
    position: relative;
    top: -20px;
}

.gold-button {
    background: #c79146 !important;
    color: #111 !important;
}

.hero-link {
    color: #c79146;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid rgba(199,145,70,.45);
    border-radius: 999px;
    padding: 15px 24px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    transition: .3s;
}


.hero-link:hover {
    background: rgba(199,145,70,.12);
    border-color: #c79146;
}

.text-button {
    color: #c79146;
    font-weight: 700;
}

/* HERO PHOTO */

.home-hero-photo {
    align-self: end;
    position: relative;
    right: 60px;
}

.home-hero-photo::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 130px;
    background: linear-gradient(to bottom, rgba(15,15,15,0), #0f0f0f);
    pointer-events: none;
}

.home-hero-photo img {
    max-height: 760px;
    width: 135%;
    max-width: none;
    object-fit: contain;
    object-position: bottom center;
    transform: translateY(20px);
}

/* HOME ABOUT PREMIUM */

.home-about-dark {
    max-width: 100%;
    margin: 0 auto 130px;
    background: #0f0f0f;
    color: #fff;
    border-radius: 28px;
    padding: 70px 60px;
    text-align: center;
    border: 1px solid rgba(199,145,70,.22);
}

.home-about-dark h2 {
    max-width: 900px;
    margin: 18px auto 28px;
    font-family: Georgia, serif;
    font-size: 44px;
    line-height: 1.16;
    letter-spacing: -1.5px;
}

.home-about-dark p {
    max-width: 760px;
    margin: 0 auto 30px;
    font-size: 18px;
    color: #e0e0e0;
    line-height: 1.85;
}

.home-about-dark .text-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 24px;
    border-radius: 999px;
    border: 1px solid rgba(199,145,70,.55);
    color: #c79146;
    font-weight: 700;
}
/* PACKAGES */

.packages-section {
    margin-bottom: 130px;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: stretch;
}

.package-card {
    position: relative;
    background: #fff;
    border-radius: 24px;
    padding: 34px 30px;
    box-shadow: 0 8px 30px rgba(0,0,0,.04);
    border: 1px solid rgba(199,145,70,.18);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0,0,0,.08);
    border-color: rgba(199,145,70,.45);
}

.package-card-featured {
    border: 2px solid rgba(199,145,70,.75);
    transform: translateY(-10px);
    box-shadow: 0 20px 55px rgba(199,145,70,.16);
}

.package-card-featured:hover {
    transform: translateY(-16px);
}

.package-badge {
    display: inline-flex;
    width: fit-content;
    background: #c79146;
    color: #111;
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 22px;
}

.package-badge-secondary {
    background: transparent;
    color: #c79146;
    border: 1px solid rgba(199,145,70,.5);
}

.package-number {
    color: #c79146;
    font-weight: 800;
    letter-spacing: 1px;
    font-size: 15px;
}

.package-card h3 {
    font-size: 23px;
    line-height: 1.25;
    margin: 18px 0 12px;
}

.package-price {
    font-family: Georgia, serif;
    font-size: 42px;
    line-height: 1;
    color: #111;
    margin-bottom: 22px;
}

.package-card p {
    color: #666;
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 24px;
}

.package-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
}

.package-card li {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
    position: relative;
    padding-left: 24px;
}

.package-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #c79146;
    font-weight: 800;
}

.package-button {
    margin-top: auto;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 48px;
    border-radius: 999px;
    border: 1px solid rgba(199,145,70,.5);
    color: #111;
    font-weight: 800;
    transition: .3s;
}

.package-button:hover {
    background: rgba(199,145,70,.12);
    border-color: #c79146;
}

.package-button-featured {
    background: #c79146;
    color: #111;
    border-color: #c79146;
}

.package-button-featured:hover {
    opacity: .86;
}

.packages-note {
    max-width: 760px;
    margin: 42px auto 0;
    text-align: center;
    color: #666;
    font-size: 17px;
    line-height: 1.8;
}
/* RESPONSIVE */

@media (max-width: 1024px) {
    .home-hero-dark {
        grid-template-columns: 1fr;
        padding: 60px 40px 0;
    }

    .home-hero-text h1 {
        font-size: 48px;
    }

    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .home-hero-photo {
        right: 0;
    }

    .home-hero-photo img {
        margin: 0 auto;
        max-height: 560px;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .home-hero-dark {
        padding: 42px 24px 0;
        border-radius: 24px;
        margin-bottom: 90px;
    }

    .home-hero-text h1 {
        font-size: 36px;
        letter-spacing: -1px;
    }

    .home-hero-text p {
        font-size: 17px;
    }

    .hero-actions {
        top: 0;
        gap: 16px;
    }

    .hero-link {
        height: auto;
        top: 0;
    }

    .home-about-dark h2 {
        font-size: 32px;
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }
}
/* FINAL HERO BUTTON ALIGNMENT */

.home-hero-dark .hero-button,
.home-hero-dark .hero-link {
    height: 54px !important;
    min-height: 54px !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1 !important;
}
/* FINAL SECOND HERO BUTTON NUDGE */

.home-hero-dark .hero-link {
    position: relative !important;
    top: -2px !important;
}
/* FINAL HERO CTA CLEAN FIX */

.home-hero-dark .hero-actions {
    display: flex !important;
    align-items: center !important;
    gap: 16px !important;
    flex-wrap: wrap !important;
    position: relative !important;
    top: -10px !important;
    margin-top: 10px !important;
}

.home-hero-dark .hero-cta {
    height: 54px !important;
    min-height: 54px !important;
    padding: 0 26px !important;
    border-radius: 999px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1 !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    text-decoration: none !important;
    box-sizing: border-box !important;
}

.home-hero-dark .hero-cta-primary {
    background: #c79146 !important;
    color: #111 !important;
    border: 1px solid #c79146 !important;
}

.home-hero-dark .hero-cta-secondary {
    background: transparent !important;
    color: #c79146 !important;
    border: 1px solid rgba(199,145,70,.55) !important;
}

.home-hero-dark .hero-cta-secondary:hover {
    background: rgba(199,145,70,.12) !important;
    border-color: #c79146 !important;
}
/* =========================
   FINAL MOBILE FIX
========================= */

@media (max-width: 768px) {

    .container {
        padding-left: 14px;
        padding-right: 14px;
    }

    /* HERO MOBILE */

    .home-hero-dark {
        display: flex !important;
        flex-direction: column !important;
        background: #0f0f0f !important;
        color: #fff !important;
        border-radius: 24px !important;
        padding: 38px 22px 0 !important;
        margin-top: 20px !important;
        margin-bottom: 80px !important;
        overflow: hidden !important;
        gap: 20px !important;
    }

    .home-hero-text {
        width: 100% !important;
        z-index: 2 !important;
    }

    .home-hero-text h1 {
        font-size: 34px !important;
        line-height: 1.08 !important;
        letter-spacing: -1px !important;
        margin: 16px 0 20px !important;
    }

    .home-hero-text p {
        font-size: 16px !important;
        line-height: 1.75 !important;
        max-width: 100% !important;
    }

    .home-hero-dark .hero-actions {
        position: static !important;
        top: auto !important;
        margin-top: 24px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 12px !important;
        width: 100% !important;
    }

    .home-hero-dark .hero-cta {
        width: 100% !important;
        height: 52px !important;
        min-height: 52px !important;
        text-align: center !important;
    }

    .home-hero-photo {
        position: relative !important;
        right: auto !important;
        width: 100% !important;
        align-self: center !important;
        margin-top: 10px !important;
    }

    .home-hero-photo img {
        width: 120% !important;
        max-width: none !important;
        max-height: 420px !important;
        margin-left: -10% !important;
        transform: translateY(18px) !important;
        object-fit: contain !important;
    }

    .home-hero-photo::after {
        height: 100px !important;
        background: linear-gradient(to bottom, rgba(15,15,15,0), #0f0f0f) !important;
    }

    /* PACKAGES MOBILE */

    .packages-section {
        margin-bottom: 90px !important;
    }

    .packages-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 22px !important;
    }

    .package-card,
    .package-card-featured {
        width: 100% !important;
        transform: none !important;
        padding: 28px 24px !important;
    }

    .package-card:hover,
    .package-card-featured:hover {
        transform: none !important;
    }

    .package-price {
        font-size: 38px !important;
    }

    .package-button {
        width: 100% !important;
    }

    .packages-note {
        font-size: 16px !important;
        margin-top: 30px !important;
    }
}
/* =========================
   PREMIUM REFERENCES
========================= */

.premium-references {
    margin-top: 150px;
    margin-bottom: 130px;
}

.references-swiper {
    max-width: 920px;
    margin: 0 auto;
    overflow: visible;
}

.reference-card {
    position: relative;
    background: #0f0f0f;
    color: #fff;
    border-radius: 28px;
    padding: 70px 60px;
    text-align: center;
    border: 1px solid rgba(199,145,70,.25);
    box-shadow: 0 20px 60px rgba(0,0,0,.12);
}

.quote-mark {
    font-family: Georgia, serif;
    font-size: 100px;
    line-height: 1;
    color: #c79146;
    opacity: .75;
    margin-bottom: -20px;
}

.reference-card p {
    font-size: 25px;
    line-height: 1.55;
    color: #f1f1f1;
    margin: 0 auto 30px;
    max-width: 760px;
}

.reference-card span {
    display: block;
    color: #c79146;
    font-weight: 700;
}

@media (max-width: 768px) {
    .premium-references {
        margin-top: 100px;
        margin-bottom: 90px;
    }

    .reference-card {
        padding: 45px 26px;
        border-radius: 22px;
    }

    .quote-mark {
        font-size: 76px;
    }

    .reference-card p {
        font-size: 19px;
    }
}
/* =========================
   MOBILE REFERENCES FIX
========================= */

@media (max-width: 768px) {

    .references {
        overflow: hidden;
    }

    .references .swiper {
        padding: 0 20px;
    }

    .references .swiper-slide {
        width: 100% !important;
        margin: 0 auto;
    }

    .references .swiper-slide p {
        font-size: 22px;
        line-height: 1.5;
    }

    .references .swiper-slide span {
        font-size: 18px;
    }

}

@media (max-width: 768px) {

    .faq-section h2,
    .references h2,
    .section-heading h2 {
        font-size: 42px !important;
        line-height: 1.1;
    }

}
/* =========================
   FINAL MOBILE POLISH
========================= */

@media (max-width: 768px) {

    .section-heading {
        margin-bottom: 34px !important;
    }

    .section-heading h2 {
        font-size: 38px !important;
        line-height: 1.12 !important;
        letter-spacing: -1px !important;
    }

    .section-label,
    .gold-label {
        font-size: 12px !important;
        letter-spacing: 1.8px !important;
    }

    .coaching-section,
    .process-section,
    .benefits-section,
    .packages-section,
    .premium-references,
    .faq-section,
    .contact-section {
        margin-top: 80px !important;
        margin-bottom: 80px !important;
    }

    .package-card {
        border-radius: 22px !important;
    }

    .package-badge {
        font-size: 11px !important;
        padding: 7px 12px !important;
    }

    .process-list,
    .faq-list {
        border-radius: 22px !important;
    }

    .process-item,
    .faq-item {
        padding: 24px !important;
    }

    .process-item h3,
    .faq-item h3 {
        font-size: 21px !important;
    }

    .process-item p,
    .faq-item p {
        font-size: 16px !important;
        line-height: 1.7 !important;
    }

    .benefits-grid,
    .coaching-grid {
        gap: 18px !important;
    }

    .benefit-card,
    .coaching-card {
        padding: 26px 24px !important;
        border-radius: 22px !important;
    }

    .contact-box {
        padding: 42px 24px !important;
        border-radius: 24px !important;
    }

    .contact-box h2 {
        font-size: 38px !important;
        line-height: 1.1 !important;
    }

    .site-footer {
        margin-top: 90px !important;
    }
}
@media (max-width: 768px) {
    .home-about-dark {
        padding: 44px 24px !important;
        border-radius: 24px !important;
        margin-bottom: 80px !important;
    }

    .home-about-dark h2 {
        font-size: 30px !important;
        line-height: 1.18 !important;
    }

    .home-about-dark p {
        font-size: 16px !important;
    }

    .home-about-dark .text-button {
        width: 100%;
    }
}
/* =========================
   PROCESS PREMIUM
========================= */

.process-intro {
    max-width: 720px;
    margin: 20px auto 0;
    text-align: center;
    color: #666;
    font-size: 18px;
    line-height: 1.8;
}

.process-item {
    transition: all .3s ease;
}

.process-item:hover {
    transform: translateY(-4px);
}

.process-item span {
    color: #c79146;
    font-size: 32px;
    font-weight: 800;
}

.process-item h3 {
    font-size: 24px;
}

@media (max-width: 768px) {

    .process-intro {
        font-size: 16px;
        line-height: 1.7;
    }

    .process-item span {
        font-size: 26px;
    }

    .process-item h3 {
        font-size: 21px;
    }
}
/* =========================
   FAQ PREMIUM
========================= */

.faq-list {
    max-width: 960px;
}

.faq-item {
    border: 1px solid rgba(199,145,70,.14);
    transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.faq-item:hover {
    transform: translateY(-4px);
    border-color: rgba(199,145,70,.35);
    box-shadow: 0 18px 45px rgba(0,0,0,.07);
}

.faq-item h3 {
    color: #111;
}

.faq-item p {
    max-width: 780px;
}

@media (max-width: 768px) {
    .faq-list {
        gap: 14px !important;
    }

    .faq-item {
        padding: 24px 22px !important;
    }

    .faq-item:hover {
        transform: none;
    }
}
/* =========================
   CONTACT PREMIUM
========================= */

.contact-premium {
    margin-top: 140px;
}

.contact-premium .contact-box {
    background: #0f0f0f;
    color: #fff;
    border: 1px solid rgba(199,145,70,.25);
    box-shadow: 0 24px 70px rgba(0,0,0,.14);
}

.contact-premium .contact-box h2 {
    max-width: 760px;
    margin: 18px auto 20px;
    font-family: Georgia, serif;
    font-size: 48px;
    line-height: 1.12;
    letter-spacing: -1.5px;
}

.contact-premium .contact-box p {
    max-width: 680px;
    margin: 0 auto 44px;
    color: #e2e2e2;
    font-size: 18px;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .contact-premium {
        margin-top: 90px;
    }

    .contact-premium .contact-box h2 {
        font-size: 34px;
        line-height: 1.15;
    }

    .contact-premium .contact-box p {
        font-size: 16px;
        margin-bottom: 34px;
    }
}
/* =========================
   FOOTER PREMIUM
========================= */

.footer-premium {
    background: #0f0f0f;
    color: #fff;
    border-top: 1px solid rgba(199,145,70,.25);
    margin-top: 140px;
}

.footer-premium .footer-column h3 {
    font-family: Georgia, serif;
    font-size: 32px;
    color: #fff;
}

.footer-premium .footer-column h4 {
    color: #c79146;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    font-size: 13px;
}

.footer-premium .footer-column p,
.footer-premium .footer-bottom p,
.footer-premium .footer-bottom a {
    color: #d8d8d8;
}

.footer-premium a {
    color: #e2e2e2;
}

.footer-premium a:hover {
    color: #c79146;
}

.footer-premium .footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
}

@media (max-width: 768px) {
    .footer-premium {
        margin-top: 90px;
    }
}
/* =========================
   HEADER LOGO
========================= */

.site-logo img {
    height: 56px;
    width: auto;
    display: block;
}

.logo a::after,
.site-logo::after {
    display: none !important;
}

@media (max-width: 768px) {
    .site-logo img {
        height: 42px;
    }
}
/* =========================
   HEADER LOGO FINAL
========================= */

.site-logo {
    display: inline-flex;
    align-items: center;
}

.site-logo img {
    height: 58px;
    width: auto;
    display: block;
}

@media (max-width: 768px) {
    .site-logo img {
        height: 44px;
    }
}
/* FOOTER LOGO FINAL */

.footer-logo {
    display: inline-flex;
    margin-bottom: 20px;
}

.footer-logo img {
    max-width: 260px;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .footer-logo img {
        max-width: 220px;
    }
}
/* =========================
   HEADER DARK LOGO FIX
========================= */

.site-header {
    background: #0f0f0f !important;
    border-bottom: 1px solid rgba(199,145,70,.22) !important;
}

.header-container {
    min-height: 88px;
}

.site-logo img {
    height: 72px !important;
    width: auto;
}

.main-navigation a {
    color: #e8e8e8 !important;
}

.main-navigation a:hover {
    color: #c79146 !important;
}

.menu-toggle {
    color: #c79146 !important;
}

@media (max-width: 768px) {
    .header-container {
        min-height: 76px;
    }

    .site-logo img {
        height: 54px !important;
    }
}
/* =========================
   FOOTER LOGO ALIGN FIX
========================= */

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center !important;
    text-align: center !important;
}

.footer-logo {
    display: block;
    margin-bottom: 18px !important;
}

.footer-logo img {
    max-width: 420px !important;
    height: auto !important;
}

.footer-brand p {
    max-width: 420px !important;
    margin: 0 auto !important;
    text-align: center !important;
}

/* =========================
   FOOTER FINAL LAYOUT FIX
========================= */

.footer-premium {
    padding-top: 80px !important;
    padding-bottom: 0 !important;
}

.footer-premium .footer-container {
    max-width: 1180px !important;
    grid-template-columns: 1fr 1fr 1fr !important;
    align-items: start !important;
    gap: 80px !important;
}

.footer-brand {
    align-items: flex-start !important;
}

.footer-logo {
    margin-bottom: 24px !important;
}

.footer-logo img {
    max-width: 420px !important;
    width: 100% !important;
    height: auto !important;
}

.footer-brand p {
    max-width: 380px !important;
    font-size: 17px !important;
    line-height: 1.7 !important;
    color: #e2e2e2 !important;
}

.footer-premium .footer-column h4 {
    margin-bottom: 24px !important;
}

.footer-premium .footer-column li {
    margin-bottom: 14px !important;
}

.footer-premium .footer-column a,
.footer-premium .footer-column p {
    font-size: 16px !important;
}

.footer-premium .footer-bottom {
    max-width: 1180px !important;
    margin-top: 70px !important;
    padding: 30px 0 !important;
}

@media (max-width: 768px) {
    .footer-premium {
        padding-top: 60px !important;
    }

    .footer-premium .footer-container {
        grid-template-columns: 1fr !important;
        gap: 44px !important;
    }

    .footer-logo img {
        max-width: 300px !important;
    }

    .footer-premium .footer-bottom {
        margin-top: 44px !important;
        align-items: flex-start !important;
        gap: 14px !important;
    }
}
/* =========================
   VALUES PREMIUM
========================= */

.values-section {
    margin-bottom: 130px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.value-premium-card {
    background: #0f0f0f;
    color: #fff;
    border-radius: 24px;
    padding: 38px 34px;
    border: 1px solid rgba(199,145,70,.24);
    box-shadow: 0 18px 45px rgba(0,0,0,.08);
}

.value-premium-card h3 {
    font-family: Georgia, serif;
    font-size: 32px;
    margin: 0 0 18px;
    color: #c79146;
}

.value-premium-card p {
    color: #e2e2e2;
    line-height: 1.8;
    margin: 0;
}

@media (max-width: 900px) {
    .values-grid {
        grid-template-columns: 1fr;
    }

    .values-section {
        margin-bottom: 90px;
    }

    .value-premium-card {
        padding: 30px 24px;
    }
}
/* =========================
   OUTCOMES SECTION
========================= */

.outcomes-section {
    margin-bottom: 130px;
}

.outcome-card {
    border: 1px solid rgba(199,145,70,.16);
}

.outcome-card h3 {
    color: #111;
}

.outcome-card p {
    color: #666;
}

@media (max-width: 768px) {
    .outcomes-section {
        margin-bottom: 90px;
    }
}
/* =========================
   SERVICES PAGE PREMIUM
========================= */

.services-page-premium {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px 120px;
}

.services-page-hero {
    background: #0f0f0f;
    color: #fff;
    padding: 80px 70px;
    border-radius: 32px;
    text-align: center;
    margin-bottom: 90px;
}

.services-page-hero h1 {
    font-family: Georgia, serif;
    font-size: 58px;
    line-height: 1.1;
    margin: 20px auto 30px;
    max-width: 900px;
}

.services-page-hero p {
    max-width: 750px;
    margin: 0 auto;
    color: #e2e2e2;
    font-size: 19px;
    line-height: 1.9;
}

.services-page-packages {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 24px;
    margin-bottom: 100px;
}

.service-price-card {
    background: #fff;
    border-radius: 24px;
    padding: 35px;
    border: 1px solid rgba(199,145,70,.18);
    box-shadow: 0 10px 30px rgba(0,0,0,.05);
    position: relative;
}

.service-price-card h3 {
    margin-bottom: 16px;
}

.service-price {
    font-size: 42px;
    font-weight: 800;
    color: #c79146;
    margin-bottom: 18px;
}

.service-price-card p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
}

.service-price-card a {
    display: inline-block;
    background: #c79146;
    color: #111;
    padding: 12px 22px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
}

.service-price-featured {
    border: 2px solid #c79146;
    transform: scale(1.03);
}

.service-badge {
    display: inline-block;
    background: #c79146;
    color: #111;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 18px;
}

.secondary {
    background: rgba(199,145,70,.15);
    color: #c79146;
}

.services-info-block {
    background: #0f0f0f;
    color: #fff;
    border-radius: 28px;
    padding: 50px;
    margin-bottom: 40px;
}

.services-info-block h2 {
    color: #c79146;
    margin-bottom: 25px;
}

.services-info-block p,
.services-info-block li {
    color: #e2e2e2;
    line-height: 1.9;
}

.services-final-cta {
    text-align: center;
    padding: 90px 40px;
}

.services-final-cta h2 {
    font-family: Georgia, serif;
    font-size: 48px;
    margin-bottom: 20px;
}

.services-final-cta p {
    max-width: 700px;
    margin: 0 auto 30px;
}

.services-final-cta a {
    display: inline-block;
    background: #c79146;
    color: #111;
    padding: 16px 30px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
}

@media (max-width: 1024px) {

    .services-page-packages {
        grid-template-columns: repeat(2,1fr);
    }

    .services-page-hero h1 {
        font-size: 46px;
    }
}

@media (max-width: 768px) {

    .services-page-hero {
        padding: 50px 25px;
    }

    .services-page-hero h1 {
        font-size: 34px;
    }

    .services-page-packages {
        grid-template-columns: 1fr;
    }

    .services-info-block {
        padding: 30px 24px;
    }

    .services-final-cta {
        padding: 60px 20px;
    }

    .services-final-cta h2 {
        font-size: 34px;
    }
}

/* =========================
   SERVICES PAGE MOBILE FINAL FIX
========================= */

@media (max-width: 768px) {

    .services-page-premium {
        padding: 20px 14px 80px !important;
    }

    .services-page-hero {
        padding: 40px 20px !important;
        border-radius: 24px !important;
    }

    .services-page-hero h1 {
        font-size: 32px !important;
        line-height: 1.15 !important;
    }

    .services-page-hero p {
        font-size: 16px !important;
        line-height: 1.75 !important;
    }

    .services-page-packages {
        grid-template-columns: 1fr !important;
        gap: 18px !important;
    }

    .service-price-card {
        padding: 28px 22px !important;
    }

    .service-price {
        font-size: 36px !important;
    }
}
/* =========================
   SERVICES PAGE DESKTOP WIDTH FIX
========================= */

.page-content:has(.services-page-premium) h1:first-child {
    display: none !important;
}

.page-content:has(.services-page-premium) {
    max-width: none !important;
}

.page-container:has(.services-page-premium) {
    max-width: 1240px !important;
}

.services-page-premium {
    width: 100% !important;
}
/* =========================
   SERVICES CARDS ALIGNMENT
========================= */

.service-price-card {
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
}

.service-price-card p {
    flex-grow: 1 !important;
}

.service-price-card a {
    margin-top: auto !important;
}
.service-price-card h3 {
    min-height: 74px !important;
}
/* =========================
   SERVICES CARD TOP ALIGN FINAL
========================= */

.service-price-card {
    min-height: 560px !important;
}

.service-price-card h3 {
    min-height: 96px !important;
    margin-bottom: 0 !important;
}

.service-price {
    min-height: 70px !important;
    display: flex !important;
    align-items: center !important;
}

.service-badge {
    min-height: 34px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}
/* =========================
   SERVICES CARDS TRUE ALIGN FIX
========================= */

.service-price-card {
    position: relative !important;
    padding-top: 96px !important;
    min-height: 560px !important;
}

.service-badge {
    position: absolute !important;
    top: 34px !important;
    left: 35px !important;
    margin: 0 !important;
}

.service-price-card h3 {
    min-height: 70px !important;
    margin: 0 0 18px !important;
}

.service-price {
    min-height: 70px !important;
    margin-bottom: 18px !important;
}

.service-price-card p {
    flex-grow: 1 !important;
}

.service-price-card a {
    margin-top: auto !important;
}

/* =========================
   CONTACT PAGE CLEAN FINAL
========================= */

/* Hide default WordPress title only on contact page content */
.page-content > h1:first-child:has(+ .page-body .contact-page-premium),
.page-content:has(.contact-page-premium) > h1:first-child {
    display: none !important;
}

/* Contact page wrapper */
.page-content:has(.contact-page-premium),
.page-body:has(.contact-page-premium) {
    width: 100% !important;
}

.page-container:has(.contact-page-premium) {
    max-width: 1180px !important;
    padding: 70px 24px 70px !important;
}

.contact-page-premium {
    width: 100% !important;
    max-width: 980px !important;
    margin: 0 auto !important;
    padding: 0 !important;
}

/* Hero */
.contact-page-hero {
    width: 100% !important;
    max-width: none !important;
    margin: 0 auto 56px !important;
    background: #0f0f0f !important;
    color: #fff !important;
    padding: 80px 70px !important;
    border-radius: 32px !important;
    text-align: center !important;
    border: 1px solid rgba(199,145,70,.22) !important;
}

.contact-page-hero h1 {
    font-family: Georgia, serif !important;
    font-size: 56px !important;
    line-height: 1.08 !important;
    margin: 20px auto 26px !important;
    max-width: 840px !important;
    color: #fff !important;
}

.contact-page-hero p {
    max-width: 720px !important;
    margin: 0 auto !important;
    color: #e2e2e2 !important;
    font-size: 18px !important;
    line-height: 1.9 !important;
}

/* Grid */
.contact-page-grid {
    width: 100% !important;
    max-width: none !important;
    margin: 0 auto !important;
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 40px !important;
    align-items: stretch !important;
}

.contact-page-info,
.contact-page-form {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    background: #0f0f0f !important;
    color: #fff !important;
    border-radius: 28px !important;
    padding: 50px !important;
    border: 1px solid rgba(199,145,70,.25) !important;
    box-shadow: 0 18px 45px rgba(0,0,0,.08) !important;
}

.contact-page-info h2 {
    color: #c79146 !important;
    margin: 0 0 22px !important;
}

.contact-page-info p {
    color: #e2e2e2 !important;
    line-height: 1.85 !important;
    margin-bottom: 34px !important;
}

.contact-detail span {
    display: block !important;
    color: #c79146 !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.6px !important;
    margin-bottom: 8px !important;
}

.contact-detail a {
    color: #c79146 !important;
    font-size: 18px !important;
    font-weight: 800 !important;
}

/* WPForms */
.contact-page-form .wpforms-container {
    margin: 0 !important;
}

.contact-page-form .wpforms-field-label,
.contact-page-form .wpforms-field-sublabel,
.contact-page-form .wpforms-required-label {
    color: #fff !important;
}

.contact-page-form input,
.contact-page-form textarea,
.contact-page-form select {
    width: 100% !important;
    background: #fff !important;
    color: #111 !important;
    border: none !important;
    border-radius: 14px !important;
    padding: 14px 16px !important;
}

.contact-page-form textarea {
    min-height: 150px !important;
}

.contact-page-form .wpforms-submit {
    background: #c79146 !important;
    color: #111 !important;
    border: none !important;
    border-radius: 999px !important;
    padding: 14px 28px !important;
    min-width: 140px !important;
    font-weight: 800 !important;
}

.site-footer.footer-premium,
.footer-premium {
    margin-top: 70px !important;
}

@media (max-width: 900px) {
    .page-container:has(.contact-page-premium) {
        padding: 50px 18px 50px !important;
    }

    .contact-page-premium {
        max-width: 100% !important;
    }

    .contact-page-hero {
        padding: 50px 24px !important;
        border-radius: 24px !important;
        margin-bottom: 36px !important;
    }

    .contact-page-hero h1 {
        font-size: 34px !important;
        line-height: 1.15 !important;
    }

    .contact-page-hero p {
        font-size: 16px !important;
        line-height: 1.75 !important;
    }

    .contact-page-grid {
        grid-template-columns: 1fr !important;
        gap: 28px !important;
    }

    .contact-page-info,
    .contact-page-form {
        padding: 34px 24px !important;
        border-radius: 24px !important;
    }
}
/* =========================
   DARK PREMIUM COLOR TEST
========================= */

body {
    background: #1c1c1c !important;
    color: #e8e8e8 !important;
}

.page-container,
.container {
    background: transparent !important;
}

.package-card,
.benefit-card,
.outcome-card,
.coaching-card,
.faq-item,
.value-card,
.service-card,
.grid-post,
.featured-card,
.service-price-card {
    background: #242424 !important;
    color: #e8e8e8 !important;
    border: 1px solid rgba(199,145,70,.18) !important;
}

.package-card p,
.package-card li,
.benefit-card p,
.outcome-card p,
.coaching-card p,
.faq-item p,
.service-price-card p,
.packages-note,
.process-intro {
    color: #cfcfcf !important;
}

.package-card h3,
.benefit-card h3,
.outcome-card h3,
.coaching-card h3,
.faq-item h3,
.service-price-card h3 {
    color: #f2f2f2 !important;
}

.package-price,
.service-price {
    color: #c79146 !important;
}

.section-heading h2,
.page-content h1 {
    color: #f2f2f2 !important;
}

.section-label {
    color: #c79146 !important;
}

.process-list,
.faq-list {
    background: transparent !important;
}

.process-item {
    background: #242424 !important;
    border-bottom: 1px solid rgba(255,255,255,.08) !important;
}

.process-item p {
    color: #cfcfcf !important;
}

.process-item h3 {
    color: #f2f2f2 !important;
}
/* =========================
   DARK MODE PACKAGE BUTTON FIX
========================= */

.package-button {
    color: #c79146 !important;
}

.package-button-featured {
    color: #111 !important;
}

.package-button:hover {
    color: #111 !important;
    background: #c79146 !important;
}
/* =========================
   FEATURED PACKAGE BUTTON HOVER
========================= */

.package-button-featured {
    transition: all .3s ease !important;
}

.package-button-featured:hover {
    background: #e0a857 !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(199,145,70,.35);
}
.package-button-featured {
    transition: all .3s ease !important;
}

.package-button-featured:hover {
    background: #f0b35d !important;
    color: #111 !important;
    transform: translateY(-5px) scale(1.03);
    box-shadow:
        0 12px 30px rgba(199,145,70,.45),
        0 0 25px rgba(199,145,70,.25);
}
/* =========================
   SERVICES PAGE PACKAGE HOVER
========================= */

.service-price-card {
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease !important;
}

.service-price-card:hover {
    transform: translateY(-8px) !important;
    border-color: rgba(199,145,70,.45) !important;
    box-shadow:
        0 18px 45px rgba(0,0,0,.22),
        0 0 26px rgba(199,145,70,.12) !important;
}

.service-price-featured:hover {
    transform: translateY(-10px) scale(1.03) !important;
    box-shadow:
        0 22px 55px rgba(0,0,0,.28),
        0 0 34px rgba(199,145,70,.20) !important;
}