/* Cielo Hills Apartments — Modernized Stylesheet 2025 */

/* ── Google Fonts ─────────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── Design Tokens ───────────────────────────────────────────────────────── */
:root {
    --primary:       #1B4F8A;   /* Deep sky blue  */
    --primary-dark:  #0F3D6E;
    --accent:        #D4883A;   /* Warm amber      */
    --accent-dark:   #B86E25;
    --dark:          #111827;
    --dark-mid:      #1F2937;
    --gray:          #6B7280;
    --gray-light:    #E5E7EB;
    --light:         #F9FAFB;
    --warm:          #FFFBF5;
    --white:         #FFFFFF;

    --font-heading:  'Playfair Display', Georgia, serif;
    --font-body:     'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    --transition:    all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm:     0 1px 3px rgba(0,0,0,.08);
    --shadow:        0 4px 12px rgba(0,0,0,.10);
    --shadow-lg:     0 10px 30px rgba(0,0,0,.12);
    --shadow-xl:     0 20px 50px rgba(0,0,0,.16);

    --radius:        14px;
    --radius-lg:     22px;
}

/* ── Reset ───────────────────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.75;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; }

/* ── Container ───────────────────────────────────────────────────────────── */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 28px;
}

/* ── Top Bar ─────────────────────────────────────────────────────────────── */
.top-bar {
    background: var(--dark);
    color: rgba(255,255,255,.85);
    padding: 11px 0;
    font-size: 13.5px;
    font-weight: 500;
    letter-spacing: .3px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar a { color: rgba(255,255,255,.85); transition: var(--transition); }
.top-bar a:hover { color: var(--accent); }

/* ── Navbar ──────────────────────────────────────────────────────────────── */
.navbar {
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 var(--gray-light);
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 12px 0;
    box-shadow: var(--shadow);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 66px;
    transition: var(--transition);
}

.navbar.scrolled .logo img { height: 54px; }

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    color: var(--dark-mid);
    font-weight: 500;
    font-size: 14.5px;
    letter-spacing: .2px;
    position: relative;
    padding: 6px 0;
    transition: color .25s;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: var(--accent);
    border-radius: 2px;
    transition: width .3s ease;
}

.nav-menu a:hover { color: var(--primary); }
.nav-menu a:hover::after { width: 100%; }

/* Apply link highlighted */
.nav-menu .nav-apply a {
    background: var(--accent);
    color: var(--white);
    padding: 9px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}
.nav-menu .nav-apply a:hover {
    background: var(--accent-dark);
    color: var(--white);
}
.nav-menu .nav-apply a::after { display: none; }

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 26px;
    cursor: pointer;
    color: var(--dark);
    line-height: 1;
    padding: 4px;
    transition: var(--transition);
}

.mobile-toggle:hover { color: var(--primary); }

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 10px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: .3px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(27,79,138,.35);
    margin: 6px;
}

.btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(27,79,138,.4);
}

.btn:active { transform: translateY(0); }

.btn-accent {
    background: var(--accent);
    box-shadow: 0 4px 14px rgba(212,136,58,.35);
}
.btn-accent:hover {
    background: var(--accent-dark);
    box-shadow: 0 8px 20px rgba(212,136,58,.4);
}

.btn-outline {
    background: transparent;
    border-color: rgba(255,255,255,.7);
    color: var(--white);
    box-shadow: none;
}
.btn-outline:hover {
    background: rgba(255,255,255,.15);
    border-color: var(--white);
    transform: translateY(-2px);
    box-shadow: none;
}

