:root {
    --memo-blue: #0e426a;
    --memo-orange: #f79251;
    --memo-green: #057fa2;
    --alice-blue: #e6f2f6;
    --chocolate: #da681f;
    --dark-slate-grey: #024e64;

    /* Mapping to generic names for easier usage if needed, or just use vars directly */
    --primary-color: var(--memo-orange);
    --secondary-color: var(--memo-blue);
    --text-color: var(--memo-blue);
    --bg-light: var(--alice-blue);
    --white: #ffffff;
    --font-family: 'Wix Madefor Text', sans-serif;
    --border-radius: 50px;
    --container-width: 1200px;
    --header-height: 116px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-family);
    color: var(--memo-blue);
    line-height: 1.5;
    background-color: var(--white);
    font-size: 16px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--memo-blue);
}

h1 {
    font-size: 60px;
    line-height: 110%;
}

h2 {
    font-size: 48px;
    line-height: 120%;
}

h3 {
    font-size: 36px;
    line-height: 120%;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--memo-blue);
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

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

.section {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--alice-blue);
}

.bg-alt {
    background-color: #fff7f1;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 22px;
    border-radius: var(--border-radius);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s;
    border: 2px solid transparent;
    text-align: center;
    line-height: inherit;
}

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

.btn-primary:hover {
    background-color: var(--chocolate);
}

.btn-secondary {
    background-color: transparent;
    border-color: var(--memo-orange);
    color: var(--memo-blue);
}

.btn-secondary:hover {
    background-color: var(--memo-orange);
    color: var(--white);
}

.btn-white {
    background-color: var(--white);
    color: var(--memo-orange);
}

.btn-white:hover {
    background-color: #f0f0f0;
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.1rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: var(--alice-blue);
    z-index: 1000;
    display: flex;
    align-items: center;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.navbar .logo img {
    height: 32px;
    width: auto;
}

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

.nav-links a {
    font-weight: 700;
    color: var(--memo-blue);
    font-size: 18px;
    line-height: 24px;
}

.nav-links a:hover {
    text-decoration: underline;
}

.nav-links .btn {
    margin-left: 10px;
    padding: 10px 24px;
}

.nav-links .btn:hover {
    text-decoration: none;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--memo-blue);
    margin: 5px 0;
}

/* Hero Section */
.hero {
    padding-top: calc(var(--header-height) + 60px);
    padding-bottom: 100px;
    position: relative;
    overflow: hidden;
    background-color: var(--white);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero h1 .highlight {
    color: var(--memo-orange);
}

.hero p {
    font-size: 1.25rem;
    color: var(--memo-blue);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

/* Animations */
.fade-in {
    opacity: 0;
    animation: fadeIn 0.8s forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Benefits Section */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.benefit-card {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(14, 66, 106, 0.05);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(14, 66, 106, 0.15);
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--memo-blue);
}

.benefit-card p {
    color: var(--memo-blue);
    opacity: 0.8;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Use Cases Grid */
.section-title {
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--memo-blue);
    opacity: 0.8;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.use-case-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.use-case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(14, 66, 106, 0.1);
}

.uc-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.uc-content {
    padding: 30px;
}

.uc-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.check-list {
    margin-top: 20px;
}

.check-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: var(--memo-blue);
    font-size: 0.95rem;
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--memo-orange);
    font-weight: bold;
}

/* Pricing / Service Models */
.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.pricing-card {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    border: 1px solid rgba(14, 66, 106, 0.05);
}

.pricing-card.featured {
    border: 2px solid var(--memo-orange);
    position: relative;
}

.pricing-card.featured::after {
    content: "Popular";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--memo-orange);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.pricing-card .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--memo-blue);
    margin-bottom: 20px;
}

/* CTA Section */
.cta-section {
    background-color: var(--memo-blue);
    color: var(--white);
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    color: var(--white);
}

/* Footer */
.footer {
    background-color: var(--alice-blue);
    color: var(--memo-blue);
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-brand h3 {
    color: var(--memo-blue);
    margin-bottom: 10px;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: var(--memo-blue);
    font-weight: 500;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid rgba(14, 66, 106, 0.1);
    padding-top: 30px;
    text-align: center;
    font-size: 0.9rem;
    color: var(--memo-blue);
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 40px;
    }

    .nav-links {
        display: none;
    }

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

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

    .footer-content {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}

/* Demo Section */
.demo-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 40px;
    max-width: 100%;
}

.demo-box {
    background: var(--white);
    width: 100%;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(14, 66, 106, 0.1);
    border: 1px solid rgba(14, 66, 106, 0.05);
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--memo-blue);
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: var(--memo-orange);
}

.form-group input[readonly] {
    background-color: #f5f5f5;
    color: #888;
    cursor: not-allowed;
}

.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
    background-color: var(--white);
    cursor: pointer;
}

.form-group select:focus {
    outline: none;
    border-color: var(--memo-orange);
}

.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
    resize: vertical;
}

.form-group textarea:focus {
    outline: none;
    border-color: var(--memo-orange);
}

.json-example {
    background: #000000;
    width: 100%;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(14, 66, 106, 0.08);
    border: 1px solid rgba(14, 66, 106, 0.05);
    text-align: left;
}

.json-example h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--white);
}

.json-example pre {
    background-color: #1a1a1a;
    padding: 20px;
    border-radius: 8px;
    overflow-x: auto;
    margin: 0;
}

.json-example code {
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.9rem;
    color: #ffffff;
    line-height: 1.6;
}

.json-example code .json-grey {
    color: #888888;
    opacity: 0.7;
}

.disclaimer {
    margin-top: 15px;
    font-size: 0.85rem;
    color: #888;
}

.hidden {
    display: none;
}

.success-icon {
    width: 60px;
    height: 60px;
    background-color: var(--memo-green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin: 0 auto 20px;
}

/* How It Works Section */
.workflow-steps {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.workflow-step {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    text-align: center;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--memo-orange);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.workflow-step h3 {
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .workflow-steps {
        flex-direction: column;
        align-items: center;
    }
}

/* Integrations Section */
.logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 25px;
    margin-top: 50px;
    align-items: stretch;
}

.logo-card {
    background: var(--white);
    border-radius: 14px;
    padding: 25px;
    box-shadow: 0 8px 20px rgba(14, 66, 106, 0.08);
    border: 1px solid rgba(14, 66, 106, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    min-height: 150px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.logo-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(14, 66, 106, 0.15);
}

.logo-card img {
    max-height: 42px;
    width: auto;
    object-fit: contain;
}

.logo-card span {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--memo-blue);
    text-align: center;
}