/*CloudSignage */
/* landing Media Inc*/
/* Nonember 2025 */

:root {
  /* Base background and surfaces */
  --color-bg: #050814;
  --color-bg-alt: #e0ecff;
  --color-surface: #ffffff;
  --color-surface-alt: #f4f6fb;

  /* Borders and text */
  --color-border: #e2e8f0;
  --color-text: #0f172a;
  --color-text-muted: #64748b;

  /* Primary brand colors */
  --color-primary: #2563eb;          /* blue */
  --color-primary-alt: #7c3aed;      /* purple */
  --color-accent-teal: #14b8a6;      /* teal */
  --color-accent-cyan: #22d3ee;      /* cyan */
  --color-accent: #22d3ee;           /* shorthand accent */
  --color-danger: #ef4444;

  /* Soft backgrounds using brand colors */
  --color-primary-soft: rgba(37, 99, 235, 0.08);
  --color-accent-soft: rgba(124, 58, 237, 0.08);

  /* Gradients */
  --gradient-hero: linear-gradient(135deg, #2563eb 0%, #7c3aed 40%, #22d3ee 100%);
  --gradient-cta: linear-gradient(135deg, #2563eb 0%, #14b8a6 40%, #22d3ee 100%);

  /* Other */
  --radius: 16px;
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.18);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Inter", system-ui, "Segoe UI", sans-serif;
    background: #eef2ff;
    color: var(--color-text);
    font-size: 16px;
    line-height: 1.6;
}

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

a {
    color: var(--color-primary);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

h1, h2, h3, h4 {
    margin: 0 0 0.75rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--color-text);
}

/* Global heading sizes outside hero */
h1 {
    font-size: 2.2rem;
    line-height: 1.15;
}

h2 {
    font-size: 1.7rem;
    line-height: 1.25;
}

h3 {
    font-size: 1.15rem;
    line-height: 1.35;
}

h4 {
    font-size: 0.98rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

p {
    margin: 0 0 1rem;
    color: var(--color-text-muted);
    font-weight: 400;
}

/* small helper text, notes, captions */
.small-text,
.hero-note,
.footer-bottom,
.footer-bottom-inner {
    font-size: 0.85rem;
    line-height: 1.5;
}

ul {
    margin: 0 0 1rem;
    padding-left: 1.25rem;
}

/* Layout */

.container {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 4rem 0;
    background: var(--color-surface);
}

.section.section-alt {
    background: linear-gradient(180deg, #eef2ff 0%, #f4f6fb 60%, #eef2ff 100%);
}

/* Apply the same card styling used in locations-section */
.section.section-alt .grid {
    margin-top: 2rem;
    display: grid;
    gap: 1.4rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.section.section-alt .card {
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    box-shadow: 0 18px 35px rgba(15, 23, 42, 0.08);
    padding: 1.4rem 1.35rem 1.3rem;
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.section.section-alt .card h3 {
    margin-bottom: 0.5rem;
    font-size: 1rem;
    color: var(--color-text);
}

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

.section.section-alt .card:hover {
    transform: translateY(-3px);
    border-color: rgba(37, 99, 235, 0.55);
    box-shadow: 0 22px 45px rgba(15, 23, 42, 0.16);
}

/* Responsive stacking */
@media (max-width: 960px) {
    .section.section-alt .grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .section.section-alt .grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

.section-intro {
    max-width: 720px;
}

/* Header */

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(5, 8, 20, 0.9);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(148, 163, 184, 0.25);
}

.site-header .btn-outline {
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.65);
}

.site-header .btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #ffffff;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 0;
    gap: 1.5rem;
}

/* LOGO CONTAINER */
.logo {
    display: flex;
    align-items: center;
}

/* LOGO LINK WRAPPER */
.logo a {
    display: flex;
    align-items: center;
    gap: 0.55rem; 
    text-decoration: none;
}

/* LOGO ICON */
.logo img {
    height: 34px; 
    width: auto;
    display: block;
    margin-top: 1px; 
}

/* LOGO TEXT */
.site-header .logo-text {
    color: #ffffff;
    font-size: 1.12rem; 
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1;
    display: flex;
    align-items: center;
}

/* FOOTER LOGO WRAPPER */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 0.75rem;
}

/* FOOTER LOGO IMAGE */
.footer-logo-img {
    height: 32px; 
    width: auto;
    display: block;
    margin-top: 1px; 
}

/* FOOTER LOGO TEXT */
.footer-logo-text {
    color: #0f172a;
    font-size: 1.05rem; 
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1;
    display: flex;
    align-items: center;
}

.main-nav {
    display: flex;
    gap: 1.25rem;
    font-size: 0.92rem;
    font-weight: 500;
}

.main-nav a {
    color: rgba(255, 255, 255, 0.75); 
    transition: color 0.2s ease;
}

.main-nav a:hover {
    color: #ffffff;
}

.main-nav a.active {
    color: #ffffff !important;
    font-weight: 600;
    text-decoration: underline !important;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}

.main-nav a.active:hover {
    text-decoration: underline !important;
}

.header-cta {
    display: flex;
    gap: 0.6rem;
}

.nav-toggle {
    display: none;
    background: transparent;
    border: none;
    padding: 0.25rem;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 3px 0;
    background: #e5e7eb;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

/* Buttons */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 1.35rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 0.95rem;
    font-weight: 500; /* Inter 500 looks great on buttons */
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background-image: var(--gradient-cta);
    color: #f9fafb;
    border: none;
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.35);
}

.btn-primary:hover {
    filter: brightness(1.05);
    transform: translateY(-1px);
    box-shadow: 0 16px 40px rgba(37, 99, 235, 0.4);
}

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

.btn-secondary:hover {
    background: var(--color-surface-alt);
    text-decoration: none;
}

.btn-outline {
    background: transparent;
    color: var(--color-primary);
    border: 1px solid rgba(148, 163, 184, 0.7);
}

.btn-outline:hover {
    background: var(--color-primary-soft);
    border-color: var(--color-primary);
}

.btn-block {
    width: 100%;
}

/* HERO SECTION */

.hero .container {
    max-width: 1280px;
}

.hero {
    padding: 6rem 0 5rem;
    background: var(--gradient-hero);
    color: #ffffff;
}

/* Left / Right Layout */
.hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.4fr);
    gap: 3.5rem;
    align-items: center;
}