.btn-secondary {
    background: linear-gradient(135deg, #10b981, #059669);
    box-shadow: 0 4px 14px rgba(16,185,129,.3);
}
.btn-secondary:hover {
    background: linear-gradient(135deg, #059669, #047857);
    box-shadow: 0 8px 20px rgba(16,185,129,.4);
}

/* ── Hero ────────────────────────────────────────────────────────────────── */
.hero {
    position: relative;
    height: 92vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        160deg,
        rgba(11,29,54,.82) 0%,
        rgba(27,79,138,.55) 55%,
        rgba(11,29,54,.72) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 820px;
    padding: 0 28px;
    animation: fadeInUp .9s ease-out both;
}

.hero-eyebrow {
    display: inline-block;
    background: rgba(212,136,58,.25);
    border: 1px solid rgba(212,136,58,.5);
    color: #f5c585;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 7px 20px;
    border-radius: 50px;
    margin-bottom: 24px;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 72px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 0 3px 16px rgba(0,0,0,.3);
    letter-spacing: -1px;
}

.hero h3 {
    font-size: 22px;
    font-weight: 400;
    opacity: .9;
    margin-bottom: 38px;
    letter-spacing: .4px;
}

/* Shorter hero for inner pages */
.hero-sm {
    height: 320px;
    min-height: 0;
    background-attachment: scroll;
}
.hero-sm .hero-content { animation: none; }
.hero-sm h1 {
    font-family: var(--font-heading);
    font-size: 48px;
    margin-bottom: 0;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(32px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── Feature Strip ───────────────────────────────────────────────────────── */
.feature-strip {
    background: var(--white);
    border-bottom: 1px solid var(--gray-light);
    padding: 0;
}

.feature-strip .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 28px 24px;
    border-right: 1px solid var(--gray-light);
    transition: background .25s;
}
.feature-item:last-child { border-right: none; }
.feature-item:hover { background: var(--warm); }

.feature-icon {
    font-size: 28px;
    flex-shrink: 0;
    line-height: 1;
}

.feature-item h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 2px;
    letter-spacing: .2px;
}

.feature-item p {
    font-size: 12.5px;
    color: var(--gray);
    line-height: 1.4;
}

/* ── CTA Band ────────────────────────────────────────────────────────────── */
.cta-band {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 38px 0;
    text-align: center;
}

.cta-band h3 {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 6px;
}

.cta-band p {
    font-size: 20px;
    font-weight: 300;
    opacity: .9;
    margin-bottom: 22px;
}

/* ── Sections ────────────────────────────────────────────────────────────── */
.section {
    padding: 96px 0;
}

.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
}

.section h2 {
    font-family: var(--font-heading);
    font-size: 46px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 18px;
    letter-spacing: -.5px;
}

.section h3 {
    font-size: 22px;
    font-weight: 500;
    color: var(--dark-mid);
    margin-bottom: 20px;
    line-height: 1.4;
}

.section p {
    font-size: 17px;
    line-height: 1.85;
    color: var(--gray);
}

.section p + p { margin-top: 14px; }

.bg-light { background: var(--light); }
.bg-warm  { background: var(--warm); }

/* ── Two-column ──────────────────────────────────────────────────────────── */
.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    margin-top: 48px;
}

.two-column img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    transition: transform .4s ease, box-shadow .4s ease;
}

.two-column img:hover {
    transform: scale(1.02);
    box-shadow: 0 28px 60px rgba(0,0,0,.22);
}

/* ── Feature checklist ───────────────────────────────────────────────────── */
.check-list {
    list-style: none;
    margin: 20px 0 32px;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    font-size: 16px;
    color: var(--dark-mid);
    border-bottom: 1px solid var(--gray-light);
}
.check-list li:last-child { border-bottom: none; }

.check-list li::before {
    content: '✓';
    color: var(--accent);
    font-weight: 700;
    font-size: 15px;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ── Gallery Grid ────────────────────────────────────────────────────────── */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 48px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    background: var(--dark);
    transition: var(--transition);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform .5s ease, opacity .3s ease;
    opacity: .96;
}

.gallery-item:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.gallery-item:hover img { transform: scale(1.07); opacity: .8; }

.gallery-item .gallery-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 20px;
    background: linear-gradient(transparent 40%, rgba(0,0,0,.55));
    opacity: 0;
    transition: opacity .35s ease;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay span {
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .5px;
}

/* Full gallery page */
.gallery-full {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

/* ── Floor Plans ─────────────────────────────────────────────────────────── */
.floor-plan-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.floor-plan {
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.floor-plan:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: transparent;
}

.floor-plan h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 20px;
}

