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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    background: #ffffff;
    min-height: 100vh;
    padding: 40px 20px;
    color: #000000;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
}

/* Header */
.header {
    text-align: center;
    margin-bottom: 50px;
}

.header h1 {
    font-size: 3rem;
    margin-bottom: 16px;
    font-weight: 800;
    color: #000000;
    letter-spacing: -0.02em;
}

.subtitle {
    font-size: 1.25rem;
    color: #666666;
    font-weight: 400;
}

/* Calculator Card */
.calculator-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px;
    border: 3px solid #000000;
    margin-bottom: 40px;
}

/* Form Styles */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 700;
    margin-bottom: 10px;
    color: #000000;
    font-size: 1rem;
}

.form-group input,
.form-group select {
    padding: 14px 18px;
    border: 3px solid #000000;
    border-radius: 16px;
    font-size: 1rem;
    transition: all 0.2s ease;
    background: white;
    font-weight: 500;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #000000;
    background: #f5f5f5;
}

/* Buttons */
.btn-calculate {
    width: 100%;
    padding: 18px;
    background: rgb(34, 197, 94);
    color: white;
    border: none;
    border-radius: 9999px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-calculate:hover {
    background: rgb(22, 163, 74);
    transform: translateY(-1px);
}

.btn-calculate:active {
    transform: translateY(0);
}

/* Results Section */
.results-section {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px;
    border: 3px solid #000000;
    margin-bottom: 40px;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.results-title {
    font-size: 2.5rem;
    margin-bottom: 12px;
    color: #000000;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.results-subtitle {
    color: #666666;
    margin-bottom: 30px;
    font-size: 1.15rem;
}

.results-subtitle span {
    font-weight: 700;
    color: #000000;
}

/* Comparison Table */
.comparison-table-wrapper {
    overflow-x: auto;
    margin-bottom: 40px;
    border: 3px solid #000000;
    border-radius: 16px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.comparison-table thead {
    background: #000000;
    color: white;
}

.comparison-table th {
    padding: 16px 14px;
    text-align: left;
    font-weight: 700;
    border: none;
}

.comparison-table td {
    padding: 18px 14px;
    border-bottom: 2px solid #f0f0f0;
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table tbody tr:hover {
    background: #f8f8f8;
}

.comparison-table .service-name {
    font-weight: 700;
    color: #000000;
}

.comparison-table .best-option {
    background: #f0f0f0;
}

.comparison-table .best-option .service-name {
    color: #000000;
}

.comparison-table .worst-option {
    background: #ffffff;
}

.comparison-table .unifi-row {
    background: #f8f8f8;
}

.comparison-table .unifi-row td {
    border-top: 3px solid rgb(34, 197, 94);
    border-bottom: 3px solid rgb(34, 197, 94);
}

.comparison-table .unifi-row td:first-child {
    border-left: 3px solid rgb(34, 197, 94);
}

.comparison-table .unifi-row td:last-child {
    border-right: 3px solid rgb(34, 197, 94);
}

.rate-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 700;
    border: 2px solid #000000;
}

.rate-good {
    background: #ffffff;
    color: #000000;
}

.rate-bad {
    background: #000000;
    color: #ffffff;
}

.highlight-col {
    background: #f8f8f8;
    font-weight: 700;
}

/* Savings Highlight Cards */
.savings-highlight {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.savings-card {
    padding: 32px;
    border-radius: 20px;
    border: 3px solid #000000;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}

.savings-card.primary {
    background: #000000;
    color: white;
}

.savings-card.secondary {
    background: #ffffff;
    color: #000000;
}

.savings-card.tertiary {
    background: #ffffff;
    color: #000000;
}

.savings-card .icon-badge {
    margin-bottom: 0;
}

.savings-card .savings-content {
    width: 100%;
}

.savings-content h3 {
    font-size: 0.95rem;
    margin-bottom: 8px;
    font-weight: 600;
    opacity: 0.8;
}

.savings-card.primary .savings-content h3 {
    opacity: 0.7;
}

.savings-amount {
    font-size: 2.25rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

/* Social Proof */
.social-proof {
    text-align: center;
    padding: 24px;
    background: #f8f8f8;
    border-radius: 16px;
    border: 2px solid #e0e0e0;
    margin-bottom: 30px;
}

.social-proof p {
    font-size: 1.1rem;
    color: #000000;
    font-weight: 600;
}

/* CTA Section */
.cta-section {
    text-align: center;
    margin-bottom: 30px;
}

.btn-cta {
    display: inline-block;
    padding: 20px 48px;
    background: #000000;
    color: white;
    text-decoration: none;
    border-radius: 9999px;
    font-size: 1.25rem;
    font-weight: 700;
    transition: all 0.2s ease;
}

.btn-cta:hover {
    background: #333333;
    transform: translateY(-2px);
}

.cta-subtext {
    margin-top: 16px;
    color: #666666;
    font-size: 1rem;
}

/* Use Cases Section */
.use-cases-section {
    background: #ffffff;
    border-radius: 24px;
    padding: 50px 40px;
    border: 3px solid #000000;
    margin-bottom: 40px;
}

.use-cases-title {
    font-size: 2.5rem;
    margin-bottom: 12px;
    color: #000000;
    font-weight: 800;
    letter-spacing: -0.02em;
    text-align: center;
}

.use-cases-subtitle {
    color: #666666;
    margin-bottom: 40px;
    font-size: 1.15rem;
    text-align: center;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.use-case-card {
    background: #f8f8f8;
    border: 2px solid #e0e0e0;
    border-radius: 20px;
    padding: 32px;
    text-align: left;
}

.use-case-card .icon-badge {
    margin-bottom: 20px;
}

.use-case-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: #000000;
    font-weight: 800;
}

.use-case-card p {
    color: #444444;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 12px;
}

.use-case-card p strong {
    color: #000000;
    font-weight: 700;
}

.savings-highlight-text {
    background: #000000;
    color: #ffffff;
    padding: 12px 16px;
    border-radius: 12px;
    font-weight: 700;
    margin-top: 16px;
    font-size: 1rem;
}

/* Blog Quote Section */
.blog-quote-section {
    background: #f8f8f8;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    border: 2px solid #e0e0e0;
}

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

.blog-quote-section blockquote {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #333333;
    font-style: italic;
    margin-bottom: 16px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.blog-quote-section cite {
    display: block;
    font-size: 1rem;
    color: #666666;
    font-style: normal;
    font-weight: 600;
    margin-bottom: 20px;
}

.blog-link {
    display: inline-block;
    color: #000000;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    border-bottom: 2px solid #000000;
    transition: all 0.2s ease;
}

.blog-link:hover {
    opacity: 0.7;
}

/* Share Section */
.share-section {
    text-align: center;
    padding: 32px;
    background: #f8f8f8;
    border-radius: 16px;
    border: 2px solid #e0e0e0;
}

.share-text {
    margin-bottom: 20px;
    color: #000000;
    font-weight: 700;
    font-size: 1.1rem;
}

.share-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-share {
    padding: 12px 24px;
    border: 3px solid #000000;
    border-radius: 9999px;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.2s ease;
    background: #ffffff;
    color: #000000;
}

.btn-share:hover {
    background: #000000;
    color: #ffffff;
    transform: translateY(-1px);
}

.btn-share.twitter,
.btn-share.facebook,
.btn-share.whatsapp {
    background: #ffffff;
    color: #000000;
}

.btn-share.twitter:hover,
.btn-share.facebook:hover,
.btn-share.whatsapp:hover {
    background: #000000;
    color: #ffffff;
}

/* Simple Signup CTA */
.signup-cta {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px;
    border: 3px solid #000000;
    margin-bottom: 40px;
}

.signup-card {
    text-align: center;
}

.signup-card h3 {
    font-size: 2rem;
    margin-bottom: 12px;
    color: #000000;
    font-weight: 800;
}

.signup-card p {
    color: #666666;
    margin-bottom: 24px;
    font-size: 1.05rem;
}

.signup-card .btn-cta {
    margin-bottom: 16px;
}

.signup-subtext {
    font-size: 0.95rem;
    color: #999999;
    margin-top: 16px;
}

/* Footer */
.footer {
    text-align: center;
    color: #666666;
    padding: 30px 20px;
}

.footer p {
    margin-bottom: 12px;
    font-size: 1rem;
}

.footer strong {
    color: #000000;
    font-weight: 700;
}

.disclaimer {
    font-size: 0.9rem;
    color: #999999;
}

/* Features Comparison Section */
.features-comparison {
    margin-bottom: 50px;
}

.features-title {
    font-size: 2.5rem;
    margin-bottom: 12px;
    color: #000000;
    font-weight: 800;
    letter-spacing: -0.02em;
    text-align: center;
}

.features-subtitle {
    color: #666666;
    margin-bottom: 40px;
    font-size: 1.15rem;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.features-table-wrapper {
    overflow-x: auto;
    margin-bottom: 50px;
    border: 3px solid #000000;
    border-radius: 16px;
}

.features-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.features-table thead {
    background: #000000;
    color: white;
}

.features-table th {
    padding: 18px 14px;
    text-align: left;
    font-weight: 700;
    border: none;
}

.features-table th.unifi-col {
    background: #000000;
    color: #ffffff;
    border-left: 3px solid rgb(34, 197, 94);
    border-right: 3px solid rgb(34, 197, 94);
    border-top: 3px solid rgb(34, 197, 94);
}

.features-table td {
    padding: 18px 14px;
    border-bottom: 2px solid #f0f0f0;
}

.features-table tbody tr:last-child td {
    border-bottom: none;
}

.features-table .feature-name {
    font-weight: 700;
    color: #000000;
}

.features-table .unifi-col {
    background: #f8f8f8;
    font-weight: 700;
    border-left: 3px solid rgb(34, 197, 94);
    border-right: 3px solid rgb(34, 197, 94);
}

.features-table tbody tr:last-child .unifi-col {
    border-bottom: 3px solid rgb(34, 197, 94);
}

.features-table tbody tr:hover {
    background: #fafafa;
}

.features-table tbody tr:hover .unifi-col {
    background: #f0f0f0;
}

/* Icon Badges - UniFi Style */
.icon-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    margin-bottom: 16px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.icon-badge svg {
    width: 24px;
    height: 24px;
    color: white;
}

/* Color variations */
.bg-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 8px 16px rgba(102, 126, 234, 0.3);
}

.bg-purple {
    background: #8b5cf6;
    box-shadow: 0 8px 16px rgba(139, 92, 246, 0.3);
}

.bg-blue {
    background: #3b82f6;
    box-shadow: 0 8px 16px rgba(59, 130, 246, 0.3);
}

.bg-green {
    background: #10b981;
    box-shadow: 0 8px 16px rgba(16, 185, 129, 0.3);
}

.bg-pink {
    background: #ec4899;
    box-shadow: 0 8px 16px rgba(236, 72, 153, 0.3);
}

.bg-orange {
    background: #f59e0b;
    box-shadow: 0 8px 16px rgba(245, 158, 11, 0.3);
}

.bg-red {
    background: #ef4444;
    box-shadow: 0 8px 16px rgba(239, 68, 68, 0.3);
}

.bg-yellow {
    background: #eab308;
    box-shadow: 0 8px 16px rgba(234, 179, 8, 0.3);
}

.bg-indigo {
    background: #6366f1;
    box-shadow: 0 8px 16px rgba(99, 102, 241, 0.3);
}

/* Bank Replacement Callout */
.bank-replacement-callout {
    background: #000000;
    color: #ffffff;
    border-radius: 20px;
    padding: 40px;
    margin: 40px 0;
    text-align: center;
}

.bank-replacement-callout h3 {
    font-size: 2rem;
    margin-bottom: 16px;
    font-weight: 800;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.bank-replacement-callout h3 .icon-badge {
    margin-bottom: 0;
}

.bank-replacement-callout p {
    font-size: 1.15rem;
    margin-bottom: 30px;
    line-height: 1.6;
    opacity: 0.9;
}

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

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
}

.benefit-item span:last-child {
    font-size: 1.05rem;
    line-height: 1.4;
}

/* Feature Highlights Grid */
.feature-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.feature-card {
    background: #ffffff;
    border: 3px solid #000000;
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    transition: transform 0.2s ease;
}

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

.feature-card .icon-badge {
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
    color: #000000;
    font-weight: 800;
}

.feature-card p {
    color: #666666;
    font-size: 1rem;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header h1 {
        font-size: 1.8rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .calculator-card,
    .results-section,
    .email-capture {
        padding: 20px;
    }

    .results-title {
        font-size: 1.5rem;
    }

    .savings-highlight {
        grid-template-columns: 1fr;
    }

    .comparison-table {
        font-size: 0.85rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 8px 6px;
    }

    .signup-cta {
        padding: 30px 20px;
    }

    .signup-card h3 {
        font-size: 1.5rem;
    }

    .share-buttons {
        flex-direction: column;
    }

    .btn-share {
        width: 100%;
    }
    .use-cases-section {
        padding: 40px 20px;
    }

    .use-cases-title {
        font-size: 1.8rem;
    }

    .use-cases-subtitle {
        font-size: 1rem;
    }

    .use-cases-grid {
        grid-template-columns: 1fr;
    }

    .use-case-card {
        padding: 24px;
    }

    .use-case-card h3 {
        font-size: 1.3rem;
    }

    .blog-quote-section {
        padding: 30px 20px;
    }

    .blog-quote-section blockquote {
        font-size: 1.1rem;
    }

    .icon-badge {
        width: 40px;
        height: 40px;
    }

    .icon-badge svg {
        width: 20px;
        height: 20px;
    }

    .bank-replacement-callout h3 {
        font-size: 1.5rem;
        flex-direction: column;
        gap: 12px;
    }

    .bank-replacement-callout {
        padding: 30px 20px;
    }

    .bank-replacement-callout p {
        font-size: 1rem;
    }

    .replacement-benefits {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .benefit-item {
        flex-direction: column;
        text-align: center;
    }

    .features-title {
        font-size: 1.8rem;
    }

    .features-subtitle {
        font-size: 1rem;
        padding: 0 20px;
    }

    .features-table {
        font-size: 0.85rem;
    }

    .features-table th,
    .features-table td {
        padding: 12px 8px;
    }

    .feature-highlights {
        grid-template-columns: 1fr;
    }

    .feature-card {
        padding: 24px;
    }

    .feature-card h3 {
        font-size: 1.15rem;
    }

    .feature-card p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    body {
        padding: 10px;
    }

    .header h1 {
        font-size: 1.5rem;
    }

    .calculator-card,
    .results-section,
    .email-capture {
        padding: 15px;
    }

    .savings-amount {
        font-size: 1.5rem;
    }
}