/* Text column */
.hero-content {
    max-width: 520px;
}

.hero h1 {
    font-size: 2.9rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0 0 1.1rem;
    color: #ffffff !important;
}

.hero p {
    font-size: 1.05rem;
    line-height: 1.65;
    margin: 0 0 1.6rem;
    color: rgba(239, 246, 255, 0.9);
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 0.2rem;
    margin-bottom: 0.4rem;
}

.hero-note {
    font-size: 0.95rem;
    color: rgba(226, 232, 240, 0.9);
}

/* Right visual column */
.hero-visual {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.hero-visual img {
    width: 100%;
    height: 420px;               /* Larger hero height */
    object-fit: cover;
    border-radius: 26px;         /* Soft round like CloudMusic */
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow:
        0 18px 44px rgba(0, 0, 0, 0.25),
        0 8px 18px rgba(0, 0, 0, 0.18);
    display: block;
}

/* Device Frame Wrapper */
.hero-image-wrapper {
    position: relative;
    max-width: 640px;       /* was 500px */
    width: 100%;
    border-radius: 22px;    /* slightly softer corners */
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.16);
    transform: translateX(8%);
    box-shadow:
        0 26px 60px rgba(15, 23, 42, 0.55);
}

/* Subtle gradient overlay for premium look */
.hero-image-wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom right,
        rgba(0, 0, 0, 0.06),
        rgba(0, 0, 0, 0.10)
    );
    border-radius: 22px;
    pointer-events: none;
}

/* Hero image */
.hero-screen-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* Tags Overlay on top of image */
.overlay-tags {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    display: flex;
    gap: 0.45rem;
    flex-wrap: wrap;
}

.overlay-tags span {
    font-size: 0.75rem;
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #f1f5f9;
    backdrop-filter: blur(6px);
}

/* Buttons inside hero – high contrast and easy to scan */
.hero .btn-primary {
    background: #ffffff;
    color: #0f172a;
    border: none;
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.35);
}

