/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
	font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

:root {
    --primary-color: #000436;
    --primary-dark: #000328;
    --secondary-color: #fead34;
    --accent-orange: #f0693b;
    --accent-peach: #fcc1ad;
    --accent-green: #3dbc6f;
    --text-dark: #000436;
    --text-gray: #6B7280;
    --bg-light: #f3f3f3;
    --bg-white: #FFFFFF;
    --border-color: #E5E7EB;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

html {
    scroll-behavior: smooth;
	font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

body {
    font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: #f3f3f3;
}

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

/* Shopify Badge */
.shopify-badge {
    background: linear-gradient(135deg, #96BF48, #7AB800);
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.shopify-badge:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 999;
    /* Needed so the mobile dropdown is positioned relative to the navbar */
    isolation: isolate;
}

/* Hamburger Button */
.hamburger-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: background 0.2s ease;
}

.hamburger-btn:hover {
    background: var(--bg-light);
}

.hamburger-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger-btn.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger-btn.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger-btn.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

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

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

.nav-links a {
    text-decoration: none;
    color: var(--text-gray);
    font-weight: 500;
    transition: color 0.3s ease;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary, .nav-links a.btn-primary {
    background: var(--primary-color);
    color: var(--secondary-color);
    font-weight: 700;
	border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--bg-white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

.btn-white {
    background: var(--secondary-color);
    color: var(--primary-color);
    font-weight: 700;
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

/* Hero Section */
.hero {
    padding: 100px 0 80px;
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-white) 100%);
}

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

.hero-text h1 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-gray);
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

.trust-badges {
    display: flex;
    gap: 24px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-gray);
    font-size: 14px;
}

.trust-item svg {
    color: var(--accent-green);
}

.hero-visual svg {
    width: 100%;
    height: auto;
}

/* Social Proof */
.social-proof {
    padding: 60px 0;
    background: var(--bg-white);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.stat-label {
    color: var(--text-gray);
    font-size: 16px;
	font-weight: 600;
}

/* Sections */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.section-header p {
    font-size: 20px;
    color: var(--text-gray);
}

/* Features */
.features {
    padding: 100px 0;
    background: var(--bg-light);
}

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

.feature-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    position: relative;
}

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

.beta-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #b3b3b3;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.feature-card-beta {
	background: #e7e7e7;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 24px;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.feature-card > p {
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.7;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    color: var(--text-gray);
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: 700;
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: var(--bg-white);
}

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

.testimonial-card {
    background: var(--bg-light);
    padding: 32px;
    border-radius: 16px;
    transition: all 0.3s ease;
}

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

.stars {
    color: #FCD34D;
    font-size: 20px;
    margin-bottom: 16px;
}

.testimonial-text {
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 16px;
}

.author-name {
    font-weight: 600;
    color: var(--text-dark);
}

.author-title {
    font-size: 14px;
    color: var(--text-gray);
}

/* Use Cases Section */
.use-cases {
    padding: 80px 0;
    background: var(--primary-color);
    color: white;
}

.use-cases-header h2 {
    color: white;
}

.use-cases-header p {
    color: rgba(255, 255, 255, 0.8);
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 48px;
}

.use-case-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 36px 32px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.use-case-card:hover {
    background: rgba(255, 255, 255, 0.14);
    transform: translateY(-4px);
}

.use-case-icon {
    width: 72px;
    height: 72px;
    margin-bottom: 20px;
}

.use-case-icon svg {
    width: 100%;
    height: 100%;
}

.use-case-card h3 {
    font-size: 22px;
    color: white;
    margin-bottom: 12px;
}

.use-case-card p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 16px;
    line-height: 1.7;
}

.use-cases-cta {
    text-align: center;
}

/* Contact Form */
.contact {
    padding: 100px 0;
    background: var(--bg-light);
}

.contact-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form {
    background: var(--bg-white);
    padding: 48px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 24px;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
}

.form-message {
    margin-top: 16px;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    display: none;
}

.form-message.success {
    background: #D1FAE5;
    color: #065F46;
    display: block;
}

.form-message.error {
    background: #FEE2E2;
    color: #991B1B;
    display: block;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 0 30px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

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

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.footer-section h4 {
    margin-bottom: 16px;
    font-size: 18px;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-text h1 {
        font-size: 42px;
    }

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

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

    .stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .hamburger-btn {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        padding: 12px 20px 20px;
        border-top: 1px solid var(--border-color);
        box-shadow: var(--shadow-md);
    }

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

    .nav-links a:not(.btn) {
        width: 100%;
        padding: 10px 0;
        font-size: 16px;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-links .btn {
        margin-top: 8px;
        width: 100%;
        text-align: center;
    }

    .use-cases-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 60px 0 40px;
    }

    .hero-text h1 {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

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

    .btn-large {
        padding: 14px 28px;
        font-size: 16px;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .section-header p {
        font-size: 18px;
    }

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

    .stat-number {
        font-size: 36px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 32px 24px;
    }

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

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 28px;
    }

    .trust-badges {
        flex-direction: column;
        gap: 12px;
    }

    .use-case-card {
        padding: 28px 24px;
    }
}

/* Blog Styles */
.blog-hero {
    padding: 80px 0 60px;
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-white) 100%);
    text-align: center;
}

