/* =============================================
   IDGuru.net — Styles
   Dark theme: charcoal/dark-gray + amber/orange accent
   ============================================= */

/* ---------- CSS Reset & Variables ---------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-dark: #1a1a1a;
    --bg-dark-2: #222222;
    --bg-dark-3: #252525;
    --bg-card: #2c2c2c;
    --bg-card-hover: #353535;
    --accent: #e8930c;
    --accent-light: #f5b731;
    --accent-dark: #c77a08;
    --green: #27ae60;
    --green-dark: #1e8c4d;
    --text-white: #ffffff;
    --text-light: #d4d4d4;
    --text-muted: #999999;
    --border-subtle: rgba(255, 255, 255, 0.10);
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.40);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.50);
    --radius: 14px;
    --radius-sm: 8px;
    --radius-lg: 20px;
    --transition: 0.3s ease;
    --container-max: 1200px;
    --navbar-height: 72px;

    /* Light contrast section colors */
    --bg-light: #f5f5f5;
    --bg-light-card: #ffffff;
    --text-dark: #1a1a1a;
    --text-dark-muted: #666666;
    --border-light: rgba(0, 0, 0, 0.08);
    --shadow-light: 0 4px 16px rgba(0, 0, 0, 0.06);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--accent-light);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--text-white);
    line-height: 1.25;
    font-weight: 700;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.text-center {
    text-align: center;
}

.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 10px;
}

.section-label-light {
    color: var(--accent-light);
}

