* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Helvetica, Arial, sans-serif;
    color: #1a1a2e;
    line-height: 1.6;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.4rem;
    font-weight: 700;
    color: #002D72;
    text-decoration: none;
}

.logo img {
    height: 36px;
    width: auto;
}

.logo span {
    color: #FF5910;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #FF5910;
}

.nav-links a.btn-primary,
.nav-links a.btn-primary:hover {
    color: #fff;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #002D72;
    margin: 6px 0;
    transition: transform 0.3s, opacity 0.3s;
}

.btn {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 89, 16, 0.3);
}

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

.btn-secondary {
    background: transparent;
    color: #002D72;
    border: 2px solid #002D72;
    margin-left: 0.8rem;
}

.btn-secondary:hover {
    box-shadow: 0 6px 20px rgba(0, 45, 114, 0.2);
}

.hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 90vh;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #f5f7fb 0%, #e8ecf4 100%);
    overflow: hidden;
}

/* Soft glowing brand-color blobs */
.hero::before,
.hero::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

.hero::before {
    width: 520px;
    height: 520px;
    background: rgba(255, 89, 16, 0.28);
    top: -120px;
    right: -80px;
}

.hero::after {
    width: 580px;
    height: 580px;
    background: rgba(0, 45, 114, 0.22);
    bottom: -180px;
    left: -120px;
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    width: 100%;
}

