@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
    --primary: #351C75;
    --primary-light: #583bb5;
    --primary-ultra-light: #f5f3ff;
    --accent: #FF6600;
    --bg-white: #ffffff;
    --bg-gray: #f9f9fb;
    --text-dark: #0a0815;
    --text-muted: #66607a;
    --border: rgba(53, 28, 117, 0.08);
    --radius-s: 12px;
    --radius-m: 24px;
    --radius-l: 40px;
    --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 20px 40px rgba(53, 28, 117, 0.06);
    --shadow-lg: 0 30px 60px rgba(53, 28, 117, 0.12);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-muted);
    background-color: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-dark);
    font-weight: 800;
    letter-spacing: -0.02em;
    text-transform: none;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* --- Reveal --- */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- Navigation --- */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
    background: #351C75;
    box-shadow: 0 4px 20px rgba(53, 28, 117, 0.3);
}

nav.scrolled {
    padding: 8px 0;
    background: #351C75;
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 30px rgba(53, 28, 117, 0.4);
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 70px;
    transition: var(--transition);
    filter: drop-shadow(0 0 10px rgba(255, 102, 0, 0.2));
}

nav.scrolled .logo img {
    height: 60px;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
    /* Removed bullets */
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: var(--transition);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--accent);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--accent);
    color: white !important;
    padding: 10px 20px !important;
    border-radius: 8px;
    font-size: 0.85rem !important;
}

.nav-cta:hover {
    background: #ff8533;
    transform: translateY(-2px);
}

.nav-cta::after {
    display: none;
}

/* --- Header Banner --- */
.header-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, var(--accent) 100%);
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.header-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.header-content {
    position: relative;
    z-index: 2;
}

.header-logo {
    max-width: 450px;
    width: 100%;
    height: auto;
    margin: 0 auto 30px;
    display: block;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
    animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.header-tagline {
    font-size: 2rem;
    color: white;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    letter-spacing: 1px;
}

.header-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    letter-spacing: 0.5px;
}

/* --- Premium Hero Redesign --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: radial-gradient(circle at 80% 20%, rgba(53, 28, 117, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 10% 80%, rgba(255, 102, 0, 0.02) 0%, transparent 40%);
    overflow: hidden;
    padding: 120px 0 80px;
    /* Increased top padding to clear navbar */
}

.hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: var(--primary-ultra-light);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
    border: 1px solid rgba(53, 28, 117, 0.1);
}

.hero-text h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--text-dark);
    font-weight: 800;
}

.hero-text h1 span.accent {
    color: var(--accent);
    background: linear-gradient(120deg, var(--accent) 0%, #ff944d 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text h1 span.italic {
    font-weight: 400;
    font-style: italic;
    opacity: 0.9;
}

.hero-text p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 45px;
    max-width: 550px;
    line-height: 1.7;
}

.hero-btns {
    display: flex;
    gap: 20px;
    align-items: center;
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-main-img {
    width: 100%;
    max-width: 500px;
    z-index: 2;
    animation: floatingDevice 6s ease-in-out infinite;
    filter: drop-shadow(0 30px 60px rgba(53, 28, 117, 0.15));
}

/* Floating Feature Cards - Repositioned to avoid nav overlap */
.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    padding: 15px 25px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 15px 35px rgba(53, 28, 117, 0.1);
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 2px;
    animation: floatStat 5s ease-in-out infinite;
    min-width: 160px;
}

.card-1 {
    top: 25%;
    /* Lowered from 10% */
    left: 0%;
    /* Moved in from -10% */
    animation-delay: 0s;
}

.card-2 {
    bottom: 10%;
    right: 5%;
    animation-delay: 2s;
}

.floating-card .val {
    font-weight: 800;
    color: var(--primary);
    font-size: 1.4rem;
}

.floating-card .lbl {
    font-size: 0.7rem;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.8px;
}

@keyframes floatingDevice {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

@keyframes floatStat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}


.btn {
    display: inline-block;
    padding: 18px 40px;
    border-radius: var(--radius-s);
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(255, 102, 0, 0.2);
}

/* --- Sections --- */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 16px;
}

.section-header .line {
    width: 60px;
    height: 4px;
    background: var(--accent);
    margin: 0 auto;
}

/* --- Static Professional Grid (Peels) --- */
.cosmo-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    /* Increased gap for better breathing room with larger images */
    margin-top: 50px;
}

