/* CSS Variables & Reset */
:root {
    --primary-color: #0ea5e9;
    --secondary-color: #0284c7;
    --accent-color: #38bdf8;
    --whatsapp-color: #0ea5e9;
    --dark-bg: #06121a;
    --card-bg: #0d1c28;
    --text-color: #e8f6ff;
    --text-muted: #9cc4d8;
    --white: #ffffff;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s ease;
    --gradient-text: linear-gradient(135deg, #38bdf8, #0ea5e9);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--dark-bg);
    color: var(--text-color);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--white);
    font-weight: 700;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    line-height: 1.2;
}

.highlight {
    background: var(--gradient-text);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-top: 8px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 26px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
    gap: 10px;
    min-height: 46px;
    line-height: 1;
}

.btn-whatsapp {
    background-color: var(--whatsapp-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    background-color: #1ebc57;
}

.btn-checkout {
    background: linear-gradient(120deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.btn-checkout:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
    opacity: 0.95;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
    background-color: var(--secondary-color);
}

.full-width {
    width: 100%;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(11, 12, 21, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 15px 0;
    transition: var(--transition);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo i {
    color: var(--primary-color);
}

.logo span {
    font-weight: 300;
    color: var(--primary-color);
}

.nav-list {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-color);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    color: var(--white);
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 180px 0 100px;
    position: relative;
    background: radial-gradient(circle at top right, rgba(56, 189, 248, 0.18), transparent 40%),
        radial-gradient(circle at bottom left, rgba(14, 165, 233, 0.08), transparent 40%);
}

.hero-container {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 56px;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(14, 165, 233, 0.12);
    color: var(--primary-color);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    margin: 0;
    border: 1px solid rgba(14, 165, 233, 0.25);
}

.hero p {
    font-size: 1rem;
    color: var(--text-muted);
    margin: 0;
    max-width: 620px;
    line-height: 1.6;
}

.hero h1 {
    margin: 0;
    max-width: 680px;
    text-wrap: balance;
}

.hero-lead {
    font-size: 1.02rem;
    color: var(--text-color);
    max-width: 640px;
    line-height: 1.6;
}

.hero-sub {
    font-size: 0.94rem;
    color: var(--text-muted);
    max-width: 640px;
    line-height: 1.55;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 8px 0 0;
    align-items: center;
}

.hero-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 6px 0 0;
}

.hero-bullets {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, minmax(200px, 1fr));
    gap: 8px 22px;
    margin: 10px 0 0;
    padding: 0;
    max-width: 520px;
}

.hero-bullets li {
    display: inline-flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.hero-bullets i {
    color: var(--primary-color);
    margin-top: 3px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(110px, 1fr));
    gap: 14px;
    margin-top: 14px;
    max-width: 540px;
    width: 100%;
}

.hero-stat {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 12px 14px;
    text-align: left;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.hero-stat strong {
    display: block;
    font-size: 1.1rem;
    color: var(--white);
}

.hero-stat span {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.hero-image {
    position: relative;
    padding: 18px;
    border-radius: 28px;
    background: linear-gradient(160deg, rgba(14, 165, 233, 0.12), rgba(3, 7, 18, 0.7));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
}

.hero-image picture,
.hero-image img {
    display: block;
    width: 100%;
}

.hero-image img {
    border-radius: 20px;
    max-height: 620px;
    object-fit: cover;
}

.trust-bar {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.9rem;
    color: var(--text-muted);
}

.trust-item i {
    color: var(--primary-color);
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: 20px;
}

.lang-switcher a {
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--white);
    font-size: 0.85rem;
    transition: var(--transition);
}

.lang-switcher a:hover {
    background: rgba(255, 255, 255, 0.12);
}

.lang-switcher a.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

.visual-placeholder {
    width: 100%;
    height: clamp(280px, 38vw, 440px);
    background: linear-gradient(135deg, #1e1e2f, #2d2d44);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.visual-placeholder img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
    filter: saturate(1.08) brightness(1.02);
    z-index: 0;
}

.visual-placeholder>i {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 15px 25px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    color: var(--white);
    z-index: 2;
}

.c1 {
    top: 20%;
    left: -20px;
    animation: float 6s ease-in-out infinite;
}

.c2 {
    bottom: 20%;
    right: -20px;
    animation: float 5s ease-in-out infinite reverse;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Features */
.features {
    padding: 100px 0;
}

.features-grid,
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 26px;
}

.feature-card {
    background: linear-gradient(155deg, rgba(15, 23, 42, 0.95), rgba(8, 15, 30, 0.95));
    padding: 28px 26px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-height: 220px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(14, 165, 233, 0.5);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.45);
}

.icon-box {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(14, 165, 233, 0.14);
    border: 1px solid rgba(14, 165, 233, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 6px;
}

.feature-card h3 {
    font-size: 1.18rem;
    margin-bottom: 0;
    line-height: 1.35;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.96rem;
    margin: 0;
    line-height: 1.75;
}

.feature-card .btn {
    align-self: flex-start;
    margin-top: 4px;
}

/* Offers */
.offers {
    padding: 100px 0;
    background: #0f1019;
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    margin: 16px 0 26px;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: var(--text-muted);
}

.trust-badge i {
    color: var(--primary-color);
}

.pricing-guarantee {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: -10px 0 20px;
}

.pricing-updated {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 8px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    align-items: stretch;
}

.compare {
    margin-top: 40px;
}

.compare-title {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 18px;
}

.compare-wrap {
    overflow-x: auto;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(8, 10, 22, 0.85);
}

.compare-table {
    width: 100%;
    min-width: 760px;
    border-collapse: collapse;
    color: var(--text-color);
    font-size: 0.95rem;
}

.compare-table th,
.compare-table td {
    padding: 12px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    text-align: left;
}

.compare-table thead th {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.04);
}

.compare-table tbody tr:nth-child(even) td {
    background: rgba(255, 255, 255, 0.02);
}

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

.compare-label {
    font-weight: 600;
    color: var(--white);
}

.pricing-card {
    position: relative;
    border-radius: 24px;
    padding: 30px;
    background: rgba(8, 10, 22, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 25px 65px rgba(0, 0, 0, 0.45);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
    transition: transform 0.35s ease, border-color 0.35s ease;
}

.pricing-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.35), rgba(249, 115, 22, 0.25));
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: 0;
}

