:root {
    --dark: #0f172a;
    --dark-2: #1e293b;
    --light: #f8fafc;
    --white: #ffffff;
    --muted: #64748b;
    --gold: #f4c542;
    --orange: #f97316;
    --blue: #123f7a;
    --border: #e2e8f0;
    --shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding-bottom: 50px;
    font-family: Arial, Helvetica, sans-serif;
    background: var(--light);
    color: var(--dark);
}

a {
    color: inherit;
}

.container {
    width: min(1280px, 92%);
    margin: auto;
}

/* Header */

.site-header {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 999;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.04);
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
}

.logo img {
    height: 58px;
}

nav ul {
    display: flex;
    gap: 28px;
    list-style: none;
    padding: 0;
    margin: 0;
}

nav a {
    color: var(--muted);
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
}

nav a:hover {
    color: var(--dark);
}

.header-buttons {
    display: flex;
    gap: 10px;
}

/* Buttons */

.call-btn,
.whatsapp-btn {
    padding: 18px 32px;
    border-radius: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
    display: inline-block;
}

.call-btn {
    background: #f5b400;
    color: #000000;
}

.whatsapp-btn {
    background: #111827;
    color: #ffffff;
}

.call-btn:hover,
.whatsapp-btn:hover {
    transform: translateY(-3px);
}

/* Hero */

.hero {
    padding: 110px 20px;
    text-align: center;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: var(--white);
}

.hero-pill {

    display: inline-block;

    padding: 12px 20px;

    border-radius: 999px;

    background: rgba(250, 204, 21, 0.16);

    border: 1px solid rgba(250, 204, 21, 0.35);

    color: #facc15;

    font-weight: 800;

    font-size: 14px;

    letter-spacing: .04em;

    margin-bottom: 25px;

    backdrop-filter: blur(8px);

}

.hero h1 {
    font-size: clamp(42px, 6vw, 70px);
    max-width: 900px;
    line-height: 1;
    margin: auto;
    letter-spacing: -1.5px;
    color: #ffffff;
}

.hero p {
    max-width: 800px;
    margin: 25px auto;
    font-size: 18px;
    color: #e2e8f0;
}

.hero-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 35px;
}

/* Sections */

section {
    padding: 70px 20px;
}

section h2 {
    font-size: clamp(30px, 4vw, 46px);
    text-align: center;
    margin: 0 0 40px;
    letter-spacing: -1px;
    color: #0f172a;
}

h1,
h2,
h3 {
    color: #0f172a;
    line-height: 1.1;
}

.section-subtitle {
    color: #64748b;
    margin-top: 10px;
    margin-bottom: 35px;
    line-height: 1.7;
}

/* Trust Strip */

.trust-strip {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 22px;
    background: white;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,.06);
}

.trust-strip span {
    padding: 8px 14px;
    background: #f8fafc;
    border-radius: 30px;
    font-weight: 600;
}

/* Panels */

.premium-panel {
    background: white;
    padding: 60px;
    border-radius: 35px;
    box-shadow: 0 15px 40px rgba(0,0,0,.05);
}

.panel-pill {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 50px;
    background: #fff3e8;
    margin-bottom: 25px;
    font-weight: 700;
}

/* Cards and Grids */

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

.review-card {
    background: white;
    padding: 30px;
    border-radius: 25px;
    border: 1px solid #e5e7eb;
    transition: 0.3s;
    box-shadow: var(--shadow);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 35px rgba(0,0,0,.08);
}

.review-card h3 {
    margin-top: 0;
    color: var(--dark);
}

.review-card p {
    color: var(--muted);
    line-height: 1.6;
}

.review-card a {
    color: var(--orange);
    font-weight: 800;
    text-decoration: none;
}

.service-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.job-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 18px;
    margin-bottom: 18px;
}

/* Stats Strip */

.stats-strip {
    background: #0f172a;
    padding: 50px 20px;
}

.stats-strip .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.stat-box {
    background: #1e293b;
    border-radius: 20px;
    padding: 35px;
    text-align: center;
}

.stat-box h2 {
    color: #f97316;
    font-size: 42px;
    margin-bottom: 10px;
    font-weight: 800;
}

.stat-box p {
    color: #cbd5e1;
}

/* How It Works */

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