.hero .btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.45);
}

.hero .btn-secondary {
    background: transparent;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.75);
}

.hero .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: #ffffff;
    text-decoration: none;
}

/* Hero mobile tweaks */
@media (max-width: 960px) {

    /* ✔ Good: return container to normal width on mobile */
    .hero .container {
        max-width: 1120px;  /* matches global container */
    }
    
    .hero {
        padding: 4.25rem 0 3.5rem;
    }

    .hero-inner {
        grid-template-columns: minmax(0, 1fr);
        gap: 2.75rem;
    }

    .hero-content {
        max-width: 100%;
    }

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

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

    .hero-image-wrapper {
        max-width: 100%;
        border-radius: 20px;

        /* Good: remove desktop offset */
        transform: none;
    }
}

/* Optional upscale on very wide screens */
@media (min-width: 1400px) {
    .hero-image-wrapper {
        max-width: 580px;
    }
}


/* Trust Strip – dark bar with centered white text */
.trust-strip {
    background: #0f141a; /* clean dark charcoal */
    padding: 1.6rem 0;   /* evenly spaced top + bottom */
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.trust-inner {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.trust-strip p {
    font-size: 1rem;
    margin: 0.45rem 0;
    color: rgba(255, 255, 255, 0.85); /* clear and readable */
    line-height: 1.55;
}

/* Grid */

.grid {
    display: grid;
    gap: 1.5rem;
}

.grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card,
.trial-form-card {
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    margin-top: 0; /
}

/* Pricing card styling */
.pricing-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 2rem 1.8rem;
    border: 1px solid rgba(148, 163, 184, 0.25);
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

/* Featured card border */
.pricing-card-featured {
  position: relative;
  border: 1.5px solid #ff3366;
}

/* Two column */
.two-column {
    display: grid;
    gap: 2.5rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}


/* Three panel section spacing */
.triple-feature {
    align-items: flex-start;
}

/* Make 3-column grids stack nicely on smaller screens */
@media (max-width: 960px) {
    .grid-3 {
        grid-template-columns: minmax(0, 1fr);
    }
}


/* Lists */

.bullet-list {
    list-style: none;
    padding-left: 0;
}

.bullet-list li {
    position: relative;
    padding-left: 1.2rem;
    margin-bottom: 0.35rem;
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

.bullet-list li::before {
     content: "✔";
     position: absolute;
     left: 0;
     top: 0.1rem;
     font-size: 0.75rem;
     color: #22c55e;
     /* green check */
     }

/* Links */

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.95rem;
}

.link-arrow::after {
    content: "→";
    font-size: 0.9rem;
}

/* Page hero */

.page-hero {
    padding: 3.5rem 0 2.5rem;
    border-bottom: 1px solid var(--color-border);
    background: var(--color-surface);
}

.page-hero h1 {
    font-size: 2rem;
    letter-spacing: -0.02em;
}

.badge,
.label {
    display: inline-flex;
    align-items: center;
    padding: 0.2rem 0.5rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 500;
    background: var(--color-primary-soft);
    color: var(--color-primary);
}

/* Pricing */

/* Pricing */

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

/* Card base */
.pricing-card {
    background: var(--color-surface);
    border-radius: 18px;
    padding: 1.9rem 1.6rem 1.7rem;
    border: 1px solid var(--color-border);
    position: relative;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
}

/* Featured card */
.pricing-card-featured {
    border-color: var(--color-pricing-plus);
    box-shadow: var(--shadow-pricing-strong);
    transform: translateY(-4px);
}

.pricing-actions {
    display: flex;
    flex-direction: column;
    gap: 1.1rem; /* perfect spacing */
    margin-top: 1.3rem;
}


/* Header: title + AI badge row */
.plan-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.25rem;
}

.plan-name {
    font-size: 1.15rem;
    letter-spacing: -0.02em;
    margin: 0;
}

.plan-name-business {
    color: var(--color-pricing-business);
}

.plan-name-plus {
    color: var(--color-pricing-plus);
}

/* PLAN TITLES */
.plan-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.business-title {
  color: #0f172a;
}

.business-plus-title {
  color: #cc0033;
}

/* AI Badge */
.ai-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: rgba(37, 99, 235, 0.08);
    color: var(--color-primary);
    padding: 0.3rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(37, 99, 235, 0.18);
    margin-bottom: 1rem;
}