.section-desc {
    max-width: 750px;
    margin: 0 auto;
    color: var(--text-muted);
    font-size: 1rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.section-header {
    margin-bottom: 48px;
}

.section-header h2 {
    font-size: 2rem;
    margin-bottom: 14px;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    font-family: inherit;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #fff;
    box-shadow: 0 4px 20px rgba(232, 147, 12, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(232, 147, 12, 0.5);
    color: #fff;
}

.btn-outline-white {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    color: #fff;
}

.btn-green {
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: #fff;
    box-shadow: 0 4px 20px rgba(39, 174, 96, 0.3);
}

.btn-green:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(39, 174, 96, 0.5);
    color: #fff;
}

.btn-dark {
    background: var(--bg-dark);
    color: var(--accent);
    border: 2px solid var(--accent);
}

.btn-dark:hover {
    background: var(--accent);
    color: #fff;
}

.btn-phone {
    background: var(--green);
    color: #fff;
    padding: 10px 22px;
    font-size: 0.9rem;
}

.btn-phone:hover {
    background: var(--green-dark);
    color: #fff;
}

.btn-phone svg {
    flex-shrink: 0;
}

/* ---------- Navbar ---------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 26, 26, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-subtle);
    transition: background var(--transition), box-shadow var(--transition);
    height: var(--navbar-height);
}

.navbar.scrolled {
    background: rgba(26, 26, 26, 0.98);
    box-shadow: 0 2px 24px rgba(0, 0, 0, 0.4);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--navbar-height);
}

.logo img {
    height: 36px;
    width: auto;
}

.nav-links ul {
    list-style: none;
    display: flex;
    gap: 8px;
}

.nav-item {
    color: var(--text-light);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all var(--transition);
}

.nav-item:hover {
    color: var(--text-white);
    background: rgba(255, 255, 255, 0.06);
}

.nav-phone-wrapper {
    display: flex;
    align-items: center;
}

/* Mobile menu toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-toggle .bar {
    width: 24px;
    height: 2px;
    background: var(--text-white);
    border-radius: 2px;
    transition: all var(--transition);
}

.mobile-menu-toggle[aria-expanded="true"] .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle[aria-expanded="true"] .bar:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ---------- Hero ---------- */
.hero-section {
    position: relative;
    padding: 140px 0 100px;
    background: linear-gradient(135deg, var(--bg-dark) 0%, #1f1f1f 50%, var(--bg-dark-2) 100%);
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(232, 147, 12, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    line-height: 1.15;
}

.hero-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    max-width: 520px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
}

.hero-video-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    aspect-ratio: 16/9;
}

.hero-video-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-video-wrapper .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 72px;
    height: 72px;
    background: rgba(232, 147, 12, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    box-shadow: 0 0 30px rgba(232, 147, 12, 0.4);
}

.hero-video-wrapper:hover .play-btn {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 0 50px rgba(232, 147, 12, 0.6);
}

.hero-video-wrapper .play-btn svg {
    width: 28px;
    height: 28px;
    fill: #fff;
    margin-left: 4px;
}

.hero-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.hero-shape-bottom {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
}

.hero-shape-bottom svg {
    width: 100%;
    height: 80px;
}

.shape-fill {
    fill: var(--bg-dark-2);
}

/* ---------- How It Works (Light) ---------- */
.how-it-works-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.how-it-works-section .section-label {
    color: var(--accent);
}

.how-it-works-section h2 {
    color: var(--text-dark);
}

.how-it-works-section .section-desc {
    color: var(--text-dark-muted);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-card {
    background: var(--bg-light-card);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: all var(--transition);
    box-shadow: var(--shadow-light);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    border-color: rgba(232, 147, 12, 0.3);
}

.feature-img-wrap {
    overflow: hidden;
    aspect-ratio: 4/3;
}

.feature-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.feature-card:hover .feature-img-wrap img {
    transform: scale(1.05);
}

.feature-text {
    padding: 28px;
}

.feature-text h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
    color: var(--accent);
}

.feature-text p {
    font-size: 0.92rem;
    color: var(--text-dark-muted);
}

/* ---------- 5-Seconds Check-In (Light) ---------- */
.five-seconds-section {
    padding: 80px 0;
    background: var(--bg-light);
    position: relative;
}

.five-seconds-section .section-label {
    color: var(--accent);
}

.five-seconds-section h2 {
    color: var(--text-dark);
}

.five-seconds-section .section-desc {
    color: var(--text-dark-muted);
}

.five-sec-header {
    margin-bottom: 48px;
}

.five-sec-header h2 {
    font-size: 2rem;
    margin-bottom: 14px;
}

.five-sec-ellipse {
    width: 48px;
    margin: 0 auto 12px;
    opacity: 0.6;
}

.steps-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.step-card {
    background: var(--bg-light-card);
    border-radius: var(--radius);
    padding: 36px 28px;
    text-align: center;
    border: 1px solid var(--border-light);
    position: relative;
    transition: all var(--transition);
    box-shadow: var(--shadow-light);
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    border-color: rgba(232, 147, 12, 0.3);
}

.step-number {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(232, 147, 12, 0.12);
    line-height: 1;
}

.step-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon svg {
    width: 26px;
    height: 26px;
    stroke: #fff;
}

.step-card h3 {
    font-size: 1.05rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.step-card p {
    font-size: 0.9rem;
    color: var(--text-dark-muted);
}

/* ---------- Video Showcase ---------- */
.video-showcase-section {
    padding: 80px 0;
    background: var(--bg-dark-2);
}

.video-tabs {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.video-tab {
    padding: 10px 22px;
    border-radius: 50px;
    border: 1px solid var(--border-subtle);
    background: transparent;
    color: var(--text-muted);
    font-size: 0.88rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition);
    font-family: inherit;
}

.video-tab:hover {
    border-color: var(--accent);
    color: var(--text-white);
}

.video-tab.active {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

.video-stage {
    position: relative;
}

.video-slide {
    display: none;
}

.video-slide.active {
    display: block;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-caption {
    text-align: center;
    margin-top: 14px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.video-nav-arrows {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.video-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border-subtle);
    background: var(--bg-card);
    color: var(--text-light);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: inherit;
}

.video-arrow:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

/* ---------- Software Features ---------- */
.software-features-section {
    padding: 80px 0;
    background: var(--bg-dark);
}

.software-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.software-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 28px 24px;
    border: 1px solid var(--border-subtle);
    transition: all var(--transition);
}

.software-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: rgba(232, 147, 12, 0.2);
}

.software-icon {
    width: 30px;
    height: 30px;
    margin-bottom: 16px;
}

.software-card h3 {
    font-size: 1rem;
    margin-bottom: 10px;
    color: var(--accent);
}

.software-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
}

/* ---------- PMS / Client Success ---------- */
.pms-section {
    padding: 80px 0;
    background: var(--bg-dark-2);
}

.pms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.pms-block {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 36px 28px;
    border: 1px solid var(--border-subtle);
}

.pms-block h2 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.pms-icon {
    width: 64px;
    margin: 16px auto;
    opacity: 0.7;
}

.pms-block h3 {
    font-size: 1rem;
    color: var(--accent);
    margin-bottom: 10px;
}

.pms-block p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.pms-block.data-privacy p {
    font-size: 0.88rem;
    text-align: left;
}

/* ---------- Compliance Certifications (Light Contrast) ---------- */
.compliance-section {
    padding: 70px 0;
    background: var(--bg-light);
}

.compliance-section .section-label {
    color: var(--accent);
}

.compliance-section h2 {
    color: var(--text-dark);
}

.compliance-section .section-desc {
    color: var(--text-dark-muted);
}

.compliance-badges {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.compliance-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 24px 20px;
    background: var(--bg-light-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    min-width: 110px;
    transition: all var(--transition);
    box-shadow: var(--shadow-light);
}

.compliance-badge:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(232, 147, 12, 0.15);
}

.compliance-badge img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.badge-label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ---------- Brand Logo Cloud (Light Contrast) ---------- */
.brands-section {
    padding: 50px 0 70px;
    background: var(--bg-light);
}

.logo-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    justify-content: center;
    align-items: center;
    padding: 20px 30px;
    background: var(--bg-light-card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-light);
}