.step-card {
    position: relative;
    padding: 35px;
    border: 1px solid #eeeeee;
    border-radius: 25px;
    overflow: hidden;
    background: #ffffff;
}

.step-number {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 100px;
    opacity: 0.05;
    font-weight: 800;
}

.step-icon {
    font-size: 34px;
    margin-bottom: 25px;
}

.step-badge {
    display: inline-block;
    margin-top: 20px;
    padding: 8px 14px;
    border-radius: 30px;
    background: #dcfce7;
    font-size: 12px;
    font-weight: 700;
}

/* Comparison */

.comparison-wrap {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: 25px;
}

.comparison-table th {
    padding: 22px;
    background: #f8fafc;
    text-align: left;
}

.comparison-table td {
    padding: 22px;
    border-top: 1px solid #eeeeee;
}

.check {
    color: #22c55e;
    font-weight: bold;
    font-size: 24px;
}

.cross {
    color: #ef4444;
    font-size: 24px;
}

.maybe {
    color: #f59e0b;
    font-size: 24px;
}

.dash {
    color: #94a3b8;
}

/* Reviews */

.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.review-score-wrap {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.review-score {
    font-size: 54px;
    font-weight: 700;
}

.review-stars {
    color: #f5b400;
    font-size: 24px;
}

.review-controls {
    display: flex;
    gap: 12px;
}

.review-arrow {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    background: #f8fafc;
    font-size: 25px;
}

.review-carousel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.google-review-card {
    padding: 30px;
    border: 1px solid #eeeeee;
    border-radius: 25px;
    background: #ffffff;
}

.google-review-top {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.review-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #dbeafe;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.google-review-stars {
    margin-left: auto;
    color: #f5b400;
}

.review-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 28px;
}

.review-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: none;
    background: #cbd5e1;
    cursor: pointer;
}

.review-dot.active {
    width: 28px;
    background: #f97316;
}

/* FAQ */

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.faq-item {
    background: white;
    border: 1px solid #eeeeee;
    border-radius: 25px;
    overflow: hidden;
    transition: 0.3s;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0,0,0,.05);
}

.faq-question {
    width: 100%;
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    border: none;
    background: white;
    cursor: pointer;
    text-align: left;
}

.faq-question span {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f1f5f9;
    transition: transform 0.2s ease;
}

.faq-answer {
    display: none;
    padding: 0 30px 30px;
    color: #64748b;
}

.faq-item.open .faq-answer {
    display: block;
}

.faq-item.open .faq-question span {
    transform: rotate(45deg);
}

.faq-category-block {
    margin-top: 45px;
}

.faq-category-title {
    font-size: 28px;
    margin-bottom: 22px;
    color: #0f172a;
}

/* About Page */

.about-intro-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.profile-card {
    background: #0f172a;
    color: #ffffff;
    border-radius: 28px;
    padding: 18px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.18);
}

.profile-photo-placeholder {
    min-height: 360px;
    border-radius: 22px;
    background:
        linear-gradient(135deg, rgba(249, 115, 22, 0.22), rgba(15, 23, 42, 0.95)),
        #1e293b;
    border: 2px dashed rgba(255, 255, 255, 0.28);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-align: center;
}

.profile-photo-placeholder span {
    font-size: 28px;
    font-weight: 800;
}

.profile-photo-placeholder small {
    color: #cbd5e1;
    margin-top: 8px;
}

.profile-card-content {
    padding: 24px 8px 8px;
}

.profile-card-content h3 {
    color: #ffffff;
    margin: 0 0 6px;
}

.profile-card-content p {
    color: #cbd5e1;
    margin: 0 0 18px;
}

.profile-badges {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

.profile-badges li {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    padding: 10px 14px;
    color: #f8fafc;
    font-size: 14px;
}

/* Contact Page */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-form-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(0,0,0,.07);
}