/* Background image spanning the entire hero */
.hero-inner::before {
    content: "";
    position: absolute;
    inset: -120px -8vw;
    background-image: url("images/webback.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.32;
    -webkit-mask-image: radial-gradient(ellipse at center, #000 25%, transparent 80%);
            mask-image: radial-gradient(ellipse at center, #000 25%, transparent 80%);
    pointer-events: none;
    z-index: -1;
}

.hero-content {
    max-width: 560px;
    text-align: left;
}

.hero-content .hero-cta,
.hero-content .hero-badges {
    justify-content: flex-start;
}

.hero-screens {
    position: relative;
    width: 100%;
    height: 580px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-screens .phone,
.hero-screens .tablet {
    z-index: 2;
}

.hero-screens .phone-front {
    z-index: 3;
}

.phone {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 240px;
    background: #1a1a2e;
    border: 2px solid #1a1a2e;
    border-radius: 30px;
    padding: 7px;
    box-shadow: 0 25px 60px rgba(0, 45, 114, 0.3);
    box-sizing: border-box;
}

.phone img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 22px;
}

.phone-notch {
    display: none;
}

.phone-front {
    z-index: 3;
    left: 60%;
    transform: translate(-110%, -50%);
}

.phone-back {
    z-index: 1;
    transform: translate(-100%, -50%) rotate(-6deg);
}

.phone-back.phone-right {
    transform: translate(0%, -50%) rotate(6deg);
}

.tablet {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 230px;
    background: #1a1a2e;
    border: 2px solid #1a1a2e;
    border-radius: 16px;
    padding: 6px;
    box-shadow: 0 15px 40px rgba(0, 45, 114, 0.18);
    box-sizing: border-box;
    opacity: 0.92;
}

.tablet img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.tablet-back {
    z-index: 1;
    left: 55%;
    transform: translate(-5%, -50%) rotate(10deg);
}

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.2rem;
    color: #002D72;
}

.hero h1 em {
    font-style: normal;
    color: #FF5910;
}

.hero p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.hero-badges {
    margin-top: 2.5rem;
    display: flex;
    justify-content: flex-start;
    gap: 1.8rem;
    flex-wrap: wrap;
}

.features-cta {
    text-align: center;
    margin-top: 3rem;
}

.features-cta .btn {
    margin-left: 0;
}

/* Features Page */
.page-header {
    padding: 4rem 2rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, #f5f7fb 0%, #e8ecf4 100%);
}

.page-header h1 {
    font-size: 2.5rem;
    color: #002D72;
    margin-bottom: 0.5rem;
}

.page-header p {
    color: #555;
    font-size: 1.15rem;
}

.feature-showcase {
    padding: 4rem 2rem;
    background: #fff;
}

.showcase-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto 5rem;
    scroll-margin-top: 80px;
}

.showcase-row:last-child {
    margin-bottom: 0;
}

.showcase-row.reverse .showcase-text {
    order: 2;
}

.showcase-row.reverse .showcase-phone {
    order: 1;
}

.showcase-tag {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #FF5910;
    margin-bottom: 0.6rem;
}

.pro-tag {
    display: inline-block;
    background: #002D72;
    color: #fff;
    font-size: 0.7rem;
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    margin-left: 0.4rem;
    letter-spacing: 0.5px;
}

.showcase-text h2 {
    font-size: 1.9rem;
    color: #002D72;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.showcase-text p {
    color: #555;
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

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

.showcase-list li {
    padding: 0.4rem 0;
    color: #444;
    padding-left: 1.6rem;
    position: relative;
}

.showcase-list li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: #FF5910;
    font-weight: 700;
}

.showcase-phone {
    display: flex;
    justify-content: center;
}

.phone-static {
    position: relative;
    width: 240px;
    height: auto;
    top: auto;
    left: auto;
    transform: none;
}

.phone-static img {
    height: auto;
}

.phone-pair {
    position: relative;
    width: 100%;
    min-height: 540px;
}

.phone-pair .phone-static {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
}

.phone-pair-back {
    transform: translate(-95%, -50%) rotate(-6deg);
    z-index: 1;
    opacity: 0.95;
}

.phone-pair-front {
    transform: translate(-5%, -50%) rotate(6deg);
    z-index: 2;
}

/* Comparison Table */
.comparison {
    padding: 5rem 2rem;
    background: #f5f7fb;
}

.comparison-table {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.comparison-header,
.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
}

.comparison-header {
    background: #002D72;
    color: #fff;
}

.comparison-header .comparison-cell {
    padding: 1.2rem 1rem;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-header .comparison-cell:first-child {
    text-align: left;
}

.comparison-header .comparison-cell:last-child {
    border-right: none;
}

.comparison-header .comparison-cell strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.comparison-header .comparison-cell span {
    font-size: 0.85rem;
    opacity: 0.8;
}

.comparison-row {
    border-top: 1px solid #e8ecf4;
}

.comparison-row .comparison-cell {
    padding: 1rem;
    text-align: center;
    color: #444;
    font-size: 0.95rem;
}

.comparison-row .comparison-cell:first-child {
    text-align: left;
    font-weight: 500;
    color: #002D72;
}

.comparison-cell.yes {
    color: #22c55e;
    font-weight: 700;
    font-size: 1.1rem;
}

.comparison-cell.no {
    color: #ccc;
    font-weight: 700;
    font-size: 1.1rem;
}

.comparison-cell.featured-col {
    background: rgba(255, 89, 16, 0.04);
}

.comparison-cell.featured-col.yes {
    color: #FF5910;
}

.comparison-cta {
    text-align: center;
    margin-top: 2.5rem;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #555;
}

.badge svg {
    width: 20px;
    height: 20px;
    fill: #002D72;
}

.features {
    padding: 5rem 2rem;
    background: #fff;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    color: #002D72;
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

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

.feature-card {
    background: #f8f9fc;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    color: inherit;
    display: block;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.feature-card-link {
    display: inline-block;
    margin-top: 1rem;
    color: #FF5910;
    font-weight: 600;
    font-size: 0.9rem;
}

.feature-card:hover .feature-card-link {
    text-decoration: underline;
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: #002D72;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    fill: #fff;
}

.feature-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    color: #002D72;
}

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

.privacy {
    padding: 5rem 2rem;
    background: #002D72;
    color: #fff;
}

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

.privacy .section-title {
    color: #fff;
}

.privacy .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.privacy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.privacy-item {
    padding: 1.5rem;
}

.privacy-item svg {
    width: 40px;
    height: 40px;
    fill: #FF5910;
    margin-bottom: 1rem;
}

.privacy-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
}

.privacy-item p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Pricing */
.pricing {
    padding: 5rem 2rem;
    background: #f5f7fb;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: #fff;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
    border: 2px solid #e8ecf4;
    transition: transform 0.2s, box-shadow 0.2s;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.pricing-card.featured {
    border-color: #FF5910;
    position: relative;
}

.pricing-card.featured::before {
    content: "Most Popular";
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #FF5910;
    color: #fff;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 1.3rem;
    color: #002D72;
    margin-bottom: 0.5rem;
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #002D72;
    margin-bottom: 0.3rem;
}

.pricing-price span {
    font-size: 1rem;
    font-weight: 400;
    color: #888;
}

.pricing-period {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 1.5rem;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.5rem 0;
    font-size: 0.95rem;
    color: #444;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.pricing-features li::before {
    content: "";
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    background: #e6f7ed;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.pricing-features li.included::before {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2322c55e'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E") center/14px no-repeat #e6f7ed;
}

.pricing-features li.excluded {
    color: #bbb;
}

.pricing-features li.excluded::before {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ccc'%3E%3Cpath d='M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12 19 6.41z'/%3E%3C/svg%3E") center/14px no-repeat #f5f5f5;
}

.pricing-card .btn {
    width: 100%;
    text-align: center;
}

.pricing-card .btn-outline {
    background: transparent;
    color: #002D72;
    border: 2px solid #002D72;
}

.pricing-card .btn-outline:hover {
    box-shadow: 0 6px 20px rgba(0, 45, 114, 0.2);
}

.how-it-works {
    padding: 5rem 2rem;
    background: #fff;
}

.steps {
    display: flex;
    justify-content: center;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 220px;
    max-width: 280px;
    text-align: center;
}

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

.step h3 {
    margin-bottom: 0.4rem;
    font-size: 1.1rem;
    color: #002D72;
}

.step p {
    color: #666;
    font-size: 0.95rem;
}

.cta {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #FF5910 0%, #e04800 100%);
    text-align: center;
    color: #fff;
}

.cta h2 {
    font-size: 2rem;
    margin-bottom: 0.8rem;
}

.cta p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.cta .btn-primary {
    background: #fff;
    color: #FF5910;
}

.cta .btn-primary:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Footer */
footer {
    padding: 3rem 2rem 1.5rem;
    background: #fff;
    color: #666;
    border-top: 1px solid #e8ecf4;
}

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

.footer-links {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem 2rem;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin: 0;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #FF5910;
}

.footer-bottom {
    text-align: center;
    margin-top: 2.5rem;
    margin-left: -2rem;
    margin-right: -2rem;
    margin-bottom: -1.5rem;
    padding: 1.2rem 2rem;
    background: #002D72;
    font-size: 0.85rem;
    color: #fff;
}

/* Below 1280px collapses to the mobile / single-column view */
@media (max-width: 1279px) {
    .hamburger {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 1rem 2rem;
        gap: 1rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }

    .nav-links.open {
        display: flex;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-content {
        text-align: center;
        margin: 0 auto;
    }

    .hero-content .hero-badges {
        justify-content: center;
    }

    .hero-screens {
        height: 480px;
    }

    .phone {
        width: 190px;
        padding: 5px;
        border-radius: 26px;
    }

    .phone img {
        border-radius: 20px;
    }

    .phone-front {
        left: 50%;
        transform: translate(-110%, -50%);
    }

    .phone-back {
        transform: translate(-100%, -50%) rotate(-6deg);
    }

    .phone-back.phone-right {
        transform: translate(20%, -50%) rotate(6deg);
    }

    .tablet {
        width: 220px;
        padding: 5px;
        border-radius: 14px;
    }

    .tablet img {
        border-radius: 10px;
    }

    .tablet-back {
        left: 50%;
        transform: translate(10%, -50%) rotate(10deg);
    }

    .btn-secondary {
        margin-left: 0;
        margin-top: 0.6rem;
    }

    .hero-cta {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .showcase-row {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 3rem;
    }

    .showcase-row.reverse .showcase-text {
        order: 1;
    }

    .showcase-row.reverse .showcase-phone {
        order: 2;
    }

    .phone-static {
        width: 200px;
    }

    .phone-pair {
        min-height: 420px;
    }

    .phone-pair .phone-static {
        width: 160px;
    }

    .showcase-text h2 {
        font-size: 1.5rem;
    }

    .comparison-header,
    .comparison-row {
        grid-template-columns: 1.5fr 1fr 1fr;
    }

    .comparison-row .comparison-cell,
    .comparison-header .comparison-cell {
        padding: 0.8rem 0.5rem;
        font-size: 0.85rem;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }
}