:root {
    --ink: #0a0a0f;
    --paper: #fafaf9;
    --accent: #2563eb;
    --accent-light: #60a5fa;
    --yellow: #FFCB08;
    --yellow-dark: #d4a506;
    --yellow-light: #FFF8E1;
    --yellow-muted: #FEF3C7;
    --success: #10b981;
    --success-muted: #d1fae5;
    --muted: #6b7280;
    --border: #e5e5e5;
    --gradient-start: #05387B;
    --gradient-end: #0ea5e9;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', -apple-system, sans-serif;
    background: var(--paper);
    color: var(--ink);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 16px 0;
    background: rgba(250, 250, 249, 0.8);
    backdrop-filter: blur(20px);
    border-top: 3px solid var(--yellow);
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.nav.scrolled {
    border-bottom-color: var(--border);
}

.nav-inner {
    display: flex;
    align-items: center;
    gap: 48px;
}

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

.logo svg {
    height: 36px;
    width: auto;
}

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

.nav-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s;
}

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

.nav-cta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
}

.lang-selector {
    position: relative;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 4px;
    background: transparent;
    border: none;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--muted);
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.2s;
}

.lang-btn:hover {
    background: #e8ecf1;
    color: var(--ink);
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    min-width: 140px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    z-index: 100;
    overflow: hidden;
}

.lang-selector:hover .lang-dropdown,
.mobile-lang-selector:hover .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: block;
    padding: 10px 16px;
    font-size: 0.875rem;
    color: var(--ink);
    text-decoration: none;
    transition: background 0.2s;
}

.lang-option:hover {
    background: #f5f5f5;
}

.lang-option.active {
    background: var(--yellow-light);
    color: var(--yellow-dark);
    font-weight: 500;
}