.pricing-card:hover {
    transform: translateY(-12px);
    border-color: rgba(255, 255, 255, 0.2);
}

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

.pricing-card > * {
    position: relative;
    z-index: 1;
}

.pricing-card.trial {
    background: linear-gradient(160deg, rgba(37, 99, 235, 0.45), rgba(8, 10, 22, 0.95));
    border-color: rgba(255, 255, 255, 0.35);
}

.pricing-card.popular,
.pricing-card.best-value {
    border-color: rgba(249, 115, 22, 0.45);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.6);
}

.badge-popular,
.badge-value {
    position: absolute;
    top: 20px;
    right: 20px;
    transform: none;
    background: var(--secondary-color);
    color: #ffffff;
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
}

.badge-value {
    background: var(--accent-color);
}

.plan-name {
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    background: rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    padding: 6px 16px;
    width: fit-content;
}

.price {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0;
    font-family: var(--font-heading);
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.price span {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-card.trial .price {
    font-size: 2.4rem;
}

.pricing-card.trial .price span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
}

.duration {
    align-self: flex-start;
    background: rgba(255, 255, 255, 0.08);
    padding: 6px 16px;
    border-radius: 12px;
    font-size: 0.9rem;
    color: var(--white);
}

.features-list {
    margin: 6px 0 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.features-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.55;
}

.features-list li i {
    color: var(--secondary-color);
    font-size: 1rem;
    margin-top: 4px;
}

.pricing-card .btn-checkout {
    margin-top: auto;
    align-self: stretch;
}

/* Contact */
.contact {
    padding: 100px 0;
    background: #0f1019;
}

.device-compat {
    padding: 85px 0;
    background: #0b1224;
}

.proof-strip {
    padding: 70px 0;
    background: #0f1019;
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.proof-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 16px 18px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.proof-item i {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-top: 2px;
}

.proof-item strong {
    display: block;
    font-size: 1.05rem;
    color: var(--white);
}

.proof-item span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.proof-note {
    text-align: center;
    color: var(--text-muted);
    margin-top: 18px;
    font-size: 0.95rem;
}

.steps {
    padding: 80px 0;
}

.steps-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.step-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 20px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.step-card i {
    color: var(--primary-color);
    font-size: 1.35rem;
    margin-top: 2px;
}

.step-card h3 {
    font-size: 1.05rem;
    margin: 0 0 6px;
}

.step-card p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.6;
}

.device-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 26px;
    align-items: stretch;
}

.device-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 26px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
    text-align: left;
    min-height: 180px;
}

.device-card i {
    font-size: 1.35rem;
    color: var(--primary-color);
    background: rgba(14, 165, 233, 0.12);
    border: 1px solid rgba(14, 165, 233, 0.35);
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.device-card h3 {
    font-size: 1.05rem;
    margin: 0;
    line-height: 1.4;
    letter-spacing: 0.3px;
}

.device-card p {
    margin: 2px 0 0;
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.85;
    letter-spacing: 0.1px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    align-items: stretch;
}

.contact-card {
    background: var(--card-bg);
    padding: 32px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    flex-direction: column;
    gap: 18px;
}

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

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    margin-top: 2px;
}

/* FAQ */
.faq {
    padding: 100px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.faq-item {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.faq-item h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--white);
}

.faq-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Footer */
.footer {
    background: #08090f;
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

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

.footer-col p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.footer-col h4 {
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin: 12px 0 0;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-trust span {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-trust i {
    color: var(--primary-color);
}

/* Responsive */
@media (max-width: 991px) {
    h1 {
        font-size: 2.8rem;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-image {
        display: none;
    }

    /* Hide complicated visual on tablets if simple */
    .hero-buttons {
        justify-content: center;
    }

    .hero-content {
        align-items: center;
    }

    .hero-bullets {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: left;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }

    .nav-list {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: #0f1019;
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        transform: translateY(-150%);
        transition: var(--transition);
        display: flex;
    }

    .nav-list.active {
        transform: translateY(0);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

    .mobile-menu-btn {
        display: block;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        grid-template-columns: 1fr 1fr;
        max-width: 420px;
    }
}

@media (max-width: 520px) {
    .hero-stats {
        grid-template-columns: 1fr;
        max-width: 320px;
    }
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
