/*
Theme Name: OneThink Multi-Brand Hub
Theme URI: https://tentales.in/onethink-hub
Author: Tentales Software Technology
Author URI: https://tentales.in
Description: A modern, high-performance single-page WordPress theme showcasing Tentales.in (Software Leads), NineTales.live (Gaming Portal), and dynamic Android PlayStore Applications managed via custom post types and admin options with zero manual icon upload.
Version: 4.2.0
Text Domain: onethink-hub
Tags: one-column, custom-menu, custom-logo, portfolio, grid-layout, dark-mode, software, gaming
*/

/* ==========================================================================
   OneThink Multi-Brand Hub - Custom Design System (CSS v4.2.0)
   ========================================================================== */

:root {
    /* Main Background & Text */
    --bg-dark: #090d16;
    --bg-card: rgba(18, 26, 43, 0.65);
    --bg-card-border: rgba(255, 255, 255, 0.08);
    --bg-drawer: #0f172a;
    --text-main: #f1f5f9;
    --text-muted: #94a3b8;

    /* Brand Accents */
    /* Tentales.in - Tech Electric Blue/Cyan */
    --tentales-primary: #00f2fe;
    --tentales-secondary: #4facfe;
    --tentales-glow: rgba(0, 242, 254, 0.3);

    /* NineTales.live - Cyber Magenta/Purple */
    --ninetales-primary: #f72585;
    --ninetales-secondary: #7209b7;
    --ninetales-glow: rgba(247, 37, 133, 0.3);

    /* PlayStore Android - Emerald Green */
    --apps-primary: #00E676;
    --apps-secondary: #01875f;
    --apps-glow: rgba(0, 230, 118, 0.3);

    /* Typography & Radius */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    letter-spacing: -0.02em;
}

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

ul {
    list-style: none;
}

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

/* External Link Elements */
.nav-ext-icon {
    font-size: 10px;
    opacity: 0.7;
    transition: var(--transition);
}

.nav-item:hover .nav-ext-icon {
    transform: translate(2px, -2px);
    opacity: 1;
}

.text-link-tentales { color: var(--tentales-primary); text-decoration: underline; text-underline-offset: 3px; }
.text-link-ninetales { color: var(--ninetales-primary); text-decoration: underline; text-underline-offset: 3px; }

.brand-heading-link {
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.title-ext-icon {
    font-size: 22px;
    opacity: 0.6;
    transition: var(--transition);
}

.link-tentales:hover { color: var(--tentales-primary); }
.link-ninetales:hover { color: var(--ninetales-primary); }

.brand-heading-link:hover .title-ext-icon {
    opacity: 1;
    transform: translate(3px, -3px);
}

.branch-ext {
    font-size: 11px;
    opacity: 0.6;
    margin-left: 4px;
}

/* Visitor Counter Badge */
.visitor-counter-box {
    margin-top: 14px;
    display: flex;
    justify-content: center;
}

.visitor-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 18px;
    border-radius: 30px;
    background: rgba(0, 230, 118, 0.08);
    border: 1px solid rgba(0, 230, 118, 0.25);
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(0, 230, 118, 0.1);
}

.visitor-badge strong {
    color: var(--apps-primary);
    font-family: var(--font-heading);
    font-size: 15px;
}

.pulse-icon {
    color: var(--apps-primary);
    animation: pulseGlow 1.8s infinite ease-in-out;
}

@keyframes pulseGlow {
    0% { opacity: 0.4; transform: scale(0.95); }
    50% { opacity: 1; transform: scale(1.1); }
    100% { opacity: 0.4; transform: scale(0.95); }
}

/* Background Animated Light Orbs */
.bg-glow {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    opacity: 0.25;
    pointer-events: none;
}

.blob-1 {
    top: -10%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--tentales-primary), transparent 70%);
}

.blob-2 {
    top: 40%;
    right: -15%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, var(--ninetales-primary), transparent 70%);
}

.blob-3 {
    bottom: -10%;
    left: 20%;
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, var(--apps-primary), transparent 70%);
}