.btn {
    padding: 12px 24px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-ghost {
    background: transparent;
    color: var(--ink);
}

.btn-ghost:hover {
    background: #e8ecf1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(5, 56, 123, 0.3);
}

.btn-yellow {
    background: var(--yellow);
    color: var(--ink);
}

.btn-yellow:hover {
    background: var(--yellow-dark);
    box-shadow: 0 10px 40px rgba(255, 203, 8, 0.4);
}

.btn-yellow-outline {
    background: transparent;
    color: var(--ink);
    border: 2px solid var(--yellow);
}

.btn-yellow-outline:hover {
    background: var(--yellow);
    box-shadow: 0 10px 40px rgba(255, 203, 8, 0.3);
}

.nav-cta .btn-primary {
    background: var(--ink);
    color: white;
}

.nav-cta .btn-primary:hover {
    background: #1f1f1f;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

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

.hero {
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 203, 8, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 203, 8, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

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

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 620px;
}

.hero-visual {
    position: relative;
    z-index: 1;
}

.hero-visual .phone-mockup {
    transform: rotate(3deg);
}

.hero-visual .phone-mockup:hover {
    transform: rotate(0deg);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--success-muted);
    color: #047857;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
    animation: fadeIn 0.6s ease;
}

.hero-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero h1 {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: clamp(3rem, 7vw, 5rem);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    animation: fadeIn 0.6s ease 0.1s both;
}

.hero h1 em {
    font-style: italic;
    background: linear-gradient(135deg, var(--yellow), var(--yellow-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.25rem;
    color: var(--muted);
    max-width: 600px;
    margin-bottom: 40px;
    animation: fadeIn 0.6s ease 0.2s both;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    animation: fadeIn 0.6s ease 0.3s both;
}

.hero-cta .btn-primary {
    background: var(--yellow);
    color: var(--ink);
}

.hero-cta .btn-primary:hover {
    background: var(--yellow-dark);
    box-shadow: 0 10px 40px rgba(255, 203, 8, 0.4);
}

.hero-note {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    font-size: 0.875rem;
}

.hero-note svg {
    width: 16px;
    height: 16px;
    color: var(--success);
}

.trusted {
    padding: 60px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.trusted-label {
    text-align: center;
    font-size: 0.875rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 32px;
}

.trusted-carousel {
    position: relative;
    height: 50px;
    overflow: hidden;
}

.trusted-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
}
.trusted-slide.active {
    z-index: 1;
}

.trusted-slide .trusted-logo-img {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.trusted-slide.active .trusted-logo-img {
    opacity: 0.6;
    transform: translateY(0);
}

.trusted-slide.active .trusted-logo-img:nth-child(1) {
    transition-delay: 0ms;
}

.trusted-slide.active .trusted-logo-img:nth-child(2) {
    transition-delay: 75ms;
}

.trusted-slide.active .trusted-logo-img:nth-child(3) {
    transition-delay: 150ms;
}

.trusted-slide.active .trusted-logo-img:nth-child(4) {
    transition-delay: 225ms;
}

.trusted-slide.active .trusted-logo-img:nth-child(5) {
    transition-delay: 300ms;
}

.trusted-slide.exit .trusted-logo-img {
    opacity: 0;
    transform: translateY(-20px);
}

.trusted-slide.exit .trusted-logo-img:nth-child(1) {
    transition-delay: 0ms;
}

.trusted-slide.exit .trusted-logo-img:nth-child(2) {
    transition-delay: 50ms;
}

.trusted-slide.exit .trusted-logo-img:nth-child(3) {
    transition-delay: 100ms;
}

.trusted-slide.exit .trusted-logo-img:nth-child(4) {
    transition-delay: 150ms;
}

.trusted-slide.exit .trusted-logo-img:nth-child(5) {
    transition-delay: 200ms;
}

.trusted-logo-img {
    height: 36px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    filter: grayscale(100%);
    flex-shrink: 0;
}

.trusted-logo-img:hover {
    filter: grayscale(0%);
    opacity: 1 !important;
}

.trusted-logo {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--ink);
    letter-spacing: -0.01em;
}

.problem {
    padding: 120px 0;
}

.section-header {
    font-size: 3rem;
    font-weight: 400;
    max-width: 700px;
    margin-bottom: 64px;
}

.section-header-v1 {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: 3rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--yellow-dark);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.section-header h2 {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

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

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

.problem-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
}

.problem-card:hover {
    border-color: transparent;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    transform: translateY(-4px);
}

.problem-icon {
    width: 48px;
    height: 48px;
    background: var(--yellow);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.problem-icon svg {
    width: 24px;
    height: 24px;
    color: #063A78;
}

.problem-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
}

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

.how-it-works {
    padding: 120px 0;
    background: white;
}

.how-it-works h2 {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    line-height: 1.2;
}

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

.step-card {
    text-align: center;
    padding: 40px 32px;
}

.step-icon {
    width: 72px;
    height: 72px;
    background: var(--yellow);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.step-icon svg {
    width: 36px;
    height: 36px;
    color: #063A78;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: #e8ecf1;
    color: var(--muted);
    border-radius: 50%;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.step-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.step-card p {
    color: var(--muted);
    line-height: 1.6;
}

.solution {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--paper) 0%, #f3f4f6 100%);
}

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

.solution-visual {
    position: relative;
}

.solution-text h2 {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 24px;
}

.solution-desc {
    font-size: 1.125rem;
    color: var(--muted);
    margin-bottom: 40px;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    gap: 16px;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: var(--yellow);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 20px;
    height: 20px;
    color: #063A78;
}

.feature-item h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.feature-item p {
    font-size: 0.9rem;
    color: var(--muted);
}

.phone-mockup {
    background: var(--ink);
    border-radius: 40px;
    padding: 8px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.25);
    max-width: 280px;
    margin: 0 auto;
    transform: rotate(-3deg);
    transition: transform 0.3s ease;
}

.phone-screenshot {
    width: 100%;
    display: block;
    border-radius: 32px;
}

.phone-mockup:hover {
    transform: rotate(0deg);
}

.phone-screen {
    background: white;
    border-radius: 32px;
    overflow: hidden;
}

.phone-screen-v1 {
    width: 100%;
    height: 100%;
    background: #1a1a1a;
    border-radius: 32px;
    overflow: hidden;
    position: relative;
}

.phone-header {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    padding: 40px 20px 20px;
    color: white;
}

.phone-header h4 {
    font-size: 0.75rem;
    opacity: 0.8;
    margin-bottom: 4px;
}

.phone-header h3 {
    font-size: 1.125rem;
    font-weight: 600;
}

.phone-body {
    padding: 20px;
}

.schedule-item:last-child {
    border-bottom: none;
}

.schedule-item.completed {
    opacity: 0.6;
}

.schedule-item.active {
    opacity: 1;
    background: #eff6ff;
    margin: 0 -20px;
    padding: 10px 20px;
    border-bottom: none;
}

.schedule-item:not(.completed):not(.active) {
    opacity: 0.8;
}

.schedule-item.completed .schedule-title {
    text-decoration: line-through;
    color: var(--muted);
}

.schedule-badge.done {
    background: #d1fae5;
    color: #047857;
}

.schedule-badge.pending {
    background: #dbeafe;
    color: #1d4ed8;
}

.phone-body-form {
    padding: 16px 20px;
}

.form-field {
    margin-bottom: 14px;
}

.form-field label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--muted);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.form-input {
    background: #f9fafb;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.form-input.filled {
    background: white;
}

.form-input.active {
    background: white;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.input-value {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--ink);
}

.input-status {
    font-size: 0.7rem;
    font-weight: 600;
}

.input-status.ok {
    color: #047857;
}

.input-cursor {
    color: var(--accent);
    animation: blink 1s infinite;
}

.form-upload {
    background: #f9fafb;
    border: 2px dashed var(--border);
    border-radius: 8px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--muted);
    font-size: 0.8rem;
}

.form-textarea {
    background: #f9fafb;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 10px 12px;
    min-height: 50px;
}

.textarea-placeholder {
    font-size: 0.8rem;
    color: #9ca3af;
}

.checklist-item:last-child {
    border-bottom: none;
}

.check-circle.done {
    background: var(--success);
    border-color: var(--success);
    color: white;
}

.check-circle svg {
    width: 14px;
    height: 14px;
}

.checklist-item span {
    font-size: 0.875rem;
    color: var(--ink);
}

.checklist-item.done span {
    text-decoration: line-through;
    color: var(--muted);
}

.floating-card {
    position: absolute;
    background: white;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
    animation: float 3s ease-in-out infinite;
}

.floating-card.temp {
    top: 20%;
    right: -20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.temp-icon {
    width: 28px;
    height: 28px;
    background: #dbeafe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
}

.temp-text {
    font-size: 0.8rem;
    font-weight: 500;
}

.floating-card.notification {
    bottom: 35%;
    left: -20px;
    animation-delay: 1.5s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.notif-icon {
    width: 28px;
    height: 28px;
    background: #fef3c7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d97706;
    flex-shrink: 0;
}

.notif-dot {
    width: 10px;
    height: 10px;
    background: var(--success);
    border-radius: 50%;
}

.notif-text {
    font-size: 0.8rem;
    font-weight: 500;
}

.floating-card.completed {
    bottom: 10%;
    right: 0;
    left: auto;
    animation-delay: 2s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.completed-icon {
    width: 28px;
    height: 28px;
    background: var(--success-muted);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--success);
    flex-shrink: 0;
}

.completed-text {
    font-size: 0.8rem;
    font-weight: 500;
}

.industries {
    padding: 120px 0;
}

.industries-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 64px;
}

.industries-header h2 {
    font-family: 'DM Sans', -apple-system, sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.industries-grid-main {
    grid-template-columns: repeat(4, 1fr);
}

.industry-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 0;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
    overflow: hidden;
}

.industry-card:hover {
    border-color: var(--yellow);
    box-shadow: 0 20px 60px rgba(255, 203, 8, 0.2);
    transform: translateY(-4px);
}

.industry-card:hover .industry-image {
    transform: scale(1.05);
}

.industry-image {
    width: 100%;
    height: 120px;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: transform 0.5s ease;
}

.industry-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 50%, rgba(0,0,0,0.15) 100%);
}

.industry-card-content {
    padding: 24px 20px 28px;
}