.contact-info-box {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 25px;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-icon {
    font-size: 24px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: #f4f7fb;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select,
select {
    width: 100%;
    padding: 14px;
    border: 1px solid #dddddd;
    border-radius: 14px;
    font-size: 16px;
    background: #ffffff;
}

#form-status {
    margin-top: 15px;
    font-weight: 600;
}

/* Areas */

.area-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.area-card-link .review-card {
    height: 100%;
    transition: 0.3s;
    cursor: pointer;
}

.area-card-link:hover .review-card {
    transform: translateY(-6px);
    border-color: #facc15;
    box-shadow: 0 15px 35px rgba(0,0,0,.18);
}

.area-readmore {
    display: block;
    margin-top: 15px;
    font-weight: 700;
    color: #facc15;
}

/* Sticky Call Bar */

.sticky-call-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(90deg, #f7d046, #f4a300);
    padding: 18px;
    z-index: 999;
    text-align: center;
}

.sticky-call-bar a {
    font-size: 36px;
    font-weight: 800;
    text-decoration: none;
    color: black;
}

.sticky-trust {
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 14px;
    flex-wrap: wrap;
}

/* Footer */

.site-footer {
    background: var(--dark);
    color: var(--white);
    padding: 55px 20px;
    text-align: center;
    margin-top: 0;
    margin-bottom: 50px;
}

.site-footer p {
    color: #cbd5e1;
}

.final-cta {
    margin-bottom: 0;
}

/* Mobile */

@media (max-width: 992px) {
    .steps-grid,
    .faq-grid,
    .review-carousel {
        grid-template-columns: 1fr;
    }

    .reviews-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
    }

    .premium-panel {
        padding: 30px;
    }

    .sticky-call-bar a {
        font-size: 28px;
    }

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

    .about-intro-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .profile-photo-placeholder {
        min-height: 280px;
    }
}

@media (max-width: 850px) {
    .site-header .container {
        flex-wrap: wrap;
        gap: 16px;
    }

    nav {
        order: 3;
        width: 100%;
    }

    nav ul {
        justify-content: center;
        flex-wrap: wrap;
        gap: 16px;
    }

    .header-buttons {
        margin-left: auto;
    }

    .hero {
        padding: 80px 20px;
    }

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

@media (max-width: 768px) {
    body {
        padding-bottom: 100px;
    }

    .site-footer {
        margin-bottom: 100px;
    }

    .sticky-call-bar a {
        font-size: 24px;
    }
}

@media (max-width: 600px) {
    .stats-strip .container {
        grid-template-columns: 1fr;
    }
}

/* MOBILE POLISH FIXES */

@media (max-width: 768px) {

    body {
        padding-bottom: 135px;
        overflow-x: hidden;
    }

    .site-header {
        position: relative;
    }

    .site-header .container {
        display: grid;
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 14px;
        padding: 18px 0;
    }

    .logo img {
        height: 95px;
        max-width: 140px;
        object-fit: contain;
    }

    .header-buttons {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        margin: 0;
    }

    .header-buttons .call-btn,
    .header-buttons .whatsapp-btn {
        width: 100%;
        text-align: center;
        padding: 18px 10px;
        font-size: 22px;
        border-radius: 26px;
    }

    nav {
        width: 100%;
        order: 3;
    }

    nav ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 18px 24px;
    }

    nav a {
        font-size: 20px;
        font-weight: 800;
    }

    section {
        padding: 45px 16px;
    }

    .premium-panel {
        padding: 28px 18px;
        border-radius: 26px;
        overflow: hidden;
    }

    .reviews-header {
        align-items: flex-start;
        margin-bottom: 24px;
    }

    .reviews-header h2 {
        text-align: left;
        font-size: 34px;
        margin-bottom: 12px;
    }

    .reviews-header p {
        font-size: 18px;
        line-height: 1.45;
    }

    .review-score-wrap {
        width: 100%;
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 12px;
        align-items: center;
    }

    .review-score {
        font-size: 58px;
        line-height: 1;
    }

    .review-stars {
        font-size: 24px;
        white-space: nowrap;
    }

    .review-score-wrap small {
        grid-column: 1 / -1;
        font-size: 16px;
    }

    .google-review-card {
        padding: 22px;
    }

    .google-review-top {
        align-items: flex-start;
    }

    .google-review-stars {
        font-size: 18px;
        white-space: nowrap;
    }

    .sticky-call-bar {
        padding: 14px 10px;
    }

    .sticky-trust {
        gap: 10px 16px;
        font-size: 16px;
        line-height: 1.5;
    }

    .sticky-call-bar a {
        font-size: 36px;
        letter-spacing: 1px;
    }
}