.ai-icon {
    font-size: 0.9rem;
    color: var(--color-accent-cyan);
}

.plan-ai-badge-strong {
    background: rgba(124, 58, 237, 0.12);
    color: var(--color-pricing-plus);
}

/* Best value pill sitting on top of the featured card */
.best-value-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: #ff3366;                 /* pill background */
    color: #ffffff;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 600;
    position: absolute;
    top: -14px;
    right: 18px;
    z-index: 2;
    box-shadow:
        0 6px 18px rgba(255, 51, 102, 0.45),
        0 0 0 1px rgba(255, 255, 255, 0.12);
    filter:
        drop-shadow(0 0 2px rgba(255, 240, 150, 1))
        drop-shadow(0 0 3px rgba(255, 180, 60, 0.9));
}
@keyframes sparkle {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 1; }
    50% { transform: scale(1.18) rotate(8deg); opacity: 0.85; }
}

/* Stars container */
.ai-stars {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.15rem;
}

/* Yellow/orange sparkle with glow + animation */
.ai-stars svg {
    width: 24px;
    height: 24px;
    display: block;
    filter:
        drop-shadow(0 0 4px rgba(255, 230, 120, 0.9))
        drop-shadow(0 0 7px rgba(255, 180, 60, 0.7));
    animation: twinkle 1.8s ease-in-out infinite alternate;
    transform-origin: center;
}

/* Subtle twinkle / shimmer */
@keyframes twinkle {
    0% {
        transform: scale(1) rotate(0deg);
        opacity: 0.85;
    }
    50% {
        transform: scale(1.12) rotate(-5deg);
        opacity: 1;
    }
    100% {
        transform: scale(0.96) rotate(3deg);
        opacity: 0.9;
    }
}


/* Best value ribbon in top-right corner of featured card */
.best-value-ribbon {
    position: absolute;
    top: 0.9rem;
    right: 1.2rem;
}

.best-value-label {
    display: inline-flex;
    align-items: center;
    padding: 0.18rem 0.7rem;
    border-radius: 999px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: var(--color-pricing-ribbon);
    color: #022c22;
    box-shadow: 0 10px 24px rgba(20, 184, 166, 0.4);
}

/* Small “Billed Annually” pill */
.billing-pill {
    display: inline-flex;
    align-items: center;
    margin-top: 0.4rem;
    padding: 0.2rem 0.65rem;
    border-radius: 999px;
    font-size: 0.78rem;
    background: var(--color-surface-alt);
    color: var(--color-text-muted);
}

.billing-chip {
    background: rgba(37, 99, 235, 0.08);
    padding: 0.35rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    color: var(--color-primary);
    font-weight: 600;
    margin: 0.7rem 0 1.5rem;
}
/* BILLING BADGE */
.billing-badge {
  display: inline-block;
  background: #e6effe;
  padding: 0.35rem 0.75rem;
  font-size: 0.75rem;
  border-radius: 999px;
  margin-bottom: 0.8rem;
  color: #2563eb;
}

/* Pricing text */
.pricing-note {
    margin-top: 0.2rem;
    font-size: 0.92rem;
    color: var(--color-text-muted);
}
/* Typography */
.pricing-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--color-text);
}

.pricing-sub {
    margin-top: -0.4rem;
    margin-bottom: 1.2rem;
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

.pricing-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-text);
}

.pricing-amount {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--color-text);
}

.pricing-unit {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-left: 0.25rem;
}

.pricing-total {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 0.4rem;
}

/* Feature List */
.pricing-features {
    list-style: none;
    padding-left: 0;
    margin-bottom: 2rem;
}

