:root {
    --bg-main: #0a0b0d;
    --bg-darker: #050506;
    --accent: #C5A059;
    --accent-hover: #D8B266;
    --text-primary: #f8f8f9;
    --text-secondary: #a0a4ab;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    --glass-bg: rgba(255, 255, 255, 0.02);
    --glass-border: rgba(197, 160, 89, 0.15);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4);
    
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-main);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, .logo {
    font-family: var(--font-heading);
    font-weight: 400;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

.accent {
    color: var(--accent);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 8rem 0;
}

.bg-darker {
    background-color: var(--bg-darker);
}

.section-tag {
    display: inline-block;
    color: var(--accent);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 3rem;
}
.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 2rem;
    height: 1px;
    background-color: var(--accent);
}

.section-header {
    margin-bottom: 4rem;
}
.section-header.center {
    text-align: center;
}
.section-header.center .section-tag {
    padding-left: 0;
}
.section-header.center .section-tag::before,
.section-header.center .section-tag::after {
    display: none;
}
.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}
.section-header p {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.section-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.section-container.reverse {
    direction: rtl;
}
.section-container.reverse > * {
    direction: ltr;
}

/* Glassmorphism */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition);
}
header.scrolled {
    background: rgba(10, 11, 13, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.5);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

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

.logo a {
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    opacity: 0.8;
}
.nav-links a:hover {
    opacity: 1;
    color: var(--accent);
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    gap: 0.8rem;
    align-items: center;
    margin-left: 2rem;
    padding-left: 2rem;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}
.lang-switcher a {
    font-size: 0.85rem;
    font-weight: 600;
    opacity: 0.5;
    padding: 0.3rem;
}
.lang-switcher a:hover {
    opacity: 0.8;
}
.lang-switcher a.active {
    opacity: 1;
    color: var(--accent);
}

/* Forms */
.form-group { margin-bottom: 1.5rem; text-align: left; }
.form-group input, .form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 4px;
    color: var(--text-primary);
    font-family: var(--font-body);
    transition: var(--transition);
}
.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255,255,255,0.05);
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-primary-outline {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 4px;
    font-weight: 500;
    font-family: var(--font-body);
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    text-align: center;
    transition: var(--transition);
}

.btn-small {
    padding: 0.6rem 1.5rem;
}

.btn-primary {
    background-color: var(--accent);
    color: var(--bg-main);
    border: 1px solid var(--accent);
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.2);
}
.btn-primary:hover {
    background-color: var(--accent-hover);
    border-color: var(--accent-hover);
    box-shadow: 0 6px 20px rgba(197, 160, 89, 0.3);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(255,255,255,0.2);
}
.btn-secondary:hover {
    border-color: var(--text-primary);
    background-color: rgba(255,255,255,0.05);
    transform: translateY(-2px);
}

.btn-primary-outline {
    background-color: transparent;
    color: var(--accent);
    border: 1px solid var(--accent);
}
.btn-primary-outline:hover {
    background-color: var(--accent);
    color: var(--bg-main);
}

.mobile-menu-btn {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}
.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--text-primary);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    padding-top: 80px;
}
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.05);
    animation: slowZoom 25s linear infinite alternate;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(10, 11, 13, 0.95) 0%, rgba(10, 11, 13, 0.7) 40%, rgba(10, 11, 13, 0.3) 100%);
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 2;
}
.hero-content h1 {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}
.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 600px;
}
.hero-actions {
    display: flex;
    gap: 1.5rem;
}

@keyframes slowZoom {
    0% { transform: scale(1.0); }
    100% { transform: scale(1.15); }
}

/* About Section */
.section-text h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}
.section-text p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.section-image {
    position: relative;
}
.image-wrapper {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
}
.image-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 4/5;
    position: relative;
    z-index: 2;
    transition: transform 0.8s ease;
}
.image-wrapper:hover img {
    transform: scale(1.03);
}
.image-decor {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 60%;
    height: 60%;
    border-top: 2px solid var(--accent);
    border-right: 2px solid var(--accent);
    z-index: 1;
    transition: var(--transition);
}
.reverse .image-decor {
    right: auto;
    left: -20px;
    border-right: none;
    border-left: 2px solid var(--accent);
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}
.service-card {
    padding: 3rem 2.5rem;
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(800px circle at var(--mouse-x, 50%) var(--mouse-y, -20%), rgba(197, 160, 89, 0.08), transparent 40%);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(197, 160, 89, 0.4);
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
}
.service-card:hover::before {
    opacity: 1;
}
.service-icon {
    width: 50px;
    height: 50px;
    color: var(--accent);
    margin-bottom: 2rem;
}
.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}
.service-card p {
    color: var(--text-secondary);
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

/* Values */
.features-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}
.feature-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}
.feature-icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: var(--bg-darker);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
    position: relative;
    transition: var(--transition);
}
.feature-item:hover .feature-icon {
    transform: scale(1.1);
    background: var(--glass-bg);
}
.feature-icon.glow::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-shadow: 0 0 25px rgba(197, 160, 89, 0.2);
    z-index: -1;
    opacity: 0.5;
    transition: var(--transition);
}
.feature-item:hover .feature-icon.glow::after {
    opacity: 1;
    box-shadow: 0 0 30px rgba(197, 160, 89, 0.4);
}
.feature-icon svg {
    width: 30px;
    height: 30px;
}
.feature-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
}
.feature-content p {
    color: var(--text-secondary);
    font-size: 1.05rem;
}

