/* VEMIRIC SIGNS GLOBAL STYLES */
:root {
    --primary: #1f2937;
    --orange: #ff8a00;
    --pink: #ec168c;
    --purple: #702283;
    --blue: #009fe3;
    --green: #27ae60;

    --dark: #111827;
    --text: #374151;
    --muted: #6b7280;
    --light: #f7f8fa;
    --white: #ffffff;
    --surface: #f8f9fb;
    --surface-strong: #ffffff;
    --border: #e5e7eb;
    --shadow: 0 28px 70px rgba(31, 41, 55, 0.08);
    --container: 1200px;
    --radius: 20px;
    --section-space: 80px;
    --max-width: 1200px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    background: var(--light);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

button, input, select, textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
    white-space: nowrap;
}

.container {
    width: min(100% - 2rem, var(--container));
    margin: 0 auto;
}

.section {
    padding: clamp(2.5rem, 4vw, 5rem) 0;
}

.section--tight {
    padding-top: clamp(2rem, 4vw, 3.5rem);
    padding-bottom: clamp(2rem, 4vw, 3.5rem);
}

.section-title {
    margin: 0 0 1rem;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.05;
    color: var(--primary);
}

.section-subtitle {
    max-width: 52rem;
    margin: 0 auto 2rem;
    color: var(--muted);
    font-size: 1rem;
}

.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background: rgba(255,255,255,0.96);
    color: var(--text);
    border-bottom: 1px solid rgba(226,232,240,0.85);
    font-size: 0.92rem;
    padding: 0.8rem clamp(1rem, 3vw, 2rem);
}

.topbar__group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.85rem;
}

.topbar a,
.topbar span {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--muted);
}

.topbar__quote {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 1rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--orange), var(--pink));
    color: #fff;
    font-weight: 700;
    white-space: nowrap;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.topbar__quote:hover,
.topbar__quote:focus-visible {
    transform: translateY(-1px);
}

.topbar svg {
    width: 1rem;
    height: 1rem;
    fill: currentColor;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(226,232,240,0.9);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: min(100% - 2rem, var(--container));
    margin: 0 auto;
    padding: 1rem 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.brand img {
    display: block;
    width: 180px;
    max-width: 100%;
    height: auto;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--primary);
    font-weight: 600;
    transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link:focus-visible {
    color: var(--orange);
}

.nav-link--button {
    padding: 0.95rem 1.5rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--orange), var(--pink));
    color: #fff;
    box-shadow: 0 18px 40px rgba(255, 138, 0, 0.22);
}

.nav-link--button:hover,
.nav-link--button:focus-visible {
    transform: translateY(-1px);
}

.nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(31, 41, 55, 0.12);
    border-radius: 14px;
    background: var(--white);
    color: var(--primary);
}

.nav-toggle svg {
    width: 1.2rem;
    height: 1.2rem;
}

.mobile-cta {
    display: none;
    padding: 0.9rem 1.25rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--orange), var(--pink));
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    align-items: center;
    justify-content: center;
}

.mobile-cta:hover,
.mobile-cta:focus-visible {
    transform: translateY(-1px);
}

.nav-dropdown {
    position: absolute;
    left: 0;
    top: 100%;
    min-width: 220px;
    background: var(--white);
    border: 1px solid rgba(226,232,240,0.95);
    border-radius: 18px;
    box-shadow: 0 24px 64px rgba(31,41,55,0.12);
    margin-top: 1rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    z-index: 10;
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown li {
    border-bottom: 1px solid rgba(226,232,240,0.9);
}

.nav-dropdown li:last-child {
    border-bottom: none;
}

.nav-dropdown a {
    display: block;
    padding: 0.9rem 1.2rem;
    color: var(--text);
}

.nav-dropdown a:hover,
.nav-dropdown a:focus-visible {
    background: rgba(255,138,0,0.08);
    color: var(--dark);
}

.mobile-menu {
    position: fixed !important;
    inset: 0;
    width: 100%;
    min-height: 100vh;
    z-index: 99999 !important;
    background: var(--white);
    color: var(--primary);
    display: none;
    flex-direction: column;
    padding: 2rem 1.5rem;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-shadow: 0 24px 80px rgba(15, 23, 42, 0.12);
    max-width: 100%;
    margin: 0;
    visibility: visible;
}

.mobile-menu.open {
    display: flex;
}

body.menu-open {
    overflow: hidden;
    height: 100vh;
}

.mobile-menu__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.mobile-menu__close {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    border: 1px solid rgba(31, 41, 55, 0.12);
    background: var(--surface);
    color: var(--primary);
}

.mobile-menu__nav {
    margin-top: 2rem;
    display: grid;
    gap: 1rem;
}

.mobile-menu__nav a,
.mobile-menu__nav button {
    display: block;
    width: 100%;
    text-align: left;
    padding: 1rem 1rem;
    min-height: 44px;
    border-radius: 16px;
    border: 1px solid rgba(31, 41, 55, 0.08);
    background: var(--surface);
    color: var(--primary);
}

.mobile-menu__nav button {
    appearance: none;
}

.mobile-menu__submenu {
    display: none;
    padding-left: 1rem;
    gap: 0.5rem;
}

.mobile-menu__submenu.open {
    display: grid;
}

.hero {
    position: relative;
    overflow: hidden;
}

.hero__slides {
    position: relative;
    min-height: clamp(42rem, 60vh, 72rem);
}

.hero__slide {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    background-size: cover;
    background-position: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease;
}

.hero__slide.active {
    opacity: 1;
    visibility: visible;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15,23,42,0.4), rgba(15,23,42,0.64));
}

