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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Header */
.navbar {
    background: #1a1a2e;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.nav-brand h2 {
    color: #e94560;
    font-size: 1.8rem;
    font-weight: bold;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #e94560;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: #e94560;
    color: #fff;
    border-color: #e94560;
}

.btn-primary:hover {
    background: #d63447;
    border-color: #d63447;
    transform: translateY(-2px);
}

.btn-secondary {
    background: #0f3460;
    color: #fff;
    border-color: #0f3460;
}

.btn-secondary:hover {
    background: #16213e;
    border-color: #16213e;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #e94560;
    border-color: #e94560;
}

.btn-outline:hover {
    background: #e94560;
    color: #fff;
    transform: translateY(-2px);
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #fff;
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow-x: hidden;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
    max-width: 1200px;
}

.hero h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    text-align: center;
    overflow: hidden;
}

.hero-image svg {
    max-width: 100%;
    height: auto;
    width: 100%;
    max-height: 300px;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: #f8f9fa;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a2e;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Plans Section */
.plans {
    padding: 80px 0;
    background: #fff;
}

.plans h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a2e;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.plan-card {
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.plan-card.featured {
    border-color: #e94560;
    transform: scale(1.05);
}

.badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #e94560;
    color: #fff;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.plan-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
    color: #e94560;
    margin-bottom: 1.5rem;
}

.price span {
    font-size: 1rem;
    color: #666;
}

.plan-card ul {
    list-style: none;
    margin-bottom: 2rem;
}

.plan-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.plan-card li:last-child {
    border-bottom: none;
}

/* Test Section */
.test-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #e94560 0%, #d63447 100%);
    color: #fff;
    text-align: center;
}

.test-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.test-section > p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.test-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.test-feature h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.test-feature p {
    opacity: 0.9;
}

/* Compatibility Section */
.compatibility {
    padding: 80px 0;
    background: #f8f9fa;
    text-align: center;
}

.compatibility h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.compatibility > p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #666;
}

.devices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.device {
    padding: 1.5rem;
}

.device h4 {
    margin-top: 1rem;
    color: #1a1a2e;
    font-size: 1.1rem;
}

/* How it Works */
.how-it-works {
    padding: 80px 0;
    background: #fff;
}

.how-it-works h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a2e;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #e94560;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.step h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.step p {
    color: #666;
    line-height: 1.6;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: #f8f9fa;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a2e;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.stars {
    color: #ffc107;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1rem;
    color: #666;
    line-height: 1.6;
}

.author {
    font-weight: 600;
    color: #1a1a2e;
}

/* Test Section */
.test-section {
    padding: 80px 0;
    background: #f8f9fa;
    text-align: center;
}