.cosmo-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 30px;
    transition: var(--transition);
    /* Keep transition for soft shadow only */
    display: flex;
    flex-direction: column;
}

.cosmo-item:hover {
    box-shadow: 0 10px 30px rgba(53, 28, 117, 0.05);
}

.cosmo-img-box {
    width: 100%;
    height: 420px;
    /* Increased from 300px */
    background: #fbfbff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.cosmo-img-box img {
    max-height: 380px;
    /* Increased from 240px */
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.cosmo-item:hover .cosmo-img-box img {
    transform: scale(1.05);
}

/* Specific size adjustment for Retinol Peel */
.retinol-peel-img img {
    max-height: 320px;
}


.cosmo-content {
    flex-grow: 1;
}

.cosmo-tag {
    font-size: 0.7rem;
    color: var(--accent);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
    display: block;
}

.cosmo-item h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.cosmo-item p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 25px;
}

.cosmo-link {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    /* No longer hidden */
    opacity: 1;
    transform: none;
}

.cosmo-link::after {
    content: '→';
}

.cosmo-link:hover {
    color: var(--accent);
}

/* --- Equipment --- */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 24px;
}

.tech-card {
    background: var(--bg-gray);
    border-radius: var(--radius-m);
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.tech-card:hover {
    background: white;
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.tech-card img {
    height: 140px;
    margin-bottom: 20px;
    object-fit: contain;
}

.tech-card h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 25px;
}

.btn-enquire {
    display: inline-block;
    padding: 10px 20px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    transition: var(--transition);
    margin-top: auto;
    width: 100%;
}

.btn-enquire:hover {
    background: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 102, 0, 0.2);
}

/* --- Pricing --- */
.pricing-section {
    background: var(--bg-gray);
    padding: 80px 0;
}

.pricing-tabs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.price-box {
    background: white;
    border-radius: var(--radius-l);
    padding: 50px 40px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    border-top: 5px solid var(--primary);
}

.price-box:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.price-box.featured {
    border-top-color: var(--accent);
    transform: scale(1.05);
}

.price-box h3 {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.price-label {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 30px;
    font-family: 'Outfit', sans-serif;
}

.price-box.featured .price-label {
    color: var(--accent);
}

.feature-list {
    list-style: none;
    margin-bottom: 40px;
    flex-grow: 1;
}

.feature-list li {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f5;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-list li::before {
    content: '→';
    color: var(--accent);
    font-weight: bold;
}

/* --- About Us Redesign --- */
.about-section {
    background: #fff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-img-box {
    position: relative;
    border-radius: var(--radius-m);
    overflow: hidden;
}

.about-img-box img {
    width: 100%;
    display: block;
    border-radius: var(--radius-m);
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    border-left: 2px solid var(--accent);
    padding-left: 20px;
}

.stat-item h4 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 1px;
}

.about-content h2 {
    font-size: 3rem;
    margin-bottom: 25px;
    line-height: 1.1;
}

.about-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* --- Contact --- */
.contact-section {
    padding: 80px 0;
}

.contact-layout {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    gap: 80px;
}

.contact-info h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.info-box {
    margin-top: 40px;
}

.info-item {
    margin-bottom: 30px;
}

.info-item label {
    display: block;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--primary);
    margin-bottom: 5px;
}

.info-item p {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-dark);
}

.info-item a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.info-item a:hover {
    color: var(--accent);
}

.form-wrapper {
    background: var(--bg-white);
    border: 1px solid var(--border);
    padding: 60px;
    border-radius: var(--radius-m);
    box-shadow: var(--shadow-md);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.field {
    margin-bottom: 25px;
    text-align: left;
}

.field label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.field input,
.field textarea {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid var(--border);
    border-radius: var(--radius-s);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--bg-gray);
}

.field input:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
}

/* --- Footer --- */
footer {
    padding: 80px 0;
    background: #351C75;
    ;
    color: white;
    text-align: center;
}

footer img {
    height: 80px;
    margin-bottom: 30px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 30px;
}

.social-icon {
    color: white;
    font-size: 1.5rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    text-decoration: none;
}