.blog-hero h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.blog-hero-subtitle {
    font-size: 20px;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.blog-grid {
    padding: 60px 0;
}

.blog-posts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.blog-card {
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

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

.blog-image {
    width: 100%;
    height: 240px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-image svg {
    width: 120px;
    height: 120px;
    opacity: 0.9;
}

.blog-img-indigo { background: linear-gradient(135deg, #6366F1, #8B5CF6); }
.blog-img-pink    { background: linear-gradient(135deg, #EC4899, #F43F5E); }
.blog-img-green   { background: linear-gradient(135deg, #10B981, #059669); }
.blog-img-amber   { background: linear-gradient(135deg, #F59E0B, #EF4444); }
.blog-img-blue    { background: linear-gradient(135deg, #3B82F6, #2563EB); }
.blog-img-purple  { background: linear-gradient(135deg, #8B5CF6, #7C3AED); }
.blog-img-teal    { background: linear-gradient(135deg, #14B8A6, #0D9488); }
.blog-img-rose    { background: linear-gradient(135deg, #F43F5E, #E11D48); }

.blog-content {
    padding: 32px;
}

.blog-meta {
    display: flex;
    gap: 16px;
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 16px;
}

.blog-card h2 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.blog-excerpt {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 16px;
}

.read-more {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.read-more:hover {
    gap: 12px;
}

/* Blog Post Page */
.blog-post {
    padding: 80px 0;
}

.blog-post-header {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.blog-post-header h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.blog-post-content {
    max-width: 800px;
    margin: 0 auto;
}

.blog-post-content h2 {
    font-size: 32px;
    margin-top: 48px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.blog-post-content h3 {
    font-size: 24px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.blog-post-content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 24px;
}

.blog-post-content ul,
.blog-post-content ol {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 24px;
    padding-left: 32px;
}

.blog-post-content li {
    margin-bottom: 12px;
}

.blog-post-content strong {
    color: var(--text-dark);
    font-weight: 600;
}

.back-to-blog {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 40px;
}

.back-to-blog:hover {
    gap: 12px;
}

.back-to-blog-footer {
    margin-top: 40px;
}

.blog-meta-centered {
    justify-content: center;
    margin-bottom: 20px;
}

.link-primary {
    color: var(--primary-color);
    font-weight: 600;
}

.contact-form > button.btn-primary {
    text-align: center;
    margin: 0 auto;
    display: block;
}

@media (max-width: 1024px) {
    .blog-posts {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-posts {
        grid-template-columns: 1fr;
    }

    .blog-hero h1 {
        font-size: 36px;
    }

    .blog-post-header h1 {
        font-size: 36px;
    }

    .blog-post-content h2 {
        font-size: 28px;
    }
}

/* ================================================
   DECORATIVE FLOATING SHAPES
   ================================================ */

/* --- Keyframes --- */
@keyframes decoFloat {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-18px); }
}
@keyframes decoFloatTilt {
    0%, 100% { transform: translateY(0px)   rotate(45deg); }
    50%       { transform: translateY(-14px) rotate(57deg); }
}
@keyframes decoCubeSpin {
    0%   { transform: translateY(0px)   rotateX(20deg) rotateY(0deg); }
    50%  { transform: translateY(-10px) rotateX(20deg) rotateY(180deg); }
    100% { transform: translateY(0px)   rotateX(20deg) rotateY(360deg); }
}

/* --- Base shape --- */
.deco-shape {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

/* Upward semicircle */
.deco-sc {
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
    animation: decoFloat 5s ease-in-out infinite;
}
/* Downward semicircle */
.deco-sc-down {
    border-radius: 0 0 50% 50% / 0 0 100% 100%;
    animation: decoFloat 5.5s ease-in-out infinite;
}
/* Hollow upward semicircle */
.deco-hsc {
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
    background: transparent;
    animation: decoFloat 6s ease-in-out infinite;
}
/* Hollow downward semicircle */
.deco-hsc-down {
    border-radius: 0 0 50% 50% / 0 0 100% 100%;
    background: transparent;
    animation: decoFloat 5.5s ease-in-out infinite;
}
/* Ring — hollow circle */
.deco-ring {
    border-radius: 50%;
    background: transparent;
    animation: decoFloat 4.5s ease-in-out infinite;
}
/* Diamond — tilted square */
.deco-diamond {
    animation: decoFloatTilt 7s ease-in-out infinite;
}

/* --- 3-D spinning cube --- */
.deco-cube-wrap {
    position: absolute;
    pointer-events: none;
    z-index: 0;
    perspective: 220px;
    width: 44px;
    height: 44px;
}
.deco-cube {
    width: 44px;
    height: 44px;
    transform-style: preserve-3d;
    animation: decoCubeSpin 10s linear infinite;
}
.cube-f {
    position: absolute;
    width: 44px;
    height: 44px;
}
/* Gold cube — light sections */
.cube-gold .cube-f {
    background: rgba(254, 173, 52, 0.10);
    border: 2px solid rgba(254, 173, 52, 0.55);
}
/* White cube — dark sections */
.cube-white .cube-f {
    background: rgba(255, 255, 255, 0.07);
    border: 2px solid rgba(255, 255, 255, 0.32);
}
/* Cube face positions */
.cf-front  { transform: translateZ(22px); }
.cf-back   { transform: rotateY(180deg)  translateZ(22px); }
.cf-left   { transform: rotateY(-90deg)  translateZ(22px); }
.cf-right  { transform: rotateY(90deg)   translateZ(22px); }
.cf-top    { transform: rotateX(90deg)   translateZ(22px); }
.cf-bottom { transform: rotateX(-90deg)  translateZ(22px); }

/* --- Animation phase offsets so shapes bob independently --- */
.deco-d1 { animation-delay: -1s; }
.deco-d2 { animation-delay: -2.5s; }
.deco-d3 { animation-delay: -4s; }
.deco-d4 { animation-delay: -5.5s; }

/* --- Sections need position:relative to anchor shapes --- */
.hero, .features, .testimonials, .use-cases, .contact {
    position: relative;
    overflow: hidden;
}
/* Keep page content above the decorative layer */
.hero > .container,
.features > .container,
.testimonials > .container,
.use-cases > .container,
.contact > .container {
    position: relative;
    z-index: 1;
}

/* --- Per-shape: dimensions, colors, positions --- */

/* Hero */
.deco-hero-1 { width: 190px; height: 95px;  border: 3px solid rgba(254,173,52,0.42);   top: 6%;    right: -52px; }
.deco-hero-2 { width: 115px; height: 58px;  border: 2px solid rgba(0,4,54,0.10);       top: 0;     left: -20px;  }
.deco-hero-3 { width: 120px;  height: 65px;  background: rgba(252,193,173,0.36);         bottom: 1%; left: -3%;    }
.deco-hero-4 { width: 62px;  height: 62px;  border: 3px solid rgba(61,188,111,0.38);   top: 58%;   right: 5%;    }
.deco-hero-cube { top: 22%; left: 9%; }

/* Features */
.deco-feat-1 { width: 160px; height: 80px; border: 3px solid rgba(254,173,52,0.34);    top: -4px;   right: -44px; }
.deco-feat-2 { width: 124px; height: 62px; border: 2px solid rgba(240,105,59,0.28);    bottom: -4px; left: -30px; }
.deco-feat-3 { width: 48px;  height: 48px; border: 2px solid rgba(0,4,54,0.13);        top: 44%;    left: 2%;     }
.deco-feat-4 { width: 28px;  height: 28px; background: rgba(254,173,52,0.18); border: 2px solid rgba(254,173,52,0.38); bottom: 20%; right: 4%; }

/* Testimonials */
.deco-test-1 { width: 134px; height: 67px; background: rgba(252,193,173,0.22);          bottom: 0;   left: -20px;  }
.deco-test-2 { width: 74px;  height: 74px; border: 3px solid rgba(254,173,52,0.28);     top: 8%;    right: -20px; }
.deco-test-3 { width: 100px; height: 50px; border: 2px solid rgba(61,188,111,0.28);     bottom: 14%; right: 3%;   }
.deco-test-cube { top: 48%; left: 3%; }

/* Use Cases */
.deco-uc-1 { width: 196px; height: 98px;  border: 3px solid rgba(255,255,255,0.11);    top: -14px;  right: -54px; }
.deco-uc-2 { width: 134px; height: 67px;  border: 2px solid rgba(255,255,255,0.08);    bottom: -6px; left: -30px; }
.deco-uc-3 { width: 68px;  height: 68px;  border: 2px solid rgba(254,173,52,0.38);     top: 14%;    left: 3%;     }
.deco-uc-4 { width: 80px;  height: 40px;  background: rgba(255,255,255,0.05);           bottom: 18%; right: 3%;   }
.deco-uc-cube { top: 54%; right: 4%; }

/* Contact */
.deco-con-1 { width: 58px;  height: 58px;  border: 2px solid rgba(61,188,111,0.30);    top: 8%;    right: 8%;    }
.deco-con-2 { width: 114px; height: 57px;  border: 2px solid rgba(0,4,54,0.10);        bottom: 8%; left: 4%;     }
.deco-con-3 { width: 24px;  height: 24px;  background: rgba(254,173,52,0.20); border: 2px solid rgba(254,173,52,0.40); bottom: 20%; right: 12%; }

/* Shopify CTA box (replaces form in shopify.html) */
.shopify-cta-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    text-align: center;
}

.shopify-install-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    padding: 20px 40px;
    border-radius: 12px;
}

.shopify-cta-badges {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 480px) {
    .shopify-cta-badges {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .shopify-install-btn {
        font-size: 17px;
        padding: 16px 28px;
    }
}

/* Floating Shopify badge (shopify.html) */
.shopify-float-btn {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 998;
    background: linear-gradient(135deg, #96BF48, #7AB800);
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 4px 16px rgba(122, 184, 0, 0.40);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.shopify-float-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(122, 184, 0, 0.50);
}

@media (max-width: 480px) {
    .shopify-float-btn {
        bottom: 16px;
        left: 16px;
        padding: 10px 16px;
        font-size: 13px;
    }
}

/* --- Testimonial author avatar colours --- */
.avatar-sm { background: linear-gradient(135deg, #6366F1, #8B5CF6); }
.avatar-jc { background: linear-gradient(135deg, #EC4899, #F43F5E); }
.avatar-mr { background: linear-gradient(135deg, #F59E0B, #EF4444); }
.avatar-dk { background: linear-gradient(135deg, #10B981, #059669); }
.avatar-ac { background: linear-gradient(135deg, #3B82F6, #2563EB); }
.avatar-tp { background: linear-gradient(135deg, #8B5CF6, #7C3AED); }

/* --- Responsive: scale shapes down on smaller screens --- */
@media (max-width: 768px) {
    .deco-hero-1 { width: 130px; height: 65px;  right: -30px; }
    .deco-hero-2 { width: 84px;  height: 42px;  left: -14px;  }
    .deco-hero-3 { width: 80px;  height: 40px;  }
    .deco-hero-4 { width: 48px;  height: 48px;  }

    .deco-feat-1 { width: 110px; height: 55px;  right: -28px; }
    .deco-feat-2 { width: 88px;  height: 44px;  left: -20px;  }
    .deco-feat-3 { width: 36px;  height: 36px;  }

    .deco-test-1 { width: 96px;  height: 48px;  left: -14px;  }
    .deco-test-2 { width: 52px;  height: 52px;  right: -14px; }
    .deco-test-3 { width: 72px;  height: 36px;  }

    .deco-uc-1   { width: 130px; height: 65px;  right: -32px; }
    .deco-uc-2   { width: 96px;  height: 48px;  left: -20px;  }
    .deco-uc-3   { width: 50px;  height: 50px;  }

    .deco-con-1  { width: 44px;  height: 44px;  }
    .deco-con-2  { width: 84px;  height: 42px;  left: -14px;  }
	
	.deco-hero-cube { top: 48%; left: -1%; }
}

/* ================================================
   GLOSSARY STYLES
   ================================================ */

.glossary-hero {
    padding: 80px 0 60px;
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-white) 100%);
    text-align: center;
}

.glossary-hero h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.glossary-grid {
    padding: 60px 0;
}

.glossary-letter-section {
    margin-bottom: 48px;
}

.glossary-letter-heading {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 12px;
    margin-bottom: 24px;
}

.glossary-terms-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.glossary-card {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 24px;
    box-shadow: var(--shadow-sm);
    text-decoration: none;
    color: inherit;
    display: block;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.glossary-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.glossary-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.glossary-card p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.term-category-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    font-size: 13px;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.related-terms {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 28px 32px;
    margin-top: 48px;
}

.related-terms h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.related-terms-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.related-terms-list a {
    display: inline-block;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    color: var(--primary-color);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.related-terms-list a:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.glossary-cta {
    text-align: center;
    margin-top: 60px;
    padding: 48px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 16px;
    color: white;
}

.glossary-cta h2 {
    font-size: 28px;
    margin-bottom: 12px;
    color: white;
}

.glossary-cta p {
    font-size: 18px;
    margin-bottom: 28px;
    opacity: 0.9;
}

@media (max-width: 1024px) {
    .glossary-terms-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .glossary-hero h1 {
        font-size: 36px;
    }

    .glossary-terms-list {
        grid-template-columns: 1fr;
    }
}
