

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #f8fafc;
    color: #334155;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

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

.device-hero {
    background: #f8fafc; 
    padding: 120px 0 80px;
    overflow: hidden;
}

.device-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.device-hero-text {
    flex: 1;
    max-width: 560px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.device-chip {
    font-size: 11px;
    font-weight: 700;
    color: #4f46e5;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: #e0e7ff;
    padding: 6px 14px;
    border-radius: 4px;
    width: fit-content;
}

.device-hero-text h1 {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1px;
    color: #0f172a;
}

.device-hero-text p {
    font-size: 16px;
    line-height: 1.6;
    color: #475569;
}

.device-hero-img {
    flex: 1;
    max-width: 480px;
    border-radius: 16px;
}

.device-hero-cta {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.btn-primary {
    background: #4f46e5;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 8px;
    width: fit-content;
    transition: all 0.3s;
    box-shadow: 0 4px 14px rgba(79, 70, 229, 0.25);
}
.btn-primary:hover {
    background: #4338ca;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(79, 70, 229, 0.35);
}

.device-hero-perks {
    display: flex;
    align-items: center;
    gap: 24px;
}

.device-hero-perks span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #64748b;
    font-weight: 500;
}

.device-section {
    padding: 80px 0;
    background: #fff;
}
.device-section:nth-child(even) {
    background: #f8fafc;
}

.text-center { text-align: center; }
.section-title {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}
.section-subtitle {
    font-size: 16px;
    color: #475569;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.coverage-grid-two {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.coverage-grid-four {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.coverage-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 40px;
    text-align: left;
    transition: all 0.3s;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}
.coverage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.06);
}