/* ================================
   LANDLORD SERVICES PAGE
================================ */

.landlord-hero {
    background:
        radial-gradient(circle at top right, rgba(245, 178, 0, 0.16), transparent 34%),
        linear-gradient(135deg, #07101f 0%, #0b1f3a 55%, #05070d 100%);
    color: #ffffff;
    padding: 90px 0 70px;
}

.landlord-hero h1 {
    color: #ffffff;
    font-size: clamp(2.4rem, 4vw, 4.6rem);
    line-height: 1.05;
    max-width: 850px;
}

.landlord-hero .hero-subtitle {
    color: #d9e4f2;
    max-width: 760px;
    font-size: 1.12rem;
}

.landlord-hero .hero-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(245, 178, 0, 0.35);
    color: #ffffff;
    backdrop-filter: blur(10px);
}

.landlord-hero .hero-card h2,
.landlord-hero .hero-card p,
.landlord-hero .hero-card li {
    color: #ffffff;
}

.panel-pill,
.hero-pill {
    display: inline-block;
    background: rgba(245, 178, 0, 0.14);
    color: #07101f;
    border: 1px solid rgba(245, 178, 0, 0.35);
    padding: 9px 18px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 0.9rem;
    margin-bottom: 18px;
}

.landlord-hero .hero-pill {
    background: #f5b200;
    color: #07101f;
}

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

.section-heading.left-align {
    text-align: left;
    margin-left: 0;
}

.section-heading h2 {
    font-size: clamp(2rem, 3vw, 3.2rem);
    line-height: 1.1;
    margin-bottom: 14px;
    color: #07101f;
}

.section-subtitle {
    color: #50627c;
    font-size: 1.05rem;
    line-height: 1.7;
}

.alt-section {
    background: #f5f7fb;
}

.premium-panel {
    background: #ffffff;
    border: 1px solid #e4e8ef;
    border-radius: 22px;
    padding: clamp(24px, 4vw, 46px);
    box-shadow: 0 24px 70px rgba(7, 16, 31, 0.08);
}

.services-grid,
.steps-grid,
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.review-card.service-card,
.step-card,
.price-card {
    background: #ffffff;
    border: 1px solid #e3e8f0;
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 16px 45px rgba(7, 16, 31, 0.07);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.review-card.service-card:hover,
.step-card:hover,
.price-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 55px rgba(7, 16, 31, 0.11);
}

.service-icon,
.step-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: linear-gradient(135deg, #f5b200, #ffd55a);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    margin-bottom: 22px;
}

.review-card.service-card h3,
.step-card h3,
.price-card h3 {
    color: #07101f;
    font-size: 1.18rem;
    margin-bottom: 12px;
}

.review-card.service-card p,
.step-card p,
.price-card p {
    color: #50627c;
    line-height: 1.65;
}

.step-card {
    position: relative;
    overflow: hidden;
}

.step-number {
    position: absolute;
    top: 18px;
    right: 22px;
    font-size: 2.2rem;
    font-weight: 900;
    color: rgba(245, 178, 0, 0.23);
}

.step-badge {
    display: inline-block;
    margin-top: 14px;
    background: #07101f;
    color: #ffffff;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 800;
}

/* PRICE CARDS */

.price-card {
    position: relative;
    padding: 34px 30px;
    border: 2px solid #e4e8ef;
    min-height: 100%;
}

.price-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(245, 178, 0, 0.12), transparent 34%);
    pointer-events: none;
}

.price-card h3 {
    font-size: 1.25rem;
    position: relative;
}

.price-card .price {
    position: relative;
    font-size: 2.7rem;
    line-height: 1;
    font-weight: 900;
    color: #07101f;
    margin: 18px 0 20px;
}

.price-card .price span {
    font-size: 0.95rem;
    font-weight: 700;
    color: #50627c;
    margin-left: 4px;
}

.featured-price {
    border-color: #f5b200;
    background:
        linear-gradient(180deg, #fff9e8 0%, #ffffff 55%);
    transform: translateY(-8px);
}

.featured-price::after {
    content: "Most Popular";
    position: absolute;
    top: -14px;
    left: 24px;
    background: #f5b200;
    color: #07101f;
    padding: 7px 14px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.02em;
}

.tick-list {
    list-style: none;
    padding: 0;
    margin: 18px 0 0;
}

.tick-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 11px;
    color: #50627c;
    line-height: 1.5;
}

