/* ============================================
   PropertyDesk - Custom Styles
   Dark Luxury Theme
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
    --bg-primary: #0D0D0D;
    --bg-card: #1A1A1A;
    --bg-border: #2A2A2A;
    --brand-orange: #E8A020;
    --brand-blue: #4EB8E0;
    --text-primary: #E0E0E0;
    --text-muted: #888888;
    --green: #4CAF50;
    --orange-gradient: linear-gradient(135deg, #E8A020, #D4891A);
    --blue-gradient: linear-gradient(135deg, #4EB8E0, #3A9CC0);
}

/* ---------- Base ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    color: var(--brand-orange);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #f0b040;
}

h1, h2, h3, h4, h5, h6 {
    color: #FFFFFF;
    font-weight: 700;
}

p {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

section {
    padding: 80px 0;
}

img {
    max-width: 100%;
    height: auto;
}

/* ---------- Navbar ---------- */
.navbar-pd {
    background-color: rgba(13, 13, 13, 0.8) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: all 0.4s ease;
    padding: 12px 0;
    z-index: 1050;
}

.navbar-pd.scrolled {
    background-color: rgba(13, 13, 13, 0.98) !important;
    border-bottom: 1px solid var(--bg-border);
    padding: 8px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.navbar-pd .navbar-brand img {
    height: 38px;
    transition: height 0.3s ease;
}

.navbar-pd.scrolled .navbar-brand img {
    height: 32px;
}

.navbar-pd .nav-link {
    color: var(--text-primary) !important;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 16px !important;
    transition: color 0.3s ease;
    position: relative;
}

.navbar-pd .nav-link:hover,
.navbar-pd .nav-link.active {
    color: var(--brand-orange) !important;
}

.navbar-pd .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--brand-orange);
    border-radius: 1px;
}

.navbar-pd .navbar-toggler {
    border-color: var(--bg-border);
    padding: 4px 8px;
}

.navbar-pd .navbar-toggler-icon {
    filter: invert(1);
}

/* ---------- Buttons ---------- */
.btn-orange {
    background: var(--orange-gradient);
    color: #FFFFFF !important;
    border: none;
    font-weight: 600;
    padding: 10px 28px;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(232, 160, 32, 0.3);
}

.btn-orange:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(232, 160, 32, 0.45);
    color: #FFFFFF !important;
}

.btn-orange-outline {
    background: transparent;
    color: var(--brand-orange) !important;
    border: 2px solid var(--brand-orange);
    font-weight: 600;
    padding: 10px 28px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-orange-outline:hover {
    background: var(--orange-gradient);
    color: #FFFFFF !important;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(232, 160, 32, 0.3);
}

.btn-blue {
    background: var(--blue-gradient);
    color: #FFFFFF !important;
    border: none;
    font-weight: 600;
    padding: 10px 28px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-blue:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(78, 184, 224, 0.3);
}

/* ---------- Cards ---------- */
.card-pd {
    background-color: var(--bg-card);
    border: 1px solid var(--bg-border);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.4s ease;
}

.card-pd:hover {
    transform: translateY(-6px);
    border-color: var(--brand-orange);
    box-shadow: 0 12px 40px rgba(232, 160, 32, 0.1);
}

.card-pd .card-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 20px;
    background: rgba(232, 160, 32, 0.12);
    color: var(--brand-orange);
}

.card-pd .card-icon.blue {
    background: rgba(78, 184, 224, 0.12);
    color: var(--brand-blue);
}

.card-pd .card-icon.green {
    background: rgba(76, 175, 80, 0.12);
    color: var(--green);
}

.card-pd h5 {
    font-size: 1.15rem;
    margin-bottom: 12px;
}

.card-pd p {
    color: var(--text-muted);
    font-size: 0.92rem;
    margin-bottom: 0;
}

