:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-soft: #dbeafe;
    --accent: #14b8a6;
    --accent-dark: #0f766e;
    --ink: #111827;
    --text: #4b5563;
    --muted: #6b7280;
    --line: #e5e7eb;
    --soft: #f7f9fd;
    --white: #ffffff;
    --dark: #0f172a;
    --shadow: 0 20px 50px rgba(15, 23, 42, 0.14);
    --radius: 24px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: var(--white);
    color: var(--ink);
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
}

.shell {
    width: min(1160px, calc(100% - 40px));
    margin: 0 auto;
}

/* Header */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(14px);
}

.nav {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand img,
.logo-fallback {
    width: 52px;
    height: 52px;
    border-radius: 16px;
}

.logo-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    font-weight: 900;
    box-shadow: 0 12px 28px rgba(37, 99, 235, 0.24);
}

.brand strong {
    display: block;
    color: var(--primary);
    font-size: 1.08rem;
}

.brand small {
    display: block;
    margin-top: 2px;
    color: var(--muted);
    font-size: 0.8rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-links a {
    text-decoration: none;
    color: #374151;
    font-weight: 800;
    font-size: 0.94rem;
}

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

.nav-cta {
    padding: 10px 18px;
    border-radius: 999px;
    background: var(--primary);
    color: white !important;
    box-shadow: 0 12px 26px rgba(37, 99, 235, 0.22);
}

/* Language Switcher */

.language-switcher {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #ffffff;
}

.language-option {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 9px;
    border-radius: 999px;
    text-decoration: none;
    color: #374151;
    font-size: 0.82rem;
    font-weight: 800;
}

.language-option img {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 0 1px rgba(17, 24, 39, 0.12);
}

.language-option.active,
.language-option:hover {
    background: rgba(37, 99, 235, 0.09);
    color: var(--primary);
}

/* Hero */

.hero {
    position: relative;
    overflow: hidden;
    padding: 90px 0 82px;
    background:
        radial-gradient(circle at top left, rgba(37, 99, 235, 0.18), transparent 34%),
        radial-gradient(circle at bottom right, rgba(20, 184, 166, 0.16), transparent 34%),
        linear-gradient(135deg, #ffffff 0%, #eef5ff 100%);
}

.hero::before {
    content: "";
    position: absolute;
    top: 120px;
    right: -180px;
    width: 520px;
    height: 520px;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.08);
}

.hero::after {
    content: "";
    position: absolute;
    bottom: -220px;
    left: 44%;
    width: 460px;
    height: 460px;
    border-radius: 999px;
    background: rgba(20, 184, 166, 0.1);
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    gap: 62px;
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    width: fit-content;
    margin: 0;
    padding: 8px 13px;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.09);
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.eyebrow.light {
    background: rgba(255, 255, 255, 0.15);
    color: white;
}

.hero h1 {
    margin: 22px 0 20px;
    max-width: 800px;
    font-size: clamp(2.65rem, 5vw, 5.05rem);
    line-height: 0.98;
    letter-spacing: -0.058em;
}

.hero-lead {
    margin: 0;
    max-width: 690px;
    color: var(--text);
    font-size: 1.15rem;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 20px;
    border-radius: 999px;
    font-weight: 900;
    text-decoration: none;
    transition:
        transform 180ms ease,
        box-shadow 180ms ease,
        background 180ms ease,
        color 180ms ease;
}

.button:hover {
    transform: translateY(-2px);
}

.primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 14px 32px rgba(37, 99, 235, 0.25);
}

.secondary {
    background: white;
    color: var(--primary);
    border: 1px solid var(--line);
}

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

.outline-white {
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.45);
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
}

.hero-tags span {
    padding: 9px 12px;
    border-radius: 999px;
    background: white;
    border: 1px solid var(--line);
    color: #374151;
    font-size: 0.9rem;
    font-weight: 800;
}

/* App Mockup */

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

.app-visual img {
    width: min(420px, 100%);
    max-height: 680px;
    object-fit: contain;
    border-radius: 34px;
    box-shadow: var(--shadow);
}

.phone-preview {
    position: relative;
    width: min(390px, 100%);
    padding: 16px;
    border-radius: 48px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.2)),
        rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(37, 99, 235, 0.12);
    box-shadow: var(--shadow);
}

