:root {
    --primary-blue: #1a56db;
    --hover-blue: #1e40af;
    --text-dark: #111827;
    --text-gray: #4b5563;
    --bg-light: #f9fafb;
    --white: #ffffff;
    --border-radius-lg: 24px;
    --border-radius-btn: 100px;
    --font-main: 'Inter', sans-serif;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    margin: 0;
    line-height: 1.5;
    background-color: var(--white);
    overflow-x: hidden;
}

ul {
    list-style: none;
    /* Global reset for lists */
    padding: 0;
    margin: 0;
}

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

/* Header */
.header {
    padding: 20px 0;
}

.header-content {
    display: flex;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--primary-blue);
}

.logo img {
    height: 32px;
}

/* Typography */
h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
}

h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 15px;
}

p {
    color: var(--text-gray);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: var(--border-radius-btn);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-transform: lowercase;
}

.btn-primary {
    background-color: var(--primary-blue);
    color: white;
}

.btn-primary:hover {
    background-color: var(--hover-blue);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(26, 86, 219, 0.3);
}

.btn-full {
    width: 100%;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    text-align: center;
}

.hero-grid {
    display: flex;
    justify-content: center;
}

.hero-text {
    max-width: 800px;
}

.hero-text.centered-text {
    margin: 0 auto;
}

/* Feature Sections */
.section-header {
    margin-top: 60px;
}

.feature-section {
    padding: 60px 0;
}

.feature-grid {
    display: flex;
    justify-content: center;
}

.feature-grid.single-col {
    display: flex;
    justify-content: center;
}

.feature-text.centered-text {
    max-width: 600px;
    text-align: center;
}

.feature-card {
    background: white;
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    border: 1px solid #e5e7eb;
    text-align: left;
}

.step-badge {
    color: var(--primary-blue);
    font-weight: 800;
    font-size: 1.5rem;
    display: inline-block;
    margin-bottom: 10px;
}

.step-total {
    color: #9ca3af;
    font-size: 1rem;
}

/* Tariffs Section */
.tariffs-section {
    padding: 60px 0 100px;
    background-color: var(--white);
}

.centered-header {
    text-align: center;
    margin-bottom: 50px;
}

.tariffs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: start;
}

/* Tariff Card - styled exactly like feature cards */
.tariff-card {
    background: white;
    padding: 40px 30px;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    border: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.2s, box-shadow 0.2s;
    height: 100%;
}

.tariff-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.tariff-name {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 30px;
    text-align: center;
}

.tariff-features {
    width: 100%;
    margin-bottom: 30px;
}

.tariff-features li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 1rem;
    color: var(--text-gray);
    border-bottom: 1px solid #f3f4f6;
    padding-bottom: 15px;
}

.tariff-features li:last-child {
    border-bottom: none;
}

.tariff-features li .val {
    font-weight: 700;
    color: var(--text-dark);
}

.tariff-price {
    margin-top: 15px;
    font-weight: 700;
    color: var(--primary-blue);
    font-size: 0.9rem;
    text-transform: uppercase;
}

/* Footer */
.footer-desktop {
    padding: 80px 0 40px;
    background-color: var(--white);
    border-top: 1px solid #f3f4f6;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
}

.footer-col h4 {
    color: #9ca3af;
    margin-bottom: 25px;
    font-size: 1rem;
    font-weight: 600;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-desc {
    max-width: 300px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--primary-blue);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--text-dark);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}

.social-icon:hover {
    transform: scale(1.1);
    background-color: var(--primary-blue);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 30px;
    margin-top: 60px;
    border-top: 1px solid #f3f4f6;
    color: #9ca3af;
    font-size: 0.9rem;
}

.footer-legal span,
.footer-legal a {
    margin-right: 30px;
    color: #9ca3af;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 900px) {
    .tariffs-grid {
        grid-template-columns: 1fr;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
    }
}