/*
Theme Name: Voice Consultancy
Theme URI: https://www.palevioletred-eagle-992506.hostingersite.com
Description: A professional theme for Microsoft Teams voice consultancy services
Version: 1.0
Author: Voice Consultancy Ltd
Text Domain: voice-consultancy
*/

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* ===== CSS Variables ===== */
:root {
    --primary-color: #0d63df;
    --primary-dark: #0a4faf;
    --secondary-color: #1f3b73;
    --accent-color: #1dd3f8;
    --neutral-50: #f8fbff;
    --neutral-100: #eef2f8;
    --neutral-200: #e1e8f3;
    --neutral-800: #1c2333;
    --dark-bg: #0f1221;
    --darker-bg: #0b0e1a;
    --light-bg: #f4f7fb;
    --white: #ffffff;
    --text-dark: #1f2937;
    --text-light: #5f6b82;
    --text-white: #ffffff;
    --gradient-primary: linear-gradient(135deg, #0d63df 0%, #1dd3f8 100%);
    --gradient-dark: radial-gradient(circle at 20% 20%, rgba(29, 211, 248, 0.08), transparent 30%), linear-gradient(135deg, #0d1224 0%, #10172b 100%);
    --shadow-sm: 0 4px 12px rgba(15, 24, 44, 0.06);
    --shadow-md: 0 12px 30px rgba(15, 24, 44, 0.12);
    --shadow-lg: 0 25px 60px rgba(8, 19, 43, 0.18);
    --border-radius: 12px;
    --section-padding: 6rem 0;
    --transition: all 0.25s ease;
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Roboto', 'Oxygen', 'Ubuntu', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: -0.01em;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

main {
    display: block;
}

#main-content {
    min-height: 100vh;
    margin-top: 0;
    padding-top: 0;
}

/* Remove any gap between header and hero on homepage */
body.home,
body.front-page {
    background-color: var(--dark-bg);
}

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

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 2vw + 2rem, 3.75rem); letter-spacing: -0.04em; }
h2 { font-size: clamp(2rem, 1.2vw + 1.5rem, 3rem); letter-spacing: -0.03em; }
h3 { font-size: clamp(1.4rem, 0.8vw + 1rem, 2rem); letter-spacing: -0.02em; }
h4 { font-size: clamp(1.15rem, 0.5vw + 0.9rem, 1.5rem); }

p {
    margin-bottom: 1rem;
}

/* ===== Container ===== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 14px 30px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: -0.01em;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.18);
}

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

/* ===== Header & Navigation ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.header.scrolled {
    background: var(--darker-bg);
    box-shadow: var(--shadow-md);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

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

.logo-img {
    height: 50px;
    width: auto;
    max-width: 250px;
}

.footer .logo-img {
    height: 45px;
    margin-bottom: 1rem;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--white);
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
}

.nav-dropdown > .nav-link::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid var(--white);
    margin-left: 8px;
    vertical-align: middle;
    position: static;
    background: none;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    padding: 0.5rem 0;
    z-index: 1001;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
}

.dropdown-menu a:hover {
    background: var(--light-bg);
    color: var(--primary-color);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: var(--transition);
}

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    background: var(--gradient-dark);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(13, 99, 223, 0.18) 0%, transparent 35%),
        radial-gradient(circle at 85% 30%, rgba(29, 211, 248, 0.22) 0%, transparent 40%),
        radial-gradient(circle at 50% 90%, rgba(13, 99, 223, 0.16) 0%, transparent 40%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: clamp(2.6rem, 2vw + 2rem, 3.8rem);
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-text h1 span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 1.25rem;
    max-width: 520px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 1.5rem;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(13, 99, 223, 0.1);
    color: var(--primary-color);
    border: 1px solid rgba(13, 99, 223, 0.25);
    font-weight: 600;
    letter-spacing: -0.01em;
}

.hero .pill {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-white);
    border-color: rgba(255, 255, 255, 0.2);
}

.hero-image {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
}

.hero-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: rgba(255, 255, 255, 0.9);
    padding: 1rem 1.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.hero-badge-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-badge-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--white);
}

.hero-badge-text {
    font-weight: 600;
    color: var(--text-dark);
}

.hero-badge-text span {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 400;
}

/* ===== Floating Elements ===== */
.floating-element {
    position: absolute;
    opacity: 0.1;
    pointer-events: none;
}

.floating-element.circle {
    width: 300px;
    height: 300px;
    border: 2px solid var(--accent-color);
    border-radius: 50%;
}

.floating-element.square {
    width: 150px;
    height: 150px;
    border: 2px solid var(--primary-color);
    transform: rotate(45deg);
}

/* ===== Partners/Clients Section ===== */
.partners {
    padding: 3rem 0;
    background: var(--light-bg);
    border-bottom: 1px solid #e2e8f0;
}

.partners-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.partners-label {
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.partner-logo {
    height: 40px;
    opacity: 0.6;
    transition: var(--transition);
    filter: grayscale(100%);
}

.partner-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
}

/* ===== Proof Section ===== */
.proof {
    padding: var(--section-padding);
    background: var(--white);
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-top: 2rem;
}

.kpi-card {
    background: linear-gradient(160deg, rgba(13, 99, 223, 0.08), rgba(255, 255, 255, 0.9));
    border: 1px solid rgba(13, 99, 223, 0.18);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.kpi-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.02em;
}