.coverage-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 24px;
}
.icon-blue { background: #e0f2fe; color: #0ea5e9; }
.icon-cyan { background: #ccfbf1; color: #14b8a6; }
.icon-green { background: #dcfce7; color: #16a34a; }
.icon-orange { background: #ffedd5; color: #ea580c; }

.coverage-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 24px;
}

.coverage-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.coverage-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: #475569;
    line-height: 1.5;
}
.coverage-list li svg {
    flex-shrink: 0;
    margin-top: 2px;
}
.check-blue { color: #0ea5e9; }
.check-cyan { color: #14b8a6; }
.check-green { color: #16a34a; }
.check-orange { color: #ea580c; }

.pricing-grid-three {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.pricing-grid-four {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.pricing-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}
.pricing-card.highlight {
    border: 2px solid #4f46e5;
    box-shadow: 0 10px 25px rgba(79, 70, 229, 0.15);
    transform: scale(1.05);
    z-index: 1;
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    white-space: nowrap;
}
.badge-indigo { background: #e0e7ff; color: #4f46e5; }
.badge-purple { background: #a855f7; color: #fff; }

.pricing-card.purple-badge {
    border: 2px solid #a855f7;
    background: #faf5ff;
    box-shadow: 0 10px 25px rgba(168, 85, 247, 0.15);
    transform: scale(1.03);
    z-index: 1;
}

.pricing-divider {
    height: 1px;
    background: #e2e8f0;
    margin: 0 0 24px;
    width: 100%;
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
}

.pricing-header h3 { font-size: 20px; font-weight: 800; color: #0f172a; margin-bottom: 8px; font-family: 'Poppins', sans-serif;}
.price-subtitle-dev { font-size: 14px; color: #64748b; margin-bottom: 4px; min-height: 42px;}
.pricing-value { font-family: 'Poppins', sans-serif; font-size: 24px; font-weight: 700; color: #0f172a; }
.pricing-price { font-family: 'Poppins', sans-serif; font-size: 28px; font-weight: 800; color: #4f46e5; margin-bottom: 24px;}
.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 30px;
    flex: 1;
    text-align: left;
}
.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding-left: 20px;
    position: relative;
}
.pricing-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 10px;
    height: 10px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234f46e5' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: cover;
}
.feat-content strong {
    display: block;
    font-size: 15px;
    color: #0f172a;
    font-weight: 700;
    margin-bottom: 2px;
}
.feat-content span {
    display: block;
    font-size: 13px;
    color: #64748b;
    line-height: 1.4;
}
.pricing-price span { font-size: 14px; font-weight: 500; color: #64748b; }
.mt-4 { margin-top: 16px; }

.btn-pricing {
    width: 100%;
    padding: 14px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
    text-align: center;
    margin-top: auto;
}
.btn-pricing-indigo { background: #4f46e5; color: #fff; }
.btn-pricing-purple { background: #a855f7; color: #fff; border: 1px solid #a855f7; margin-top: 10px; }
.btn-pricing-purple:hover { background: #9333ea; border-color: #9333ea; }
.btn-pricing-default { background: #f1f5f9; color: #475569; border: 1px solid #cbd5e1; }
.btn-pricing-default:hover { background: #e2e8f0; }
.btn-pricing:hover { opacity: 0.9; transform: translateY(-2px); }

.process-container {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-top: 40px;
    text-align: left;
}
.process-image {
    flex: 1;
}
.process-image img {
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.process-steps {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.process-step {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}
.step-icon {
    width: 40px;
    height: 40px;
    background: #4f46e5;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    flex-shrink: 0;
}
.process-step p {
    font-size: 15px;
    color: #334155;
    font-weight: 500;
}
.process-actions {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 16px;
}
.btn-outline {
    border: 2px solid #4f46e5;
    color: #4f46e5;
    font-weight: 600;
    padding: 12px 32px;
    border-radius: 8px;
    transition: all 0.3s;
}
.btn-outline:hover {
    background: #e0e7ff;
}

.faq-container {
    max-width: 800px;
    margin: 40px auto 0;
    text-align: left;
}
.faq-item {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    margin-bottom: 16px;
}
.faq-item summary {
    padding: 24px;
    font-weight: 600;
    font-size: 16px;
    color: #0f172a;
    cursor: pointer;
    list-style: none; 
    position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    font-weight: 400;
    color: #4f46e5;
    transition: transform 0.2s;
}
.faq-item[open] summary::after { content: '-'; }
.faq-answer {
    padding: 0 24px 24px;
    color: #475569;
    font-size: 15px;
    line-height: 1.6;
}

.bottom-cta {
    background: linear-gradient(135deg, #4f46e5, #4338ca);
    color: #fff;
    padding: 80px 48px;
    text-align: center;
}
.bottom-cta h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}
.bottom-cta p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 32px;
}
.btn-white {
    display: inline-block;
    background: #fff;
    color: #4f46e5;
    font-weight: 600;
    padding: 14px 36px;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s;
}
.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}
.footer-links-small {
    margin-top: 24px;
    font-size: 13px !important;
    opacity: 0.7 !important;
    letter-spacing: 0.5px;
}

.footer {
    background: #0f172a;
    padding: 72px 0 32px;
    color: #94a3b8;
    border-top: 1px solid #1e293b;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 48px;
    margin-bottom: 48px;
}
.footer-brand img { height: 36px; margin-bottom: 20px; }
.footer-brand p { font-size: 14px; line-height: 1.6; max-width: 300px; color: #64748b; }
.footer-contact-info { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }
.contact-row { display: flex; align-items: flex-start; gap: 8px; }
.contact-row svg { flex-shrink: 0; margin-top: 2px; }
.contact-row span { font-size: 13px; color: #94a3b8; line-height: 1.5; }
.footer-links h4, .footer-newsletter h4 { color: #fff; font-size: 14px; font-weight: 700; margin-bottom: 18px; letter-spacing: 0.3px; }
.footer-links a { display: block; font-size: 13px; margin-bottom: 10px; color: #94a3b8; transition: color 0.2s, padding-left 0.2s; }
.footer-links a:hover { color: #fff; padding-left: 4px; }
.footer-newsletter p { font-size: 13px; margin-bottom: 16px; color: #64748b; line-height: 1.5; }
.newsletter-input { display: flex; }
.newsletter-input input {
    flex: 1; padding: 11px 14px; border-radius: 10px 0 0 10px; border: 1px solid #334155; border-right: none;
    background: #1e293b; color: #fff; font-size: 13px; outline: none; transition: border-color 0.2s;
}
.newsletter-input input:focus { border-color: #4f46e5; }
.newsletter-input input::placeholder { color: #64748b; }
.newsletter-input button {
    padding: 0 20px; border: none; background: #4f46e5; color: #fff; font-weight: 600; font-size: 13px;
    border-radius: 0 10px 10px 0; cursor: pointer; transition: background 0.25s;
}
.newsletter-input button:hover { background: #4338ca; }
.footer-bottom { padding-top: 24px; border-top: 1px solid #1e293b; text-align: center; font-size: 13px; color: #475569; }

@media (max-width: 900px) {
    .device-hero-container { flex-direction: column; text-align: center; padding-top: 40px; }
    .device-chip, .btn-primary { margin-left: auto; margin-right: auto; }
    .device-hero-perks { justify-content: center; }
    .device-hero-text h1 { font-size: 36px; }
    .coverage-grid-four, .coverage-grid-two, .pricing-grid-four { grid-template-columns: 1fr 1fr; }
    .pricing-grid-three { grid-template-columns: 1fr; }
    .process-container { flex-direction: column; text-align: center; }
    .process-step { text-align: left; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 600px) {
    .coverage-grid-four, .coverage-grid-two, .pricing-grid-four { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .container,
    [class$="-container"],
    [class*="hero-container"],
    [class*="page-container"],
    [class*="section-container"],
    .checkout-grid,
    .quote-main {
        padding-left: 20px !important;
        padding-right: 20px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
}