.floor-plan img {
    max-width: 100%;
    height: auto;
    margin-bottom: 24px;
    border-radius: 10px;
    border: 1px solid var(--gray-light);
    transition: border-color .25s;
    flex: 1;
}

.floor-plan:hover img { border-color: var(--primary); }

.floor-plan-sqft {
    display: inline-block;
    background: var(--light);
    color: var(--gray);
    font-size: 13px;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 50px;
    margin-bottom: 20px;
}

/* ── Amenities ───────────────────────────────────────────────────────────── */
.amenity-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
    margin-top: 56px;
}

.amenity-card {
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    box-shadow: var(--shadow-sm);
}

.amenity-card h3 {
    font-family: var(--font-heading);
    font-size: 26px;
    color: var(--primary);
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--gray-light);
}

/* ── Pet Policy Box ──────────────────────────────────────────────────────── */
.policy-box {
    background: var(--warm);
    border: 1px solid #f0d9bb;
    border-left: 4px solid var(--accent);
    border-radius: var(--radius);
    padding: 28px 32px;
    margin-top: 40px;
}

.policy-box h4 {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--dark);
    margin-bottom: 16px;
}

.policy-box p, .policy-box li {
    font-size: 15.5px;
    color: var(--dark-mid);
    line-height: 1.75;
}

/* ── Contact Form ────────────────────────────────────────────────────────── */
.contact-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
    margin-top: 56px;
}

.contact-form {
    background: var(--white);
    border: 1px solid var(--gray-light);
    padding: 44px 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 14px;
    color: var(--dark);
    letter-spacing: .2px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid var(--gray-light);
    border-radius: 10px;
    font-size: 15px;
    font-family: var(--font-body);
    color: var(--dark);
    background: var(--light);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(27,79,138,.1);
}

.form-group textarea { min-height: 150px; resize: vertical; }

.contact-info h3 {
    font-family: var(--font-heading);
    font-size: 30px;
    color: var(--dark);
    margin-bottom: 24px;
}

.contact-detail {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--gray-light);
}
.contact-detail:last-child { border-bottom: none; padding-bottom: 0; }