.pricing-features li {
    position: relative;
    padding-left: 1.4rem;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

/* ✔ Checkmark */
.pricing-features li::before {
    content: "✔";
    position: absolute;
    top: 0.1rem;
    left: 0;
    font-size: 0.8rem;
    color: var(--color-accent-teal);
    font-weight: 700;
}

/* Buttons inside pricing cards */
.pricing-card .btn {
    margin-top: 0.1rem;
}

.pricing-card .btn + .btn {
    margin-top: 1.1rem !important;   /* Adjust as needed */
}

/* Optional: Add space above the first button too */
.pricing-card .btn:first-of-type {
    margin-top: 1rem;
}

.pricing-cta-main {
    margin-top: 0.7rem;
}

/* Make the featured plan’s primary button pop a bit more */
.pricing-card-featured .pricing-cta-main {
    box-shadow: 0 16px 40px rgba(37, 99, 235, 0.35);
}

/* Responsive */
@media (max-width: 960px) {
    .pricing-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .pricing-card-featured {
        transform: none;
    }
}


/* CTA section */

.section-cta {
    background: var(--gradient-cta);
    color: #ffffff;
    padding: 4rem 0;
}

.section-cta h2 {
    color: #ffffff;
    font-weight: 600;
}

.section-cta p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    max-width: 520px;
    margin-top: 0.5rem;
}

/* Flex alignment */
.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 1rem;
}

/* Primary button stays same */
.cta-buttons .btn-primary {
    background-image: var(--gradient-hero);
    color: #ffffff;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

/* Fix the "Book a Demo" button on gradients */
.cta-buttons .btn-outline {
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.65);
    background: transparent;
}

.cta-buttons .btn-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #ffffff;
    text-decoration: none;
}

/* Mobile layout for CTA */
@media (max-width: 960px) {
    .cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* FAQ */

.faq-item {
    border-top: 1px solid var(--color-border);
    padding: 1.4rem 0 1.1rem;
}

.faq-item h3 {
    font-size: 1rem;
}

/* Feature highlight */

.feature-highlight {
    background: var(--color-surface);
    border-radius: 14px;
    border: 1px solid var(--color-border);
    padding: 1.4rem 1.3rem;
}

/* Footer */

.site-footer {
    background: #f4f6fb;
    color: #0f172a;
    padding: 3rem 0 2rem;
    border-top: 1px solid #e2e8f0;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 2fr) repeat(3, minmax(0, 1fr));
    gap: 1.8rem;
    padding: 2.5rem 0 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.75rem;
}

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

.site-footer ul {
    list-style: none;
    padding-left: 0;
    font-size: 0.9rem;
}

.site-footer li {
    margin-bottom: 0.3rem;
}

.site-footer a {
    color: #2563eb;
    text-decoration: none;
}

.site-footer a:hover {
    color: #7c3aed;
    text-decoration: underline;
}

.site-footer h4 {
    color: #0f172a;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.75rem;
}

.footer-bottom {
    margin-top: 2rem;
    font-size: 0.8rem;
    color: #64748b;
}

.footer-bottom-inner {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.footer-keywords {
    max-width: 900px;
}

/* Trial form */
.trial-wrapper {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.2fr);
    gap: 3rem;
    align-items: flex-start;
}

/* Left copy */
.trial-copy p {
    max-width: 460px;
}

/* Form card */
.trial-form-card {
    background: var(--color-surface);
    border-radius: 16px;
    border: 1px solid var(--color-border);
    padding: 1.6rem 1.5rem 1.5rem;
    margin-top: 0;
}

.trial-form .form-row {
    margin-bottom: 0.9rem;
    font-size: 0.9rem;
}

.trial-form label {
    display: block;
    margin-bottom: 0.25rem;
    color: var(--color-text-muted);
}

.trial-form input,
.trial-form textarea {
    width: 100%;
    padding: 0.55rem 0.7rem;
    border-radius: 8px;
    border: 1px solid var(--color-border);
    background: #ffffff;
    color: var(--color-text);
    font-family: inherit;
    font-size: 0.9rem;
}

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

.trial-status {
    margin-top: 0.75rem;
    font-size: 0.85rem;
    min-height: 1.1rem;
}

.trial-status-success {
    color: #16a34a;
}

.trial-status-error {
    color: var(--color-danger);
}

/* Image frame on the left */
.trial-image-frame {
    margin-top: 1.75rem;
    max-width: 480px;
    height: 480px;          /* keeps it nicely aligned with the form */
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.10);
}