.kpi-label {
    color: var(--text-light);
    margin-top: 0.35rem;
    font-weight: 500;
}

.logo-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    align-items: center;
    margin-top: 2.5rem;
    opacity: 0.85;
    filter: grayscale(1);
}

.logo-chip {
    padding: 1rem 1.25rem;
    border-radius: 14px;
    background: var(--light-bg);
    text-align: center;
    font-weight: 600;
    color: var(--text-light);
    border: 1px solid #e2e8f0;
}

/* ===== Services Section ===== */
.services {
    padding: var(--section-padding);
    background: var(--white);
}

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

.section-label {
    display: inline-block;
    background: rgba(0, 120, 212, 0.1);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-header h2 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(244, 247, 251, 0.95));
    padding: 2.5rem;
    border-radius: 18px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card .pill {
    background: rgba(13, 99, 223, 0.08);
    color: var(--primary-color);
    border-color: rgba(13, 99, 223, 0.25);
    font-size: 0.9rem;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(13, 99, 223, 0.12);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon svg {
    width: 36px;
    height: 36px;
    fill: var(--primary-color);
}

.service-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.35rem;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.service-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-link:hover {
    gap: 12px;
}

.service-link svg {
    width: 18px;
    height: 18px;
    fill: var(--primary-color);
}

/* ===== Process Section ===== */
.process {
    padding: var(--section-padding);
    background: var(--light-bg);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    counter-reset: step;
}

.process-step {
    background: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.process-step::before {
    counter-increment: step;
    content: "0" counter(step);
    position: absolute;
    top: 18px;
    right: 18px;
    font-weight: 700;
    color: rgba(13, 99, 223, 0.12);
    font-size: 1.6rem;
}

.process-step h4 {
    margin-bottom: 0.5rem;
}

.process-step p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

/* ===== About Section ===== */
.about {
    padding: 6rem 0;
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 188, 242, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.about-stats {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--white);
    padding: 1.5rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-light);
}

.about-text .section-label {
    background: rgba(0, 188, 242, 0.2);
    color: var(--accent-color);
}

.about-text h2 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.about-text p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.about-features {
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature-icon {
    width: 24px;
    height: 24px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 4px;
}

.feature-icon svg {
    width: 14px;
    height: 14px;
    fill: var(--white);
}

.feature-text {
    color: rgba(255, 255, 255, 0.8);
}

.feature-text strong {
    color: var(--white);
    display: block;
    margin-bottom: 4px;
}

/* ===== Direct Routing Section ===== */
.direct-routing {
    padding: 6rem 0;
    background: var(--light-bg);
}

.dr-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.dr-features {
    display: grid;
    gap: 1.5rem;
}

.dr-feature {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.dr-feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 120, 212, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dr-feature-icon svg {
    width: 26px;
    height: 26px;
    fill: var(--primary-color);
}

.dr-feature h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.dr-feature p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Horizontal Cards */
.dr-horizontal-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.dr-horizontal-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dr-horizontal-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.dr-horizontal-icon {
    width: 70px;
    height: 70px;
    background: rgba(0, 120, 212, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dr-horizontal-icon svg {
    width: 36px;
    height: 36px;
    fill: var(--primary-color);
}

.dr-horizontal-content {
    flex: 1;
}

.dr-horizontal-content .pill {
    margin-bottom: 0.5rem;
}

.dr-horizontal-content h3 {
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
}

.dr-horizontal-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.dr-horizontal-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.dr-horizontal-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.95rem;
}

.dr-horizontal-features li svg {
    width: 18px;
    height: 18px;
    fill: var(--primary-color);
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .dr-horizontal-card {
        flex-direction: column;
        gap: 1.5rem;
    }

    .dr-horizontal-features {
        grid-template-columns: 1fr;
    }
}

/* ===== DRaaS Section ===== */
.draas {
    padding: var(--section-padding);
    background: var(--white);
}

/* ===== IT Consulting Section ===== */
.it-consulting {
    padding: var(--section-padding);
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

.it-consulting::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(13, 99, 223, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(29, 211, 248, 0.12) 0%, transparent 40%);
    pointer-events: none;
}

.it-consulting .section-header {
    position: relative;
    z-index: 1;
}

.it-consulting .section-label {
    background: rgba(29, 211, 248, 0.2);
    color: var(--accent-color);
}

.it-consulting .section-header h2 {
    color: var(--white);
}

.it-consulting .section-header p {
    color: rgba(255, 255, 255, 0.7);
}

.it-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.it-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.it-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}

.it-card-featured {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    display: flex;
    flex-direction: column;
    background: linear-gradient(145deg, rgba(13, 99, 223, 0.2), rgba(29, 211, 248, 0.1));
    border-color: rgba(29, 211, 248, 0.3);
}

.it-card-icon {
    width: 60px;
    height: 60px;
    background: rgba(29, 211, 248, 0.15);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.it-card-icon svg {
    width: 32px;
    height: 32px;
    fill: var(--accent-color);
}

.it-card .pill {
    background: rgba(29, 211, 248, 0.15);
    color: var(--accent-color);
    border-color: rgba(29, 211, 248, 0.3);
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.it-card h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.it-card p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.it-card-featured .it-card-content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.it-card-featured .it-card-content .btn {
    margin-top: auto;
    align-self: flex-start;
}

.it-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.it-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.85);
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-weight: 500;
}

.it-features li:last-child {
    border-bottom: none;
}

.it-features li svg {
    width: 18px;
    height: 18px;
    fill: var(--accent-color);
    flex-shrink: 0;
}

.it-features-compact {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.it-features-compact li {
    color: rgba(255, 255, 255, 0.7);
    padding: 0.4rem 0;
    padding-left: 1.25rem;
    position: relative;
    font-size: 0.95rem;
}

.it-features-compact li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--accent-color);
    border-radius: 50%;
}

/* Light background override for IT cards and section headers */
section[style*="--light-bg"] .section-header h2 {
    color: var(--text-dark);
}

section[style*="--light-bg"] .section-header p {
    color: var(--text-muted);
}

section[style*="--light-bg"] .it-card {
    background: white;
    border: 1px solid #e2e8f0;
}

section[style*="--light-bg"] .it-card:hover {
    background: white;
    border-color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(0, 120, 212, 0.1);
}

section[style*="--light-bg"] .it-card h3 {
    color: var(--text-dark);
}

section[style*="--light-bg"] .it-card p {
    color: var(--text-muted);
}

section[style*="--light-bg"] .it-features-compact li {
    color: var(--text-muted);
}

.it-card .service-link {
    color: var(--accent-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.it-card .service-link svg {
    width: 18px;
    height: 18px;
    fill: var(--accent-color);
}

.it-card .service-link:hover {
    gap: 12px;
}

@media (max-width: 1024px) {
    .it-grid {
        grid-template-columns: 1fr;
    }

    .it-card-featured {
        grid-column: 1;
        grid-row: auto;
    }
}

@media (max-width: 768px) {
    .it-card {
        padding: 1.5rem;
    }

    .it-card h3 {
        font-size: 1.25rem;
    }
}

.draas-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.draas-card {
    background: linear-gradient(160deg, #f8fbff, #eef4ff);
    padding: 2rem;
    border-radius: 18px;
    border: 1px solid #e2e8f0;
    box-shadow: var(--shadow-sm);
}

.draas-card h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.draas-card h4 svg {
    width: 24px;
    height: 24px;
    fill: var(--primary-color);
}

.draas-card p {
    color: var(--text-light);
    margin-bottom: 0;
}

/* ===== Architecture Cards (Custom Voice Solutions) ===== */
.architecture-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.arch-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid #e2e8f0;
    transition: var(--transition);
}

.arch-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.arch-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.arch-card-icon svg {
    width: 28px;
    height: 28px;
    fill: white;
}

.arch-card-content .pill {
    display: inline-block;
    background: linear-gradient(135deg, rgba(13, 99, 223, 0.1), rgba(29, 211, 248, 0.1));
    color: var(--primary-color);
    padding: 0.35rem 0.85rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.arch-card-content h3 {
    font-size: 1.35rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.arch-card-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.arch-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.arch-features li {
    color: var(--text-light);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.9rem;
}

.arch-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
}

@media (max-width: 992px) {
    .architecture-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .architecture-cards {
        grid-template-columns: 1fr;
    }
}

/* ===== Blog Section ===== */
.blog {
    padding: var(--section-padding);
    background: var(--light-bg);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.blog-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.blog-image {
    height: 200px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-image svg {
    width: 60px;
    height: 60px;
    fill: var(--white);
    opacity: 0.8;
}

.blog-content {
    padding: 1.5rem;
}

.blog-date {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.blog-card h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.blog-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.blog-link {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
}

/* ===== Contact Section ===== */
.contact {
    padding: 6rem 0;
    background: var(--gradient-dark);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 10% 90%, rgba(0, 120, 212, 0.2) 0%, transparent 40%),
        radial-gradient(circle at 90% 10%, rgba(0, 188, 242, 0.2) 0%, transparent 40%);
    pointer-events: none;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    position: relative;
    z-index: 1;
}

.contact-extras {
    margin-top: 2rem;
    display: grid;
    gap: 1rem;
}

.faq-list {
    display: grid;
    gap: 0.75rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 1rem 1.25rem;
}

.faq-item summary {
    cursor: pointer;
    color: var(--white);
    font-weight: 600;
}

.faq-item p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0.5rem 0 0;
}

.privacy-note {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.contact-info .section-label {
    background: rgba(0, 188, 242, 0.2);
    color: var(--accent-color);
}

.contact-info h2 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.contact-info > p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.contact-details {
    display: grid;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 188, 242, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--accent-color);
}

.contact-item-text {
    color: var(--white);
}

.contact-item-text span {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 4px;
}

.contact-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #e2e8f0;
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 120, 212, 0.1);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-form .btn {
    width: 100%;
}

/* ===== Footer ===== */
.footer {
    background: var(--darker-bg);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 300px;
}

.footer-brand .logo {
    margin-bottom: 1.5rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary-color);
}

.social-link svg {
    width: 20px;
    height: 20px;
    fill: var(--white);
}

.footer-column h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

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

.footer-link {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-link:hover {
    color: var(--accent-color);
}

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

.footer-copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-legal a:hover {
    color: var(--accent-color);
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }

    .hero-content,
    .about-content,
    .dr-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-text h1 {
        font-size: 2.75rem;
    }

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

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

    .about-stats {
        position: static;
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--darker-bg);
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        transition: var(--transition);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-toggle {
        display: flex;
    }

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

    .services-grid,
    .draas-grid,
    .blog-grid,
    .proof-grid,
    .process-steps {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

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

    .partners-content {
        flex-direction: column;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-text h1 {
        font-size: 1.85rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }
}

/* ===== Animations ===== */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.1; }
    50% { opacity: 0.2; }
}

.floating-element {
    animation: pulse 4s ease-in-out infinite;
}

.reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }

    .reveal {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* ===== Utility Classes ===== */
.text-center { text-align: center; }
.text-white { color: var(--white); }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }

/* ===== Single Post Styles ===== */
.single-post {
    padding-top: 0;
}

.post-header {
    background: var(--gradient-dark);
    padding: 8rem 0 4rem;
    padding-top: calc(80px + 3rem);
    position: relative;
    overflow: hidden;
}

.post-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(0, 120, 212, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(0, 188, 242, 0.1) 0%, transparent 40%);
    pointer-events: none;
}

.post-meta-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
}

.back-link:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.2);
}

