/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* CSS Variables for Color Palette */
:root {
  --primary-bg: linear-gradient(135deg, #c3f0ca 0%, #b28dd2 100%);
  --primary-text: #2b2b2b;
  --accent-blue: #00cfff;
  --accent-coral: #ff5c57;
  --white: #ffffff;
  --light-gray: #f8f9fa;
  --dark-gray: #666;
  --border-radius: 20px;
  --transition: all 0.3s ease;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px; /* Отступ для якорей чтобы заголовки были видны */
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #2b2b2b;
    background: linear-gradient(135deg, #c3f0ca 0%, #b28dd2 100%);
    min-height: 100vh;
    padding-top: 80px;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 207, 255, 0.1);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    height: 40px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.brand-name {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #2b2b2b;
    letter-spacing: -0.02em;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: #2b2b2b;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #00cfff;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #00cfff;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

/* Main Content Spacing */
main {
  padding-top: 80px;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Styles */
.section {
  padding: 4rem 0;
  opacity: 0;
  transform: translateY(50px);
  animation: fadeInUp 0.8s ease forwards;
}

.section:nth-child(even) {
  animation-delay: 0.2s;
}

.section:nth-child(odd) {
  animation-delay: 0.4s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(195, 240, 202, 0.9) 0%, rgba(178, 141, 210, 0.9) 100%);
    padding: 3rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(0, 207, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255, 92, 87, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #2b2b2b;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero .subtitle {
    font-size: 1.3rem;
    color: #4a4a4a;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #00cfff, #0099cc);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 207, 255, 0.3);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 207, 255, 0.4);
    background: linear-gradient(45deg, #0099cc, #00cfff);
}

/* Button Styles */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--border-radius);
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: var(--transition);
}

.btn:hover::before {
  left: 100%;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
  border-color: var(--accent-blue);
}

.btn-primary {
  background: linear-gradient(45deg, var(--accent-blue), var(--accent-coral));
  border: none;
  color: var(--white);
}

/* Cards */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(0, 207, 255, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card:hover::before {
    opacity: 1;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 207, 255, 0.2);
    border-color: rgba(0, 207, 255, 0.3);
}

.card-icon {
    font-size: 3rem;
    color: #00cfff;
    margin-bottom: 1.5rem;
    display: block;
}

.card h3 {
    color: #2b2b2b;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.card p {
    color: #4a4a4a;
    font-size: 1rem;
    line-height: 1.6;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-item:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(0, 207, 255, 0.2);
}

.feature-icon {
    font-size: 2.5rem;
    color: #ff5c57;
    margin-bottom: 1rem;
}

.feature-item h4 {
    color: #2b2b2b;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.feature-item p {
    color: #4a4a4a;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Modern Form */
.modern-form-container {
    max-width: 700px;
    margin: 0 auto;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.modern-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    animation: fadeInUp 0.8s ease forwards;
}

/* Form Fields */
.form-field {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease forwards;
}

.form-field:nth-child(1) { animation-delay: 0.1s; }
.form-field:nth-child(2) { animation-delay: 0.2s; }
.form-field:nth-child(3) { animation-delay: 0.3s; }

.form-field:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(0, 207, 255, 0.2);
}

.field-icon {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #00cfff, #b28dd2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.5rem;
}

.field-content {
    flex: 1;
}

.field-content label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #2b2b2b;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.field-content input {
    width: 100%;
    padding: 12px 0;
    border: none;
    border-bottom: 2px solid rgba(0, 207, 255, 0.3);
    background: transparent;
    color: #2b2b2b;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.field-content input:focus {
    outline: none;
    border-bottom-color: #00cfff;
}

.field-content input:invalid:not(:focus):not(:placeholder-shown) {
    border-bottom-color: #ff5c57;
    background-color: rgba(255, 92, 87, 0.05);
}

.field-content input:valid:not(:placeholder-shown) {
    border-bottom-color: #4CAF50;
}

.field-content input::placeholder {
    color: rgba(43, 43, 43, 0.5);
    font-style: italic;
}

/* Price Options */
.price-field {
    flex-direction: column;
    align-items: stretch;
}

.price-field .field-icon {
    margin-bottom: 1rem;
}

.price-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.price-option {
    position: relative;
}

.price-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.price-option label {
    display: block;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.price-option label::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #00cfff, #b28dd2);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.price-option input[type="radio"]:checked + label::before {
    opacity: 0.1;
}

.price-option input[type="radio"]:checked + label {
    border-color: #00cfff;
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 207, 255, 0.3);
}

.price-option label:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.price-amount {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: #00cfff;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.price-desc {
    display: block;
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

/* Agreement Checkboxes */
.form-checkboxes {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.agreement-checkbox {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 18px;
    padding: 1.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.agreement-checkbox:nth-child(1) { 
    animation-delay: 0.2s; 
}

.agreement-checkbox:nth-child(2) { 
    animation-delay: 0.4s; 
}

.agreement-checkbox::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 207, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.agreement-checkbox:hover::before {
    left: 100%;
}

.agreement-checkbox:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 207, 255, 0.2);
    border-color: rgba(0, 207, 255, 0.3);
}

.agreement-checkbox input[type="checkbox"] {
    display: none;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    position: relative;
    z-index: 1;
    cursor: pointer;
}

.checkbox-container:active {
    transform: scale(0.98);
}

.checkbox-container:hover .agreement-checkbox {
    transform: translateY(-2px);
}

.checkbox-switch {
    position: relative;
    width: 50px;
    height: 24px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 2px;
}

.switch-slider {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 18px;
    height: 18px;
    background: linear-gradient(45deg, #ff5c57, #ff8a80);
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.checkbox-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    color: white;
    transition: all 0.3s ease;
}

.agreement-checkbox input[type="checkbox"]:checked + label .checkbox-switch {
    background: linear-gradient(45deg, #00cfff, #b28dd2);
    border-color: #00cfff;
}

.agreement-checkbox input[type="checkbox"]:checked + label .switch-slider {
    left: 28px;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 207, 255, 0.4);
}

.agreement-checkbox input[type="checkbox"]:checked + label .checkbox-icon {
    transform: translate(-50%, -50%) scale(1);
    color: #00cfff;
}

.checkbox-content {
    flex: 1;
}

.checkbox-title {
    font-size: 1rem;
    font-weight: 600;
    color: #2b2b2b;
    margin-bottom: 0.3rem;
    line-height: 1.3;
}

.checkbox-subtitle {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.4;
}

.checkbox-subtitle a {
    color: #00cfff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.checkbox-subtitle a:hover {
    text-decoration: underline;
    color: #b28dd2;
}

/* Submit Button */
.modern-submit-btn {
    background: linear-gradient(45deg, #00cfff, #b28dd2);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 207, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
    margin-top: 1rem;
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 0.6s;
}

.modern-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.modern-submit-btn:hover::before {
    left: 100%;
}

.modern-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 207, 255, 0.4);
}

.modern-submit-btn:active {
    transform: translateY(-1px);
}

.modern-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.modern-submit-btn:disabled:hover {
    transform: none;
    box-shadow: 0 8px 25px rgba(0, 207, 255, 0.3);
}

.btn-text {
    position: relative;
    z-index: 1;
}

.btn-icon {
    position: relative;
    z-index: 1;
    font-size: 1.2rem;
}

/* Testimonials */
.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(0, 207, 255, 0.2);
}

.testimonial-content {
    font-style: italic;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
}

.testimonial-author {
    font-weight: 600;
    color: #2b2b2b;
    font-size: 0.95rem;
}

.testimonial-company {
    color: #666;
    font-size: 0.9rem;
}

/* Footer Styles */
footer {
  background: var(--primary-text);
  color: var(--white);
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  margin-bottom: 1rem;
  color: var(--accent-blue);
}

.footer-section p,
.footer-section a {
  color: #ccc;
  text-decoration: none;
  transition: var(--transition);
}

.footer-section a:hover {
  color: var(--accent-coral);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #444;
  color: #999;
}

/* Cookie Popup */
.cookie-popup {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  z-index: 10000;
  max-width: 350px;
  transform: translateY(100px);
  opacity: 0;
  transition: var(--transition);
}

.cookie-popup.show {
  transform: translateY(0);
  opacity: 1;
}

.cookie-popup p {
  margin-bottom: 1rem;
  color: var(--primary-text);
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
}

.cookie-btn {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
  font-weight: 500;
}

.cookie-btn.accept {
  background: var(--accent-blue);
  color: var(--white);
}

.cookie-btn.decline {
  background: #ccc;
  color: var(--primary-text);
}

.cookie-btn:hover {
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    html {
        scroll-padding-top: 80px; /* Меньший отступ для мобильных */
    }
    
    body {
        padding-top: 60px; /* Уменьшаю отступ для компактной шапки */
    }
    
    /* Компактная шапка для мобильных */
    header {
        padding: 0.5rem 0; /* Уменьшаю padding с 1rem до 0.5rem */
    }
    
    .logo {
        height: 32px; /* Уменьшаю логотип с 40px до 32px */
    }
    
    .nav-menu {
        gap: 1rem; /* Уменьшаю gap с 2rem до 1rem */
    }
    
    .nav-menu a {
        font-size: 0.85rem; /* Уменьшаю размер шрифта навигации */
    }
    
    .hero {
        padding: 2rem 0; /* Уменьшаю padding hero раздела */
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero .subtitle {
        font-size: 1.1rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .section h2 {
        font-size: 2rem;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .card {
        padding: 2rem;
    }
    
    .modern-form-container {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .form-field {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
        padding: 1.2rem;
    }
    
    .field-icon {
        align-self: flex-start;
        margin-top: 0;
    }
    
    .price-options {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .price-option label {
        padding: 1.2rem;
    }
    
    .price-amount {
        font-size: 1.1rem;
    }
    
    .agreement-checkbox {
        padding: 1.2rem;
    }
    
    .checkbox-container {
        gap: 0.8rem;
    }
    
    .checkbox-switch {
        width: 45px;
        height: 22px;
    }
    
    .switch-slider {
        width: 16px;
        height: 16px;
    }
    
    .agreement-checkbox input[type="checkbox"]:checked + label .switch-slider {
        left: 25px;
    }
    
    .checkbox-title {
        font-size: 0.95rem;
    }
    
    .checkbox-subtitle {
        font-size: 0.8rem;
    }
    
    .modern-submit-btn {
        padding: 16px 30px;
        font-size: 1rem;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    html {
        scroll-padding-top: 70px; /* Еще меньший отступ для очень маленьких экранов */
    }
    
    body {
        padding-top: 50px; /* Еще меньший отступ */
    }
    
    /* Еще более компактная шапка */
    header {
        padding: 0.3rem 0; /* Еще меньше padding */
    }
    
    .logo {
        height: 28px; /* Еще меньше логотип */
    }
    
    .nav-menu a {
        font-size: 0.8rem; /* Еще меньше шрифт */
    }
    
    .hero {
        padding: 1.5rem 0; /* Минимальный padding для hero */
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero .subtitle {
        font-size: 1rem;
    }
    
    .section {
        padding: 2rem 0;
    }
    
    .section h2 {
        font-size: 1.8rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .modern-form-container {
        padding: 1.5rem;
    }
    
    .form-field {
        padding: 1rem;
    }
    
    .field-icon {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
    
    .price-option label {
        padding: 1rem;
    }
    
    .price-amount {
        font-size: 1rem;
    }
    
    .price-desc {
        font-size: 0.8rem;
    }
    
    .agreement-checkbox {
        padding: 1rem;
    }
    
    .checkbox-container {
        gap: 0.6rem;
    }
    
    .checkbox-switch {
        width: 40px;
        height: 20px;
    }
    
    .switch-slider {
        width: 14px;
        height: 14px;
        top: 2px;
    }
    
    .agreement-checkbox input[type="checkbox"]:checked + label .switch-slider {
        left: 22px;
    }
    
    .checkbox-title {
        font-size: 0.9rem;
    }
    
    .checkbox-subtitle {
        font-size: 0.75rem;
    }
    
    .modern-submit-btn {
        padding: 14px 25px;
        font-size: 0.95rem;
    }
    
    .nav-menu {
        gap: 0.5rem;
    }
}

/* Animations */
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.pulse {
  animation: pulse 2s infinite;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.hidden { display: none; }
.visible { display: block; } 