.test-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.test-section > p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.test-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.test-feature {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.test-feature:hover {
    transform: translateY(-5px);
}

.test-feature h4 {
    color: #e94560;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.test-feature p {
    color: #666;
    line-height: 1.6;
}

/* Compatibility Section */
.compatibility {
    padding: 80px 0;
    background: #fff;
}

.compatibility h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.compatibility > .container > p {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.devices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.device {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.device:hover {
    transform: translateY(-5px);
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.device h4 {
    color: #1a1a2e;
    margin-top: 1rem;
    font-size: 1.2rem;
}

/* Test Page Specific Styles */
.page-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #fff;
    padding: 120px 0 80px;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* How to Request Section */
.how-to-request {
    padding: 80px 0;
    background: #f8f9fa;
}

.how-to-request h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a2e;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.step-card {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
}

.step-card .step-number {
    width: 60px;
    height: 60px;
    background: #e94560;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.step-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.step-card p {
    color: #666;
    line-height: 1.6;
}

.activation-steps {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-top: 2rem;
}

.activation-steps h3 {
    color: #1a1a2e;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.activation-steps ol {
    padding-left: 1.5rem;
}

.activation-steps li {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #666;
}

.activation-steps strong {
    color: #1a1a2e;
}

/* What's Included Section */
.whats-included {
    padding: 80px 0;
    background: #fff;
}

.whats-included h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a2e;
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.included-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 2px solid transparent;
}

.included-item:hover {
    transform: translateY(-5px);
    border-color: #e94560;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.included-icon {
    margin-bottom: 1rem;
}

.included-item h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.included-item p {
    color: #666;
    line-height: 1.6;
}

/* Requirements Section */
.requirements {
    padding: 80px 0;
    background: #f8f9fa;
}

.requirements h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a2e;
}

.requirements-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.requirements-list {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.requirements-list h3 {
    color: #1a1a2e;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.requirements-list ul {
    list-style: none;
    padding: 0;
}

.requirements-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #f0f0f0;
    color: #666;
    line-height: 1.6;
}

.requirements-list li:last-child {
    border-bottom: none;
}

.requirements-list strong {
    color: #1a1a2e;
}

.requirements-tips {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.requirements-tips h3 {
    color: #1a1a2e;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.tip {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #e94560;
}

.tip:last-child {
    margin-bottom: 0;
}

.tip-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.tip p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

.tip strong {
    color: #1a1a2e;
}

/* Test Form Section */
.test-form-section {
    padding: 80px 0;
    background: #fff;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h2 {
    color: #1a1a2e;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.form-header p {
    color: #666;
    font-size: 1.1rem;
}

/* Footer */
footer {
    background: #1a1a2e;
    color: #fff;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: #e94560;
    margin-bottom: 1rem;
}

.footer-section p {
    line-height: 1.6;
    opacity: 0.9;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #fff;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-section ul li a:hover {
    opacity: 1;
    color: #e94560;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    color: #fff;
    text-decoration: none;
    padding: 0.5rem 1rem;
    background: #e94560;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: #d63447;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    opacity: 0.8;
}

/* Page-specific styles */
.page-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 80px 0 60px;
    text-align: center;
    color: white;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #e94560;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto;
}

/* Breadcrumb */
.breadcrumb {
    background: #f8f9fa;
    padding: 15px 0;
    border-bottom: 1px solid #e9ecef;
}

.breadcrumb-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.breadcrumb-list li {
    color: #6c757d;
}

.breadcrumb-list li:not(:last-child)::after {
    content: '/';
    margin: 0 10px;
    color: #6c757d;
}

.breadcrumb-list a {
    color: #e94560;
    text-decoration: none;
}

.breadcrumb-list a:hover {
    text-decoration: underline;
}

/* DMCA Page Styles */
.dmca-content {
    padding: 60px 0;
    background: white;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.dmca-section {
    margin-bottom: 50px;
}

.dmca-section h2 {
    color: #1a1a2e;
    margin-bottom: 20px;
    font-size: 2rem;
}

.dmca-section h3 {
    color: #e94560;
    margin: 30px 0 15px;
    font-size: 1.5rem;
}

.dmca-section h4 {
    color: #1a1a2e;
    margin: 20px 0 10px;
    font-size: 1.2rem;
}

.requirement-list {
    display: grid;
    gap: 30px;
    margin: 30px 0;
}

.requirement-item {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #e94560;
}

.process-steps {
    display: grid;
    gap: 20px;
    margin: 30px 0;
}

.step {
    display: flex;
    align-items: center;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.step-number {
    background: #e94560;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 20px;
    flex-shrink: 0;
}

.step-content h4 {
    margin: 0 0 10px;
    color: #1a1a2e;
}

.step-time {
    background: #e94560;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-top: 10px;
    display: inline-block;
}

.process-note {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    padding: 20px;
    border-radius: 10px;
    margin-top: 30px;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.contact-method {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
}

.contact-note {
    background: #e3f2fd;
    border: 1px solid #bbdefb;
    padding: 20px;
    border-radius: 10px;
    margin-top: 30px;
}

.prevention-measures {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.measure {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
}

.legal-disclaimer {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    padding: 20px;
    border-radius: 10px;
    margin-top: 30px;
}

/* Contact Page Styles */
.contact-methods {
    padding: 60px 0;
    background: #f8f9fa;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.contact-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.contact-card h3 {
    color: #1a1a2e;
    margin-bottom: 10px;
}

.contact-info {
    margin: 20px 0;
}

.contact-info strong {
    color: #e94560;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 5px;
}

.availability {
    color: #28a745;
    font-size: 0.9rem;
}

.contact-btn {
    background: #e94560;
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    display: inline-block;
    margin-top: 15px;
    transition: background 0.3s ease;
}

.contact-btn:hover {
    background: #d63447;
}

.contact-form-section {
    padding: 60px 0;
    background: white;
}

.form-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h2 {
    color: #1a1a2e;
    margin-bottom: 10px;
}

.contact-form {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #1a1a2e;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e94560;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.9rem;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.submit-btn {
    background: #e94560;
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background: #d63447;
}

.submit-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.form-success {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
}

.success-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.contact-faq {
    padding: 60px 0;
    background: #f8f9fa;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.faq-item {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.faq-item h3 {
    color: #1a1a2e;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.business-info {
    padding: 60px 0;
    background: white;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.info-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
}

.info-card h3 {
    color: #1a1a2e;
    margin-bottom: 20px;
}

.schedule-item,
.response-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #e9ecef;
}

.schedule-item:last-child,
.response-item:last-child {
    border-bottom: none;
}

.emergency-contact {
    padding: 40px 0;
    background: #fff3cd;
}

.emergency-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.emergency-icon {
    font-size: 4rem;
    flex-shrink: 0;
}

.emergency-contacts {
    display: flex;
    gap: 15px;
    margin: 20px 0;
}

.emergency-btn {
    background: #dc3545;
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
}

.emergency-btn:hover {
    background: #c82333;
}

/* About Page Styles */
.company-story {
    padding: 60px 0;
    background: white;
}

.story-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-text h2 {
    color: #1a1a2e;
    margin-bottom: 30px;
    font-size: 2.5rem;
}

.story-text p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #666;
}

.story-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #e94560;
    display: block;
}

.stat-label {
    color: #666;
    font-size: 0.9rem;
    margin-top: 5px;
}

.mvv-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.mvv-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.mvv-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.mvv-card h3 {
    color: #1a1a2e;
    margin-bottom: 20px;
}

.mvv-card ul {
    text-align: left;
    margin-top: 20px;
}

.why-choose {
    padding: 60px 0;
    background: white;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.reason-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.reason-card:hover {
    transform: translateY(-5px);
}

.reason-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.team-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.team-intro {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.team-member {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.member-photo {
    font-size: 4rem;
    margin-bottom: 20px;
}

.member-role {
    color: #e94560;
    font-weight: bold;
    margin: 10px 0;
}

.member-bio {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
}

.achievements {
    padding: 60px 0;
    background: white;
}

.achievements-grid {
    display: grid;
    gap: 30px;
    margin-top: 40px;
}

.achievement-item {
    display: flex;
    align-items: center;
    gap: 30px;
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
}

.achievement-year {
    background: #e94560;
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.achievement-content h3 {
    color: #1a1a2e;
    margin-bottom: 10px;
}

.technology-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.tech-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.tech-features {
    list-style: none;
    padding: 0;
}

.tech-features li {
    margin-bottom: 15px;
    padding-left: 0;
}

.tech-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.tech-stat {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.stat-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.commitment-section {
    padding: 60px 0;
    background: white;
}

.commitment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.commitment-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
}

.commitment-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

/* Blog Page Styles */
.featured-article {
    padding: 60px 0;
    background: white;
}

.featured-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.featured-tag {
    background: #e94560;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    display: inline-block;
    margin-bottom: 15px;
}

.featured-text h2 {
    color: #1a1a2e;
    margin-bottom: 15px;
    font-size: 2rem;
}

.article-meta {
    display: flex;
    gap: 20px;
    margin: 20px 0;
    font-size: 0.9rem;
    color: #666;
}

.read-more-btn {
    background: #e94560;
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    display: inline-block;
    margin-top: 15px;
    transition: background 0.3s ease;
}

.read-more-btn:hover {
    background: #d63447;
}

.blog-categories {
    padding: 60px 0;
    background: #f8f9fa;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.category-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.post-count {
    background: #e94560;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    display: inline-block;
    margin-top: 15px;
}

.latest-articles {
    padding: 60px 0;
    background: white;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.article-card {
    background: #f8f9fa;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.article-card:hover {
    transform: translateY(-5px);
}

.article-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.article-content {
    padding: 25px;
}

.article-category {
    background: #e94560;
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    display: inline-block;
    margin-bottom: 15px;
}

.article-content h3 {
    color: #1a1a2e;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.article-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.popular-articles {
    padding: 60px 0;
    background: #f8f9fa;
}

.popular-list {
    display: grid;
    gap: 20px;
    margin-top: 40px;
}

.popular-item {
    display: flex;
    align-items: center;
    gap: 25px;
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.popular-number {
    background: #e94560;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.popular-content h3 {
    color: #1a1a2e;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.popular-views {
    color: #666;
    font-size: 0.9rem;
}

.newsletter-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.newsletter-benefits {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.newsletter-benefits li {
    margin-bottom: 10px;
}

.subscribe-form {
    background: white;
    padding: 30px;
    border-radius: 15px;
}

.subscribe-form .form-group {
    display: flex;
    gap: 10px;
}

.subscribe-form input {
    flex: 1;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 25px;
    font-size: 1rem;
}

.subscribe-form button {
    background: #e94560;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.subscribe-form button:hover {
    background: #d63447;
}

.form-note {
    color: #666;
    font-size: 0.8rem;
    margin-top: 10px;
    text-align: center;
}

.search-tags {
    padding: 60px 0;
    background: white;
}

.search-section,
.tags-section {
    margin-bottom: 40px;
}

.search-form {
    display: flex;
    gap: 10px;
    max-width: 500px;
    margin-top: 20px;
}

.search-form input {
    flex: 1;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 25px;
    font-size: 1rem;
}

.search-form button {
    background: #e94560;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.search-form button:hover {
    background: #d63447;
}

.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.tag {
    background: #f8f9fa;
    color: #1a1a2e;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.tag:hover {
    background: #e94560;
    color: white;
    border-color: #e94560;
}

.blog-cta {
    padding: 60px 0;
    background: #f8f9fa;
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    color: #1a1a2e;
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.btn-primary,
.btn-secondary {
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #e94560;
    color: white;
}

.btn-primary:hover {
    background: #d63447;
}

.btn-secondary {
    background: transparent;
    color: #e94560;
    border: 2px solid #e94560;
}

.btn-secondary:hover {
    background: #e94560;
    color: white;
}

/* Plans Comparison Table */
.plans-comparison {
    padding: 60px 0;
    background: white;
}

.plans-table-container {
    overflow-x: auto;
    margin: 30px 0;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.plans-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    min-width: 800px;
}

.plans-table th,
.plans-table td {
    padding: 15px 20px;
    text-align: center;
    border-bottom: 1px solid #e9ecef;
}

.plans-table th {
    background: #f8f9fa;
    font-weight: bold;
    color: #1a1a2e;
    position: relative;
}

.plans-table th:nth-child(3) {
    background: #e94560;
    color: white;
}

.popular-badge {
    background: #fff;
    color: #e94560;
    padding: 4px 8px;
    border-radius: 15px;
    font-size: 0.8rem;
    margin-left: 10px;
}

.plans-table .price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #e94560;
}

.plans-table .price.featured {
    color: white;
}

.plans-table td:first-child {
    text-align: left;
    font-weight: 500;
    background: #f8f9fa;
}

.plan-btn {
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-block;
}

/* Payment Methods */
.payment-methods {
    padding: 60px 0;
    background: #f8f9fa;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.payment-method {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.payment-method:hover {
    transform: translateY(-5px);
}

.payment-icon {
    margin-bottom: 20px;
}

.payment-method h4 {
    color: #1a1a2e;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.payment-method p {
    margin: 10px 0;
    color: #666;
}

.payment-method strong {
    color: #e94560;
}

.payment-security {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.payment-security h3 {
    color: #1a1a2e;
    margin-bottom: 15px;
}

/* Guarantee and Support */
.guarantee-support {
    padding: 60px 0;
    background: white;
}

.guarantee-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.guarantee-item h2 {
    color: #1a1a2e;
    margin-bottom: 30px;
    font-size: 2.5rem;
}

.guarantee-content {
    display: grid;
    gap: 30px;
}

.guarantee-feature {
    padding: 25px;
    background: #f8f9fa;
    border-radius: 15px;
    border-left: 4px solid #e94560;
}

.guarantee-feature h4 {
    color: #1a1a2e;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.guarantee-feature p {
    color: #666;
    line-height: 1.6;
}

.support-hours {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
}

.support-hours h3 {
    color: #1a1a2e;
    margin-bottom: 20px;
}

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

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #e9ecef;
}

.hours-list li:last-child {
    border-bottom: none;
}

.hours-list strong {
    color: #e94560;
}

/* Hero highlights */
.hero-highlights {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.1);
    padding: 10px 20px;
    border-radius: 25px;
}

.highlight-icon {
    color: #e94560;
    font-weight: bold;
}

/* Section subtitle */
.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 0 20px;
    }
    
    .hero h1 {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .hero-image {
        order: -1;
        margin-bottom: 1rem;
    }
    
    .hero-image svg {
        max-width: 280px;
        height: auto;
    }
    
    .page-hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .features h2,
    .plans h2,
    .test-section h2,
    .compatibility h2,
    .how-it-works h2,
    .testimonials h2 {
        font-size: 2rem;
    }
    
    .plan-card.featured {
        transform: none;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .story-stats {
        grid-template-columns: 1fr 1fr;
    }
    
    .featured-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .newsletter-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .subscribe-form .form-group {
        flex-direction: column;
    }
    
    .tech-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .tech-stats {
        grid-template-columns: 1fr 1fr;
    }
    
    .emergency-card {
        flex-direction: column;
        text-align: center;
    }
    
    .emergency-contacts {
        flex-direction: column;
    }
    
    .achievement-item {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    /* Plans table responsive */
    .plans-table {
        min-width: 600px;
        font-size: 0.9rem;
    }
    
    .plans-table th,
    .plans-table td {
        padding: 10px 8px;
    }
    
    .plans-table .price {
        font-size: 1.2rem;
    }
    
    .plan-btn {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
    
    /* Payment methods responsive */
    .payment-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .payment-method {
        padding: 25px 20px;
    }
    
    /* Guarantee section responsive */
    .guarantee-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .guarantee-item h2 {
        font-size: 2rem;
    }
    
    .guarantee-feature {
        padding: 20px;
    }
    
    /* Hero highlights responsive */
    .hero-highlights {
        justify-content: center;
        gap: 15px;
    }
    
    .highlight {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
    
    /* Test page responsive */
    .requirements-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .included-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .form-container {
        padding: 2rem;
        margin: 0 20px;
    }
    
    .activation-steps {
        padding: 1.5rem;
    }
    
    /* Test section responsive */
    .test-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .test-feature {
        padding: 1.5rem;
    }
    
    /* Compatibility section responsive */
    .devices-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .device {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 80px 0 40px;
        min-height: auto;
    }
    
    .hero .container {
        padding: 0 15px;
        gap: 1.5rem;
    }
    
    .hero h1 {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-image svg {
        max-width: 250px;
        height: auto;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
    
    .features,
    .plans,
    .test-section,
    .compatibility,
    .how-it-works,
    .testimonials {
        padding: 60px 0;
    }
    
    .price {
        font-size: 2rem;
    }
    
    /* Plans table for very small screens */
    .plans-table {
        min-width: 500px;
        font-size: 0.8rem;
    }
    
    .plans-table th,
    .plans-table td {
        padding: 8px 5px;
    }
    
    .plans-table .price {
        font-size: 1rem;
    }
    
    .plan-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .popular-badge {
        display: block;
        margin: 5px 0;
        margin-left: 0;
    }
    
    /* Payment methods for small screens */
    .payment-method {
        padding: 20px 15px;
    }
    
    .payment-method h4 {
        font-size: 1.1rem;
    }
    
    /* Guarantee features for small screens */
    .guarantee-feature {
        padding: 15px;
    }
    
    .guarantee-feature h4 {
        font-size: 1.1rem;
    }
    
    /* Hero highlights for small screens */
    .hero-highlights {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .highlight {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    /* Section titles for small screens */
    .section-subtitle {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    /* Test page for very small screens */
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .form-container {
        padding: 1.5rem;
        margin: 0 10px;
    }
    
    .form-header h2 {
        font-size: 1.5rem;
    }
    
    .step-card {
        padding: 1.5rem;
    }
    
    .included-item {
        padding: 1.5rem;
    }
    
    .requirements-list,
    .requirements-tips {
        padding: 1.5rem;
    }
    
    .activation-steps {
        padding: 1rem;
    }
    
    .tip {
        padding: 0.8rem;
        flex-direction: column;
        text-align: center;
    }
    
    /* Test section for very small screens */
    .test-section h2 {
        font-size: 2rem;
    }
    
    .test-section > p {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    .test-feature {
        padding: 1.2rem;
    }
    
    .test-feature h4 {
        font-size: 1.1rem;
    }
    
    /* Compatibility section for very small screens */
    .compatibility h2 {
        font-size: 2rem;
    }
    
    .compatibility > .container > p {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    .devices-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .device {
        padding: 1.2rem;
    }
    
    .device h4 {
        font-size: 1.1rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card,
.plan-card,
.testimonial {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus States */
.btn:focus,
a:focus {
    outline: 2px solid #e94560;
    outline-offset: 2px;
}

/* Loading States */
.btn:active {
    transform: translateY(0);
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}