.hero__content {
    position: relative;
    z-index: 1;
    max-width: 66rem;
    text-align: center;
    padding: 0 1.5rem;
}

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1.25rem;
    color: var(--white);
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.92rem;
}

.hero__eyebrow::before {
    content: '';
    width: 42px;
    height: 2px;
    background: linear-gradient(90deg, var(--orange), var(--pink));
}

.hero__title {
    margin: 0;
    color: var(--white);
    font-size: clamp(2.7rem, 6vw, 4.5rem);
    line-height: 1.04;
}

.hero__text {
    margin: 1.5rem auto 2.5rem;
    max-width: 42rem;
    color: rgba(255,255,255,0.9);
    font-size: clamp(1rem, 2vw, 1.15rem);
}

.hero__actions {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.btn,
.btn--secondary,
.btn--quote {
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 1rem 1.6rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn {
    background: linear-gradient(135deg, var(--orange), var(--pink));
    color: #fff;
    box-shadow: 0 20px 40px rgba(255,138,0,0.18);
}

.btn:hover,
.btn:focus-visible,
.btn--quote:hover,
.btn--quote:focus-visible {
    transform: translateY(-1px);
}

.btn--secondary {
    background: rgba(255,255,255,0.12);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.18);
}

.hero__pager {
    position: absolute;
    left: 50%;
    bottom: 1.6rem;
    transform: translateX(-50%);
    display: flex;
    gap: 0.7rem;
    z-index: 2;
}

.hero__dot {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.7);
    background: transparent;
}

.hero__dot.active {
    background: #fff;
}

.hero__arrows {
    position: absolute;
    inset: auto 1rem 1.5rem;
    display: flex;
    gap: 0.75rem;
    z-index: 2;
}