/* ---------- Hero Section ---------- */
.hero-section {
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(160deg, #0D0D0D 0%, #141418 40%, #1A1410 70%, #0D0D0D 100%);
    position: relative;
    overflow: hidden;
    padding-top: 100px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(232, 160, 32, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(78, 184, 224, 0.04) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-section h1 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-section h1 .text-gradient {
    background: linear-gradient(135deg, var(--brand-orange), var(--brand-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-section .lead {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 540px;
    margin-bottom: 36px;
    line-height: 1.8;
}

/* ---------- Trust Bar ---------- */
.trust-bar {
    background: var(--bg-card);
    border-top: 1px solid var(--bg-border);
    border-bottom: 1px solid var(--bg-border);
    padding: 40px 0;
}

.trust-stat h3 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--brand-orange);
    margin-bottom: 4px;
}

.trust-stat p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

/* ---------- Section Headers ---------- */
.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-header .section-tag {
    display: inline-block;
    background: rgba(232, 160, 32, 0.12);
    color: var(--brand-orange);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ---------- How It Works ---------- */
.step-card {
    text-align: center;
    padding: 40px 24px;
}

.step-number {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--orange-gradient);
    color: #FFFFFF;
    font-size: 1.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 8px 25px rgba(232, 160, 32, 0.3);
}

.step-card h5 {
    font-size: 1.15rem;
    margin-bottom: 12px;
}

.step-card p {
    color: var(--text-muted);
    font-size: 0.92rem;
}

/* ---------- Pricing ---------- */
.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--bg-border);
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.pricing-card.popular {
    border-color: var(--brand-orange);
    box-shadow: 0 0 40px rgba(232, 160, 32, 0.12);
}

.pricing-card.popular::before {
    content: 'MOST POPULAR';
    position: absolute;
    top: 16px;
    right: -32px;
    background: var(--orange-gradient);
    color: #FFF;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 40px;
    transform: rotate(45deg);
    letter-spacing: 1px;
}

.pricing-card .plan-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.pricing-card .price {
    font-size: 3rem;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1;
    margin-bottom: 4px;
}

.pricing-card .price-period {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.pricing-card .plan-duration {
    display: inline-block;
    background: rgba(232, 160, 32, 0.12);
    color: var(--brand-orange);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 28px;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 32px;
    text-align: left;
}

.pricing-card ul li {
    padding: 8px 0;
    color: var(--text-primary);
    font-size: 0.92rem;
    border-bottom: 1px solid rgba(42, 42, 42, 0.5);
}

.pricing-card ul li i {
    color: var(--green);
    margin-right: 8px;
}

/* ---------- Testimonials ---------- */
.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--bg-border);
    border-radius: 16px;
    padding: 32px;
    height: 100%;
}

.testimonial-card .stars {
    color: var(--brand-orange);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.testimonial-card blockquote {
    font-size: 0.95rem;
    color: var(--text-primary);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 20px;
}

.testimonial-card .author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-card .author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--orange-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    font-weight: 700;
    font-size: 1rem;
}

.testimonial-card .author-info h6 {
    font-size: 0.92rem;
    margin-bottom: 2px;
}

.testimonial-card .author-info small {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* ---------- CTA Section ---------- */
.cta-section {
    background: linear-gradient(160deg, #1A1A1A 0%, #1A1610 50%, #1A1A1A 100%);
    border-top: 1px solid var(--bg-border);
    border-bottom: 1px solid var(--bg-border);
}

.cta-section h2 {
    font-size: 2.2rem;
    font-weight: 800;
}

/* ---------- Forms ---------- */
.form-pd .form-control,
.form-pd .form-select {
    background-color: var(--bg-primary);
    border: 1px solid var(--bg-border);
    color: var(--text-primary);
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 0.92rem;
    transition: border-color 0.3s ease;
}

.form-pd .form-control:focus,
.form-pd .form-select:focus {
    border-color: var(--brand-orange);
    box-shadow: 0 0 0 3px rgba(232, 160, 32, 0.15);
    background-color: var(--bg-primary);
    color: var(--text-primary);
}

.form-pd .form-control::placeholder {
    color: var(--text-muted);
}

.form-pd .form-label {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.form-pd textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

/* ---------- Blog Cards ---------- */
.blog-card {
    background: var(--bg-card);
    border: 1px solid var(--bg-border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-6px);
    border-color: var(--brand-orange);
    box-shadow: 0 12px 40px rgba(232, 160, 32, 0.1);
}

.blog-card .blog-img {
    height: 200px;
    background: linear-gradient(135deg, rgba(232, 160, 32, 0.15), rgba(78, 184, 224, 0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--brand-orange);
}

.blog-card .blog-body {
    padding: 24px;
}

.blog-card .blog-date {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.blog-card .blog-body h5 {
    font-size: 1.05rem;
    margin-bottom: 10px;
    line-height: 1.5;
}

.blog-card .blog-body p {
    color: var(--text-muted);
    font-size: 0.88rem;
    margin-bottom: 16px;
}

.blog-card .read-more {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--brand-orange);
}

.blog-card .read-more:hover {
    color: #f0b040;
}

/* ---------- Footer ---------- */
.footer-pd {
    background: var(--bg-card);
    border-top: 1px solid var(--bg-border);
    padding: 64px 0 0;
}

.footer-pd .footer-logo img {
    height: 40px;
    margin-bottom: 16px;
}

.footer-pd .footer-tagline {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.7;
    max-width: 280px;
}

.footer-pd h6 {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--brand-orange);
    margin-bottom: 20px;
}

.footer-pd .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-pd .footer-links li {
    margin-bottom: 10px;
}

.footer-pd .footer-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-pd .footer-links a:hover {
    color: var(--brand-orange);
}

.footer-bottom {
    background: var(--bg-primary);
    border-top: 1px solid var(--bg-border);
    padding: 20px 0;
    margin-top: 48px;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin: 0;
}

.footer-bottom .neuvo-logo {
    height: 20px;
    opacity: 0.7;
    margin: 0 4px;
    vertical-align: middle;
}

.footer-bottom a {
    color: var(--text-muted);
}

.footer-bottom a:hover {
    color: var(--brand-orange);
}

/* ---------- Page Hero (for inner pages) ---------- */
.page-hero {
    padding: 140px 0 60px;
    background: linear-gradient(160deg, #0D0D0D 0%, #141418 50%, #0D0D0D 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center top, rgba(232, 160, 32, 0.06) 0%, transparent 60%);
}

.page-hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 16px;
    position: relative;
}

.page-hero p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

/* ---------- Feature Sections (alternating layout) ---------- */
.feature-section {
    padding: 60px 0;
    border-bottom: 1px solid var(--bg-border);
}

.feature-section:last-of-type {
    border-bottom: none;
}

.feature-icon-lg {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 24px;
    background: rgba(232, 160, 32, 0.12);
    color: var(--brand-orange);
}

.feature-icon-lg.blue {
    background: rgba(78, 184, 224, 0.12);
    color: var(--brand-blue);
}

.feature-icon-lg.green {
    background: rgba(76, 175, 80, 0.12);
    color: var(--green);
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 8px 0;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.feature-list li i {
    color: var(--green);
    margin-right: 10px;
    font-size: 0.85rem;
}

/* ---------- About Page ---------- */
.value-card {
    background: var(--bg-card);
    border: 1px solid var(--bg-border);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    height: 100%;
    transition: all 0.4s ease;
}

.value-card:hover {
    transform: translateY(-4px);
    border-color: var(--brand-orange);
}

.value-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin: 0 auto 20px;
    background: rgba(232, 160, 32, 0.12);
    color: var(--brand-orange);
}

.team-card {
    background: var(--bg-card);
    border: 1px solid var(--bg-border);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all 0.4s ease;
}

.team-card:hover {
    transform: translateY(-4px);
    border-color: var(--brand-blue);
}

.team-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-orange), var(--brand-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #FFF;
    margin: 0 auto 16px;
}

/* ---------- Contact Page ---------- */
.contact-card {
    background: var(--bg-card);
    border: 1px solid var(--bg-border);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    height: 100%;
    transition: all 0.4s ease;
}

.contact-card:hover {
    border-color: var(--brand-orange);
}

.contact-card .contact-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin: 0 auto 16px;
    background: rgba(232, 160, 32, 0.12);
    color: var(--brand-orange);
}

/* ---------- FAQ Accordion ---------- */
.accordion-pd .accordion-item {
    background: var(--bg-card);
    border: 1px solid var(--bg-border);
    border-radius: 12px !important;
    margin-bottom: 12px;
    overflow: hidden;
}

.accordion-pd .accordion-button {
    background: var(--bg-card);
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 18px 24px;
    box-shadow: none;
    border: none;
}

.accordion-pd .accordion-button:not(.collapsed) {
    background: rgba(232, 160, 32, 0.08);
    color: var(--brand-orange);
}

.accordion-pd .accordion-button::after {
    filter: invert(1);
}

.accordion-pd .accordion-button:not(.collapsed)::after {
    filter: invert(0.6) sepia(1) saturate(5) hue-rotate(10deg);
}

.accordion-pd .accordion-body {
    background: var(--bg-card);
    color: var(--text-muted);
    font-size: 0.92rem;
    padding: 0 24px 20px;
    line-height: 1.8;
}

/* ---------- Guide Page ---------- */
.guide-step {
    background: var(--bg-card);
    border: 1px solid var(--bg-border);
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 24px;
    position: relative;
    padding-left: 100px;
}

.guide-step .step-num {
    position: absolute;
    left: 24px;
    top: 32px;
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--orange-gradient);
    color: #FFF;
    font-size: 1.4rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(232, 160, 32, 0.25);
}

.guide-step h4 {
    font-size: 1.15rem;
    margin-bottom: 12px;
}

.guide-step p {
    color: var(--text-muted);
    font-size: 0.92rem;
    margin-bottom: 0;
}

.guide-step ul {
    margin-top: 8px;
    margin-bottom: 0;
    padding-left: 20px;
}

.guide-step ul li {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 4px;
}

/* ---------- Legal Pages ---------- */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 1.35rem;
    margin-top: 40px;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--bg-border);
}