.trial-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;      /* fine on large screens */
}

/* Mobile / tablet */
@media (max-width: 960px) {
    .trial-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .trial-image-frame {
        max-width: 100%;
        height: auto;       /* let the image decide the height */
    }

    .trial-image {
        width: 100%;
        height: auto;       /* no forced height */
        object-fit: contain;/* show full collage, no cropping */
    }
}

/* Responsive – global */

@media (max-width: 960px) {
    .two-column {
        grid-template-columns: minmax(0, 1fr);
    }

    .pricing-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .footer-grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    }

    .header-inner {
        flex-wrap: nowrap;
        justify-content: space-between;
    }

    .header-cta {
        display: none;
    }

    .nav-toggle {
        display: inline-flex;
        flex-direction: column;
        justify-content: center;
        margin-left: auto;
        margin-right: 0.5rem;
    }

    .main-nav {
        display: flex;
        gap: 1.25rem;
        font-size: 0.92rem;
        font-weight: 500;
    }

    .main-nav a {
        color: var(--color-text);
    }

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

    .trial-wrapper {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Section background for locations */

.locations-section {
    background: linear-gradient(180deg, #eef2ff 0%, #f4f6fb 60%, #eef2ff 100%);
}

/* Make the grids inside locations-section look like the nice cards */
.locations-section .grid {
    margin-top: 2rem;
    display: grid;
    gap: 1.4rem 1.4rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* Card styling for those grids */
.locations-section .card {
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    box-shadow: 0 18px 35px rgba(15, 23, 42, 0.08);
    padding: 1.4rem 1.35rem 1.3rem;
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.locations-section .card h3 {
    margin-bottom: 0.5rem;
    font-size: 1rem;
    color: var(--color-text);
}

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

.locations-section .card:hover {
    transform: translateY(-3px);
    border-color: rgba(37, 99, 235, 0.55);
    box-shadow: 0 22px 45px rgba(15, 23, 42, 0.16);
}

/* Stack nicely on smaller screens */
@media (max-width: 960px) {
    .locations-section .grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .locations-section .grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

/* CloudSignage + CloudMusic bundle section */
.bundle-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.75rem;
}

.bundle-card {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 18px 35px rgba(15, 23, 42, 0.08);
  padding: 1.6rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.bundle-card h3 {
  font-size: 1.15rem;
  line-height: 1.3;
  margin-bottom: 0.5rem;
  color: #0f172a;
}

.bundle-subtitle {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #475569;
  margin-bottom: 1.1rem;
}

/* Checkmark list */
.bundle-list {
  list-style: none;
  padding-left: 0;
  margin: 0 0 1.4rem;
}

.bundle-list li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.45rem;
  font-size: 0.92rem;
  line-height: 1.55;
  color: #4b5563;
}

.bundle-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0.1rem;
  font-size: 0.75rem;
  color: #22c55e; /* green check */
}

/* Link pinned to bottom for consistent height */
.bundle-link {
  margin-top: auto;
  font-size: 0.9rem;
}

/* Responsive layout */
@media (max-width: 960px) {
  .bundle-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
    .bundle-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

/* AI content: soft, almost white */
.section-ai {
  background: #f7f8ff; /* very light indigo-ish */
  border-top: 0px solid rgba(148, 163, 184, 0.25);
  border-bottom: 0px solid rgba(148, 163, 184, 0.18);
}

/* Industries: slightly stronger panel, same style as your other cards */
.section-industries {
  background: linear-gradient(180deg, #eef2ff 0%, #f4f6fb 60%, #eef2ff 100%);
}

/* Bundle: CloudSignage + CloudMusic “bundle band” */
.section-bundle {
  background: radial-gradient(circle at top left, #e0f2fe 0%, #eef2ff 45%, #f9fafb 100%);
  padding: 4.5rem 0;
  border-top: 1px solid rgba(148, 163, 184, 0.25);
}
.section-bundle .container {
  max-width: 1120px;
}

.section-bundle h2 {
  text-align: left;
  margin-bottom: 1.75rem;
}