.contact-detail-icon {
    font-size: 22px;
    width: 44px;
    height: 44px;
    background: var(--warm);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-detail p { font-size: 15px; color: var(--dark-mid); line-height: 1.6; }
.contact-detail a { color: var(--primary); font-weight: 500; }
.contact-detail a:hover { color: var(--accent); }

/* ── Map embed ───────────────────────────────────────────────────────────── */
.map-embed {
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-top: 32px;
}
.map-embed iframe {
    width: 100%;
    height: 340px;
    border: none;
    display: block;
}

/* ── Special Offer Banner ────────────────────────────────────────────────── */
.offer-section {
    background: var(--primary-dark);
    padding: 56px 0;
    text-align: center;
}

.offer-section img {
    max-width: 380px;
    margin: 0 auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

/* ── Footer ──────────────────────────────────────────────────────────────── */
footer {
    background: var(--dark);
    color: rgba(255,255,255,.8);
    padding: 72px 0 0;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 28px 60px;
}

.footer-section h4 {
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-section p {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255,255,255,.7);
    margin-bottom: 8px;
}

.footer-section a {
    color: rgba(255,255,255,.7);
    transition: var(--transition);
    font-size: 15px;
}
.footer-section a:hover { color: var(--accent); }

.footer-nav { list-style: none; }
.footer-nav li { margin-bottom: 10px; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    text-align: center;
    padding: 22px 28px;
    font-size: 13.5px;
    color: rgba(255,255,255,.45);
}

/* ── Scroll reveal ───────────────────────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s ease, transform .7s ease;
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ── Utility ─────────────────────────────────────────────────────────────── */
.text-center { text-align: center; }
.mt-30 { margin-top: 30px; }
.mb-30 { margin-bottom: 30px; }

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .hero h1      { font-size: 58px; }
    .section h2   { font-size: 38px; }
    .feature-strip .container { grid-template-columns: repeat(2, 1fr); }
    .feature-item:nth-child(2) { border-right: none; }
    .floor-plan-grid { grid-template-columns: 1fr; }
    .contact-wrap { grid-template-columns: 1fr; gap: 36px; }
    .amenity-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .mobile-toggle { display: block; }

    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: var(--white);
        padding: 20px 28px 28px;
        box-shadow: var(--shadow-lg);
        gap: 4px;
        border-top: 1px solid var(--gray-light);
    }

    .nav-menu.active { display: flex; }

    .nav-menu a { padding: 10px 0; font-size: 15px; display: block; }
    .nav-menu .nav-apply { margin-top: 8px; }
    .nav-menu .nav-apply a { display: inline-block; padding: 10px 24px; }

    .hero { height: 80vh; background-attachment: scroll; }
    .hero h1 { font-size: 42px; }
    .hero h3 { font-size: 18px; }
    .hero-sm { height: 260px; }
    .hero-sm h1 { font-size: 34px; }

    .feature-strip .container {
        grid-template-columns: 1fr 1fr;
    }
    .feature-item { padding: 20px 16px; }

    .section { padding: 64px 0; }
    .section h2 { font-size: 32px; }

    .two-column { grid-template-columns: 1fr; gap: 36px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .gallery-item img { height: 200px; }

    .contact-form { padding: 32px 24px; }
    .footer-content { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 480px) {
    .feature-strip .container { grid-template-columns: 1fr; }
    .feature-item { border-right: none; border-bottom: 1px solid var(--gray-light); }
    .feature-item:last-child { border-bottom: none; }
    .gallery-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 36px; }
}

/* ── Hero Promo Bar ───────────────────────────────────────────────────────── */
.hero-promo-bar {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(212, 136, 58, 0.92);
    color: #fff;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 9px 22px;
    border-radius: 40px;
    margin-bottom: 22px;
    box-shadow: 0 4px 16px rgba(0,0,0,.25);
}
.hero-promo-divider { opacity: .6; font-weight: 400; }

/* ── Feature strip highlight item ────────────────────────────────────────── */
.feature-item--highlight h4 { color: var(--accent); }

/* ── All Bills Paid Banner ────────────────────────────────────────────────── */
.allbills-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 18px 28px;
    border-radius: var(--radius);
    margin: 36px 0 44px;
    box-shadow: var(--shadow-lg);
    text-align: center;
}
.allbills-icon { font-size: 22px; flex-shrink: 0; }

/* ── Pricing Grid ─────────────────────────────────────────────────────────── */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 22px;
    margin-bottom: 28px;
}

.pricing-card {
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: var(--radius);
    padding: 28px 22px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}
.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.pricing-card--featured {
    border-color: var(--primary);
    border-width: 2px;
}
.pricing-card--featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 20px;
    white-space: nowrap;
}

.pricing-card__badge {
    background: #FEF3C7;
    color: #92400E;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    padding: 3px 12px;
    border-radius: 20px;
    margin-bottom: 14px;
}
.pricing-card__type {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.3;
    margin-bottom: 4px;
}
.pricing-card__size {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 16px;
}
.pricing-card__price {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 18px;
}
.pricing-card__price span {
    font-size: 16px;
    font-weight: 500;
    color: var(--gray);
}
.pricing-card__details {
    list-style: none;
    width: 100%;
    margin-bottom: 22px;
    text-align: left;
}
.pricing-card__details li {
    font-size: 14px;
    color: var(--dark-mid);
    padding: 5px 0;
    border-bottom: 1px solid var(--gray-light);
    display: flex;
    align-items: center;
    gap: 7px;
}
.pricing-card__details li:last-child { border-bottom: none; }
.pricing-card .btn { width: 100%; text-align: center; margin-top: auto; }

.pricing-note {
    text-align: center;
    font-size: 13px;
    color: var(--gray);
    margin-top: 10px;
}

@media (max-width: 768px) {
    .allbills-banner { font-size: 16px; }
    .pricing-grid { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 16px; }
}
@media (max-width: 480px) {
    .pricing-grid { grid-template-columns: 1fr; }
    .hero-promo-bar { font-size: 13px; padding: 8px 16px; }
}