/* Glassmorphism Card Utilities */
.glass-card {
    background: var(--bg-card);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    border: 1px solid var(--bg-card-border);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.glass-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

/* Header & Nav */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 18px 0;
    background: rgba(9, 13, 22, 0.85);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.site-logo-img, .custom-logo {
    height: 42px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(255, 107, 107, 0.35));
    transition: transform 0.3s ease;
}

.brand-logo:hover .site-logo-img,
.brand-logo:hover .custom-logo {
    transform: scale(1.06) rotate(3deg);
}

.logo-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--tentales-primary), var(--ninetales-primary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 242, 254, 0.3);
}

.brand-name {
    font-size: 22px;
    font-weight: 800;
    font-family: var(--font-heading);
}

.brand-name .dot {
    color: var(--ninetales-primary);
}

.brand-tag {
    display: block;
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.nav-item {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.nav-tentales:hover { color: var(--tentales-primary); }
.nav-ninetales:hover { color: var(--ninetales-primary); }
.nav-apps:hover { color: var(--apps-primary); }

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
}

/* Buttons System */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-large {
    padding: 14px 28px;
    font-size: 16px;
    border-radius: var(--radius-md);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-main);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

.btn-primary {
    background: linear-gradient(135deg, var(--tentales-primary), var(--tentales-secondary));
    color: #050b14;
}

.btn-tentales {
    background: linear-gradient(135deg, var(--tentales-primary), var(--tentales-secondary));
    color: #050b14;
    box-shadow: 0 4px 20px var(--tentales-glow);
}

.btn-tentales:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--tentales-glow);
}

.btn-ninetales {
    background: linear-gradient(135deg, var(--ninetales-primary), var(--ninetales-secondary));
    color: #fff;
    box-shadow: 0 4px 20px var(--ninetales-glow);
}

.btn-ninetales:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--ninetales-glow);
}

.btn-apps {
    background: linear-gradient(135deg, var(--apps-primary), var(--apps-secondary));
    color: #04120a;
    box-shadow: 0 4px 20px var(--apps-glow);
}

.btn-apps:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--apps-glow);
}

/* Badges */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.badge-hero {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-main);
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--apps-primary);
    box-shadow: 0 0 10px var(--apps-primary);
}

.badge-tentales { background: rgba(0, 242, 254, 0.1); border: 1px solid rgba(0, 242, 254, 0.3); color: var(--tentales-primary); }
.badge-ninetales { background: rgba(247, 37, 133, 0.1); border: 1px solid rgba(247, 37, 133, 0.3); color: var(--ninetales-primary); }
.badge-apps { background: rgba(0, 230, 118, 0.1); border: 1px solid rgba(0, 230, 118, 0.3); color: var(--apps-primary); }