.tick-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #f5b200;
    color: #07101f;
    font-size: 0.78rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
}

.note-panel {
    background: #07101f;
    color: #ffffff;
    border-left: 6px solid #f5b200;
    padding: 22px 26px;
    border-radius: 16px;
    margin-top: 28px;
}

.note-panel p {
    color: #ffffff;
    margin: 0;
    line-height: 1.65;
}

.cta-panel {
    background:
        linear-gradient(135deg, #07101f 0%, #0b1f3a 70%, #05070d 100%);
    color: #ffffff;
    text-align: center;
}

.cta-panel h2,
.cta-panel p {
    color: #ffffff;
}

.cta-panel .panel-pill {
    background: #f5b200;
    color: #07101f;
}

.secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 12px;
    background: #ffffff;
    color: #07101f;
    font-weight: 800;
    text-decoration: none;
}

/* Make landlord page breathe properly */
main section {
    padding: 70px 0;
}

main section:first-child {
    padding-top: 90px;
}

/* Responsive */
@media (max-width: 980px) {
    .services-grid,
    .steps-grid,
    .pricing-grid {
        grid-template-columns: 1fr 1fr;
    }

    .featured-price {
        transform: none;
    }
}

@media (max-width: 680px) {
    .services-grid,
    .steps-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .landlord-hero {
        padding: 60px 0 45px;
    }

    .premium-panel,
    .review-card.service-card,
    .step-card,
    .price-card {
        padding: 24px;
    }

    .section-heading {
        text-align: left;
    }

    .price-card .price {
        font-size: 2.35rem;
    }
}

/* ================================
   LANDLORD HERO REFINEMENT
================================ */

.landlord-hero {
    padding: 70px 0 55px;
    overflow: visible;
}

.landlord-hero .hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 34px;
    text-align: center;
    max-width: 1100px;
    margin: 0 auto;
}

.landlord-hero .hero-content {
    max-width: 880px;
    margin: 0 auto;
}

.landlord-hero h1 {
    font-size: clamp(2.5rem, 4.2vw, 4.4rem);
    line-height: 1.08;
    margin: 0 0 22px;
    padding-top: 10px;
}

.landlord-hero .hero-subtitle {
    max-width: 760px;
    margin: 0 auto 28px;
    font-size: 1.08rem;
    line-height: 1.55;
}

.landlord-hero .hero-actions {
    justify-content: center;
    margin-bottom: 18px;
}

.landlord-hero .trust-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin-top: 8px;
}

.landlord-hero .trust-row span {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(245, 178, 0, 0.22);
    color: #ffffff;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 700;
}

.landlord-hero .hero-card {
    max-width: 920px;
    margin: 0 auto;
    padding: 34px 42px;
    text-align: left;
}

.landlord-hero .hero-card h2 {
    font-size: clamp(1.8rem, 2.7vw, 2.8rem);
    line-height: 1.15;
    margin-bottom: 18px;
    text-align: center;
}

.landlord-hero .hero-card p {
    max-width: 760px;
    margin: 0 auto 24px;
    text-align: center;
    line-height: 1.6;
}

.landlord-hero .hero-card .tick-list {
    max-width: 620px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 22px;
}

.landlord-hero .hero-card .tick-list li {
    margin-bottom: 0;
    text-align: left;
}

/* Mobile hero fix */
@media (max-width: 720px) {
    .landlord-hero {
        padding: 48px 0 38px;
    }

    .landlord-hero h1 {
        font-size: 2.35rem;
    }

    .landlord-hero .hero-card {
        padding: 26px 22px;
    }

    .landlord-hero .hero-card .tick-list {
        grid-template-columns: 1fr;
    }

    .landlord-hero .hero-actions {
        flex-direction: column;
    }

    .landlord-hero .hero-actions a {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

.plan-subtitle {
    position: relative;
    display: inline-block;
    background: rgba(245, 178, 0, 0.14);
    color: #07101f;
    border: 1px solid rgba(245, 178, 0, 0.35);
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 800;
    margin: -6px 0 18px;
}