/* --- DESIGN SYSTEM --- */
:root {
    /* Palette */
    --primary: #0f172a;
    /* Slate 900 - Deep, professional */
    --primary-light: #334155;
    /* Slate 700 */
    --accent: #22c55e;
    /* Green 500 - Success/Validation */
    --accent-hover: #16a34a;
    /* Green 600 */
    --accent-light: #dcfce7;
    /* Green 100 */

    --bg-body: #ffffff;
    --bg-surface: #f8fafc;
    /* Slate 50 */
    --bg-surface-2: #f1f5f9;
    /* Slate 100 */

    --text-main: #0f172a;
    /* Slate 900 */
    --text-muted: #64748b;
    /* Slate 500 */
    --text-light: #94a3b8;
    /* Slate 400 */

    --border: #e2e8f0;
    /* Slate 200 */
    --border-hover: #cbd5e1;
    /* Slate 300 */

    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);

    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    /* 8px */
    --radius-lg: 0.75rem;
    /* 12px */
    --radius-xl: 1rem;
    /* 16px */

    /* Spacing */
    --container-width: 1200px;
    --header-height: 80px;
}

/* --- RESET & BASE --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-body);
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* --- UTILITIES --- */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

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

.justify-between {
    justify-content: space-between;
}

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

.gap-1 {
    gap: 0.25rem;
}

.gap-2 {
    gap: 0.5rem;
}

.gap-4 {
    gap: 1rem;
}

.gap-8 {
    gap: 2rem;
}

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

.text-sm {
    font-size: 0.875rem;
}

.text-lg {
    font-size: 1.125rem;
}

.text-xl {
    font-size: 1.25rem;
}

.font-bold {
    font-weight: 700;
}

.font-semibold {
    font-weight: 600;
}

.text-muted {
    color: var(--text-muted);
}

.text-accent {
    color: var(--accent);
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    background: var(--accent-light);
    color: var(--accent-hover);
}

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: all 0.2s ease;
    font-size: 0.95rem;
    gap: 0.5rem;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: white;
    color: var(--text-main);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    border-color: var(--border-hover);
    background-color: var(--bg-surface);
}

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

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

/* --- HEADER --- */
header {
    height: var(--header-height);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    z-index: 100;
    display: flex;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.25rem;
    letter-spacing: -0.5px;
    color: var(--primary);
}

.nav-link {
    font-weight: 500;
    color: var(--text-muted);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
}

.nav-link:hover {
    color: var(--text-main);
    background: var(--bg-surface-2);
}

/* --- HERO --- */
.hero {
    padding: calc(var(--header-height) + 4rem) 0 6rem;
    background: radial-gradient(circle at 50% 0%, #f1f5f9 0%, #ffffff 70%);
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-main) 0%, #475569 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-stats {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    display: flex;
    gap: 3rem;
}

.hero-stat b {
    display: block;
    font-size: 1.5rem;
    color: var(--text-main);
}

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

/* --- MOCKUPS (CSS Only) --- */
.mockup-wrapper {
    position: relative;
    perspective: 1000px;
    z-index: 10;
}

.mockup-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    padding: 2rem;
    transform: rotateY(-5deg) rotateX(2deg);
    transition: transform 0.4s ease;
    position: relative;
}

.mockup-wrapper:hover .mockup-card {
    transform: rotateY(0) rotateX(0);
}

/* Floating Badge */
.floating-badge {
    position: absolute;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 20;
    animation: float 4s ease-in-out infinite;
}

.badge-success {
    top: -20px;
    right: -20px;
}

.badge-saved {
    bottom: 40px;
    left: -20px;
    animation-delay: 2s;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

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

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

/* Form Elements for Mockups */
.ui-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
    display: block;
}

.ui-input {
    width: 100%;
    padding: 0.625rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    margin-bottom: 1rem;
    background: #fff;
}

.ui-input.error {
    border-color: #ef4444;
    background: #fef2f2;
    color: #ef4444;
}

.ui-error {
    color: #ef4444;
    font-size: 0.75rem;
    margin-top: -0.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 4px;
}

.ui-btn {
    background: black;
    color: white;
    width: 100%;
    padding: 0.75rem;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 600;
    text-align: center;
}

/* --- FEATURES GRID --- */
.section {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-muted);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.icon-box {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: var(--bg-surface-2);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

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

/* --- ALTERNATING FEATURES --- */
.alt-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    margin-bottom: 8rem;
}

.alt-feature.reverse {
    direction: rtl;
    /* Hack for visual reverse, reset in children */
}

.alt-feature.reverse>* {
    direction: ltr;
}