.phone-frame {
    overflow: hidden;
    min-height: 640px;
    border-radius: 38px;
    background: #0f172a;
    border: 10px solid #111827;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.phone-status {
    width: 118px;
    height: 26px;
    margin: 10px auto 0;
    border-radius: 0 0 16px 16px;
    background: #020617;
}

.app-screen {
    min-height: 594px;
    padding: 22px;
    background:
        radial-gradient(circle at top right, rgba(20, 184, 166, 0.18), transparent 34%),
        linear-gradient(180deg, #eff6ff 0%, #ffffff 58%, #f8fafc 100%);
}

.app-topbar {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 20px;
}

.app-topbar span {
    display: block;
    color: var(--muted);
    font-size: 0.84rem;
    font-weight: 800;
}

.app-topbar strong {
    display: block;
    color: var(--ink);
    font-size: 1.45rem;
    letter-spacing: -0.04em;
}

.app-summary {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 16px;
}

.app-summary div {
    padding: 16px;
    border-radius: 20px;
    background: white;
    border: 1px solid var(--line);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.app-summary small {
    display: block;
    color: var(--muted);
    font-weight: 800;
}

.app-summary strong {
    display: block;
    margin-top: 6px;
    color: var(--primary);
    font-size: 1.7rem;
}

.app-card {
    padding: 16px;
    margin-bottom: 12px;
    border-radius: 20px;
    background: white;
    border: 1px solid var(--line);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.app-card.active {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    border-color: transparent;
}

.app-card span {
    display: inline-flex;
    margin-bottom: 8px;
    padding: 6px 9px;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.09);
    color: var(--primary);
    font-size: 0.72rem;
    font-weight: 900;
}

.app-card.active span {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.app-card strong {
    display: block;
    font-size: 1.02rem;
}

.app-card small {
    display: block;
    margin-top: 5px;
    color: var(--muted);
    font-weight: 700;
}

.app-card.active small {
    color: rgba(255, 255, 255, 0.78);
}

.app-bottom-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 18px;
    padding: 10px;
    border-radius: 20px;
    background: #f1f5f9;
    border: 1px solid var(--line);
}

.app-bottom-nav span {
    padding: 9px 6px;
    border-radius: 14px;
    color: var(--muted);
    font-size: 0.76rem;
    font-weight: 900;
    text-align: center;
}

.app-bottom-nav span:first-child {
    background: white;
    color: var(--primary);
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.07);
}

/* Trust Strip */

.trust-strip {
    background: linear-gradient(135deg, var(--dark), #172554);
    color: white;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.trust-grid div {
    padding: 28px 24px;
    border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.trust-grid div:last-child {
    border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.trust-grid strong {
    display: block;
    font-size: 1rem;
}

.trust-grid span {
    display: block;
    margin-top: 7px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.92rem;
    line-height: 1.5;
}

/* Shared Sections */

.section {
    padding: 92px 0;
}

.section-heading {
    max-width: 790px;
    margin-bottom: 44px;
}

.section-heading h2,
.workflow-grid h2,
.pro-grid h2,
.reports-grid h2,
.help-grid h2,
.product-grid h2,
.contact-box h2 {
    margin: 18px 0 16px;
    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 1.05;
    letter-spacing: -0.045em;
}

.section-heading p,
.workflow-grid p,
.pro-grid p,
.reports-grid p,
.help-grid p,
.product-grid p,
.contact-box p {
    color: var(--text);
    font-size: 1.04rem;
    line-height: 1.8;
}

/* Features */

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.feature-card {
    position: relative;
    overflow: hidden;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: white;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.feature-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    opacity: 0;
    transition: opacity 180ms ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card span {
    color: var(--primary);
    font-weight: 900;
    font-size: 1.6rem;
}

.feature-card h3 {
    margin: 18px 0 10px;
    font-size: 1.2rem;
}

.feature-card p {
    margin: 0;
    color: var(--text);
    line-height: 1.7;
}

/* Workflow Section */

.app-workflow-section {
    background:
        radial-gradient(circle at top left, rgba(20, 184, 166, 0.2), transparent 34%),
        linear-gradient(135deg, var(--primary), #0f172a);
    color: white;
}

.workflow-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 60px;
    align-items: center;
}

.workflow-grid p {
    color: rgba(255, 255, 255, 0.76);
}

.workflow-steps {
    display: grid;
    gap: 14px;
}

.workflow-steps div {
    display: grid;
    grid-template-columns: 54px 1fr;
    align-items: center;
    gap: 16px;
    padding: 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.11);
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.workflow-steps strong {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: white;
    color: var(--primary);
    font-size: 1.2rem;
}

.workflow-steps span {
    color: white;
    font-weight: 800;
    line-height: 1.5;
}

/* Modules */

.modules-section {
    background: white;
}

.module-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 18px;
}

.module-card {
    padding: 28px;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: var(--soft);
}

.module-card.large {
    grid-row: span 2;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.18), transparent 35%),
        linear-gradient(135deg, #0f172a, var(--primary));
    color: white;
}

.module-card h3 {
    margin: 0 0 12px;
    font-size: 1.35rem;
}

.module-card p {
    margin: 0 0 20px;
    color: var(--text);
    line-height: 1.7;
}

.module-card.large p {
    color: rgba(255, 255, 255, 0.82);
}

.module-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.module-card li {
    position: relative;
    padding-left: 24px;
    color: #374151;
    font-weight: 800;
    line-height: 1.5;
}

.module-card.large li {
    color: white;
}

.module-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 900;
}

.module-card.large li::before {
    color: white;
}

.app-module-main {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 34px;
}

.app-flow-card {
    display: grid;
    gap: 10px;
    margin-top: 20px;
    padding: 16px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.app-flow-row {
    display: grid;
    grid-template-columns: 44px 1fr;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.12);
}

.app-flow-row span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: white;
    color: var(--primary);
    font-size: 0.82rem;
    font-weight: 900;
}

.app-flow-row strong {
    color: white;
    font-size: 0.95rem;
}

/* Pro */

.pro-section {
    background:
        radial-gradient(circle at top right, rgba(20, 184, 166, 0.22), transparent 36%),
        linear-gradient(135deg, #0f172a, #172554);
    color: white;
}

.pro-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.pro-grid p {
    color: rgba(255, 255, 255, 0.76);
}

.pro-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.pro-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.pro-list div {
    padding: 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.pro-list strong {
    display: block;
    color: white;
    font-size: 1rem;
}

.pro-list span {
    display: block;
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.6;
}

/* Reports */

.reports-section {
    background: var(--soft);
}

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

.report-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.report-tags span {
    padding: 10px 13px;
    border-radius: 999px;
    background: white;
    border: 1px solid var(--line);
    color: #374151;
    font-weight: 900;
    font-size: 0.9rem;
}

.report-panel,
.software-preview {
    padding: 28px;
    border-radius: 28px;
    background: white;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.app-report-panel {
    position: relative;
    overflow: hidden;
}

.app-report-panel::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.report-panel-header,
.preview-header,
.preview-table div {
    display: flex;
    justify-content: space-between;
    gap: 18px;
}

.report-panel-header,
.preview-header {
    align-items: center;
    margin-bottom: 22px;
}

.report-panel-header strong,
.preview-header strong {
    color: var(--primary);
    font-size: 1.25rem;
}

.report-panel-header span,
.preview-header span {
    color: var(--muted);
    font-weight: 800;
}

.report-list {
    display: grid;
    gap: 12px;
}

.report-list div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 16px;
    border-radius: 16px;
    background: var(--soft);
    border: 1px solid var(--line);
}

.report-list span {
    font-weight: 800;
    color: #374151;
}

.report-list strong {
    color: var(--primary);
}

/* Help */

.help-section {
    background: white;
}

.help-grid {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 60px;
    align-items: center;
}

.help-topics {
    display: grid;
    gap: 14px;
}

.help-topics a {
    display: grid;
    grid-template-columns: 52px 1fr;
    align-items: center;
    gap: 16px;
    padding: 18px;
    border-radius: 20px;
    background: var(--soft);
    border: 1px solid var(--line);
    text-decoration: none;
    transition:
        transform 180ms ease,
        box-shadow 180ms ease,
        border-color 180ms ease;
}

.help-topics a:hover {
    transform: translateY(-2px);
    border-color: rgba(37, 99, 235, 0.28);
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
}

.help-topics span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    font-weight: 900;
}

.help-topics strong {
    color: var(--ink);
}

/* Product / Download */

.product-section {
    background: var(--soft);
}

.product-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 60px;
    align-items: center;
}

.clean-list {
    margin: 26px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
}

.clean-list li {
    position: relative;
    padding-left: 30px;
    color: #374151;
    font-weight: 800;
    line-height: 1.55;
}

.clean-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 900;
}

.download-actions {
    margin-top: 28px;
}

.store-button {
    display: inline-flex;
    flex-direction: column;
    min-width: 190px;
    padding: 14px 20px;
    border-radius: 18px;
    background: #111827;
    color: white;
    text-decoration: none;
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.2);
    transition:
        transform 180ms ease,
        box-shadow 180ms ease;
}