.industry-icon {
    width: 52px;
    height: 52px;
    margin: -40px auto 14px;
    background: var(--yellow);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.industry-icon svg {
    width: 26px;
    height: 26px;
    color: #063A78;
}

.industry-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.industry-card p {
    font-size: 0.85rem;
    color: var(--muted);
    margin: 0;
}

.industries-more {
    text-align: center;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.industries-more p {
    color: var(--muted);
    font-size: 0.95rem;
}

.industries-more a {
    color: var(--yellow-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.industries-more a:hover {
    color: var(--yellow-dark);
    text-decoration: underline;
}

.stats {
    padding: 100px 0;
    background: var(--ink);
    color: white;
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.stat-item h3 {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    color: var(--yellow);
    margin-bottom: 8px;
}

.stat-item p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}

.testimonial {
    padding: 120px 0;
    background: #f8f8f6;
}

.testimonial-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.quote-mark {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: 6rem;
    line-height: 1;
    color: var(--yellow);
    opacity: 0.8;
    margin-bottom: -40px;
}

.testimonial blockquote {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 32px;
    color: var(--ink);
}

.testimonial-slider {
    position: relative;
    min-height: 280px;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    pointer-events: none;
}

.testimonial-slide.active {
    position: relative;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: var(--border);
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.testimonial-dot:hover {
    background: var(--muted);
}

.testimonial-dot.active {
    background: var(--yellow);
    transform: scale(1.2);
}

.app-download {
    padding: 80px 0;
    background: white;
}

.app-download-content {
    text-align: center;
}

.app-download-content h2 {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 8px;
}

.app-download-content > p {
    color: var(--muted);
    margin-bottom: 24px;
}

.app-store-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.app-store-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--ink);
    color: white;
    padding: 12px 24px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.app-store-btn:hover {
    background: #1f1f1f;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.app-store-btn svg {
    flex-shrink: 0;
}

.app-store-text {
    display: flex;
    flex-direction: column;
    text-align: left;
    line-height: 1.2;
}

.app-store-text span {
    font-size: 0.7rem;
    opacity: 0.8;
}

.app-store-text strong {
    font-size: 1.1rem;
    font-weight: 600;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.author-avatar {
    width: 56px;
    height: 56px;
    background: #e8ecf1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4a5568;
    font-weight: 600;
    font-size: 1.25rem;
}

.author-logo {
    width: 56px;
    height: 56px;
    object-fit: contain;
    border-radius: 8px;
    flex-shrink: 0;
}

.author-info h4 {
    font-weight: 600;
    margin-bottom: 2px;
    text-align: left;
}

.author-info p {
    color: var(--muted);
    font-size: 0.9rem;
    text-align: left;
}

.cta {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 50%);
    animation: rotate 20s linear infinite;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta h2 {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 400;
    margin-bottom: 20px;
}

.cta > .container > p {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 500px;
    margin: 0 auto 40px;
}

.cta-content p {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 500px;
    margin: 0 auto 40px;
}

.cta .btn-primary {
    background: var(--yellow);
    color: var(--ink);
}

.cta .btn-primary:hover {
    box-shadow: 0 10px 40px rgba(255, 203, 8, 0.4);
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    opacity: 0.9;
}

.cta-feature svg {
    width: 18px;
    height: 18px;
}

.footer {
    background: var(--ink);
    color: white;
    padding: 80px 0 140px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-brand p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    max-width: 280px;
    margin: 0;
}

.social-icons {
    display: flex;
    gap: 16px;
    margin-top: 20px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    color: rgba(255,255,255,0.7);
    transition: all 0.2s ease;
}

.social-icons a:hover {
    background: var(--yellow);
    color: var(--ink);
}

.footer-col h4 {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.5);
}

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

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

.footer-col a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: white;
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 0.875rem;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s;
}

.footer-legal a:hover {
    color: white;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.industry-hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.industry-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.industry-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.industry-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(10, 10, 15, 0.95) 0%, rgba(10, 10, 15, 0.7) 50%, rgba(10, 10, 15, 0.4) 100%);
}

.industry-hero .container {
    position: relative;
    z-index: 1;
}

.industry-hero-content {
    max-width: 600px;
    padding: 60px 0;
    margin: 0 auto;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 24px;
    transition: color 0.2s;
}

.back-link:hover {
    color: white;
}

.industry-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--yellow);
    padding: 10px 20px;
    border-radius: 100px;
    margin-bottom: 24px;
    font-weight: 600;
    color: var(--ink);
}

.industry-hero h1 {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 400;
    line-height: 1.15;
    color: white;
    margin-bottom: 20px;
}

.industry-hero h1 em {
    font-style: italic;
}

.industry-hero p {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 32px;
    line-height: 1.6;
}

.btn-ghost-light {
    background: transparent;
    color: white;
    border: 1px solid rgba(255,255,255,0.3);
}

.btn-ghost-light:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
}

.pain-card {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 20px;
    padding: 32px;
}

.pain-icon {
    width: 56px;
    height: 56px;
    background: white;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.pain-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #991b1b;
}

.pain-card p {
    color: #b91c1c;
    line-height: 1.6;
}

.use-case-card {
    background: var(--paper);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.use-case-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: var(--yellow);
}

.use-case-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.use-case-card h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.use-case-card p {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.5;
}

.nav-links a.active {
    color: var(--ink);
}

.solution-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px 32px;
    transition: all 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    border-color: var(--yellow);
}

.solution-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.solution-card p {
    color: var(--muted);
    line-height: 1.7;
}

.solution-icon {
    width: 56px;
    height: 56px;
    background: var(--yellow);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.solution-icon svg {
    width: 28px;
    height: 28px;
    color: var(--gradient-start);
}

.phone-mockup-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.phone-frame {
    width: 280px;
    height: 560px;
    background: var(--ink);
    border-radius: 44px;
    padding: 12px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.25);
}

.phone-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.phone-slide.active {
    opacity: 1;
}

.phone-dots {
    display: flex;
    gap: 10px;
    margin-top: 24px;
}

.phone-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: all 0.3s ease;
}

.phone-dot.active {
    background: var(--yellow);
    transform: scale(1.2);
}

.phone-dot:hover {
    background: var(--yellow-dark);
}

.proof-section {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.proof-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.proof-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.proof-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(5, 56, 123, 0.95) 0%, rgba(5, 56, 123, 0.7) 50%, rgba(5, 56, 123, 0.3) 100%);
}

.proof-section .container {
    position: relative;
    z-index: 1;
    padding: 120px 24px;
}

.proof-content {
    max-width: 560px;
}

.before-after-compare {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.compare-card {
    padding: 32px 28px;
    border-radius: 20px;
    position: relative;
}

.compare-card.before {
    background: #fef2f2;
    border: 1px solid #fecaca;
}

.compare-card.after {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
}

.compare-label {
    position: absolute;
    top: -12px;
    left: 24px;
    padding: 4px 14px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.compare-card.before .compare-label {
    background: #dc2626;
    color: white;
}

.compare-card.after .compare-label {
    background: var(--success);
    color: white;
}

.compare-icon {
    margin-bottom: 20px;
}

.compare-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.compare-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    line-height: 1.4;
}

.compare-list li svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.compare-card.before .compare-list li {
    color: #991b1b;
}

.compare-card.after .compare-list li {
    color: #166534;
}

/* ============================================================
   MOBILE NAVIGATION
   ============================================================ */

/* Mobile Language Selector - hidden on desktop */
.mobile-lang-selector {
    display: none;
    position: relative;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    margin-left: auto;
}

.hamburger-line {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 999;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.mobile-sidebar.active {
    transform: translateX(0);
}

.mobile-sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.2s;
}

.mobile-close:hover {
    color: white;
}

.mobile-sidebar-links {
    display: flex;
    flex-direction: column;
    padding: 20px;
    gap: 4px;
}

.mobile-sidebar-links a {
    display: block;
    padding: 14px 16px;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 10px;
    transition: all 0.2s;
}

.mobile-sidebar-links a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.mobile-sidebar-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: auto;
}