.social-icon:hover {
    color: var(--accent);
    background: white;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* --- Floating Widgets --- */
.floating-widgets {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.whatsapp-btn,
.back-to-top {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.whatsapp-btn {
    background-color: #25D366;
}

.whatsapp-btn:hover {
    background-color: #128C7E;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.3);
}

.back-to-top {
    background-color: var(--primary);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 102, 0, 0.3);
}

/* --- Responsive Design --- */

/* Tablet & Mobile Menu Styles */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 10px;
}

.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 10px;
    transition: var(--transition);
}

.menu-toggle.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }

    .hero-layout,
    .about-grid {
        gap: 40px;
    }

    .hero-text h1,
    .about-content h2 {
        font-size: 3.5rem;
    }
}

@media (max-width: 992px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: #351C75;
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        box-shadow: -10px 0 30px rgba(53, 28, 117, 0.5);
        transition: var(--transition);
        z-index: 1000;
        padding: 40px 30px;
    }

    .nav-links.active {
        right: 0;
    }

    .hero-layout,
    .about-grid,
    .contact-layout {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text p,
    .about-content p {
        margin: 0 auto 30px;
    }

    .hero-btns {
        justify-content: center;
    }

    .form-wrapper {
        text-align: left;
    }

    .about-img-box {
        order: -1;
    }

    .header-banner {
        padding: 100px 0 60px;
    }

    .header-logo {
        max-width: 300px;
    }

    .header-tagline {
        font-size: 1.5rem;
    }

    .header-subtitle {
        font-size: 1rem;
    }

    .cosmo-showcase,
    .pricing-tabs {
        grid-template-columns: repeat(2, 1fr);
    }

    .cosmo-img-box {
        height: 320px;
    }

    .cosmo-img-box img {
        max-height: 280px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 40px 0;
    }

    .container {
        padding: 0 20px;
    }

    .form-wrapper {
        padding: 30px;
    }

    .hero-text h1,
    .about-content h2 {
        font-size: 2.8rem;
    }

    .cosmo-showcase,
    .pricing-tabs,
    .tech-grid {
        grid-template-columns: 1fr;
    }

    .cosmo-img-box {
        height: 280px;
        margin-bottom: 20px;
    }

    .cosmo-img-box img {
        max-height: 240px;
    }

    .cosmo-item {
        padding: 20px;
    }

    .hero-main-img {
        max-width: 400px;
    }

    .floating-card {
        display: none;
    }

    /* Hide floating cards on small screens for better UX */

    .form-grid {
        grid-template-columns: 1fr;
    }

    .price-box.featured {
        transform: scale(1);
    }

    .pricing-tabs {
        gap: 20px;
    }
}

@media (max-width: 480px) {

    .hero-text h1,
    .about-content h2 {
        font-size: 2.2rem;
    }

    .btn {
        width: 100%;
        text-align: center;
        padding: 15px 25px;
    }

    .hero-btns {
        flex-direction: column;
        gap: 15px;
    }

    .nav-links {
        width: 100%;
        border-radius: 0;
    }

    .cosmo-img-box {
        height: 240px;
    }

    .cosmo-img-box img {
        max-height: 200px;
    }
}

/* --- Popup Form Styles --- */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 8, 21, 0.4);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-card {
    background: white;
    width: 95%;
    max-width: 500px;
    max-height: 90vh;
    /* Prevents card from going off-screen on short phones */
    padding: 40px;
    border-radius: var(--radius-m);
    position: relative;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.2);
    transform: translateY(30px);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow-y: auto;
    /* Allows scrolling if form is too long */
}

.popup-overlay.active .popup-card {
    transform: translateY(0);
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.8rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-muted);
    transition: var(--transition);
    z-index: 10;
}

.popup-close:hover {
    color: var(--accent);
    transform: rotate(90deg);
}

.popup-header {
    text-align: center;
    margin-bottom: 25px;
}

.popup-header h3 {
    font-size: 1.6rem;
    margin-bottom: 5px;
    color: var(--primary);
}

.popup-header p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.popup-card .field {
    margin-bottom: 15px;
}

.popup-card .field label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
    color: var(--primary);
}

.popup-card .field input,
.popup-card .field textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border);
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.95rem;
    background: var(--bg-gray);
    transition: var(--transition);
}

@media (max-width: 480px) {
    .popup-card {
        padding: 30px 20px;
        border-radius: var(--radius-s);
    }

    .popup-header h3 {
        font-size: 1.4rem;
    }

    .popup-card .field input,
    .popup-card .field textarea {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
}