.alt-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.alt-content p {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.75rem;
    color: var(--text-main);
    font-weight: 500;
}

.check-icon {
    color: var(--accent);
    flex-shrink: 0;
    font-size: 1.2rem;
}

/* --- PRICING --- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.pricing-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    position: relative;
}

.pricing-card.popular {
    border-color: var(--accent);
    box-shadow: 0 0 0 2px var(--accent);
}

.popular-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: white;
    padding: 4px 12px;
    border-radius: 99px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 1.5rem 0 0.5rem;
}

.price-sub {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 2rem;
    display: block;
}

.pricing-features li {
    margin-bottom: 1rem;
    font-size: 0.95rem;
    display: flex;
    gap: 10px;
}

/* --- CTA BANNER --- */
.cta-banner {
    background: var(--primary);
    color: white;
    border-radius: var(--radius-xl);
    padding: 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 4rem;
}

.cta-banner h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 10;
}

.cta-banner p {
    color: var(--text-light);
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 10;
}

/* --- FOOTER --- */
footer {
    background: var(--bg-surface);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border);
    font-size: 0.9rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-links h4 {
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: var(--text-main);
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-muted);
}

.footer-links a:hover {
    color: var(--accent);
}

/* --- RESPONSIVE --- */
@media (max-width: 968px) {

    .hero-grid,
    .alt-feature,
    .features-grid,
    .pricing-grid,
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero {
        text-align: center;
        padding-top: 6rem;
    }

    .hero p {
        margin: 0 auto 2rem;
    }

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

    .alt-feature.reverse {
        direction: ltr;
    }

    .nav-links {
        display: none;
    }

    /* Hide nav on mobile for simplicity */
    .mockup-wrapper {
        margin-top: 2rem;
    }
}

/* --- PAGE SPECIFIC STYLES --- */
.page-header {
    padding: calc(var(--header-height) + 4rem) 0 4rem;
    text-align: center;
    background: radial-gradient(circle at 50% 0%, #f1f5f9 0%, #ffffff 70%);
    border-bottom: 1px solid var(--border);
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-main);
    letter-spacing: -1px;
}

.page-content {
    padding: 4rem 0;
    max-width: 800px;
    margin: 0 auto;
}

.page-content h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-main);
    font-weight: 700;
}

.page-content h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: var(--text-main);
    font-weight: 600;
}

.page-content p {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.75;
}

.page-content ul {
    list-style: disc;
    padding-left: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

.page-content li {
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}

/* Blog Card Styles */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.blog-card {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.2s ease;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.blog-img {
    height: 200px;
    background-color: var(--bg-surface-2);
    display: flex;
    /* Placeholder center */
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 3rem;
}

.blog-content {
    padding: 1.5rem;
}

.blog-date {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    display: block;
}

.blog-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-main);
}

.blog-excerpt {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

/* Contact Form Styles */
.contact-form {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.form-group {
    margin-bottom: 1.5rem;
}

/* --- MULTI-APP HOME --- */
.company-hero {
    padding: calc(var(--header-height) + 5rem) 0 5rem;
    background:
        radial-gradient(circle at 78% 18%, rgba(16, 185, 129, 0.18), transparent 26%),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.company-hero-inner {
    max-width: 780px;
}

.company-hero h1 {
    margin: 1rem 0 1.5rem;
    color: var(--text-main);
    font-size: 4rem;
    line-height: 1.04;
    font-weight: 800;
    letter-spacing: 0;
}

.company-hero p {
    max-width: 680px;
    color: var(--text-muted);
    font-size: 1.25rem;
}

.app-directory {
    background: #fff;
}

.app-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
}

.app-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 42%);
    gap: 1rem;
    align-items: stretch;
    min-height: 430px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: white;
    color: inherit;
    box-shadow: var(--shadow-md);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.app-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-xl);
}

.app-card-copy {
    min-width: 0;
    padding: 2rem;
}

.app-kicker,
.app-page-kicker,
.globy-eyebrow {
    display: block;
    margin-bottom: 0.75rem;
    color: var(--accent-hover);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0;
}

.app-card h3 {
    max-width: 420px;
    margin-bottom: 1rem;
    color: var(--text-main);
    font-size: 2rem;
    line-height: 1.1;
}

.app-card p {
    max-width: 430px;
    color: var(--text-muted);
    font-size: 1rem;
}

.app-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 1.5rem;
    color: var(--primary);
    font-weight: 800;
}

.address-mini,
.globy-mini {
    align-self: end;
    width: calc(100% - 1.5rem);
    max-width: 280px;
    margin: 0 1.5rem 1.5rem 0;
}

.mini-checkout {
    padding: 1.25rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow-lg);
}