.logo-cloud img {
    height: 52px;
    width: auto;
    opacity: 0.75;
    filter: grayscale(0.5);
    transition: all var(--transition);
}

.logo-cloud img:hover {
    opacity: 1;
    filter: grayscale(0);
    transform: scale(1.08);
}

/* ---------- About Us ---------- */
.about-us-section {
    padding: 80px 0;
    background: var(--bg-dark-3);
}

.about-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 16px;
    font-size: 0.95rem;
}

/* ---------- Pricing (Light Contrast) ---------- */
.pricing-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.pricing-section .section-label {
    color: var(--accent);
}

.pricing-section h2 {
    font-size: 2rem;
    margin-bottom: 14px;
    color: var(--text-dark);
}

.pricing-section .section-desc {
    color: var(--text-dark-muted);
}

.price-card-center {
    display: flex;
    justify-content: center;
    margin-top: 36px;
}

.price-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    min-width: 380px;
    max-width: 520px;
    border: 1px solid rgba(232, 147, 12, 0.2);
    box-shadow: 0 8px 40px rgba(232, 147, 12, 0.1);
}

.price-tag {
    font-size: 1.8rem;
    color: var(--accent);
    margin-bottom: 28px;
}

.price-features {
    list-style: none;
    text-align: left;
}

.price-features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-subtle);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.price-features li::before {
    content: '✓';
    color: var(--green);
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.price-features li:last-child {
    border-bottom: none;
}

.price-special-offer {
    margin-top: 20px;
    padding: 14px 20px;
    background: rgba(232, 147, 12, 0.08);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--accent);
    font-size: 0.9rem;
    color: var(--accent-light);
}

.pricing-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 28px;
    flex-wrap: wrap;
    align-items: center;
}

/* ---------- Supported PMS List ---------- */
.supported-pms-section {
    padding: 80px 0;
    background: var(--bg-dark-2);
}

.pms-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.pms-list-col h2 {
    font-size: 1.8rem;
    margin-bottom: 14px;
}

.pms-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.pms-tag {
    display: inline-block;
    padding: 8px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--text-light);
    transition: all var(--transition);
}

.pms-tag:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.pms-img-col {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pms-img-col img {
    border-radius: var(--radius);
    max-width: 100%;
}

.pms-universal-cta {
    margin-top: 24px;
    padding: 16px 24px;
    background: rgba(232, 147, 12, 0.06);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(232, 147, 12, 0.15);
    font-size: 0.92rem;
}

.pms-universal-cta a {
    font-weight: 600;
}

/* ---------- FAQ Section (Light) ---------- */
.faq-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.faq-section .section-label {
    color: var(--accent);
}

.faq-section h2 {
    color: var(--text-dark);
}

.faq-section .section-desc {
    color: var(--text-dark-muted);
}

.faq-grid {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    background: var(--bg-light-card);
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
    overflow: hidden;
    transition: all var(--transition);
    box-shadow: var(--shadow-light);
}

.faq-item[open] {
    border-color: var(--accent);
    box-shadow: 0 4px 18px rgba(232, 147, 12, 0.1);
}

.faq-question {
    padding: 20px 28px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-dark);
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    transition: all var(--transition);
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::after {
    content: '+';
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent);
    flex-shrink: 0;
    transition: all var(--transition);
}

.faq-item[open] .faq-question::after {
    content: '\2212';
}

.faq-item[open] .faq-question {
    color: var(--accent);
    background: rgba(232, 147, 12, 0.04);
}

.faq-question:hover {
    color: var(--accent);
}

.faq-answer {
    padding: 0 28px 22px;
}

.faq-answer p {
    font-size: 0.92rem;
    line-height: 1.8;
    color: var(--text-dark-muted);
    margin: 0;
}