.store-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.26);
}

.store-button span {
    font-size: 0.76rem;
    color: rgba(255, 255, 255, 0.72);
    font-weight: 700;
}

.store-button strong {
    margin-top: 2px;
    font-size: 1.16rem;
}

.preview-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 22px;
}

.preview-stats div {
    padding: 18px;
    border-radius: 16px;
    background: var(--soft);
    border: 1px solid var(--line);
}

.preview-stats small {
    display: block;
    color: var(--muted);
    font-weight: 800;
}

.preview-stats strong {
    display: block;
    margin-top: 8px;
    color: var(--primary);
    font-size: 1.5rem;
}

.preview-table {
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
}

.preview-table div {
    padding: 16px;
    border-top: 1px solid var(--line);
}

.preview-table div:first-child {
    border-top: 0;
}

.preview-table span {
    color: #374151;
    font-weight: 800;
}

.preview-table strong {
    color: var(--primary);
}

.app-preview-panel {
    position: relative;
    overflow: hidden;
}

.app-preview-panel::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

/* Contact */

.contact-section {
    padding: 86px 0;
    background: linear-gradient(135deg, var(--primary), #0f172a);
}

.contact-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    color: white;
}

.contact-box p {
    color: rgba(255, 255, 255, 0.76);
}

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: flex-end;
}