/* Zones */
.zones-list {
    margin-top: 2rem;
}
.zones-list li {
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    transition: var(--transition);
}
.zones-list li:hover {
    padding-left: 1rem;
    border-bottom-color: rgba(197, 160, 89, 0.3);
}
.zones-list li:last-child {
    border-bottom: none;
}
.zones-list li strong {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-primary);
    transition: var(--transition);
}
.zones-list li:hover strong {
    color: var(--accent);
}
.zones-list li span {
    color: var(--text-secondary);
    font-size: 1rem;
}
.map-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

/* Testimonials Carousel */
.carousel-container {
    overflow: hidden;
    position: relative;
    padding: 1rem 0;
    margin-bottom: 3rem;
    width: 100%;
}
.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 2rem;
}
.testimonial-card {
    min-width: calc(33.333% - 1.34rem);
    padding: 2.5rem 2rem;
    border-radius: 8px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(197, 160, 89, 0.15);
}
.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}
.testimonial-author {
    font-weight: 600;
    color: var(--accent);
    font-family: var(--font-heading);
    text-align: right;
}
.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
}
.carousel-controls button {
    background: transparent;
    border: 1px solid var(--accent);
    color: var(--accent);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}
.carousel-controls button:hover {
    background: var(--accent);
    color: var(--bg-main);
}
.testimonial-form-container {
    max-width: 650px;
    margin: 3rem auto 0;
    padding: 3rem;
    display: none;
    border-radius: 8px;
}
.testimonial-form-container h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
}