.back-link svg {
    width: 18px;
    height: 18px;
}

.post-categories a {
    background: rgba(0, 188, 242, 0.2);
    color: var(--accent-color);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-left: 8px;
    transition: var(--transition);
}

.post-categories a:hover {
    background: var(--accent-color);
    color: var(--white);
}

.post-title {
    color: var(--white);
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    max-width: 900px;
    letter-spacing: -0.5px;
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.meta-item svg {
    width: 18px;
    height: 18px;
    fill: rgba(255, 255, 255, 0.7);
}

.author-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

.post-featured-image {
    margin-top: -3rem;
    position: relative;
    z-index: 2;
}

.post-featured-image img {
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    max-height: 550px;
    width: 100%;
    object-fit: cover;
}

.post-content-wrapper {
    padding: 4rem 0;
    background: var(--white);
}

.post-layout {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 3rem;
}

.share-sidebar {
    position: relative;
}

.share-sticky {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.share-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.share-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    background: var(--light-bg);
}

.share-btn svg {
    width: 20px;
    height: 20px;
    fill: var(--text-light);
    transition: var(--transition);
}

.share-btn:hover {
    transform: translateY(-2px);
}

.share-facebook:hover { background: #1877f2; }
.share-twitter:hover { background: #1da1f2; }
.share-linkedin:hover { background: #0077b5; }
.share-whatsapp:hover { background: #25d366; }
.share-email:hover { background: var(--primary-color); }
.share-copy:hover { background: var(--text-dark); }

.share-btn:hover svg {
    fill: var(--white);
}

.post-content {
    max-width: 800px;
}

.post-content h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.3;
}

.post-content h3 {
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    font-size: 1.35rem;
    font-weight: 600;
}

.post-content h4 {
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-size: 1.15rem;
    font-weight: 600;
}

.post-content p {
    margin-bottom: 1.5rem;
    line-height: 1.85;
    color: #374151;
    font-size: 1.05rem;
}

.post-content a {
    color: var(--primary-color);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.post-content a:hover {
    color: var(--primary-dark);
}

.post-content ul,
.post-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.75rem;
    color: #374151;
}

.post-content li {
    margin-bottom: 0.75rem;
    line-height: 1.75;
    font-size: 1.05rem;
}

.post-content li::marker {
    color: var(--primary-color);
}

.post-content img {
    border-radius: 12px;
    margin: 2rem 0;
    box-shadow: var(--shadow-sm);
}

.post-content blockquote {
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem 2rem;
    margin: 2.5rem 0;
    background: linear-gradient(135deg, rgba(0, 120, 212, 0.05), rgba(0, 188, 242, 0.05));
    border-radius: 0 12px 12px 0;
    font-style: italic;
    font-size: 1.1rem;
    color: #4b5563;
}

.post-content blockquote p:last-child {
    margin-bottom: 0;
}

.post-content code {
    background: #f1f5f9;
    padding: 3px 8px;
    border-radius: 6px;
    font-family: 'Consolas', 'Monaco', monospace;
    font-size: 0.9em;
    color: #e11d48;
}

.post-content pre {
    background: #1e293b;
    color: #e2e8f0;
    padding: 1.75rem;
    border-radius: 12px;
    overflow-x: auto;
    margin: 2.5rem 0;
    line-height: 1.6;
}

.post-content pre code {
    background: none;
    padding: 0;
    color: inherit;
    font-size: 0.95rem;
}

.post-tags {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.tags-label {
    font-weight: 600;
    color: var(--text-dark);
}

.post-tags a {
    background: var(--light-bg);
    color: var(--text-light);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    transition: var(--transition);
}

.post-tags a:hover {
    background: var(--primary-color);
    color: var(--white);
}

.share-bar-mobile {
    display: none;
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: var(--border-radius);
    text-align: center;
}

.share-bar-mobile .share-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 1rem;
}

/* Author Box */
.author-box {
    display: flex;
    gap: 2rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border-radius: 20px;
    margin-top: 4rem;
    border: 1px solid #e2e8f0;
    align-items: center;
}

.author-avatar-large {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    flex-shrink: 0;
    border: 4px solid var(--white);
    box-shadow: var(--shadow-md);
}

.author-label {
    font-size: 0.75rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.author-name {
    font-size: 1.35rem;
    margin: 0.5rem 0 0.75rem;
    color: var(--text-dark);
    font-weight: 700;
}

.author-bio {
    color: #6b7280;
    margin: 0;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Related Posts */
.related-posts {
    margin-top: 5rem;
    padding-top: 4rem;
    border-top: 1px solid #e2e8f0;
}

.related-title {
    font-size: 1.75rem;
    margin-bottom: 2.5rem;
    color: var(--text-dark);
    font-weight: 700;
    text-align: center;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.related-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid #e2e8f0;
    transition: var(--transition);
}

.related-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.related-image {
    display: block;
    overflow: hidden;
}

.related-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.related-content {
    padding: 1.5rem;
}

.related-date {
    font-size: 0.8rem;
    color: var(--text-light);
    display: block;
}

.related-content h3 {
    font-size: 1.05rem;
    margin: 0.75rem 0 0;
    line-height: 1.5;
    font-weight: 600;
}

.related-content h3 a {
    color: var(--text-dark);
    transition: var(--transition);
}

.related-content h3 a:hover {
    color: var(--primary-color);
}

/* ===== Comments Section ===== */
.comments-section {
    margin-top: 5rem;
    padding-top: 4rem;
    border-top: 1px solid #e2e8f0;
}

.comments-area {
    max-width: 800px;
}

.comments-title {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    color: var(--text-dark);
    font-weight: 700;
}

.comment-list {
    list-style: none;
    padding: 0;
    margin: 0 0 3rem;
}

.comment-list .comment {
    margin-bottom: 1.5rem;
}

.comment-body {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: var(--border-radius);
}

.comment-author-avatar img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.comment-content-wrapper {
    flex: 1;
}

.comment-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.comment-author-name {
    font-weight: 600;
    color: var(--text-dark);
}

.comment-author-name a {
    color: var(--text-dark);
}

.comment-date {
    font-size: 0.85rem;
    color: var(--text-light);
}

.comment-content p {
    margin: 0;
    color: var(--text-dark);
    line-height: 1.6;
}

.comment-actions {
    margin-top: 0.75rem;
    display: flex;
    gap: 1rem;
}

.comment-actions a {
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 500;
}

.comment-actions a:hover {
    text-decoration: underline;
}

.children {
    list-style: none;
    padding-left: 2rem;
    margin-top: 1rem;
}

/* Comment Form */
.comment-respond {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 16px;
}

.comment-reply-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.comment-notes {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.required {
    color: #e53e3e;
}

.comment-form-field {
    margin-bottom: 1.25rem;
}

.comment-form-field label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.comment-form-field input,
.comment-form-field textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--white);
}

.comment-form-field input:focus,
.comment-form-field textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 120, 212, 0.1);
}

.comment-submit {
    margin-top: 1rem;
}

.comment-awaiting-moderation {
    background: #fef3c7;
    color: #92400e;
    padding: 0.75rem 1rem;
    border-radius: var(--border-radius);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.no-comments {
    color: var(--text-light);
    font-style: italic;
}

/* Login Required for Comments */
.comment-login-required {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    border: 1px solid #e2e8f0;
}

.login-prompt svg {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.login-prompt h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.login-prompt p {
    color: #6b7280;
    margin-bottom: 1.5rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.login-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
}

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

.logged-in-as {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.logged-in-as a {
    color: var(--primary-color);
}

/* ===== Page Hero Section ===== */
.page-hero {
    background: var(--gradient-dark);
    padding: 10rem 0 6rem;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(13, 99, 223, 0.18) 0%, transparent 35%),
        radial-gradient(circle at 85% 70%, rgba(29, 211, 248, 0.15) 0%, transparent 40%);
    pointer-events: none;
}

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

.page-hero .section-label {
    background: rgba(29, 211, 248, 0.2);
    color: var(--accent-color);
}

.page-hero h1 {
    font-size: clamp(2.5rem, 2vw + 2rem, 3.5rem);
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.page-hero h1 span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-hero p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 2rem;
    max-width: 650px;
}

.page-hero .hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.page-hero-it::before {
    background:
        radial-gradient(circle at 85% 20%, rgba(13, 99, 223, 0.18) 0%, transparent 35%),
        radial-gradient(circle at 15% 70%, rgba(29, 211, 248, 0.15) 0%, transparent 40%);
}

.hybrid-hero::before {
    background-image:
        linear-gradient(rgba(2, 22, 54, 0.85), rgba(2, 22, 54, 0.85)),
        url('/wp-content/uploads/2025/12/Hybrid-Deployments.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* ===== Services Overview / Pillars ===== */
.services-overview {
    padding: var(--section-padding);
    background: var(--white);
}

.services-overview .section-header {
    margin-bottom: 2.5rem;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.pillar-card {
    background: linear-gradient(180deg, var(--white), var(--light-bg));
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.pillar-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.pillar-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.pillar-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pillar-icon svg {
    width: 36px;
    height: 36px;
    fill: var(--white);
}

.pillar-icon-alt {
    background: linear-gradient(135deg, #00bcf2, #0078d4);
}

.pillar-card h3 {
    font-size: 1.75rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.pillar-card > p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.pillar-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    flex: 1;
}

.pillar-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    color: var(--text-dark);
    font-weight: 500;
}

.pillar-features li:last-child {
    border-bottom: none;
}

.pillar-features li svg {
    width: 20px;
    height: 20px;
    fill: var(--primary-color);
    flex-shrink: 0;
}

.pillar-card .btn {
    align-self: flex-start;
}

/* ===== CTA Section ===== */
.cta-section {
    padding: 5rem 0;
    background: var(--gradient-primary);
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    color: var(--white);
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.15rem;
    margin-bottom: 2rem;
}

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

.cta-section .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
}

/* ===== Managed Services Section ===== */
.managed-services {
    padding: var(--section-padding);
    background: var(--light-bg);
}

.managed-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.managed-card {
    background: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.managed-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.managed-icon {
    width: 56px;
    height: 56px;
    background: rgba(13, 99, 223, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.managed-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--primary-color);
}

.managed-card h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.managed-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

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

.managed-card ul li {
    color: var(--text-light);
    font-size: 0.9rem;
    padding: 0.35rem 0;
    padding-left: 1rem;
    position: relative;
}

.managed-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    background: var(--primary-color);
    border-radius: 50%;
}

/* ===== Network Section ===== */
.network-section {
    padding: var(--section-padding);
    background: var(--white);
}

/* ===== Backup Section ===== */
.backup-section {
    padding: var(--section-padding);
    background: var(--light-bg);
}

/* ===== Hybrid Section ===== */
.hybrid {
    padding: var(--section-padding);
    background: var(--gradient-dark);
}

.hybrid .about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hybrid .about-text .section-label {
    background: rgba(29, 211, 248, 0.2);
    color: var(--accent-color);
}

.hybrid .about-text h2 {
    color: var(--white);
}

.hybrid .about-text p {
    color: rgba(255, 255, 255, 0.75);
}

.hybrid .feature-text {
    color: rgba(255, 255, 255, 0.8);
}

.hybrid .feature-text strong {
    color: var(--white);
}

/* ===== NEW HOMEPAGE STYLES ===== */

/* Home Hero */
.home-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: var(--gradient-dark);
    padding: 8rem 0 4rem;
    overflow: hidden;
}

.home-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    pointer-events: none;
}

.home-hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(11, 14, 26, 0.85) 0%, rgba(15, 18, 33, 0.75) 50%, rgba(13, 99, 223, 0.5) 100%);
}

.home-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(13, 99, 223, 0.25), transparent),
        radial-gradient(ellipse 60% 40% at 100% 100%, rgba(29, 211, 248, 0.12), transparent);
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.hero-badge svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    flex-shrink: 0;
}

.home-hero h1 {
    font-size: clamp(3rem, 5vw, 4.5rem);
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.home-hero h1 span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.home-hero p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 560px;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.05rem;
}

.btn-ghost {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 1rem 2rem;
    border-radius: 10px;
    font-weight: 600;
}

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

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
}

/* Home Services */
.home-services {
    padding: 6rem 0;
    background: var(--light-bg);
}

.services-intro {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.services-intro .section-tag {
    margin-bottom: 1rem;
}

.services-intro h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.services-intro p {
    color: var(--text-light);
    font-size: 1.15rem;
    line-height: 1.7;
}

/* Modern Service Cards Grid */
.service-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card-modern {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
}

.service-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(13, 99, 223, 0.15);
    border-color: rgba(13, 99, 223, 0.2);
}

.service-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(13, 99, 223, 0.08);
    line-height: 1;
}