.legal-content p,
.legal-content li {
    font-size: 0.95rem;
    color: var(--text-primary);
    line-height: 1.8;
}

.legal-content ul {
    padding-left: 20px;
    margin-bottom: 16px;
}

.legal-content li {
    margin-bottom: 8px;
}

.legal-highlight {
    background: rgba(232, 160, 32, 0.08);
    border-left: 4px solid var(--brand-orange);
    padding: 16px 20px;
    border-radius: 0 8px 8px 0;
    margin: 20px 0;
    font-size: 0.92rem;
}

.legal-highlight-blue {
    background: rgba(78, 184, 224, 0.08);
    border-left: 4px solid var(--brand-blue);
    padding: 16px 20px;
    border-radius: 0 8px 8px 0;
    margin: 20px 0;
    font-size: 0.92rem;
}

/* ---------- Animations ---------- */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.fade-in {
    opacity: 0;
    transition: opacity 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
}

/* ---------- Success Alert ---------- */
.alert-success-pd {
    background: rgba(76, 175, 80, 0.12);
    border: 1px solid rgba(76, 175, 80, 0.3);
    color: var(--green);
    border-radius: 12px;
    padding: 16px 20px;
    font-size: 0.92rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
    .hero-section h1 {
        font-size: 2.4rem;
    }

    .hero-section {
        min-height: auto;
        padding: 120px 0 60px;
    }

    section {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .page-hero h1 {
        font-size: 2.2rem;
    }

    .navbar-pd .navbar-collapse {
        background: rgba(13, 13, 13, 0.98);
        border-radius: 12px;
        padding: 16px;
        margin-top: 12px;
        border: 1px solid var(--bg-border);
    }
}

@media (max-width: 767px) {
    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-section .lead {
        font-size: 1rem;
    }

    section {
        padding: 48px 0;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .page-hero {
        padding: 120px 0 40px;
    }

    .page-hero h1 {
        font-size: 1.8rem;
    }

    .pricing-card {
        padding: 32px 24px;
    }

    .guide-step {
        padding-left: 32px;
        padding-top: 80px;
    }

    .guide-step .step-num {
        top: 20px;
        left: 20px;
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }

    .footer-pd {
        padding: 48px 0 0;
    }

    .card-pd {
        padding: 24px;
    }
}

@media (max-width: 575px) {
    .hero-section h1 {
        font-size: 1.7rem;
    }

    .trust-stat h3 {
        font-size: 1.6rem;
    }

    .pricing-card .price {
        font-size: 2.4rem;
    }
}