.hero__arrow {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    border: none;
    background: rgba(255,255,255,0.18);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.split-grid {
    display: grid;
    gap: 2rem;
}

.split-grid--image {
    align-items: center;
}

.split-grid--image figure {
    margin: 0;
}

.split-grid img {
    border-radius: var(--radius);
    aspect-ratio: 4 / 3;
    object-fit: cover;
    width: 100%;
}

.image-500x450 {
    width: 500px;
    max-width: 100%;
    height: auto;
    aspect-ratio: 500 / 450;
    display: block;
}

.section-highlight {
    margin: 0 0 2rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.9rem;
    font-weight: 700;
}

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

.card {
    background: var(--surface-strong);
    border: 1px solid rgba(226,232,240,0.9);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(15,23,42,0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card--mini {
    background: rgba(255,255,255,0.96);
    border: 1px solid rgba(226,232,240,0.9);
}

.card:hover,
.card:focus-within {
    transform: translateY(-4px);
    box-shadow: 0 24px 55px rgba(15,23,42,0.12);
}

.card__image {
    background: #e5e7eb;
    position: relative;
    aspect-ratio: 4 / 3;
}

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

.card__body {
    padding: 1.5rem;
}

.card__title {
    margin: 0 0 0.75rem;
    font-size: 1.25rem;
    color: var(--primary);
}

.card__text {
    color: var(--muted);
    margin: 0 0 1.5rem;
}

.card__link {
    font-weight: 700;
    color: var(--blue);
}

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

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

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

.stats-grid,
.process-grid,
.testimonial-grid {
    display: grid;
    gap: 1.25rem;
}

.stat-card,
.process-step,
.testimonial-card {
    background: var(--surface-strong);
    border: 1px solid rgba(226,232,240,0.9);
    border-radius: var(--radius);
    padding: 1.7rem;
    box-shadow: 0 16px 40px rgba(15,23,42,0.05);
}

.stat-card h3,
.process-step h3,
.testimonial-card h3 {
    margin: 0 0 0.75rem;
    font-size: 2.2rem;
    color: var(--primary);
}

.stat-card p,
.process-step p,
.testimonial-card p {
    margin: 0;
    color: var(--muted);
}

.process-step {
    display: grid;
    gap: 1rem;
}

.process-step__meta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: rgba(0,159,227,0.12);
    color: var(--blue);
    font-weight: 700;
}

.process-step h4 {
    margin: 0;
    font-size: 1rem;
    color: var(--primary);
}

.process-step p {
    color: var(--muted);
}

.testimonial-slider {
    position: relative;
}

.testimonial-track {
    display: grid;
    gap: 1.25rem;
    overflow: hidden;
}

.testimonial-card {
    padding: 1.8rem;
}

.testimonial-card .stars {
    display: inline-flex;
    gap: 0.2rem;
    margin-bottom: 1rem;
}

.star {
    width: 18px;
    height: 18px;
    fill: #f6ad55;
}

.testimonial-meta {
    margin-top: 1.25rem;
    color: var(--muted);
    font-size: 0.95rem;
}

.testimonial-controls {
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
    margin-top: 1rem;
}

.testimonial-controls button {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    border: 1px solid rgba(31,41,55,0.12);
    background: var(--white);
    color: var(--primary);
}

.quote-section {
    background: linear-gradient(135deg, rgba(255,138,0,0.12), rgba(112,34,131,0.15));
    border-radius: var(--radius);
    padding: clamp(2rem, 4vw, 3rem);
}

.quote-section h2 {
    margin: 0 0 1rem;
}

.quote-form {
    display: grid;
    gap: 1.25rem;
}

.form-grid {
    display: grid;
    gap: 1rem;
}

.form-group {
    display: grid;
    gap: 0.5rem;
}

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

input,
select,
textarea {
    width: 100%;
    border: 1px solid rgba(226,232,240,0.9);
    border-radius: 16px;
    padding: 1rem 1.1rem;
    background: #fff;
    color: var(--primary);
    min-height: 48px;
}

textarea {
    min-height: 160px;
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus,
button:focus-visible {
    outline: 3px solid rgba(0,159,227,0.25);
    outline-offset: 2px;
}

.input-row {
    display: grid;
    gap: 1rem;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.checkbox-group input {
    width: 18px;
    height: 18px;
}

.form-note {
    color: var(--muted);
    font-size: 0.94rem;
}

.form-status {
    padding: 1rem 1.2rem;
    border-radius: 16px;
    background: rgba(16,185,129,0.12);
    color: #064e3b;
    display: none;
}

.form-status.error {
    background: rgba(248,113,113,0.12);
    color: #821717;
}

.form-status.active {
    display: block;
}

.footer {
    background: var(--primary);
    color: rgba(255,255,255,0.92);
    padding: clamp(3rem, 5vw, 4rem) 0 1rem;
}

.footer-inner {
    display: grid;
    gap: 1.5rem;
}

.footer-column {
    display: grid;
    gap: 0.75rem;
}

.footer-column h3 {
    margin: 0;
    color: #fff;
    font-size: 1.1rem;
}

.footer-column a,
.footer-column p {
    display: block;
    color: rgba(255,255,255,0.82);
    margin: 0;
    line-height: 1.8;
}

.footer-column a {
    text-decoration: none;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.12);
    margin-top: 2rem;
    padding-top: 1.25rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
    color: rgba(255,255,255,0.72);
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: rgba(31,41,55,0.08);
    align-items: center;
    justify-content: center;
}

.footer-social svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.floating-contact {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    z-index: 110;
    display: grid;
    gap: 0.75rem;
}

.floating-contact a {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--orange), var(--pink));
    color: #fff;
    box-shadow: 0 18px 40px rgba(255,138,0,0.22);
}

.floating-contact a.bottom-bar {
    position: fixed;
    inset: auto 0 0;
    background: rgba(31,41,55,0.98);
    width: 100%;
    border-radius: 0;
    padding: 0.75rem 1rem;
    display: flex;
    justify-content: center;
    gap: 0.85rem;
    box-shadow: 0 -10px 30px rgba(15,23,42,0.18);
}

.bottom-bar__action {
    flex: 1;
    min-width: 0;
    border-radius: 14px;
    background: rgba(255,255,255,0.08);
    padding: 0.9rem 1rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
}

.icon-circle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.08);
    color: #fff;
}

@media (min-width: 768px) {
    .topbar { display: flex; }
    .header-inner { padding: 1.1rem 0; }
    .nav-toggle { display: none; }
    .mobile-menu { display: none; }
    .nav-list { gap: 2rem; }
    .grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .hero__arrows { inset: auto 1.5rem 1.5rem auto; right: 1.5rem; bottom: 1.5rem; }
    .hero__pager { bottom: 1.5rem; }
    .split-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); align-items: center; }
    .split-grid--image figure { max-width: 500px; margin: 0; }
    .stats-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .process-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); }
    .testimonial-track { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .bottom-bar { display: none; }
}

@media (min-width: 992px) {
    .container { width: min(100% - 3rem, var(--container)); }
    .hero__content { padding: 0; }
    .site-nav { gap: 2rem; }
    .card-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .process-grid { gap: 1.5rem; }
}

@media (min-width: 1200px) {
    .hero__slides { min-height: 70vh; }
}

/* Responsive override file can add more breakpoints */