/* Contact */
.contact-section {
    position: relative;
    background-image: radial-gradient(circle at center, rgba(197, 160, 89, 0.05) 0%, var(--bg-main) 70%);
}
.contact-card {
    max-width: 1100px;
    margin: 0 auto;
    padding: 5rem;
    border-radius: 12px;
}
.contact-flex {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}
.contact-info {
    flex: 1;
}
.contact-form-wrapper {
    flex: 1;
    width: 100%;
}
.contact-card h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}
.contact-card p {
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 2rem;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 8px;
    transition: var(--transition);
}
.contact-item.hoverable:hover {
    background: rgba(197, 160, 89, 0.05);
    border-color: rgba(197, 160, 89, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--bg-main);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-icon svg {
    width: 22px;
    height: 22px;
}
.contact-item h4 {
    font-family: var(--font-body);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
    margin-bottom: 0.3rem;
}
.contact-item p {
    margin: 0;
    font-size: 1.15rem;
    color: var(--text-primary);
    font-weight: 500;
}

/* Premium Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.pricing-card {
    padding: 3rem;
    border-radius: 16px;
    background: rgba(10, 11, 13, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
    backdrop-filter: blur(10px);
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.pricing-header {
    margin-bottom: 2.5rem;
    text-align: center;
}

.pricing-header h3 {
    font-size: 1.6rem;
    color: var(--gold);
    letter-spacing: 1px;
    font-family: var(--font-heading);
    margin: 0;
}

.pricing-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.pricing-item {
    display: flex;
    align-items: flex-end;
}

.pricing-label {
    font-size: 1.05rem;
    color: var(--text-primary);
}

.pricing-dots {
    flex-grow: 1;
    border-bottom: 1px dotted rgba(255, 255, 255, 0.15);
    margin: 0 1rem;
    position: relative;
    top: -0.4rem;
}

.pricing-val {
    font-size: 1.1rem;
    color: var(--gold);
    font-weight: 500;
    white-space: nowrap;
}

.pricing-note {
    margin-top: 2.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-align: center;
    font-style: italic;
    letter-spacing: 0.5px;
}

/* Pricing Footer */
.pricing-footer {
    text-align: center;
    margin-top: 4rem;
    padding: 2.5rem 2rem;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
}
.pricing-footer p {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.6;
}
.pricing-footer strong {
    color: var(--gold);
    font-weight: 500;
}

/* Footer */
footer {
    background-color: var(--bg-darker);
    padding: 5rem 0 2rem;
    border-top: 1px solid rgba(255,255,255,0.03);
}
.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 4rem;
}
.footer-logo h3 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    letter-spacing: 1px;
}
.footer-logo p {
    color: var(--text-secondary);
    font-size: 1rem;
}
.footer-links {
    display: flex;
    gap: 5rem;
}
.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.footer-links a {
    color: var(--text-secondary);
    font-size: 1rem;
}
.footer-links a:hover {
    color: var(--accent);
    padding-left: 5px;
}
.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Animations classes */
.animate-on-scroll {
    opacity: 0;
}
.fade-in.is-visible {
    animation: fadeIn 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.slide-up.is-visible {
    animation: slideUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.slide-left.is-visible {
    animation: slideLeft 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.slide-right.is-visible {
    animation: slideRight 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes slideUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes slideLeft {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes slideRight {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

[style*="--delay"] {
    animation-delay: var(--delay);
}

/* Responsive */
@media (max-width: 1024px) {
    .testimonial-card { min-width: calc(50% - 1rem); }
    .hero-content h1 { font-size: 4rem; }
    .section-container { gap: 3rem; }
    .contact-card { padding: 4rem 3rem; }
}

@media (max-width: 992px) {
    .section-container { grid-template-columns: 1fr; }
    .section-container.reverse { direction: ltr; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .image-wrapper img { aspect-ratio: 16/9; }
    .image-decor { display: none; }
    .contact-flex { flex-direction: column; gap: 4rem; }
    .contact-form-wrapper { padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1); }
}

@media (max-width: 768px) {
    .testimonial-card { min-width: 100%; }
}

/* Parallax Banner */
.parallax-banner {
    position: relative;
    padding: 10rem 0;
    text-align: center;
    background-image: url('../assets/images/handshake-bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;
}
.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(5, 5, 6, 0.7), rgba(10, 11, 13, 0.95));
    z-index: -1;
}
.banner-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}
.banner-content p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .parallax-banner {
        background-attachment: scroll; /* better for mobile performance */
        padding: 5rem 1rem;
    }
    .banner-content h2 {
        font-size: 2rem;
        line-height: 1.3;
    }
    .banner-content p {
        font-size: 1.1rem;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(5, 5, 6, 0.98);
        flex-direction: column;
        justify-content: center;
        transition: var(--transition);
        z-index: 10;
        backdrop-filter: blur(10px);
    }
    .nav-links.active { right: 0; }
    .nav-links li { font-size: 1.5rem; }
    .lang-switcher { margin-left: 0; padding-left: 0; border-left: none; margin-top: 2rem; justify-content: center; }
    .lang-switcher a { font-size: 1.2rem; margin: 0 0.5rem; }
    .mobile-menu-btn {
        display: flex;
        z-index: 11;
    }
    .mobile-menu-btn.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
    .mobile-menu-btn.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
    
    .hero { min-height: 600px; padding-top: 100px; }
    .hero-content h1 { font-size: 2.8rem; }
    .hero-subtitle { font-size: 1.1rem; margin-bottom: 2rem; }
    
    .hero-actions { flex-direction: column; width: 100%; gap: 1rem; }
    .hero-actions a { width: 100%; text-align: center; }
    
    .services-grid { grid-template-columns: 1fr; gap: 2rem; }
    
    .section { padding: 5rem 0; }
    .section-header h2, .section-text h2, .contact-card h2 { font-size: 2rem; }
    
    .feature-item { flex-direction: column; gap: 1rem; text-align: center; align-items: center; }
    .feature-icon { margin-bottom: 0.5rem; }
    
    .contact-card { padding: 3rem 1.5rem; }
    .contact-card h2 { font-size: 2.2rem; }
    .contact-item { flex-direction: column; text-align: center; gap: 1rem; padding: 1.5rem 1rem; }
    
    .pricing-grid { grid-template-columns: 1fr; gap: 2rem; }
    .pricing-card { padding: 2rem; }
    
    .footer-container { flex-direction: column; gap: 3rem; text-align: center; align-items: center; }
    .footer-links { gap: 3rem; width: 100%; justify-content: center; flex-wrap: wrap; }
}

@media (max-width: 480px) {
    .hero-content h1 { font-size: 2.3rem; }
    .section-header h2, .section-text h2 { font-size: 1.8rem; }
    .pricing-item { flex-direction: column; align-items: flex-start; gap: 0.3rem; }
    .pricing-dots { display: none; }
}