.mobile-sidebar-cta .btn-ghost {
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-sidebar-cta .btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.mobile-sidebar-cta .btn-primary {
    background: var(--yellow);
    color: var(--ink);
}

.mobile-sidebar-cta .btn-primary:hover {
    background: var(--yellow-dark);
}

.btn-block {
    width: 100%;
    text-align: center;
    justify-content: center;
}

.mobile-sidebar-lang {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 16px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-lang-option {
    padding: 8px 14px;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s;
}

.mobile-lang-option:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.mobile-lang-option.active {
    background: var(--yellow);
    color: var(--ink);
}

body.menu-open {
    overflow: hidden;
}

/* Resources Page */
.resource-card {
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 16px;
    padding: 32px;
    text-decoration: none;
    color: var(--ink);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.resource-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: var(--yellow);
}

.resource-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--ink);
}

.resource-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.resource-card p {
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 16px;
}

.resource-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--yellow-dark);
    font-size: 0.95rem;
    margin-top: auto;
}

.resource-link svg {
    transition: transform 0.2s;
}

.resource-card:hover .resource-link svg {
    transform: translateX(4px);
}

.guide-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: white;
    border-radius: 16px;
    padding: 24px;
    text-decoration: none;
    color: var(--ink);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.guide-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: var(--yellow);
}

.guide-number {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: 2rem;
    color: var(--yellow);
    line-height: 1;
    flex-shrink: 0;
}

.guide-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.guide-content p {
    font-size: 0.9rem;
    line-height: 1.5;
}

.support-card {
    padding: 32px 24px;
}

.support-card h4 {
    font-size: 1.1rem;
}

.support-card button {
    background: none;
    border: none;
    cursor: pointer;
}

/* Blog Article Prose */
.prose {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--ink);
}

.prose p {
    margin-bottom: 1.5rem;
}

.prose h2 {
    color: var(--ink);
}

.prose h3 {
    color: var(--ink);
}

.prose a {
    color: var(--yellow-dark);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.prose a:hover {
    color: var(--ink);
}

.prose ul,
.prose ol {
    margin-bottom: 1.5rem;
}

.prose li {
    margin-bottom: 0.5rem;
}

.prose strong {
    font-weight: 600;
}

.prose blockquote {
    border-left: 4px solid var(--yellow);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--muted);
}

/* Blog Filter Buttons */
.blog-filter-btn {
    padding: 10px 20px;
    border: 1px solid var(--border);
    background: white;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--muted);
    cursor: pointer;
    transition: all 0.2s ease;
}

.blog-filter-btn:hover {
    border-color: var(--yellow);
    color: var(--ink);
}

.blog-filter-btn.active {
    background: var(--yellow);
    border-color: var(--yellow);
    color: var(--ink);
}

/* Blog post visibility for filtering */
[data-category].hidden {
    display: none;
}

/* Section padding utilities (must be before media queries) */
.section-py { padding: 120px 0; }
.section-py-sm { padding: 80px 0; }
.section-py-md { padding: 100px 0; }

/* ============================================================
   UTILITY CLASSES
   ============================================================ */

.text-muted { color: var(--muted); }
.text-success { color: var(--success); }
.text-yellow { color: var(--yellow-dark); }
.text-xs { font-size: 0.8rem; }
.text-sm { font-size: 0.85rem; }
.text-base { font-size: 0.9rem; }
.text-md { font-size: 0.95rem; }
.max-w-500 { max-width: 500px; }
.max-w-600 { max-width: 600px; }
.max-w-700 { max-width: 700px; }
.max-w-800 { max-width: 800px; }
.max-w-1000 { max-width: 1000px; }
.max-w-1050 { max-width: 1050px; }

/* Background Utilities */
/* Note: .bg-white provided by Tailwind */
.bg-paper { background: var(--paper); }
.bg-yellow { background: var(--yellow); }
.bg-yellow-light { background: var(--yellow-light); }
.bg-success-muted { background: var(--success-muted); }
.bg-gradient-yellow { background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); }
.bg-gradient-blue { background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%); }
.bg-gradient-green { background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%); }