.service-icon-modern {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon-modern svg {
    width: 28px;
    height: 28px;
    fill: var(--white);
}

.service-card-modern h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.service-card-modern > p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    flex: 1;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-dark);
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
}

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

.service-cta svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    transition: transform 0.2s ease;
}

.service-card-modern:hover .service-cta svg {
    transform: translateX(4px);
}

@media (max-width: 1024px) {
    .service-cards-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .services-intro h2 {
        font-size: 2rem;
    }

    .service-card-modern {
        padding: 2rem;
    }
}

/* Legacy service cards (keep for compatibility) */
.service-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.service-card {
    display: block;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
}

.service-card-inner {
    padding: 2.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card-voice {
    background: linear-gradient(135deg, #0d1224 0%, #1a2744 100%);
    box-shadow: 0 20px 60px rgba(13, 99, 223, 0.2);
}

.service-card-voice:hover {
    box-shadow: 0 30px 80px rgba(13, 99, 223, 0.3);
}

.service-card-it {
    background: linear-gradient(135deg, #0a1628 0%, #152238 100%);
    box-shadow: 0 20px 60px rgba(29, 211, 248, 0.15);
}

.service-card-it:hover {
    box-shadow: 0 30px 80px rgba(29, 211, 248, 0.25);
}

.service-card-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-card-icon svg {
    width: 32px;
    height: 32px;
    fill: var(--accent-color);
}

.service-card h3 {
    font-size: 1.75rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.service-card p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-card-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem 1.5rem;
    margin-bottom: 2rem;
    flex: 1;
}

.service-card-list li {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    padding-left: 1.25rem;
    position: relative;
}

.service-card-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 6px;
    height: 6px;
    background: var(--accent-color);
    border-radius: 50%;
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-color);
    font-weight: 600;
    margin-top: auto;
}

.service-card-link svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    transition: transform 0.2s ease;
}

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