/* HERO SECTION */
.hero-section {
    padding: 160px 0 90px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.hero-title {
    font-size: 48px;
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 20px;
}

.gradient-text-tentales {
    background: linear-gradient(135deg, var(--tentales-primary), var(--tentales-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient-text-ninetales {
    background: linear-gradient(135deg, var(--ninetales-primary), #4895ef);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient-text-onethink {
    background: linear-gradient(135deg, var(--onethink-primary), var(--onethink-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 32px;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-size: 26px;
    font-weight: 800;
    font-family: var(--font-heading);
    color: #fff;
}

.stat-label {
    font-size: 13px;
    color: var(--text-muted);
}

.stat-divider {
    width: 1px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
}

/* Ecosystem Visual Box */
.ecosystem-card {
    padding: 36px;
    position: relative;
    overflow: hidden;
}

.card-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--tentales-primary), transparent 70%);
    opacity: 0.2;
    filter: blur(40px);
}

.eco-node {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 24px;
    border-radius: 30px;
    margin: 0 auto 30px;
    width: max-content;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.eco-branches {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.eco-branch {
    padding: 16px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 14px;
    transition: var(--transition);
}

.eco-branch:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.branch-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.branch-tentales .branch-icon { background: rgba(0, 242, 254, 0.15); color: var(--tentales-primary); }
.branch-ninetales .branch-icon { background: rgba(247, 37, 133, 0.15); color: var(--ninetales-primary); }
.branch-apps .branch-icon { background: rgba(0, 230, 118, 0.15); color: var(--apps-primary); }

.branch-info h4 {
    font-size: 15px;
    color: #fff;
}

.branch-info p {
    font-size: 12px;
    color: var(--text-muted);
}

/* SECTION GENERAL STYLES */
.brand-section {
    padding: 100px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.section-title {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 12px;
}

.tld {
    opacity: 0.6;
    font-weight: 400;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 16px;
}

/* GRIDS */
.grid {
    display: grid;
    gap: 24px;
}

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

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

/* TENTALES SECTION (SOFTWARE & LEAD FORM) */
.section-tentales {
    position: relative;
}

.feature-card {
    padding: 32px;
}

.card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
}

.icon-tentales {
    background: rgba(0, 242, 254, 0.12);
    color: var(--tentales-primary);
    border: 1px solid rgba(0, 242, 254, 0.2);
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 20px;
}

.feature-list li {
    font-size: 13px;
    color: #e2e8f0;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-list li i {
    color: var(--tentales-primary);
}

/* Lead Form */
.lead-form-wrapper {
    margin-top: 50px;
    padding: 40px;
    border: 1px solid rgba(0, 242, 254, 0.2);
    box-shadow: 0 10px 40px rgba(0, 242, 254, 0.05);
}

.lead-form-header {
    text-align: center;
    margin-bottom: 30px;
}

.lead-form-header h3 {
    font-size: 24px;
    color: #fff;
    margin-bottom: 8px;
}

.lead-form-header p {
    color: var(--text-muted);
    font-size: 14px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: #cbd5e1;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
    font-family: var(--font-body);
    font-size: 14px;
    outline: none;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--tentales-primary);
    box-shadow: 0 0 12px var(--tentales-glow);
}

.form-submit {
    text-align: center;
    margin-top: 24px;
}

.form-status {
    margin-top: 16px;
    padding: 12px;
    border-radius: var(--radius-sm);
    text-align: center;
    font-size: 14px;
    display: none;
}

.form-status.success {
    display: block;
    background: rgba(0, 230, 118, 0.15);
    border: 1px solid var(--apps-primary);
    color: #00E676;
}

.form-status.error {
    display: block;
    background: rgba(247, 37, 133, 0.15);
    border: 1px solid var(--ninetales-primary);
    color: #f72585;
}

/* NINETALES SECTION (ONLINE GAMES) */
.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 8px 20px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--ninetales-primary);
    border-color: var(--ninetales-primary);
    color: #fff;
    box-shadow: 0 4px 15px var(--ninetales-glow);
}

.game-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.game-thumb {
    height: 180px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.game-category-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 10px;
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.7);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    font-size: 11px;
    font-weight: 600;
    color: var(--ninetales-primary);
}

.game-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.game-info h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.game-info p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.game-play-btn {
    margin-top: auto;
    width: 100%;
}

/* Modal Player */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

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

.modal-content {
    width: 90%;
    max-width: 900px;
    padding: 24px;
    border: 1px solid rgba(247, 37, 133, 0.3);
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.modal-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}

.game-frame-container {
    width: 100%;
    height: 480px;
    background: #000;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* PLAYSTORE EMBEDDED APPLICATIONS SECTION */
.section-playstore {
    background: radial-gradient(circle at center, rgba(0, 230, 118, 0.03), transparent 70%);
}

.highlight-emerald {
    color: var(--apps-primary);
}

.apps-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.search-box {
    position: relative;
    flex-grow: 1;
    max-width: 450px;
}

.search-box i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}

.search-box input {
    width: 100%;
    padding: 12px 16px 12px 45px;
    border-radius: 30px;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(0, 230, 118, 0.2);
    color: #fff;
    outline: none;
    font-size: 14px;
}

.search-box input:focus {
    border-color: var(--apps-primary);
    box-shadow: 0 0 15px var(--apps-glow);
}

.apps-category-filter select {
    padding: 12px 20px;
    border-radius: 30px;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
    outline: none;
    font-size: 14px;
}

/* PlayStore App Card */
.app-card {
    padding: 24px;
    display: flex;
    flex-direction: column;
    position: relative;
    border-color: rgba(0, 230, 118, 0.12);
}

.app-card:hover {
    border-color: var(--apps-primary);
    box-shadow: 0 10px 30px var(--apps-glow);
}

.app-header-box {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.app-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    object-fit: cover;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.app-title-area h3 {
    font-size: 17px;
    color: #fff;
    line-height: 1.3;
}

.app-developer {
    font-size: 12px;
    color: var(--text-muted);
}

.app-stats-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-sm);
    font-size: 12px;
}

.app-rating {
    color: #ffb703;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 4px;
}

.app-downloads {
    color: var(--apps-primary);
    font-weight: 600;
}

.app-description {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.5;
    flex-grow: 1;
}

.app-install-btn {
    width: 100%;
}

.full-width {
    width: 100%;
}

/* FOOTER */
.site-footer {
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(5, 8, 15, 0.95);
}

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

.footer-brand p {
    color: var(--text-muted);
    font-size: 14px;
    margin-top: 16px;
    max-width: 380px;
}

.footer-links-group h4 {
    font-size: 16px;
    margin-bottom: 20px;
    color: #fff;
}

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

.footer-links-group a {
    color: var(--text-muted);
    font-size: 14px;
    transition: var(--transition);
}

.footer-links-group a:hover {
    color: var(--tentales-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 13px;
    color: var(--text-muted);
}

/* RESPONSIVE DESIGN BREAKPOINTS */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-content {
        grid-template-columns: 1fr 1fr !important;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 14px;
    }
    .container {
        padding: 0 16px;
    }
    .hero-section {
        padding: 90px 0 45px;
    }
    .hero-title {
        font-size: 28px;
        line-height: 1.25;
    }
    .hero-description {
        font-size: 13.5px;
        margin-bottom: 22px;
    }
    .hero-buttons {
        gap: 10px;
        flex-direction: column;
    }
    .hero-buttons .btn {
        padding: 12px 18px;
        font-size: 13.5px;
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    .hero-stats {
        padding: 14px 18px;
        gap: 10px;
        justify-content: space-around;
    }
    .stat-num {
        font-size: 20px;
    }
    .stat-label {
        font-size: 11px;
    }
    .brand-section {
        padding: 45px 0;
    }
    .section-header {
        margin-bottom: 26px;
    }
    .section-title {
        font-size: 24px;
    }
    .section-subtitle {
        font-size: 13px;
    }
    .grid-3, .grid-4 {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .glass-card {
        padding: 18px;
        border-radius: 16px;
    }
    .feature-card h3 {
        font-size: 16.5px;
    }
    .feature-card p {
        font-size: 13px;
    }
    .lead-form-wrapper {
        padding: 20px;
        margin-top: 28px;
        border-radius: 16px;
    }
    .lead-form-header h3 {
        font-size: 18px;
    }
    .form-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .app-card {
        padding: 18px;
    }
    .app-icon {
        width: 52px;
        height: 52px;
        border-radius: 12px;
    }
    .app-title-area h3 {
        font-size: 15.5px;
    }
    .app-description {
        font-size: 12.5px;
        margin-bottom: 12px;
    }
    .site-footer {
        padding: 45px 0 25px;
    }
    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 28px;
    }
    .footer-bottom {
        padding-top: 20px;
        font-size: 12px;
    }
    .nav-links {
        display: none;
    }
    .nav-links.mobile-open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 75px;
        left: 0;
        width: 100%;
        background: rgba(9, 13, 22, 0.98);
        padding: 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    .mobile-menu-toggle {
        display: block;
    }
}

@media (min-width: 540px) and (max-width: 768px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 24px;
    }
    .brand-name {
        font-size: 18px;
    }
    .site-logo-img {
        height: 34px;
    }
}

/* WordPress Core Alignment Styles */
.alignwide {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.alignfull {
    width: 100vw;
    margin-left: calc(50% - 50vw);
}

.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}