/* Footer */

.footer {
    padding: 34px 0;
    background: #020617;
    color: white;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.footer p {
    margin: 6px 0;
    color: rgba(255, 255, 255, 0.68);
}

.footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 800;
}

.footer a:hover {
    color: white;
}

/* Responsive */

@media (max-width: 1040px) {
    .nav {
        align-items: flex-start;
        flex-direction: column;
        padding: 14px 0;
    }

    .nav-links {
        flex-wrap: wrap;
    }
}

@media (max-width: 980px) {
    .hero-grid,
    .workflow-grid,
    .module-grid,
    .pro-grid,
    .reports-grid,
    .help-grid,
    .product-grid {
        grid-template-columns: 1fr;
    }

    .module-card.large {
        grid-row: auto;
    }

    .trust-grid,
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-visual {
        justify-content: flex-start;
    }

    .phone-preview {
        width: min(390px, 100%);
    }
}

@media (max-width: 700px) {
    .shell {
        width: min(100% - 28px, 1160px);
    }

    .hero {
        padding: 58px 0;
    }

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

    .section {
        padding: 68px 0;
    }

    .nav-links {
        gap: 12px;
    }

    .trust-grid,
    .feature-grid,
    .pro-list,
    .preview-stats {
        grid-template-columns: 1fr;
    }

    .workflow-steps div,
    .help-topics a {
        grid-template-columns: 46px 1fr;
    }

    .phone-frame {
        min-height: 590px;
    }

    .app-screen {
        min-height: 544px;
        padding: 18px;
    }

    .report-panel-header,
    .report-list div,
    .preview-header,
    .preview-table div {
        align-items: flex-start;
        flex-direction: column;
    }

    .contact-box,
    .footer-grid {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 430px) {
    .nav-links {
        width: 100%;
    }

    .nav-cta {
        width: 100%;
        text-align: center;
    }

    .language-switcher {
        order: 10;
    }

    .phone-preview {
        padding: 10px;
        border-radius: 40px;
    }

    .phone-frame {
        border-width: 8px;
        border-radius: 34px;
    }

    .app-summary {
        grid-template-columns: 1fr;
    }
}