.checkmark-circle {
    width: 24px;
    height: 24px;
    background: var(--success-muted);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkmark-circle svg {
    width: 14px;
    height: 14px;
    stroke: var(--success);
}

.icon-wrapper-sm {
    width: 28px;
    height: 28px;
    background: var(--yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-wrapper-md {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-wrapper-lg {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notification-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 20px;
    transition: transform 0.3s;
}

.notification-card:hover {
    transform: translateY(-2px);
}

.feature-list-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

/* Heading Styles */
.heading-serif {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.2;
}

.heading-serif-lg {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: 2.5rem;
    font-weight: 400;
}

.heading-serif-xl {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: 3.5rem;
    font-weight: 400;
}

.mx-neg-20 { margin-left: -20px; margin-right: -20px; }
.border-b { border-bottom: 1px solid var(--border); }

/* Pricing-specific components */
.price-display {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 600;
}

.price-label {
    font-size: 1rem;
    color: var(--muted);
}

.price-period {
    color: var(--muted);
}

.pricing-tier {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 12px;
    padding-top: 12px;
}

.pricing-tier-highlight {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    margin: 0 -28px;
    background: var(--ink);
    color: white;
    border-radius: 10px;
}

.pricing-table {
    background: var(--paper);
    border-radius: 16px;
    padding: 0 20px;
    margin-bottom: 28px;
}

.pricing-card {
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
}

.badge-or {
    width: 56px;
    height: 56px;
    background: var(--yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.tag-badge {
    background: var(--paper);
    padding: 6px 12px;
    border-radius: 100px;
    font-size: 0.8rem;
    color: var(--muted);
}

.feature-check-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

/* Mock device displays */
.mock-card {
    background: white;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 320px;
}

.mock-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.mock-card-title {
    font-weight: 600;
}

.mock-card-time {
    font-size: 0.75rem;
    color: var(--muted);
}

.temp-reading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-radius: 12px;
}

.temp-reading-success {
    background: var(--success-muted);
}

.temp-reading-error {
    background: #fee2e2;
}

.temp-value-success {
    font-weight: 600;
    color: var(--success);
}

.temp-value-error {
    font-weight: 600;
    color: #dc2626;
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.status-dot-success {
    background: var(--success);
}

.status-dot-pending {
    background: var(--yellow);
}

.status-dot-inactive {
    background: var(--border);
}

/* Color utilities */
.color-ink { color: var(--ink); }

/* Heading utilities */
.heading-section {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 40px 0 16px;
    font-family: 'Instrument Serif', Georgia, serif;
}

/* Label utilities */
.label-small {
    font-size: 0.7rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

/* Badge utilities */
.badge-tag {
    background: var(--paper);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    color: var(--muted);
}

/* Checkmark box */
.checkmark-box {
    width: 24px;
    height: 24px;
    background: var(--success);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Font weight combinations */
.font-11-semibold-mb-10 { font-size: 1.1rem; font-weight: 600; margin-bottom: 10px; line-height: 1.4; }
.font-11-semibold-mb-8 { font-gsize: 1.1rem; font-weight: 600; margin-bottom: 8px; }
.font-11-semibold-mb-12 { font-size: 1.1rem; font-weight: 600; margin-bottom: 12px; }
.font-11-semibold-my-24-12 { font-size: 1.1rem; font-weight: 600; margin: 24px 0 12px; }
.font-12-semibold-mb-10 { font-size: 1.2rem; font-weight: 600; margin-bottom: 10px; }
.font-125-semibold-mb-8 { font-size: 1.25rem; font-weight: 600; margin-bottom: 8px; }
.font-125-semibold { font-size: 1.25rem; font-weight: 600; }
.font-1-semibold-mb-6 { font-size: 1rem; font-weight: 600; margin-bottom: 6px; }
.font-15-semibold-success { font-size: 1.5rem; font-weight: 600; color: var(--success); }
.font-success-semibold { color: var(--success); font-weight: 600; }
.font-yellow-semibold { font-weight: 600; color: var(--yellow-dark); }

/* Card/Box patterns */
.card-white-shadow {
    background: white;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.card-paper-rounded {
    background: var(--paper);
    border-radius: 20px;
    padding: 32px;
}

.card-paper-hover {
    background: var(--paper);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

/* Badge patterns */
.badge-yellow-pill {
    background: var(--yellow);
    padding: 4px 10px;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 600;
}

.badge-white-small {
    background: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    color: var(--muted);
}

/* Yellow background patterns */
.bg-yellow-light-pill {
    background: #fef3c7;
    border-radius: 12px;
    padding: 12px 16px;
}

.bg-yellow-light-pill-14 {
    background: #fef3c7;
    border-radius: 12px;
    padding: 14px 16px;
}

.bg-success-pill-12 {
    background: var(--success-muted);
    border-radius: 10px;
    padding: 12px 14px;
}

/* Code/Syntax colors */
.color-code-blue { color: #a5d6ff; }
.color-code-gray { color: #c9d1d9; }

/* Image utilities */
.img-cover-180 {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

/* Dot indicator */
.dot-yellow-center {
    width: 12px;
    height: 12px;
    background: var(--yellow);
    border-radius: 50%;
    margin: 0 auto 16px;
}

/* Form input */
.input-full {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: 10px;
    font-size: 1rem;
    box-sizing: border-box;
}

.card-paper-center {
    background: var(--paper);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
}

.card-paper-flex-gap {
    background: var(--paper);
    padding: 12px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Badge patterns (additional) */
.badge-success-pill {
    background: var(--success);
    color: white;
    padding: 4px 10px;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 600;
}

.badge-success-small {
    font-size: 0.75rem;
    background: var(--success);
    color: white;
    padding: 2px 8px;
    border-radius: 100px;
}

/* Icon boxes */
.icon-box-56 {
    width: 56px;
    height: 56px;
    background: var(--paper);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.icon-box-40 {
    width: 40px;
    height: 40px;
    background: var(--border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Background patterns (additional) */
.bg-success-rounded-16 {
    padding: 16px;
    background: var(--success-muted);
    border-radius: 12px;
}

.bg-success-rounded-14 {
    padding: 14px 16px;
    background: var(--success-muted);
    border-radius: 12px;
}

/* Table utilities */
.table-full {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.td-12-semibold { padding: 12px 0; font-weight: 600; }

/* Section utilities (additional) */
.section-center-700 {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.section-center-mb-48 {
    text-align: center;
    margin-bottom: 48px;
}

.section-py-120-80-paper {
    padding: 120px 0 80px;
    background: var(--paper);
}

.section-py-120-60-paper {
    padding: 120px 0 60px;
    background: var(--paper);
}

.section-py-60-100-paper {
    padding: 60px 0 100px;
    background: var(--paper);
}

/* ============================================================
   HELP CENTER STYLES
   ============================================================ */

/* Search Box */
.search-box {
    position: relative;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    padding: 0 20px;
}

.search-icon {
    color: var(--muted);
    flex-shrink: 0;
}

.search-input {
    flex: 1;
    padding: 18px 16px;
    border: none;
    background: transparent;
    font-size: 1rem;
    outline: none;
}

.search-input::placeholder {
    color: var(--muted);
}

/* Quick Access Cards */
.quick-access-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 28px 20px;
    background: white;
    border-radius: 16px;
    border: 1px solid var(--border);
    text-decoration: none;
    color: var(--ink);
    transition: all 0.3s ease;
}

.quick-access-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    border-color: var(--yellow);
}

.quick-access-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.quick-access-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

/* Manual Cards */
.manual-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: white;
    border-radius: 14px;
    border: 1px solid var(--border);
    text-decoration: none;
    color: var(--ink);
    transition: all 0.3s ease;
}

.manual-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    border-color: var(--yellow);
}

.manual-icon {
    width: 44px;
    height: 44px;
    background: var(--paper);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--ink);
}

.manual-content {
    flex: 1;
}

.manual-content h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.manual-time {
    font-size: 0.8rem;
    color: var(--muted);
    flex-shrink: 0;
}

/* Manual Category */
.manual-category {
    background: white;
    border-radius: 16px;
    padding: 28px;
    border: 1px solid var(--border);
}

.manual-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    text-decoration: none;
    color: var(--ink);
    font-size: 0.95rem;
    border-bottom: 1px solid var(--border);
    transition: color 0.2s;
}

.manual-link:last-child {
    border-bottom: none;
}

.manual-link:hover {
    color: var(--yellow-dark);
}

.manual-link svg {
    flex-shrink: 0;
    color: var(--muted);
}

.manual-link:hover svg {
    color: var(--yellow-dark);
}

/* Manual Link Static (non-clickable) */
.manual-link-static {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    color: var(--muted);
    font-size: 0.95rem;
    border-bottom: 1px solid var(--border);
}

.manual-link-static:last-child {
    border-bottom: none;
}

.manual-link-static svg {
    flex-shrink: 0;
    color: var(--muted);
    opacity: 0.6;
}

/* Manual Badge */
.manual-badge {
    display: inline-block;
    padding: 4px 10px;
    background: var(--paper);
    color: var(--muted);
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: 6px;
    margin-top: auto;
}

/* Troubleshooting Cards */
.troubleshooting-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: white;
    border-radius: 16px;
    border: 1px solid var(--border);
    color: var(--ink);
}

.troubleshooting-icon {
    width: 52px;
    height: 52px;
    background: var(--paper);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.troubleshooting-card h4 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 4px;
}

/* Industry Manual Cards */
.industry-manual-card {
    background: white;
    border-radius: 16px;
    padding: 28px;
    border: 1px solid var(--border);
    text-align: center;
}

.industry-manual-icon {
    width: 64px;
    height: 64px;
    background: var(--yellow-light);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--ink);
}

.industry-manual-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.industry-manual-list {
    list-style: none;
    text-align: left;
    font-size: 0.9rem;
    color: var(--muted);
}

.industry-manual-list li {
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
}

.industry-manual-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--yellow);
    border-radius: 50%;
}

/* Related templates - horizontal swiper on mobile */

/* ============================================================
   RESPONSIVE STYLES - ALL MEDIA QUERIES BELOW
   ============================================================ */

@media (max-width: 1024px) {
    .nav-inner {
        gap: 12px;
    }

    .hamburger {
        display: flex;
        margin-left: 0;
    }

    .mobile-lang-selector {
        display: flex;
        margin-left: auto;
    }

    .mobile-lang-selector .lang-btn {
        padding: 8px 12px;
        font-size: 0.85rem;
    }

    .mobile-lang-selector .lang-dropdown {
        right: 0;
        min-width: 120px;
    }

    .nav-links,
    .nav-cta {
        display: none;
    }

    /* Floating cards positioning */
    .floating-card.temp {
        right: -60px;
    }

    .floating-card.notification {
        left: -60px;
    }

    .floating-card.completed {
        right: -50px;
    }

    /* Grid responsive - 2 columns on tablet */
    .grid-cols-3,
    .grid-cols-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-cols-2 {
        grid-template-columns: 1fr;
    }

    /* Pricing cards stack */
    .grid-cols-\[1fr_auto_1fr\] {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .badge-or {
        display: none;
    }

    /* Reset order on tablet */
    .order-1,
    .order-2 {
        order: 0;
    }

    /* Before/after compare */
    .before-after-compare {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    /* Proof section */
    .proof-content {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    /* Typography scaling */
    .heading-serif-xl {
        font-size: 2.5rem;
    }

    .heading-serif-lg {
        font-size: 2rem;
    }

    .heading-serif {
        font-size: 1.75rem;
    }

    .text-2xl {
        font-size: 1.5rem;
    }

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

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

    /* All grids to single column */
    .grid-cols-2,
    .grid-cols-3,
    .grid-cols-4,
    .grid-cols-\[1fr_auto_1fr\] {
        grid-template-columns: 1fr;
    }

    /* Related templates: horizontal swiper on mobile */
    .related-grid {
        display: flex;
        gap: 16px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 8px;
        scrollbar-width: none;
    }

    .related-grid::-webkit-scrollbar {
        display: none;
    }

    .related-grid > div {
        flex: 0 0 80%;
        max-width: 300px;
        scroll-snap-align: start;
    }

    /* Section padding - reduced for interior sections, keep hero sections larger */

    /* Interior section padding - tighter on mobile */
    .section-py {
        padding: 40px 0;
    }

    .section-py-md {
        padding: 32px 0;
    }

    .section-py-sm {
        padding: 24px 0;
    }

    /* Hero sections - keep larger padding for first sections */
    .pt-40 {
        padding-top: 120px;
    }

    .pt-30 {
        padding-top: 100px;
    }

    .pb-25 {
        padding-bottom: 60px;
    }

    .pb-20 {
        padding-bottom: 48px;
    }

    .pb-15 {
        padding-bottom: 40px;
    }

    /* Interior sections with py- classes */
    .py-25 {
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .py-20 {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .pt-15 {
        padding-top: 40px;
    }

    .pt-10 {
        padding-top: 32px;
    }

    /* Industry cards - horizontal layout on mobile */
    .industries-grid,
    .industries-grid-main {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .industry-card {
        display: flex;
        flex-direction: row;
        text-align: left;
    }

    .industry-image {
        width: 100px;
        min-width: 100px;
        height: auto;
        min-height: 100%;
        border-radius: 20px 0 0 20px;
    }

    .industry-card-content {
        padding: 16px;
        flex: 1;
    }

    .industry-icon {
        margin: 0 0 10px 0;
        width: 40px;
        height: 40px;
    }

    .industry-icon svg {
        width: 20px;
        height: 20px;
    }

    .industry-card h3 {
        font-size: 0.9rem;
        margin-bottom: 4px;
    }

    .industry-card p {
        font-size: 0.75rem;
        line-height: 1.4;
    }

    /* Use case cards - horizontal layout on mobile */
    .use-case-card {
        display: grid;
        grid-template-columns: auto 1fr;
        grid-template-rows: auto auto;
        text-align: left;
        gap: 4px 16px;
        padding: 20px;
    }

    .use-case-icon {
        grid-row: 1 / 3;
        margin-bottom: 0;
        font-size: 1.5rem;
        align-self: center;
    }

    .use-case-card h4 {
        font-size: 0.9rem;
        margin-bottom: 0;
        align-self: end;
    }

    .use-case-card p {
        font-size: 0.8rem;
        align-self: start;
    }

    /* Index page specific sections */
    .trusted {
        padding: 32px 0;
    }

    .problem {
        padding: 48px 0;
    }

    .solution {
        padding: 48px 0;
    }

    .how-it-works {
        padding: 48px 0;
    }

    .industries {
        padding: 48px 0;
    }

    /* Footer sections */
    .app-download {
        padding: 48px 0;
    }

    .cta {
        padding: 48px 0;
    }

    /* Container padding */
    .container {
        padding: 0 24px;
    }

    /* Hero section */
    .hero {
        padding: 120px 0 60px;
    }

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

    .hero p {
        font-size: 1.1rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-cta .btn {
        width: 100%;
        justify-content: center;
    }

    /* Trusted logos */
    .trusted-slide {
        gap: 24px;
        flex-wrap: wrap;
    }

    .trusted-logo-img {
        height: 28px;
        max-width: 90px;
    }

    /* Cards */
    .pricing-card {
        padding: 28px;
    }

    .solution-card {
        padding: 28px 24px;
    }

    .problem-card {
        padding: 24px;
    }

    /* Phone mockup */
    .phone-mockup {
        max-width: 226px;
    }

    .phone-frame {
        width: 226px;
        height: 480px;
    }

    /* Industry hero */
    .industry-hero {
        min-height: 500px;
    }

    .industry-hero h1 {
        font-size: 2rem;
    }

    /* Footer */
    .footer-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px 20px;
    }

    .footer-brand {
        grid-column: 1 / -1;
        text-align: center;
        margin-bottom: 16px;
    }

    .footer-brand .logo {
        display: flex;
        justify-content: center;
    }

    .footer-brand p {
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .footer-brand .social-icons {
        justify-content: center;
    }

    .footer-col {
        text-align: left;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .footer-legal {
        flex-direction: column;
        align-items: center;
        gap: 6px;
    }

    /* Buttons */
    .btn-large {
        padding: 14px 24px;
        font-size: 0.95rem;
    }

    /* Feature rows - stack vertically */
    .feature-list-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    /* Stats grid */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .stat-item h3 {
        font-size: 2.5rem;
    }

    /* Notification cards */
    .notification-card {
        flex-wrap: wrap;
        gap: 12px;
    }

    /* Max width utilities */
    .max-w-500,
    .max-w-600,
    .max-w-700,
    .max-w-800,
    .max-w-1000,
    .max-w-1050 {
        max-width: 100%;
    }

    /* Gap adjustments */
    .gap-20 {
        gap: 40px;
    }

    .gap-8 {
        gap: 24px;
    }

    /* Flex wrap */
    .flex-wrap {
        flex-wrap: wrap;
    }

    /* CTA sections */
    .cta h2 {
        font-size: 2rem;
    }

    /* FAQ items */
    .faq-item {
        padding: 24px;
    }

    /* Testimonial */
    .testimonial blockquote {
        font-size: 1.25rem;
    }

    .quote-mark {
        font-size: 4rem;
        margin-bottom: -24px;
    }

    /* All plans include grid */
    .grid.grid-cols-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Large serif headings */
    .font-serif.text-5xl,
    .text-5xl {
        font-size: 2.5rem;
    }

    .text-4xl {
        font-size: 2rem;
    }

    .text-3xl {
        font-size: 1.75rem;
    }

    /* About page numbers */
    .font-serif.text-6xl,
    .text-6xl {
        font-size: 3rem;
    }

    .font-serif.text-7xl,
    .text-7xl {
        font-size: 4rem;
    }

    /* Contact form grid */
    .grid-cols-2.gap-5 {
        grid-template-columns: 1fr;
    }

    /* Form styling */
    .p-12 {
        padding: 24px;
    }

    .p-10 {
        padding: 24px;
    }

    .p-8 {
        padding: 20px;
    }

    /* Mock cards */
    .mock-card {
        max-width: 100%;
    }

    /* Feature rows with gradient backgrounds */
    .feature-row .bg-gradient-yellow,
    .feature-row .bg-gradient-blue,
    .feature-row .bg-gradient-green {
        padding: 24px;
    }

    /* Industry hero adjustments */
    .industry-hero-content {
        text-align: center;
    }

    .industry-hero .hero-cta {
        justify-content: center;
    }

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

    .industry-badge {
        margin-left: auto;
        margin-right: auto;
    }

    /* Section headers */
    .section-header-v1 {
        font-size: 2rem;
    }

    /* Yellow CTA section heading */
    .section-py-sm.bg-yellow h2 {
        line-height: 1.1;
    }

    /* CTA features spacing */
    .cta-features {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    /* Blog featured article - image on top */
    .grid-cols-\[1\.2fr_1fr\] {
        grid-template-columns: 1fr;
    }

    .grid-cols-\[1\.2fr_1fr\] img {
        min-height: 200px;
    }

    .grid-cols-\[1\.2fr_1fr\] > div:last-child {
        padding: 24px;
    }

    /* Blog newsletter form - stack vertically */
    .bg-yellow form.flex {
        flex-direction: column;
        align-items: center;
    }

    .bg-yellow form.flex input {
        width: 100%;
        text-align: center;
    }

    .bg-yellow form.flex button {
        width: auto;
    }

    /* App download buttons - smaller on mobile */
    .app-store-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .app-store-btn {
        padding: 10px 20px;
        gap: 10px;
        width: auto;
    }

    .app-store-btn svg {
        width: 20px;
        height: 20px;
    }

    .app-store-text span {
        font-size: 0.65rem;
    }

    .app-store-text strong {
        font-size: 0.9rem;
    }

    /* Card padding adjustments */
    .card-paper-rounded {
        padding: 24px;
    }

    .card-white-shadow {
        padding: 24px;
    }

    /* Reduce gaps */
    .gap-20 {
        gap: 32px;
    }

    .gap-12 {
        gap: 24px;
    }

    .mb-25 {
        margin-bottom: 40px;
    }

    .mb-20 {
        margin-bottom: 32px;
    }

    .mb-16 {
        margin-bottom: 28px;
    }

    .mb-12 {
        margin-bottom: 24px;
    }

    /* Resources page mobile */
    .resource-card {
        padding: 24px;
    }

    .resource-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 16px;
    }

    .guide-card {
        padding: 20px;
        gap: 16px;
    }

    .guide-number {
        font-size: 1.5rem;
    }

    .support-card {
        padding: 24px 16px;
    }
}

@media (max-width: 480px) {
    /* Extra small screens */
    .hero h1 {
        font-size: 1.875rem;
    }

    .font-serif.text-5xl,
    .text-5xl {
        font-size: 2rem;
    }

    .heading-serif-xl {
        font-size: 2rem;
    }

    .heading-serif-lg {
        font-size: 1.75rem;
    }

    /* Stats grid single column */
    .stats-grid,
    .grid.grid-cols-4 {
        grid-template-columns: 1fr;
    }

    /* Numbers on about page */
    .font-serif.text-6xl,
    .text-6xl {
        font-size: 2.5rem;
    }

    /* Buttons stack */
    .hero-cta {
        gap: 12px;
    }

    .btn-large {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    /* Container padding */
    .container {
        padding: 0 20px;
    }
}

/* Mobile apps page device mockups */
@media (max-width: 768px) {
    /* Phone and tablet mockups scale */
    .w-\[280px\],
    .w-\[340px\] {
        width: 220px;
    }

    .w-\[400px\] {
        width: 280px;
    }

    .w-\[200px\] {
        width: 160px;
    }

    /* Device flex layout */
    .flex.justify-center.items-end.gap-10 {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

    /* Miratag classic card */
    .max-w-800.mx-auto.bg-white.rounded-3xl.p-12.flex {
        flex-direction: column;
        text-align: center;
        padding: 24px;
    }

    .max-w-800.mx-auto.bg-white.rounded-3xl.p-12.flex .flex-1 {
        order: 1;
    }

    /* Hide decorative elements on mobile */
    .absolute.left-\[10\%\],
    .absolute.right-\[15\%\] {
        display: none;
    }

    /* Remove 3D transform on mobile for better performance */
    .\[transform\:perspective\(1000px\)_rotateY\(-5deg\)_rotateX\(2deg\)\] {
        transform: none;
    }
}

@keyframes pulse {
0%, 100% { opacity: 1; } 50% { opacity: 0.5; }
}

@keyframes fadeIn {
from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
.steps-grid { grid-template-columns: 1fr; gap: 24px; } .step-card { padding: 32px 24px; }
.hero { padding: 120px 0 80px; } .hero-split { text-align: center; } .hero-cta { justify-content: center; } .hero-note { justify-content: center; } .stats-grid { grid-template-columns: 1fr; } .floating-card { display: none; }
.pain-card, .use-case-card { text-align: left; } .industry-hero-content { padding: 40px 0; }
}

@keyframes blink {
0%, 50% { opacity: 1; } 51%, 100% { opacity: 0; }
}

@keyframes float {
0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); }
}

@keyframes rotate {
from { transform: rotate(0deg); } to { transform: rotate(360deg); }
}

@media (max-width: 1024px) {
.hero-split { grid-template-columns: 1fr; gap: 60px; } .hero-visual { order: -1; max-width: 190px; margin: 0 auto; }
.floating-card.temp { right: -80px; }
.floating-card.notification { left: -80px; }
.floating-card.completed { right: -70px; }
.phone-mockup { border-radius: 28px; padding: 5px; }
.phone-screenshot { border-radius: 24px; }
.phone-frame { border-radius: 28px; padding: 5px; }
.phone-screen-v1 { border-radius: 24px; }
.hero-content { max-width: 100%; } .problem-grid { grid-template-columns: 1fr; } .solution-content { grid-template-columns: 1fr; gap: 60px; } .solution-visual { order: -1; max-width: 190px; margin: 0 auto; } .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
.feature-row { grid-template-columns: 1fr !important; } .feature-row > div { order: 0 !important; }
}

@keyframes pulse-ring {
0%, 100% { border-color: rgba(255,255,255,0.3); transform: scale(1); } 50% { border-color: var(--yellow); transform: scale(1.05); }
}

/* Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--ink);
    color: white;
    padding: 16px 24px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.cookie-consent-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-consent-text {
    flex: 1;
    min-width: 280px;
}

.cookie-consent-text p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

.cookie-consent-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.cookie-consent-actions .btn-sm {
    padding: 8px 20px;
    font-size: 13px;
}

.cookie-consent-actions .btn-primary {
    background: var(--yellow);
    color: var(--ink);
    border-color: var(--yellow);
}

.cookie-consent-actions .btn-primary:hover {
    background: var(--yellow-dark);
    border-color: var(--yellow-dark);
}

.cookie-consent-actions .btn-ghost {
    color: var(--yellow);
    border-color: var(--yellow);
}

.cookie-consent-actions .btn-ghost:hover {
    background: rgba(255, 203, 8, 0.15);
    border-color: var(--yellow);
}

.cookie-consent-link {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-consent-link:hover {
    color: white;
}

@media (max-width: 640px) {
    .cookie-consent-inner {
        flex-direction: column;
        text-align: center;
    }

    .cookie-consent-actions {
        justify-content: center;
        width: 100%;
    }
}

/* Scheduled Maintenance Banner */
.maintenance-banner {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 40px;
    z-index: 200;
    background: var(--ink);
    color: #fff;
    cursor: pointer;
    border-bottom: 1px solid rgba(255, 203, 8, 0.5);
}

html.maintenance-active .maintenance-banner {
    display: block;
}

/* Push the fixed nav and page content down to make room for the banner */
html.maintenance-active body {
    padding-top: 40px;
}

html.maintenance-active .nav {
    top: 40px;
}

.maintenance-banner:hover {
    background: #15151f;
}

.maintenance-banner-inner {
    max-width: 1280px;
    height: 100%;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.maintenance-banner-icon {
    flex-shrink: 0;
    color: var(--yellow);
}

.maintenance-banner-text {
    flex: 1;
    min-width: 0;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: rgba(255, 255, 255, 0.92);
}

.maintenance-banner-cta {
    flex-shrink: 0;
    font-size: 13px;
    font-weight: 600;
    color: var(--yellow);
    white-space: nowrap;
}

.maintenance-banner-close {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    background: none;
    border: 0;
    border-radius: 4px;
    color: rgba(255, 255, 255, 0.55);
    cursor: pointer;
    transition: color 0.2s, background 0.2s;
}

.maintenance-banner-close:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
}

@media (max-width: 540px) {
    .maintenance-banner-cta {
        display: none;
    }
}

/* Scheduled Maintenance Modal */
.maintenance-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.maintenance-modal.active {
    display: flex;
}

body.maintenance-modal-open {
    overflow: hidden;
}

.maintenance-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 15, 0.6);
    backdrop-filter: blur(3px);
}

.maintenance-modal-dialog {
    position: relative;
    width: 100%;
    max-width: 460px;
    max-height: calc(100vh - 48px);
    overflow-y: auto;
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.32);
    animation: maintModalIn 0.22s ease-out;
}

@keyframes maintModalIn {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: translateY(0); }
}

.maintenance-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    display: flex;
    padding: 6px;
    background: none;
    border: 0;
    border-radius: 6px;
    color: var(--muted);
    cursor: pointer;
    transition: color 0.2s, background 0.2s;
}

.maintenance-modal-close:hover {
    color: var(--ink);
    background: rgba(0, 0, 0, 0.05);
}

.maintenance-modal-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    padding-right: 28px;
    flex-wrap: wrap;
}

.maintenance-modal-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border-radius: 10px;
    background: var(--yellow-muted);
    color: var(--yellow-dark);
}

.maintenance-modal-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--ink);
    margin: 0;
}

.maintenance-modal-status {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 3px 10px;
    border-radius: 999px;
    background: #eef2f7;
    color: var(--muted);
}

.maintenance-modal-status.maintenance-status--upcoming {
    background: rgba(37, 99, 235, 0.12);
    color: var(--accent);
}

.maintenance-modal-status.maintenance-status--active {
    background: rgba(255, 203, 8, 0.22);
    color: #8a6d00;
}

.maintenance-modal-status.maintenance-status--done {
    background: rgba(16, 185, 129, 0.16);
    color: #0f7a55;
}

.maintenance-modal-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--ink);
    margin: 0 0 16px;
}

.maintenance-modal-text--muted {
    color: var(--muted);
    font-size: 0.85rem;
}

.maintenance-modal-window {
    background: var(--paper);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 14px 16px;
    margin-bottom: 16px;
}

.maintenance-modal-window-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
}

.maintenance-modal-window-row + .maintenance-modal-window-row {
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid var(--border);
}

.maintenance-modal-window-label {
    font-size: 0.8rem;
    color: var(--muted);
    flex-shrink: 0;
}

.maintenance-modal-window-value {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--ink);
    text-align: right;
}

.maintenance-modal-btn {
    width: 100%;
}

/* JivoChat - smaller bubble on mobile */
jdiv[class*="jivoDesktopButton"] {
    transform: scale(0.9) !important;
    transform-origin: bottom right !important;
}
jdiv[class*="jivoMobileButton"] {
    transform: scale(0.8) !important;
    transform-origin: bottom right !important;
}

/* Hide reCAPTCHA badge - attribution shown in footer instead */
.grecaptcha-badge {
    visibility: hidden !important;
}

/* reCAPTCHA footer notice */
.recaptcha-notice {
    margin-top: 24px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
}

.recaptcha-notice a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.recaptcha-notice a:hover {
    color: rgba(255, 255, 255, 0.7);
}