/* Stats Bar */
.stats-bar {
    background: var(--light-bg);
    padding: 3rem 0;
    border-top: 1px solid var(--neutral-200);
    border-bottom: 1px solid var(--neutral-200);
}

.stats-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-text {
    font-size: 0.9rem;
    color: var(--text-light);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--neutral-200);
}

/* Home About */
.home-about {
    padding: 6rem 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 1rem;
}

.about-text h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.about-points {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.about-point {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-dark);
    font-weight: 500;
}

.about-point svg {
    width: 20px;
    height: 20px;
    fill: var(--primary-color);
    flex-shrink: 0;
}

.about-text {
    margin-top: 0;
    padding-top: 0;
}

.about-visual {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 11rem;
    padding-top: 0;
}

.about-card {
    background: var(--light-bg);
    border: 1px solid var(--neutral-200);
    border-radius: 16px;
    padding: 2rem;
}

.about-card-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.about-card-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--white);
}

.about-card h4 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.about-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

/* Home Industries */
.home-industries {
    padding: 2.5rem 0;
    background: var(--neutral-100);
}

.industries-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.industries-title {
    color: var(--text-light);
    font-size: 0.95rem;
}

.industries-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.industries-tags span {
    background: var(--white);
    border: 1px solid var(--neutral-200);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.875rem;
    color: var(--text-dark);
}