.mini-checkout label {
    display: block;
    margin: 0.8rem 0 0.35rem;
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 700;
}

.mini-row.top {
    width: 58%;
    height: 12px;
    border-radius: 999px;
    background: var(--bg-surface-2);
}

.mini-input,
.mini-submit {
    padding: 0.65rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: white;
    color: var(--text-main);
    font-size: 0.82rem;
}

.mini-input.error {
    border-color: #ef4444;
    background: #fef2f2;
    color: #b91c1c;
}

.mini-error {
    margin: 0.4rem 0 0.8rem;
    color: #dc2626;
    font-size: 0.75rem;
}

.mini-submit {
    margin-top: 0.8rem;
    background: var(--primary);
    color: white;
    text-align: center;
    font-weight: 700;
}

.globy-mini {
    padding: 1rem;
    border: 1px solid rgba(6, 78, 59, 0.12);
    border-radius: 8px;
    background: white;
    box-shadow: var(--shadow-lg);
}

.globy-mini img {
    display: block;
    width: 100%;
    height: 190px;
    object-fit: cover;
    border-radius: 8px;
    background: #f5f6f4;
}

.locale-chip {
    position: absolute;
    top: 1.75rem;
    left: 1.75rem;
    z-index: 2;
    padding: 0.3rem 0.55rem;
    border-radius: 8px;
    background: #f97316;
    color: white;
    font-size: 0.75rem;
    font-weight: 800;
}

.globy-alt {
    margin-top: 0.75rem;
    padding: 0.65rem;
    border-radius: 8px;
    background: #ecfdf5;
    color: #047857;
    font-size: 0.75rem;
    font-weight: 800;
}