.faq-answer a {
    color: var(--accent);
    font-weight: 600;
}

.faq-answer a:hover {
    text-decoration: underline;
}

/* ---------- Contact Section ---------- */
.contact-section {
    padding: 80px 0;
    background: var(--bg-dark);
    position: relative;
}

.contact-bg {
    background: linear-gradient(135deg, rgba(232, 147, 12, 0.06) 0%, transparent 100%);
    border-radius: var(--radius-lg);
    padding: 60px 0;
}

.contact-card {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.contact-card h2 {
    font-size: 1.8rem;
    margin-bottom: 32px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"] {
    width: 100%;
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-subtle);
    background: var(--bg-card);
    color: var(--text-white);
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color var(--transition);
    outline: none;
}

.contact-form input:focus {
    border-color: var(--accent);
}

.contact-form input::placeholder {
    color: var(--text-muted);
}

.captcha-row {
    display: flex;
    justify-content: center;
}

.math-captcha {
    display: flex;
    align-items: center;
    gap: 12px;
}

.math-captcha label {
    color: var(--text-light);
    font-size: 0.95rem;
    white-space: nowrap;
}

.math-captcha input {
    width: 100px;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-subtle);
    background: var(--bg-card);
    color: var(--text-white);
    font-size: 0.95rem;
    font-family: inherit;
    text-align: center;
    outline: none;
}

.math-captcha input:focus {
    border-color: var(--accent);
}

.form-status {
    min-height: 20px;
    font-size: 0.9rem;
}

.form-status.success {
    color: var(--green);
}

.form-status.error {
    color: #e74c3c;
}

.contact-form button[type="submit"] {
    padding: 16px 48px;
    border-radius: 50px;
    border: none;
    background: var(--accent);
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: all var(--transition);
    align-self: center;
    letter-spacing: 0.5px;
}

.contact-form button[type="submit"]:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 147, 12, 0.3);
}

/* ---------- Footer ---------- */
.site-footer {
    background: var(--bg-dark-3);
    padding-top: 48px;
}

.footer-content {
    padding-bottom: 32px;
}

.footer-logo-wrap {
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 36px;
    width: auto;
    margin: 0 auto;
}

.footer-suite-badge {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 6px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin: 20px 0;
}

.social-circle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: all var(--transition);
    border: 1px solid var(--border-subtle);
}

.social-circle:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
    transform: translateY(-3px);
}

.footer-contact-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin: 20px 0;
}

.footer-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-subtle);
    color: var(--text-light);
    font-size: 0.88rem;
    transition: all var(--transition);
}

.footer-pill:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.footer-pill-location {
    cursor: default;
}

.footer-suite-products {
    margin-top: 20px;
}

.footer-suite-heading {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.footer-suite-list {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.suite-product {
    font-size: 0.9rem;
    color: var(--text-muted);
    padding: 4px 14px;
    border-radius: 50px;
    border: 1px solid transparent;
}

.suite-product.active {
    color: var(--accent);
    border-color: var(--accent);
}

.suite-product a {
    color: inherit;
}

.suite-product a:hover {
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid var(--border-subtle);
    padding: 24px 0;
}

.disclaimer-heading {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.disclaimer-body {
    font-size: 0.82rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto 10px;
    line-height: 1.6;
}

.copyright {
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* ---------- Animations ---------- */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-animate="fade-left"] {
    transform: translateX(40px);
}

[data-animate="fade-right"] {
    transform: translateX(-40px);
}

[data-animate].animate-in {
    opacity: 1;
    transform: translate(0, 0);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-desc {
        margin: 0 auto 28px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .steps-cards {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }

    .software-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pms-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .about-us-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-image {
        order: -1;
    }

    .about-image img {
        max-width: 400px;
        margin: 0 auto;
    }

    .pms-split {
        grid-template-columns: 1fr;
    }

    .pms-img-col {
        order: -1;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: var(--navbar-height);
        left: 0;
        right: 0;
        background: rgba(26, 26, 26, 0.98);
        padding: 20px 24px;
        border-bottom: 1px solid var(--border-subtle);
    }

    .nav-links.active {
        display: block;
    }

    .nav-links ul {
        flex-direction: column;
        gap: 4px;
    }

    .nav-item {
        display: block;
        padding: 12px 16px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-phone-wrapper {
        display: none;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }

    .software-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .price-card {
        min-width: auto;
        padding: 36px 28px;
    }

    .footer-contact-pills {
        flex-direction: column;
        align-items: center;
    }

    .logo-cloud img {
        height: 36px;
    }
}