/* Home CTA */
.home-cta {
    padding: 5rem 0;
    background: var(--gradient-dark);
}

.cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
}

.cta-text h2 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.cta-text p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    max-width: 500px;
}

/* Home Contact */
.home-contact {
    padding: 6rem 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
}

.contact-info h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.contact-info > p {
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-method-icon {
    width: 48px;
    height: 48px;
    background: var(--light-bg);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-method-icon svg {
    width: 22px;
    height: 22px;
    fill: var(--primary-color);
}

.contact-method-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 2px;
}

.contact-method-value {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
}

.contact-map {
    margin-top: 2rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-map iframe {
    display: block;
    width: 100%;
}

.contact-form-wrap {
    background: var(--light-bg);
    border-radius: 20px;
    padding: 2.5rem;
}

.form-success {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #d4edda;
    border: 1px solid #c3e6cb;
    padding: 1.5rem;
    border-radius: 12px;
}

.form-success svg {
    width: 24px;
    height: 24px;
    fill: #28a745;
    flex-shrink: 0;
}

.form-success p {
    margin: 0;
    color: #155724;
}

.form-error {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.form-error svg {
    width: 24px;
    height: 24px;
    fill: #dc3545;
    flex-shrink: 0;
}

.form-error p {
    margin: 0;
    color: #721c24;
    font-weight: 500;
}

.captcha-field {
    background: var(--light-bg);
    padding: 1.25rem;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.captcha-field label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.captcha-image-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.captcha-image {
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    display: block;
    height: 60px;
    width: 200px;
}

.captcha-refresh {
    background: var(--primary-color);
    border: none;
    border-radius: 8px;
    padding: 0.75rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
}

.captcha-refresh:hover {
    background: var(--secondary-color);
    transform: rotate(180deg);
}

.captcha-refresh svg {
    fill: white;
}

.captcha-field input[type="text"],
.captcha-field input[type="number"] {
    max-width: 200px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-field {
    margin-bottom: 1.25rem;
}

.form-field label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--neutral-200);
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    background: var(--white);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(13, 99, 223, 0.1);
}

.form-field textarea {
    resize: vertical;
    min-height: 120px;
}

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

.form-privacy {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 1rem;
    margin-bottom: 0;
}

/* Homepage Responsive */
@media (max-width: 1024px) {
    .service-cards {
        grid-template-columns: 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .cta-box {
        flex-direction: column;
        text-align: center;
    }

    .cta-text p {
        max-width: none;
    }
}

@media (max-width: 768px) {
    .home-hero {
        min-height: auto;
        padding: 10rem 0 5rem;
    }

    .home-hero h1 {
        font-size: 2.5rem;
    }

    .hero-scroll {
        display: none;
    }

    .stats-grid {
        flex-wrap: wrap;
        gap: 2rem;
    }

    .stat-divider {
        display: none;
    }

    .stat-item {
        flex: 1 1 40%;
    }

    .industries-row {
        flex-direction: column;
        text-align: center;
    }

    .industries-tags {
        justify-content: center;
    }

    .service-card-inner {
        padding: 2rem;
    }

    .service-card-list {
        grid-template-columns: 1fr;
    }

    .contact-form-wrap {
        padding: 1.5rem;
    }

    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
}

/* ===== Page Responsive ===== */
@media (max-width: 1024px) {
    .pillars-grid {
        grid-template-columns: 1fr;
    }

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

    .hybrid .about-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 8rem 0 4rem;
    }

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

    .managed-grid {
        grid-template-columns: 1fr;
    }

    .pillar-card {
        padding: 2rem;
    }
}

/* ===== Blog Archive Styles ===== */
.blog-archive {
    padding-top: 0;
}

.archive-header {
    background: var(--gradient-dark);
    padding: 4rem 0;
    padding-top: calc(80px + 3rem);
    text-align: center;
}

.archive-title {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.archive-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.archive-content {
    padding: 4rem 0;
    background: var(--light-bg);
}

.archive-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.blog-card .blog-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
    font-size: 0.85rem;
    color: var(--text-light);
}

.blog-meta svg {
    width: 14px;
    height: 14px;
    fill: var(--text-light);
}

.blog-views,
.blog-comments {
    display: flex;
    align-items: center;
    gap: 4px;
}

.blog-image-placeholder {
    background: var(--gradient-primary);
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-image-placeholder svg {
    width: 60px;
    height: 60px;
    fill: rgba(255, 255, 255, 0.5);
}

/* Pagination */
.pagination {
    margin-top: 3rem;
    text-align: center;
}

.pagination .nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.pagination a,
.pagination span {
    padding: 10px 16px;
    border-radius: var(--border-radius);
    font-weight: 500;
    transition: var(--transition);
}

.pagination a {
    background: var(--white);
    color: var(--text-dark);
    border: 1px solid #e2e8f0;
}

.pagination a:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.pagination .current {
    background: var(--primary-color);
    color: var(--white);
}

.no-posts {
    text-align: center;
    padding: 4rem 2rem;
}

.no-posts h2 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.no-posts p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* Single Post Responsive */
@media (max-width: 1024px) {
    .post-title {
        font-size: 2.25rem;
    }

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

@media (max-width: 768px) {
    .post-layout {
        grid-template-columns: 1fr;
    }

    .share-sidebar {
        display: none;
    }

    .share-bar-mobile {
        display: block;
    }

    .post-title {
        font-size: 1.75rem;
    }

    .post-meta {
        flex-direction: column;
        gap: 0.75rem;
    }

    .author-box {
        flex-direction: column;
        text-align: center;
    }

    .related-grid,
    .archive-grid {
        grid-template-columns: 1fr;
    }

    .archive-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .post-meta-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .post-categories {
        order: -1;
    }
}

/* ========================================
   Partner Logos Carousel
   ======================================== */

.partners-carousel {
    padding: 4rem 0;
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
}

.partners-header {
    text-align: center;
    margin-bottom: 3rem;
}

.partners-header .section-tag {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #0066cc;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.partners-header h3 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.partners-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.partners-slider {
    position: relative;
    width: 100%;
    max-width: 500px;
    overflow: hidden;
    min-height: 200px;
}

.partners-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.partner-logo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    min-height: 200px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-in-out;
}

.partner-logo.active {
    opacity: 1;
    visibility: visible;
}

.partner-logo img {
    max-width: 100%;
    max-height: 120px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.carousel-nav {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: #ffffff;
    color: #0066cc;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.carousel-nav:hover {
    background: #0066cc;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

.carousel-nav:active {
    transform: scale(0.95);
}

.carousel-nav svg {
    width: 24px;
    height: 24px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    border: none;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.dot:hover {
    background: #9ca3af;
}

.dot.active {
    background: #0066cc;
    width: 32px;
    border-radius: 6px;
}

/* Tablet adjustments */
@media (max-width: 768px) {
    .partners-carousel {
        padding: 3rem 0;
    }

    .partners-header h3 {
        font-size: 1.5rem;
    }

    .partners-slider-wrapper {
        gap: 1rem;
    }

    .partners-slider {
        max-width: 400px;
    }

    .partner-logo {
        padding: 2rem 1.5rem;
        min-height: 160px;
    }

    .partner-logo img {
        max-height: 100px;
    }

    .carousel-nav {
        width: 40px;
        height: 40px;
    }

    .carousel-nav svg {
        width: 20px;
        height: 20px;
    }
}

/* Mobile adjustments */
@media (max-width: 480px) {
    .partners-carousel {
        padding: 2rem 0;
    }

    .partners-header {
        margin-bottom: 2rem;
    }

    .partners-header h3 {
        font-size: 1.25rem;
    }

    .partners-slider-wrapper {
        gap: 0.5rem;
    }

    .partners-slider {
        max-width: 300px;
    }

    .partner-logo {
        padding: 1.5rem 1rem;
        min-height: 140px;
    }

    .partner-logo img {
        max-height: 80px;
    }

    .carousel-nav {
        width: 36px;
        height: 36px;
    }

    .carousel-nav svg {
        width: 18px;
        height: 18px;
    }

    .carousel-dots {
        gap: 0.5rem;
        margin-top: 1.5rem;
    }

    .dot {
        width: 10px;
        height: 10px;
    }

    .dot.active {
        width: 28px;
    }
}

/* Horizontal Features List - Used in service cards */
.horizontal-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.horizontal-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Aggressively constrain SVG checkmarks with maximum specificity */
.horizontal-features li svg,
.horizontal-features li > svg:first-child,
ul.horizontal-features li svg {
    width: 16px !important;
    height: 16px !important;
    min-width: 16px !important;
    max-width: 16px !important;
    min-height: 16px !important;
    max-height: 16px !important;
    flex-shrink: 0 !important;
    flex-grow: 0 !important;
    fill: var(--primary-color) !important;
    margin-top: 0.25rem !important;
    display: block !important;
    overflow: hidden !important;
}