.company-band {
    background: var(--bg-surface);
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.value-grid h3 {
    margin-bottom: 0.75rem;
    font-size: 1.35rem;
}

.value-grid p {
    color: var(--text-muted);
}

.rule-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.timeline-content {
    border-left: 2px solid var(--border);
    padding-left: 2rem;
}

.timeline-date {
    margin-left: 1rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* --- GLOBY LANDING --- */
.globy-hero {
    padding: calc(var(--header-height) + 4rem) 0 6rem;
    overflow: hidden;
    background:
        radial-gradient(circle at 78% 40%, rgba(249, 115, 22, 0.12), transparent 24%),
        linear-gradient(104deg, #fbfbfb 0 62%, #eef6f1 62% 100%);
}

.globy-hero-grid {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 4rem;
    align-items: center;
}

.globy-copy h1 {
    margin: 0;
    color: #064e3b;
    font-size: 4rem;
    line-height: 1.04;
    font-weight: 800;
    letter-spacing: 0;
}

.globy-copy p {
    margin-top: 1.5rem;
    color: #516159;
    font-size: 1.25rem;
}

.compact-list {
    display: grid;
    gap: 0.9rem;
    margin-top: 2rem;
}

.compact-list div {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-main);
    font-weight: 800;
}

.compact-list i {
    display: inline-flex;
    width: 28px;
    height: 28px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #ffedd5;
    color: #f97316;
}

.localized-card-stage-web {
    position: relative;
    min-height: 520px;
}

.locale-product-card-web {
    position: absolute;
    left: 0;
    top: 2rem;
    width: 300px;
    min-height: 410px;
    padding: 1rem;
    border: 1px solid rgba(6, 78, 59, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 28px 70px rgba(23, 32, 28, 0.14);
    transform: rotate(-2deg);
}

.locale-product-card-web.accent {
    left: auto;
    right: 0;
    top: 4rem;
    border-color: rgba(249, 115, 22, 0.28);
    transform: rotate(2deg);
}

.locale-product-card-web img {
    display: block;
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    background: #f5f6f4;
}

.locale-badge-web {
    position: absolute;
    left: 1.75rem;
    top: 1.75rem;
    z-index: 2;
    display: grid;
    width: 40px;
    height: 30px;
    place-items: center;
    border-radius: 8px;
    background: #f0f4f2;
    color: #516159;
    font-size: 0.8rem;
    font-weight: 800;
}

.locale-badge-web.accent {
    background: #f97316;
    color: white;
}

.locale-product-card-web p {
    margin: 1rem 0 0.45rem;
    color: #516159;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
}

.locale-product-card-web h2 {
    margin: 0;
    color: #17201c;
    font-size: 1.4rem;
    line-height: 1.15;
    text-transform: uppercase;
}

.locale-product-card-web span {
    display: block;
    margin-top: 0.8rem;
    padding: 0.65rem 0.75rem;
    border-radius: 8px;
    background: #ecfdf5;
    color: #047857;
    font-size: 0.75rem;
    font-weight: 800;
}

.translate-spark-web {
    position: absolute;
    left: 50%;
    top: 45%;
    z-index: 3;
    display: grid;
    width: 62px;
    height: 62px;
    place-items: center;
    border: 5px solid #fbfbfb;
    border-radius: 999px;
    background: #f97316;
    color: white;
    box-shadow: 0 16px 34px rgba(249, 115, 22, 0.25);
    transform: translate(-50%, -50%);
}

.globy-feature-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr;
    gap: 2rem;
    align-items: stretch;
}

.settings-panel-web,
.mini-store-web,
.globy-dashboard {
    border: 1px solid #d8e2dd;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 24px 70px rgba(6, 78, 59, 0.12);
}

.settings-panel-web,
.mini-store-web {
    padding: 2rem;
}

.panel-header-web,
.mini-store-top-web,
.assign-toolbar-web {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.panel-header-web p {
    margin: 0 0 0.35rem;
    color: #516159;
    font-size: 0.9rem;
    font-weight: 800;
}

.panel-header-web h3 {
    margin: 0;
    color: #064e3b;
    font-size: 1.6rem;
}

.panel-header-web span {
    padding: 0.6rem 0.85rem;
    border-radius: 999px;
    background: #d1fae5;
    color: #047857;
    font-weight: 800;
}

.method-grid-web {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
}

.method-option-web {
    padding: 1.25rem;
    border: 1px solid #d8e2dd;
    border-radius: 8px;
    background: #f5fbf7;
}

.method-option-web.selected {
    border-color: #059669;
    background: #ecfdf5;
}

.method-option-web p,
.mini-product-row-web p {
    margin: 0.4rem 0 0;
    color: #516159;
}

.mini-store-top-web {
    color: #516159;
    font-weight: 700;
}

.mini-store-top-web strong {
    color: #047857;
}

.mini-product-row-web {
    display: grid;
    grid-template-columns: 112px 1fr;
    gap: 1rem;
    align-items: center;
    margin-top: 1.5rem;
}

.mini-product-row-web img {
    width: 112px;
    height: 112px;
    object-fit: cover;
    border: 1px solid #d8e2dd;
    border-radius: 8px;
}

.mini-product-row-web h3 {
    margin: 0;
    color: #064e3b;
}

.globy-dashboard {
    margin-top: 2rem;
    overflow: hidden;
}

.assign-toolbar-web {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid #d8e2dd;
    background: #f5fbf7;
}

.assign-toolbar-web button {
    padding: 0.45rem 0.75rem;
    border-radius: 8px;
    background: #047857;
    color: white;
    font-weight: 800;
}

.assign-grid-web {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 1.5rem;
    padding: 1.5rem;
}

.assign-grid-web h3 {
    margin: 0 0 1rem;
    color: #064e3b;
}

.assign-product {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 0.75rem;
    align-items: center;
    margin-bottom: 0.75rem;
    padding: 0.75rem;
    border: 1px solid #d8e2dd;
    border-radius: 8px;
}

.assign-product.active {
    border-color: #059669;
    background: #ecfdf5;
}

.assign-product img {
    width: 56px;
    height: 56px;
    object-fit: cover;
    border-radius: 8px;
}

.assign-preview img {
    width: 100%;
    height: 260px;
    object-fit: contain;
    border: 1px solid #d8e2dd;
    border-radius: 8px;
    background: #f5fbf7;
}

.alt-input {
    margin-top: 1rem;
    padding: 0.85rem;
    border: 1px solid #d8e2dd;
    border-radius: 8px;
    background: #f5fbf7;
    color: #064e3b;
    font-weight: 800;
}

.globy-cta {
    background: #064e3b;
}

@media (max-width: 968px) {
    .company-hero h1,
    .globy-copy h1 {
        font-size: 2.7rem;
    }

    .app-grid,
    .value-grid,
    .globy-hero-grid,
    .globy-feature-grid,
    .assign-grid-web {
        grid-template-columns: 1fr;
    }

    .app-card {
        min-height: 620px;
        grid-template-columns: 1fr;
    }

    .address-mini,
    .globy-mini {
        align-self: end;
        width: auto;
        max-width: none;
        margin: 0 1.5rem 1.5rem;
    }

    .localized-card-stage-web {
        min-height: 740px;
    }

    .locale-product-card-web,
    .locale-product-card-web.accent {
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        width: 100%;
        margin-bottom: 1.5rem;
        transform: none;
    }

    .translate-spark-web {
        display: none;
    }

    .method-grid-web {
        grid-template-columns: 1fr;
    }
}
