/* Blockchain PPC Landing Page Style
 *
 * @package Yudiz
 * @author Sandeep Ghosh
 * @since Blockchain PPC Landing Page 1.0
 * It includes the style for the blockchain ppc landing page
 */

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url('/wp-content/themes/yudiz/blockchain-development-company/assets/fonts/inter-300.woff2')
        format('woff2');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('/wp-content/themes/yudiz/blockchain-development-company/assets/fonts/inter-400.woff2')
        format('woff2');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('/wp-content/themes/yudiz/blockchain-development-company/assets/fonts/inter-500.woff2')
        format('woff2');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('/wp-content/themes/yudiz/blockchain-development-company/assets/fonts/inter-600.woff2')
        format('woff2');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('/wp-content/themes/yudiz/blockchain-development-company/assets/fonts/inter-700.woff2')
        format('woff2');
}

@font-face {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('/wp-content/themes/yudiz/blockchain-development-company/assets/fonts/outfit-400.woff2')
        format('woff2');
}

@font-face {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('/wp-content/themes/yudiz/blockchain-development-company/assets/fonts/outfit-500.woff2')
        format('woff2');
}

@font-face {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('/wp-content/themes/yudiz/blockchain-development-company/assets/fonts/outfit-600.woff2')
        format('woff2');
}

@font-face {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('/wp-content/themes/yudiz/blockchain-development-company/assets/fonts/outfit-700.woff2')
        format('woff2');
}

@font-face {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url('/wp-content/themes/yudiz/blockchain-development-company/assets/fonts/outfit-800.woff2')
        format('woff2');
}

/* --- CSS Reset & Variables --- */
:root {
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Color Palette */
    --bg-primary: #040814;
    --bg-secondary: #091128;
    --bg-card: rgba(13, 22, 47, 0.4);
    --bg-input: rgba(7, 13, 30, 0.6);

    --color-primary: #00f2fe;
    /* Cyber Cyan */
    --color-secondary: #a855f7;
    /* Electric Purple */
    --color-accent: #3b82f6;
    /* Royal Blue */

    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --text-dark: #0f172a;

    --border-glass: rgba(255, 255, 255, 0.06);
    --border-glow: rgba(0, 242, 254, 0.25);

    --shadow-glow: 0 0 20px rgba(0, 242, 254, 0.15);
    --shadow-glow-purple: 0 0 20px rgba(168, 85, 247, 0.2);

    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-main);
    overflow-x: hidden;
    max-width: 100%;
    line-height: 1.6;
}

html {
    scroll-padding-top: 100px;
}

#contact {
    scroll-margin-top: 100px;
}

/* Background Gradients (Atmospheric Glows) */
.ambient-glows {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
    pointer-events: none;
}

.glow-1 {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 60%;
    height: 60%;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(0, 242, 254, 0.08) 0%,
        rgba(0, 0, 0, 0) 70%
    );
    filter: blur(100px);
}

.glow-2 {
    position: absolute;
    top: 40%;
    right: -10%;
    width: 50%;
    height: 50%;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(168, 85, 247, 0.07) 0%,
        rgba(0, 0, 0, 0) 70%
    );
    filter: blur(100px);
}

.glow-3 {
    position: absolute;
    bottom: 10%;
    left: 10%;
    width: 45%;
    height: 45%;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(59, 130, 246, 0.06) 0%,
        rgba(0, 0, 0, 0) 70%
    );
    filter: blur(100px);
}

/* --- Typography --- */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

p {
    color: var(--text-muted);
    font-size: 1.05rem;
}

.gradient-text {
    background: linear-gradient(
        135deg,
        #ffffff 30%,
        var(--color-primary) 70%,
        var(--color-secondary) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-alt {
    background: linear-gradient(
        135deg,
        var(--color-primary) 0%,
        var(--color-accent) 50%,
        var(--color-secondary) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* --- Layout Utilities --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

section {
    position: relative;
    padding: 100px 0;
}

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

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.section-header p {
    font-size: 1.15rem;
}

.badge-tag {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 30px;
    background: rgba(0, 242, 254, 0.08);
    border: 1px solid rgba(0, 242, 254, 0.15);
    color: var(--color-primary);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

/* --- Common Components --- */

/* Glassmorphism Cards */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 35px;
    transition: var(--transition-smooth);
}

.glass-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-glow);
    box-shadow: var(--shadow-glow);
}

/* Interactive Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    padding: 14px 28px;
    border-radius: 12px;
    transition: var(--transition-smooth);
    cursor: pointer;
    text-decoration: none;
    border: none;
    gap: 10px;
}

.btn-primary {
    background: linear-gradient(
        135deg,
        var(--color-primary) 0%,
        var(--color-accent) 100%
    );
    color: var(--text-dark);
    box-shadow: 0 4px 15px rgba(0, 242, 254, 0.25);
}

.btn-primary:hover {
    box-shadow: 0 6px 22px rgba(0, 242, 254, 0.45);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--border-glass);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: var(--border-glow);
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

/* --- Navigation Header --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    z-index: 1000;
    background: transparent;
    transition: var(--transition-smooth);
}

header.scrolled {
    height: 70px;
    background: transparent;
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    transition: var(--transition-smooth);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 40px;
}

.logo img {
    height: 42px;
    width: auto;
    display: block;
    transition: filter var(--transition-smooth);
}

header.light-header .logo img {
    filter: brightness(0) invert(0.1);
}

.header-ctas {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.header-ctas .btn-primary,
.nav-header-cta {
    padding: 10px 20px;
    font-size: 0.95rem;
    border-radius: 8px;
    white-space: nowrap;
    line-height: 1.2;
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.4);
}

.header-ctas .cta-text-short,
.nav-header-cta .cta-text-short {
    display: none;
}

.nav-container .logo {
    flex-shrink: 1;
    min-width: 0;
}

.nav-btn-appointment {
    padding: 10px 20px;
    font-size: 0.95rem;
    border-radius: 8px;
    background: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
    color: var(--text-dark) !important;
    font-weight: 700;
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.4);
}

.nav-btn-appointment:hover {
    background: linear-gradient(135deg, #00d9e5 0%, #3a93e2 100%);
    box-shadow: 0 0 25px rgba(0, 242, 254, 0.7);
    transform: translateY(-2px) !important;
    color: #fff !important;
}

.nav-social-btn {
    padding: 10px 18px;
    font-size: 0.9rem;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
}

.nav-social-btn.whatsapp-color {
    background: #25d366;
    border-color: #25d366;
    color: #ffffff !important;
}

.nav-social-btn.whatsapp-color:hover {
    background: #20ba5a;
    border-color: #20ba5a;
    color: #ffffff !important;
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.6);
    transform: translateY(-2px) !important;
}

.nav-social-btn.telegram-color {
    background: #0088cc;
    border-color: #0088cc;
    color: #ffffff !important;
}

.nav-social-btn.telegram-color:hover {
    background: #0077b3;
    border-color: #0077b3;
    color: #ffffff !important;
    box-shadow: 0 0 15px rgba(0, 136, 204, 0.6);
    transform: translateY(-2px) !important;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

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

.nav-menu a:hover {
    color: var(--color-primary);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    background: transparent;
    border: none;
}

.hamburger span {
    width: 28px;
    height: 2px;
    background-color: var(--text-main);
    transition: var(--transition-fast);
}

/* --- Hero Section --- */
.hero-container {
    width: 100%;
    max-width: 1480px;
    margin: 0 auto;
    padding: 0 40px;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 10%;
    left: -5%;
    width: 45%;
    height: 60%;
    background: radial-gradient(
        circle,
        rgba(0, 242, 254, 0.12) 0%,
        rgba(0, 0, 0, 0) 70%
    );
    filter: blur(80px);
    z-index: -2;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: -5%;
    width: 45%;
    height: 60%;
    background: radial-gradient(
        circle,
        rgba(168, 85, 247, 0.1) 0%,
        rgba(0, 0, 0, 0) 70%
    );
    filter: blur(80px);
    z-index: -2;
    pointer-events: none;
}

.canvas-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: all;
}

#nodeCanvas {
    width: 100%;
    height: 100%;
    display: block;
}

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

.hero-content {
    z-index: 10;
}

.hero h1 {
    font-size: 4.2rem;
    margin-bottom: 24px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.hero-sub {
    font-size: 1.35rem !important;
    font-weight: 600;
    color: var(--text-main);
    line-height: 1.4;
    margin-bottom: 25px !important;
    border-left: 3px solid var(--color-primary);
    padding-left: 20px;
}

.hero p {
    font-size: 1.15rem;
    margin-bottom: 35px;
    max-width: 620px;
    color: var(--text-muted);
}

.hero-ctas {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--color-primary);
    box-shadow: 0 0 8px var(--color-primary);
    display: inline-block;
    animation: pulseDot 2s infinite alternate;
    margin-right: 8px;
}

@keyframes pulseDot {
    0% {
        transform: scale(0.8);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.3);
        opacity: 1;
    }
}

/* Shine Sweep Animation for Buttons */
.contact-form .btn-primary {
    position: relative;
    overflow: hidden;
}
.hero-ctas .btn-primary,
.nav-btn-appointment,
.header-ctas .btn-primary {
    position: relative;
    overflow: hidden;
}
.hero-ctas .btn-primary::after,
.nav-btn-appointment::after,
.header-ctas .btn-primary::after,
.contact-form .btn-primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 45%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 55%
    );
    transform: rotate(45deg);
    transition: none;
    animation: shineSweep 4s infinite ease-in-out;
}

@keyframes shineSweep {
    0% {
        transform: translate(-50%, -50%) rotate(45deg);
    }

    100% {
        transform: translate(150%, 150%) rotate(45deg);
    }
}

/* Trust Badges */
.trust-badges {
    border-top: 1px solid var(--border-glass);
    padding-top: 30px;
}

.trust-badges p {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 15px;
    color: var(--text-muted);
}

.badge-row {
    display: flex;
    gap: 40px;
    align-items: center;
}

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

.badge-number {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-primary);
}

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

/* --- Stats Counter Section (LIGHT SECTION) --- */
.stats {
    padding: 130px 0;
    border-top: none;
    border-bottom: none;
    background: #eef3ff;
    position: relative;
}

/* Light section shared token */
:is(.stats, .whychooseus) {
    --text-on-light: #0f172a;
    --muted-on-light: #475569;
    --border-on-light: rgba(15, 23, 42, 0.1);
    --card-bg-on-light: #ffffff;
}

/* Stats — typography overrides */
.stats .section-header h2 {
    color: var(--text-on-light);
}

.stats .section-header p,
.stats .stat-label {
    color: var(--muted-on-light);
}

.stats .badge-tag {
    background: rgba(0, 120, 180, 0.08);
    border-color: rgba(0, 120, 180, 0.2);
    color: #0077b6;
}

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

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

.stat-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 10px;
    background: linear-gradient(
        135deg,
        var(--color-primary) 0%,
        var(--color-accent) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* --- Services & Expertise --- */
.services .container {
    max-width: 1440px;
}

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

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: linear-gradient(
        135deg,
        rgba(0, 242, 254, 0.1) 0%,
        rgba(168, 85, 247, 0.1) 100%
    );
    border: 1px solid rgba(0, 242, 254, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--color-primary);
}

.service-icon svg {
    width: 28px;
    height: 28px;
}

.glass-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.glass-card p {
    font-size: 0.95rem;
}

/* --- Portfolio Grid --- */
.portfolio-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.tab-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    color: var(--text-muted);
    padding: 10px 22px;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-fast);
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--color-primary);
    color: var(--text-dark);
    border-color: var(--color-primary);
    box-shadow: 0 4px 15px rgba(0, 242, 254, 0.2);
}

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

.portfolio-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-glass);
    aspect-ratio: 4/3;
    cursor: pointer;
}

.portfolio-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        0deg,
        rgba(4, 8, 20, 0.95) 0%,
        rgba(4, 8, 20, 0.4) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0;
    transition: var(--transition-smooth);
}

.portfolio-card:hover .portfolio-img {
    transform: scale(1.08);
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-tag {
    color: var(--color-primary);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.portfolio-overlay h4 {
    font-size: 1.35rem;
    margin-bottom: 8px;
}

.portfolio-overlay p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* --- Tech Stack --- */
.techstack {
    position: relative;
    overflow: hidden;
    background: linear-gradient(
        135deg,
        rgba(0, 242, 254, 0.06) 0%,
        rgba(9, 17, 40, 0) 30%,
        rgba(168, 85, 247, 0.06) 60%,
        rgba(9, 17, 40, 0) 100%
    );
}

.techstack::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(
        circle,
        rgba(0, 242, 254, 0.12) 0%,
        transparent 65%
    );
    filter: blur(60px);
    pointer-events: none;
    animation: techGlow1 8s ease-in-out infinite alternate;
}

.techstack::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 450px;
    height: 450px;
    background: radial-gradient(
        circle,
        rgba(168, 85, 247, 0.12) 0%,
        transparent 65%
    );
    filter: blur(60px);
    pointer-events: none;
    animation: techGlow2 10s ease-in-out infinite alternate;
}

@keyframes techGlow1 {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.8;
    }

    100% {
        transform: translate(60px, 40px) scale(1.15);
        opacity: 1;
    }
}

@keyframes techGlow2 {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.8;
    }

    100% {
        transform: translate(-50px, -30px) scale(1.1);
        opacity: 1;
    }
}

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

/* --- Orbital Tech Ring --- */
.tech-orbit-wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}

/* Category pill tabs */
.tech-orbit-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.orbit-tab {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 24px;
    border-radius: 40px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.orbit-tab:hover {
    color: var(--text-main);
    border-color: rgba(0, 242, 254, 0.45);
    background: rgba(0, 242, 254, 0.06);
    box-shadow: 0 4px 16px rgba(0, 242, 254, 0.12);
}

.orbit-tab.active {
    color: var(--text-dark);
    border-color: transparent;
    background: linear-gradient(
        135deg,
        var(--color-primary) 0%,
        var(--color-accent) 100%
    );
    box-shadow: 0 6px 20px rgba(0, 242, 254, 0.35);
}

/* Orbital stage */
.orbit-stage {
    position: relative;
    width: min(560px, 92vw);
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* decorative concentric dashed rings */
.orbit-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    border: 2px dashed rgba(0, 242, 254, 0.35);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.orbit-ring-outer {
    width: 96%;
    height: 96%;
    animation: orbitSpin 60s linear infinite;
}

.orbit-ring-inner {
    width: 64%;
    height: 64%;
    border-color: rgba(168, 85, 247, 0.35);
    animation: orbitSpin 40s linear infinite reverse;
}

/* glowing traveler dot that rides each ring so the rotation is readable */
.orbit-ring::before {
    content: '';
    position: absolute;
    top: -4px;
    left: 50%;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-primary);
    box-shadow: 0 0 10px 2px rgba(0, 242, 254, 0.7);
    transform: translateX(-50%);
}

.orbit-ring-inner::before {
    background: #a855f7;
    box-shadow: 0 0 10px 2px rgba(168, 85, 247, 0.7);
}

@keyframes orbitSpin {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* connector lines (SVG) */
.orbit-connectors {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
    pointer-events: none;
}

.orbit-connectors line {
    stroke: rgba(0, 242, 254, 0.22);
    stroke-width: 0.18;
    stroke-dasharray: 0.5 0.5;
}

/* glowing core */
.orbit-core {
    position: relative;
    z-index: 3;
    width: 26%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background:
        radial-gradient(
            circle at 32% 28%,
            rgba(0, 242, 254, 0.35) 0%,
            transparent 55%
        ),
        radial-gradient(
            circle at 70% 75%,
            rgba(168, 85, 247, 0.3) 0%,
            transparent 55%
        ),
        linear-gradient(
            135deg,
            rgba(9, 17, 40, 0.92) 0%,
            rgba(13, 22, 47, 0.85) 100%
        );
    border: 1.5px solid rgba(0, 242, 254, 0.55);
    box-shadow:
        0 0 60px rgba(0, 242, 254, 0.3),
        0 0 40px rgba(168, 85, 247, 0.22),
        inset 0 0 30px rgba(0, 242, 254, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 10px;
    text-align: center;
}

.orbit-core-icon {
    width: 46px;
    height: 46px;
    margin-bottom: 2px;
    border-radius: 50%;
    background: linear-gradient(
        135deg,
        var(--color-primary) 0%,
        var(--color-accent) 100%
    );
    box-shadow: 0 6px 18px rgba(0, 242, 254, 0.35);
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

.orbit-core-icon svg {
    width: 22px;
    height: 22px;
}

.orbit-core-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.82rem;
    color: var(--text-main);
    line-height: 1.2;
    padding: 0 4px;
}

.orbit-core-count {
    font-size: 0.6rem;
    color: var(--color-primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 3px 10px;
    border-radius: 20px;
    background: rgba(0, 242, 254, 0.12);
    border: 1px solid rgba(0, 242, 254, 0.25);
}

/* logo nodes positioned by JS (absolute, centered origin) */
.orbit-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 76px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    transform: translate(-50%, -50%);
    z-index: 4;
    animation: orbitPop 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes orbitPop {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.4);
    }

    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

.orbit-logo-badge {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(
        145deg,
        rgba(13, 22, 47, 0.95),
        rgba(9, 17, 40, 0.9)
    );
    border: 1px solid rgba(0, 242, 254, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    box-shadow:
        0 6px 18px rgba(0, 0, 0, 0.35),
        0 0 12px rgba(0, 242, 254, 0.06);
}

.orbit-logo-badge img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: brightness(1.15) contrast(1.05);
    transition: var(--transition-smooth);
}

.orbit-logo-label {
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.1;
    max-width: 88px;
    transition: var(--transition-fast);
}

.orbit-logo:hover .orbit-logo-badge {
    border-color: rgba(0, 242, 254, 0.55);
    box-shadow:
        0 0 28px rgba(0, 242, 254, 0.35),
        0 0 14px rgba(168, 85, 247, 0.2);
    transform: translateY(-3px) scale(1.08);
}

.orbit-logo:hover .orbit-logo-badge img {
    filter: brightness(1.35) contrast(1.15)
        drop-shadow(0 0 4px rgba(0, 242, 254, 0.5));
}

.orbit-logo:hover .orbit-logo-label {
    color: var(--text-main);
}

/* Desktop: tabs as a left sidebar so the orbit circle gets full room on the right */
@media (min-width: 1024px) {
    .tech-orbit-wrap {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 90px;
        min-height: 680px;
    }

    .tech-orbit-tabs {
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: stretch;
        width: 300px;
        flex-shrink: 0;
        gap: 16px;
    }

    .orbit-tab {
        text-align: left;
        padding: 20px 28px;
        font-size: 1.08rem;
        border-radius: 18px;
    }

    .orbit-stage {
        width: min(680px, 50vw);
        margin: 0;
    }

    .orbit-logo {
        width: 96px;
    }

    .orbit-logo-badge {
        width: 84px;
        height: 84px;
        border-radius: 20px;
    }

    .orbit-logo-badge img {
        width: 52px;
        height: 52px;
    }

    .orbit-logo-label {
        font-size: 0.85rem;
        max-width: 120px;
    }

    .orbit-core-icon {
        width: 58px;
        height: 58px;
    }

    .orbit-core-icon svg {
        width: 28px;
        height: 28px;
    }

    .orbit-core-title {
        font-size: 1.05rem;
    }

    .orbit-core-count {
        font-size: 0.75rem;
        padding: 4px 14px;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .orbit-logo {
        width: 58px;
    }

    .orbit-logo-badge {
        width: 50px;
        height: 50px;
        border-radius: 13px;
    }

    .orbit-logo-badge img {
        width: 32px;
        height: 32px;
    }

    .orbit-logo-label {
        font-size: 0.6rem;
        max-width: 64px;
    }

    .orbit-core-title {
        font-size: 0.68rem;
    }

    .orbit-core-count {
        font-size: 0.55rem;
    }

    .orbit-core-icon {
        width: 36px;
        height: 36px;
    }

    .orbit-core-icon svg {
        width: 18px;
        height: 18px;
    }
}

/* --- Process Workflow --- */
.process-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 10%;
    width: 80%;
    height: 2px;
    background: linear-gradient(
        90deg,
        var(--border-glass) 0%,
        var(--border-glow) 50%,
        var(--border-glass) 100%
    );
    z-index: 1;
}

.process-step {
    position: relative;
    z-index: 2;
    text-align: center;
}

.process-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--bg-secondary);
    border: 2px solid var(--border-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px auto;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-main);
    transition: var(--transition-smooth);
}

.process-step:hover .process-number {
    border-color: var(--color-primary);
    color: var(--color-primary);
    box-shadow: var(--shadow-glow);
}

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

.process-step p {
    font-size: 0.9rem;
}

/* --- Blockchain Budget Oracle — Cost Estimator --- */
.cost-estimator {
    position: relative;
    overflow: hidden;
}

.cost-estimator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(
        circle,
        rgba(0, 242, 254, 0.06) 0%,
        transparent 65%
    );
    filter: blur(80px);
    pointer-events: none;
}

/* Shell / Card */
.estimator-shell {
    max-width: 1100px;
    margin: 0 auto;
    background: rgba(9, 17, 40, 0.7);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(0, 242, 254, 0.12);
    border-radius: 28px;
    padding: 48px;
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    position: relative;
}

.estimator-shell::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(
        90deg,
        var(--color-primary),
        var(--color-secondary)
    );
    border-radius: 28px 28px 0 0;
}

/* Step Tracker */
.est-tracker {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 40px;
}

.est-track-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.est-track-dot {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-muted);
    transition: all 0.4s ease;
}

.est-track-step.active .est-track-dot {
    border-color: var(--color-primary);
    background: rgba(0, 242, 254, 0.12);
    color: var(--color-primary);
    box-shadow: 0 0 20px rgba(0, 242, 254, 0.3);
}

.est-track-step.done .est-track-dot {
    border-color: #10b981;
    background: rgba(16, 185, 129, 0.12);
    color: #10b981;
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.2);
}

.est-track-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 500;
    transition: color 0.3s;
}

.est-track-step.active .est-track-label {
    color: var(--color-primary);
}

.est-track-line {
    flex: 1;
    height: 2px;
    background: rgba(255, 255, 255, 0.08);
    margin: 0 12px;
    margin-bottom: 24px;
    border-radius: 2px;
    transition: background 0.4s ease;
    max-width: 120px;
}

.est-track-line.filled {
    background: linear-gradient(
        90deg,
        var(--color-primary),
        rgba(0, 242, 254, 0.4)
    );
}

/* Panel */
.est-panel {
    display: none;
    animation: estFadeIn 0.4s ease forwards;
}

.est-panel.active {
    display: block;
}

@keyframes estFadeIn {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.est-panel-hint {
    font-size: 0.85rem;
    color: var(--color-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 24px;
}

/* Project Grid */
.est-project-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.est-proj-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    padding: 22px 16px;
    text-align: center;
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.est-proj-card:hover {
    border-color: var(--color-primary);
    background: rgba(0, 242, 254, 0.05);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 242, 254, 0.12);
}

.est-proj-card.selected {
    border-color: var(--color-primary);
    background: rgba(0, 242, 254, 0.08);
    box-shadow: 0 0 25px rgba(0, 242, 254, 0.2);
}

.est-proj-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
}

.est-proj-icon svg {
    width: 36px;
    height: 36px;
}

.est-proj-name {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--text-main);
}

.est-proj-hint {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Timeline Grid */
.est-timeline-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.est-time-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    padding: 22px 20px;
    text-align: left;
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
    gap: 4px;
    position: relative;
}

.est-time-card:hover {
    border-color: rgba(168, 85, 247, 0.5);
    background: rgba(168, 85, 247, 0.05);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(168, 85, 247, 0.12);
}

.est-time-card.selected {
    border-color: var(--color-secondary);
    background: rgba(168, 85, 247, 0.08);
    box-shadow: 0 0 25px rgba(168, 85, 247, 0.2);
}

.est-time-icon {
    font-size: 1.5rem;
    margin-bottom: 4px;
}

.est-time-label {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-main);
}

.est-time-sub {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.est-time-badge {
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    display: inline-block;
    margin-top: 8px;
    width: fit-content;
}

.est-time-badge.rush {
    background: rgba(239, 68, 68, 0.15);
    color: #f87171;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.est-time-badge.recommended {
    background: rgba(0, 242, 254, 0.12);
    color: var(--color-primary);
    border: 1px solid rgba(0, 242, 254, 0.3);
}

.est-time-badge.saving {
    background: rgba(16, 185, 129, 0.12);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

/* Budget Grid */
.est-budget-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.est-budget-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    padding: 22px 20px;
    text-align: left;
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: relative;
}

.est-budget-card:hover {
    border-color: #10b981;
    background: rgba(16, 185, 129, 0.05);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.12);
}

.est-budget-card.selected {
    border-color: #10b981;
    background: rgba(16, 185, 129, 0.08);
    box-shadow: 0 0 25px rgba(16, 185, 129, 0.2);
}

.est-budget-icon {
    font-size: 1.5rem;
    margin-bottom: 4px;
}

.est-budget-range {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-main);
}

.est-budget-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Result Panel */
.est-result-wrap {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.est-result-title {
    display: flex;
    align-items: center;
    gap: 18px;
}

.est-check-ring {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.12);
    border: 2px solid #10b981;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #10b981;
    flex-shrink: 0;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.25);
    animation: ringPulse 2s ease-in-out infinite;
}

@keyframes ringPulse {
    0%,
    100% {
        box-shadow: 0 0 20px rgba(16, 185, 129, 0.25);
    }

    50% {
        box-shadow: 0 0 35px rgba(16, 185, 129, 0.45);
    }
}

.est-result-title h3 {
    font-size: 1.5rem;
    margin: 0;
}

.est-result-subtitle {
    font-size: 0.9rem;
    color: var(--color-primary);
    margin: 4px 0 0 0;
    font-weight: 500;
}

.est-result-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.est-res-card {
    border-radius: 18px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.est-res-card.glow-cyan {
    background: rgba(0, 242, 254, 0.05);
    border: 1px solid rgba(0, 242, 254, 0.2);
}

.est-res-card.glow-purple {
    background: rgba(168, 85, 247, 0.05);
    border: 1px solid rgba(168, 85, 247, 0.2);
}

.est-res-card.glow-green {
    background: rgba(16, 185, 129, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.est-res-card-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    font-weight: 600;
}

.est-res-card-value {
    font-size: 1.6rem;
    font-weight: 800;
    font-family: var(--font-heading);
    line-height: 1.1;
    white-space: nowrap;
}

.est-res-card.glow-cyan .est-res-card-value {
    background: linear-gradient(135deg, var(--color-primary), #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.est-res-card.glow-purple .est-res-card-value {
    background: linear-gradient(135deg, var(--color-secondary), #e0b4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.est-res-card.glow-green .est-res-card-value {
    background: linear-gradient(135deg, #10b981, #a7f3d0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.est-res-card-note {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* Disclaimer box */
.est-disclaimer-box {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    padding: 16px 20px;
}

.est-disc-icon {
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 1px;
}

.est-disclaimer-box p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.est-result-actions {
    display: flex;
    gap: 16px;
    align-items: center;
}

/* --- Contact & Lead Capture Section --- */
/* --- Contact & Lead Capture Section --- */
.contact-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    color: #0f172a;
    padding: 60px 0;
    position: relative;
}

.contact-section .container {
    max-width: 1550px;
    width: 94%;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 40px;
    align-items: stretch;
}

.contact-info {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 24px;
    padding: 50px 50px 50px 50px;
    display: flex;
    align-items: stretch;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.04);
    position: relative;
    overflow: visible;
    gap: 30px;
    box-sizing: border-box;
    transition: var(--transition-smooth);
}

.contact-info:hover {
    border-color: rgba(0, 242, 254, 0.4);
    box-shadow:
        0 30px 60px rgba(15, 23, 42, 0.1),
        0 0 30px rgba(0, 242, 254, 0.15);
    transform: translateY(-4px);
}

.contact-info h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #0f172a 30%, var(--color-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-info p {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 25px;
}

.info-cards {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #f1f5f9;
    padding: 20px 24px;
    border-radius: 16px;
    border: 1px solid rgba(15, 23, 42, 0.05);
    transition: var(--transition-smooth);
}

.info-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05);
    background: #e2e8f0;
}

.info-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: rgba(0, 242, 254, 0.1);
    border: 1px solid rgba(0, 242, 254, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    font-size: 1.4rem;
    flex-shrink: 0;
}

.info-detail h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 4px;
}

.info-detail p {
    font-size: 1.05rem;
    color: #475569;
    margin-bottom: 0;
}

.info-detail a {
    transition: color 0.2s ease;
}

.info-detail a:hover {
    color: var(--color-accent) !important;
}

/* Lead Capture Form */
.contact-form-container {
    position: relative;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.contact-form-container:hover {
    animation-play-state: paused;
}

@keyframes floatForm {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: radial-gradient(
        circle,
        rgba(0, 242, 254, 0.15) 0%,
        transparent 70%
    );
    z-index: -1;
    filter: blur(25px);
    pointer-events: none;
    border-radius: 40px;
    transition: var(--transition-smooth);
}

.contact-form-container:hover::before {
    background: radial-gradient(
        circle,
        rgba(168, 85, 247, 0.2) 0%,
        transparent 70%
    );
    filter: blur(35px);
}

.contact-form {
    position: relative;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 24px;
    padding: 45px;
    overflow: hidden;
    box-shadow:
        0 20px 50px rgba(15, 23, 42, 0.06),
        inset 0 1px 1px rgba(255, 255, 255, 0.9);
    transition: var(--transition-smooth);
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(
        90deg,
        var(--color-primary),
        var(--color-secondary)
    );
    z-index: 2;
}

.contact-form:hover {
    border-color: rgba(0, 242, 254, 0.4);
    box-shadow:
        0 30px 60px rgba(15, 23, 42, 0.1),
        0 0 30px rgba(0, 242, 254, 0.15);
    transform: translateY(-4px);
}

.contact-form h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 12px;
    background: linear-gradient(
        135deg,
        #0f172a 40%,
        var(--color-secondary) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.contact-form .form-subtitle {
    font-size: 1.02rem;
    color: #475569;
    margin-bottom: 35px;
}

.form-grid-fields {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 24px;
}

.form-grid-fields .form-group {
    margin-bottom: 0;
}

.form-grid-fields .form-group.full-width {
    grid-column: span 2;
}

.form-group {
    position: relative;
    margin-bottom: 24px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 18px 22px;
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 14px;
    color: #0f172a;
    font-family: var(--font-body);
    font-size: 0.98rem;
    transition: var(--transition-fast);
    outline: none;
}

.form-group label {
    position: absolute;
    left: 22px;
    top: 18px;
    color: #64748b;
    pointer-events: none;
    transition: var(--transition-fast);
    font-size: 0.98rem;
}
.form-group:has(input[type="tel"]) label {
    left: 60px;
    display: none;
}
.iti__selected-dial-code,
.iti__country-name{
    color: #0f172a;
}

.form-group:has(input:focus) label,
.form-group:has(select:focus) label,
.form-group:has(textarea:focus) label,
.form-group.has-value label {
    top: -10px;
    left: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-accent);
    background: #ffffff;
    padding: 2px 8px;
    border-radius: 4px;
}

.form-group select {
    appearance: none;
    cursor: pointer;
}

.form-group select option {
    background-color: #ffffff;
    color: #0f172a;
}

.form-group.select-group::after {
    content: '▼';
    font-size: 0.8rem;
    color: #64748b;
    position: absolute;
    right: 22px;
    top: 22px;
    pointer-events: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    background: #ffffff;
    border-color: var(--color-accent);
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.15);
}

.form-group.error input,
.form-group.error textarea {
    border-color: #ef4444;
}

.error-msg {
    color: #ef4444;
    font-size: 0.82rem;
    margin-top: 6px;
    margin-left: 4px;
    display: none;
}

.form-group.error .error-msg {
    display: block;
}

/* Success State Overlay */
.form-success-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    text-align: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
    border-radius: 24px;
}

.form-success-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.success-checkmark {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.1);
    border: 2px solid #10b981;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: #10b981;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.2);
}

.success-checkmark svg {
    width: 40px;
    height: 40px;
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    animation: drawCheckmark 0.6s 0.2s ease forwards;
}

/* --- Footer --- */
footer {
    background: #02040a;
    border-top: 1px solid var(--border-glass);
    padding: 20px 0;
}

.footer-single-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-logo {
    height: 32px;
    width: auto;
    flex-shrink: 0;
}

.footer-copy {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

/* --- Floating Social Buttons --- */
.floating-social {
    position: fixed;
    right: 24px;
    bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 9999;
    transition:
        left 0.8s cubic-bezier(0.34, 1.56, 0.64, 1),
        top 0.8s cubic-bezier(0.34, 1.56, 0.64, 1),
        right 0.8s cubic-bezier(0.34, 1.56, 0.64, 1),
        bottom 0.8s cubic-bezier(0.34, 1.56, 0.64, 1),
        gap 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.floating-social.docked {
    position: fixed;
    flex-direction: row;
    gap: 14px;
    transition: gap 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.floating-social.docked .float-btn {
    transform: rotate(360deg);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.1);
}

.floating-social.docked .float-btn:hover {
    transform: rotate(360deg) scale(1.12);
}

.float-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
    transition:
        transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.25s ease;
    flex-shrink: 0;
    position: relative;
}
.float-btn::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%) scale(0.9);
    background: #0f172a;
    color: #fff;
    padding: 6px 10px;
    font-size: 0.75rem;
    font-family: var(--font-body);
    font-weight: 500;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15);
    z-index: 10000;
}

.float-btn:hover::after {
    opacity: 1;
    transform: translateX(-50%) scale(1);
}
.float-btn svg {
    width: 24px;
    height: 24px;
}

.float-btn:hover {
    transform: scale(1.12);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
}

.float-wa {
    background: #25d366;
}

.float-wa:hover {
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
}

.float-tg {
    background: #229ed9;
}

.float-tg:hover {
    box-shadow: 0 8px 28px rgba(34, 158, 217, 0.45);
}

.footer-links h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--color-primary);
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links ul a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

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

.footer-bottom {
    border-top: 1px solid var(--border-glass);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    font-size: 0.85rem;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition-fast);
    text-decoration: none;
}

.social-icon:hover {
    background: var(--color-primary);
    color: var(--text-dark);
    border-color: var(--color-primary);
    box-shadow: 0 4px 15px rgba(0, 242, 254, 0.2);
}

/* --- Scroll Trigger Animation Utility --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity 0.8s ease,
        transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* --- Keyframe Animations --- */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes drawCheckmark {
    to {
        stroke-dashoffset: 0;
    }
}

/* --- Responsive Layout Adjustments --- */
@media (max-width: 1024px) {
    .hero-container {
        padding: 0 32px;
    }

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

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

    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .process-timeline::before {
        display: none;
    }
    .hero-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-container {
        padding: 0 20px;
    }

    .form-grid-fields {
        grid-template-columns: 1fr;
        gap: 16px;
    }

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

    section {
        padding: 60px 0;
    }

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

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--bg-primary);
        flex-direction: column;
        padding: 40px 24px;
        transition: var(--transition-smooth);
        border-top: 1px solid var(--border-glass);
        z-index: 999;
    }

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

    .hamburger {
        display: flex;
    }

    .hero {
        padding-top: 100px;
    }

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

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

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

    .services-grid,
    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info {
        border-left: none;
        border-top: 4px solid;
        border-image: linear-gradient(
                to right,
                var(--color-primary),
                var(--color-secondary)
            )
            1;
        padding-left: 0;
        padding-top: 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Mobile Header CTAs overrides */
    html {
        scroll-padding-top: 84px;
    }

    #contact {
        scroll-margin-top: 84px;
    }

    header {
        height: 68px;
    }

    header.scrolled {
        height: 62px;
    }

    .nav-container {
        padding: 0 14px;
        gap: 10px;
    }

    .logo img {
        height: 30px;
        max-width: 100%;
    }

    .nav-container .logo {
        max-width: 42%;
    }

    .header-ctas {
        gap: 0;
        max-width: 58%;
    }

    .header-ctas .btn-primary,
    .nav-header-cta,
    .nav-btn-appointment {
        padding: 8px 10px;
        font-size: 0.68rem;
        border-radius: 6px;
        white-space: nowrap;
        letter-spacing: -0.01em;
    }

    .header-ctas .cta-text-full,
    .nav-header-cta .cta-text-full {
        display: none;
    }

    .header-ctas .cta-text-short,
    .nav-header-cta .cta-text-short {
        display: inline;
    }

    .nav-social-btn span {
        display: none;
    }

    .nav-social-btn {
        padding: 8px 10px;
        border-radius: 6px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 12px;
        gap: 8px;
    }

    .logo img {
        height: 26px;
    }

    .nav-container .logo {
        max-width: 38%;
    }

    .header-ctas {
        max-width: 62%;
    }

    .header-ctas .btn-primary,
    .nav-header-cta,
    .nav-btn-appointment {
        padding: 7px 8px;
        font-size: 0.62rem;
    }
}

@media (max-width: 360px) {
    .logo img {
        height: 24px;
    }

    .header-ctas .btn-primary,
    .nav-header-cta,
    .nav-btn-appointment {
        padding: 6px 7px;
        font-size: 0.58rem;
    }
}

/* --- Added Styles for 12-Section Content Blueprint --- */

/* Hero Alternate Connect Buttons */
.alternate-social-ctas {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.alternate-vertical {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.alt-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.whatsapp-color {
    background: #25d366;
    border: 1px solid #25d366;
    color: #ffffff !important;
}

.whatsapp-color:hover {
    background: #20ba5a;
    border-color: #20ba5a;
    color: #ffffff !important;
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.6);
    transform: translateY(-2px);
}

.telegram-color {
    background: #0088cc;
    border: 1px solid #0088cc;
    color: #ffffff !important;
}

.telegram-color:hover {
    background: #0077b3;
    border-color: #0077b3;
    color: #ffffff !important;
    box-shadow: 0 0 15px rgba(0, 136, 204, 0.6);
    transform: translateY(-2px);
}

.social-btn svg.social-svg-icon {
    width: 16px !important;
    height: 16px !important;
    flex-shrink: 0;
}

/* Hero Trust Badges Row */
.hero-trust-row {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.trust-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 700;
    color: var(--color-primary);
    background: rgba(99, 66, 255, 0.1);
    border: 1px solid rgba(99, 66, 255, 0.3);
    padding: 5px 14px;
    border-radius: 20px;
    width: fit-content;
}

.trust-label::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-primary);
    box-shadow: 0 0 8px var(--color-primary);
    animation: pulse 2s infinite;
}

.trust-logos {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.trust-logo-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 6px 18px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    width: 130px;
    transition: var(--transition-fast);
}

.trust-logo-item img {
    max-height: 28px;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 1px rgba(255, 255, 255, 0.2));
    opacity: 0.65;
    transition: var(--transition-fast);
}

.trust-logo-item:hover {
    border-color: var(--color-primary);
    background: rgba(99, 66, 255, 0.08);
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

.trust-logo-item:hover img {
    opacity: 1;
    filter: drop-shadow(0 0 4px rgba(99, 66, 255, 0.6));
}

/* Typographic ISO 9001 Flat Badge inside trust item */
.iso-logo-text-container {
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.65;
    transition: var(--transition-fast);
}

.trust-logo-item:hover .iso-logo-text-container {
    opacity: 1;
}

.iso-logo-text-container svg {
    width: 18px;
    height: 18px;
    color: rgba(255, 255, 255, 0.85);
    flex-shrink: 0;
    transition: var(--transition-fast);
}

.trust-logo-item:hover .iso-logo-text-container svg {
    color: var(--color-accent);
    filter: drop-shadow(0 0 4px rgba(0, 242, 254, 0.4));
}

.iso-text-meta {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    text-align: left;
}

.iso-text-title {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.02em;
}

.iso-text-sub {
    font-size: 0.46rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.05em;
    margin-top: 1px;
}

/* Form Trust Line / Points */
.form-trust-line {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 12px;
}

.form-trust-points {
    list-style: none;
    padding: 20px 0 0 0;
    margin-top: 20px;
    border-top: 1px solid var(--border-glass);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.form-trust-points li {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Services Learn More Link */
.service-learn-more {
    display: inline-block;
    margin-top: 15px;
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.service-learn-more:hover {
    color: var(--color-secondary);
    padding-left: 5px;
}

/* Services 10-Grid Layout */
.services-10-grid {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
}

/* Why Choose Us Grid & Cards */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.why-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 30px;
    transition: var(--transition-smooth);
}

.why-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-secondary);
    box-shadow: var(--shadow-glow-purple);
}

.why-icon {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-secondary);
    margin-bottom: 15px;
    background: rgba(168, 85, 247, 0.08);
    border: 1px solid rgba(168, 85, 247, 0.2);
    display: inline-block;
    padding: 4px 10px;
    border-radius: 4px;
}

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

.why-card p {
    font-size: 0.9rem;
}

/* Case Studies Section */
.portfolio-scroll-container {
    position: relative;
    height: 350vh;
    /* scrollable space for 4 cards */
}

.portfolio-sticky-wrapper {
    position: sticky;
    top: 130px;
    height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blueprint-case-card {
    position: absolute;
    width: 100%;
    height: 480px;
    background: #0a1128;
    /* backdrop-filter: blur(12px); */
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.4);
    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        filter 0.4s ease;
    transform-origin: center bottom;
}

/* Base style / Initial stack order */
.blueprint-case-card:nth-child(1) {
    z-index: 5;
}

.blueprint-case-card:nth-child(2) {
    z-index: 4;
}

.blueprint-case-card:nth-child(3) {
    z-index: 3;
}

.blueprint-case-card:nth-child(4) {
    z-index: 2;
}

.blueprint-case-card:nth-child(5) {
    z-index: 1;
}

.case-visual {
    background: #060b1b;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid var(--border-glass);
    height: 100%;
}

.case-visual svg {
    width: 80%;
    height: 80%;
}
.portfolio-img-wrapper {
    position: relative;
    width: 90%;
    border-radius: 12px;
    padding: 3px;
    background: linear-gradient(135deg, #00f2fe, #a855f7, #3b82f6);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 5px 15px rgba(0, 242, 254, 0.12);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
}

.portfolio-img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 9px;
    border: 1px solid rgba(0, 0, 0, 0.4);
}

.blueprint-case-card:hover .portfolio-img-wrapper {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.55), 0 8px 25px rgba(0, 242, 254, 0.28), 0 5px 15px rgba(168, 85, 247, 0.18);
}
.case-details {
    padding: 35px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #0a1128;
}

.case-category {
    display: inline-block;
    color: var(--color-primary);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.case-details h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.case-details p {
    font-size: 1rem;
    margin-bottom: 20px;
}

.case-deliverables {
    list-style: none;
    margin-bottom: 25px;
}

.case-deliverables li {
    font-size: 0.9rem;
    color: var(--text-muted);
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
}

.case-deliverables li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: bold;
}

.btn-case {
    padding: 10px 22px;
    font-size: 0.9rem;
}

/* Client Testimonials Styles */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 35px;
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.15);
}

.rating {
    color: #fbbf24;
    /* Gold Stars */
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.quote {
    font-size: 0.95rem;
    color: var(--text-main);
    font-style: italic;
    margin-bottom: 25px;
    line-height: 1.6;
}

.client-meta h4 {
    font-size: 1rem;
    color: var(--color-primary);
    margin-bottom: 3px;
}

.client-meta span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.clutch-review-link {
    color: var(--color-primary);
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 600;
    border-bottom: 1px dashed var(--color-primary);
    transition: var(--transition-fast);
}

.clutch-review-link:hover {
    color: var(--text-main);
    border-bottom-color: var(--text-main);
}

/* 6-Step Timeline Override */
.process-6-timeline {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.process-6-timeline::before {
    display: none;
    /* Hide linear bar for 2x3 grid workflow */
}

/* FAQ Accordion Styling */
.faq-container {
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
    overflow: hidden;
}

.faq-item:hover {
    border-color: rgba(0, 242, 254, 0.35);
    box-shadow: 0 4px 25px rgba(0, 242, 254, 0.05);
    background: rgba(13, 22, 47, 0.55);
}

.faq-item.active {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-glow);
    background: rgba(13, 22, 47, 0.75);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 28px;
    background: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    text-align: left;
    transition: var(--transition-fast);
}

.faq-question span:first-child {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-main);
}

.faq-icon-arrow {
    position: relative;
    width: 16px;
    height: 16px;
    display: inline-block;
    flex-shrink: 0;
    margin-left: 15px;
}

.faq-icon-arrow::before,
.faq-icon-arrow::after {
    content: '';
    position: absolute;
    background: var(--text-muted);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Horizontal line */
.faq-icon-arrow::before {
    top: 7px;
    left: 0;
    width: 16px;
    height: 2px;
}

/* Vertical line */
.faq-icon-arrow::after {
    top: 0;
    left: 7px;
    width: 2px;
    height: 16px;
}

/* Active State for Icon (turns plus into minus) */
.faq-item.active .faq-icon-arrow::after {
    transform: rotate(90deg);
    opacity: 0;
}

.faq-item.active .faq-icon-arrow::before {
    background: var(--color-primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition:
        max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        padding 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 0 28px;
}

.faq-answer-inner {
    padding-bottom: 22px;
}

.faq-answer p {
    font-size: 0.98rem;
    color: var(--text-muted);
    line-height: 1.65;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    /* Safe upper limit for accordion item */
    padding: 8px 28px 22px 28px;
}

.faq-item.active .faq-question span:first-child {
    color: var(--color-primary);
}

/* --- Comparison Cards Redesign --- */
.comparison-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    margin-bottom: 60px;
}

.comparison-card {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    transition: var(--transition-smooth);
    position: relative;
}

.comparison-card.competitors-card {
    border-color: rgba(239, 68, 68, 0.15);
    background: rgba(239, 68, 68, 0.01);
}

.comparison-card.yudiz-card {
    border-color: rgba(99, 66, 255, 0.25);
    background: rgba(99, 66, 255, 0.02);
    box-shadow: 0 20px 45px rgba(99, 66, 255, 0.06);
}

.comparison-card.yudiz-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 24px;
    border: 1px solid transparent;
    background: linear-gradient(
            135deg,
            var(--color-primary),
            var(--color-accent)
        )
        border-box;
    -webkit-mask:
        linear-gradient(#fff 0 0) padding-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.5;
}

.comparison-card:hover {
    transform: translateY(-5px);
}

.comparison-card.yudiz-card:hover {
    box-shadow:
        0 25px 55px rgba(99, 66, 255, 0.12),
        var(--shadow-glow);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-glass);
    padding-bottom: 25px;
    margin-bottom: 30px;
}

.card-header h4 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #ef4444;
}

.yudiz-logo-header {
    display: flex;
    align-items: center;
}

.yudiz-logo-header .comp-logo {
    height: 30px;
    width: auto;
    object-fit: contain;
}

.status-pill {
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.status-pill.status-red {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.status-pill.status-green {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.comparison-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.comparison-list li {
    display: flex;
    align-items: center;
    gap: 16px;
}

.icon-wrap {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-wrap.cross-wrap {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.icon-wrap.check-wrap {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.icon-wrap svg {
    width: 14px;
    height: 14px;
}

.list-text {
    font-size: 1.05rem;
    color: var(--text-muted);
}

.yudiz-card .list-text {
    color: var(--text-main);
    font-weight: 500;
}

/* Badges Grid styling */
.why-badges-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.why-badge-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 35px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    min-height: 250px;
    justify-content: center;
}

.why-badge-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-glow);
    box-shadow: var(--shadow-glow);
}

.badge-hover-info {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(9, 17, 40, 0.95) 0%,
        rgba(13, 22, 47, 0.98) 100%
    );
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(100%);
    transition:
        opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 5;
}

.why-badge-card:hover .badge-hover-info {
    opacity: 1;
    transform: translateY(0);
}

.badge-hover-info p {
    font-size: 0.95rem;
    color: var(--text-main);
    line-height: 1.6;
}

.badge-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.badge-icon svg {
    width: 24px;
    height: 24px;
}

.badge-icon.icon-blue {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    color: #3b82f6;
}

.badge-icon.icon-green {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: #10b981;
}

.badge-icon.icon-orange {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.2);
    color: #f59e0b;
}

.badge-icon.icon-purple {
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.2);
    color: #a855f7;
}

.badge-content h4 {
    font-size: 1.05rem;
    margin-bottom: 4px;
    color: var(--text-main);
    font-weight: 600;
}

.badge-content p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ==========================================================================
   ALTERNATING LIGHT SECTION — .whychooseus (Why Yudiz)
   ========================================================================== */
.whychooseus {
    background: #eef3ff;
}

/* Section header text */
.whychooseus .section-header h2 {
    color: #0f172a;
}

.whychooseus .section-header p {
    color: #475569;
}

.whychooseus .badge-tag {
    background: rgba(0, 120, 180, 0.08);
    border-color: rgba(0, 120, 180, 0.2);
    color: #0077b6;
}

/* Comparison cards on light bg */
.whychooseus .comparison-card {
    background: #ffffff;
    border-color: rgba(15, 23, 42, 0.08);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.whychooseus .comparison-card.competitors-card {
    background: rgba(239, 68, 68, 0.01);
    border-color: rgba(239, 68, 68, 0.15);
}

.whychooseus .comparison-card.yudiz-card {
    background: #ffffff;
    border-color: transparent;
    box-shadow: 0 15px 40px rgba(99, 66, 255, 0.08);
}

.whychooseus .card-header {
    border-bottom-color: rgba(15, 23, 42, 0.08);
}

.whychooseus .list-text {
    color: #475569;
}

.whychooseus .yudiz-card .list-text {
    color: #0f172a;
}

.whychooseus .yudiz-logo-header .comp-logo {
    filter: brightness(0) opacity(0.8);
}

/* Trust badge cards on light bg */
.whychooseus .why-badge-card {
    background: #ffffff;
    border-color: rgba(15, 23, 42, 0.1);
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.06);
}

.whychooseus .why-badge-card:hover {
    border-color: rgba(0, 120, 180, 0.3);
    box-shadow: 0 8px 28px rgba(0, 120, 180, 0.1);
}

.whychooseus .badge-content h4 {
    color: #0f172a;
}

.whychooseus .badge-content p {
    color: #475569;
}

.whychooseus .badge-hover-info {
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
}

.whychooseus .badge-hover-info p {
    color: #0f172a;
    font-weight: 500;
}

/* ==========================================================================
   TESTIMONIALS SECTION — Premium Light Theme Revamp
   ========================================================================== */
.testimonials {
    background: #eef3ff;
    position: relative;
    overflow: hidden;
    padding: 100px 0 80px;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 500px;
    background: radial-gradient(
        ellipse,
        rgba(99, 66, 255, 0.06) 0%,
        transparent 70%
    );
    pointer-events: none;
}

/* Section header overrides for light bg */
.testimonials .section-header h2 {
    color: #0f172a;
}

.testimonials .section-header h2 .gradient-text {
    background: linear-gradient(
        135deg,
        var(--color-primary) 0%,
        var(--color-secondary) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.testimonials .section-header p {
    color: #475569;
}

/* ---- Rating Strip ---- */
.testi-rating-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.09);
    border-radius: 20px;
    padding: 28px 40px;
    margin: 48px auto 60px;
    max-width: 860px;
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.07);
}

.testi-rating-item {
    flex: 1;
    text-align: center;
}

.testi-rating-divider {
    width: 1px;
    height: 52px;
    background: rgba(15, 23, 42, 0.1);
    flex-shrink: 0;
    margin: 0 20px;
}

.testi-stars {
    color: #f59e0b;
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 6px;
}

.testi-platform-name {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #64748b;
    font-weight: 600;
    margin-bottom: 4px;
}

.testi-platform-score {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1;
}

/* Rating strip — mobile: wrap into a 2x2 grid instead of one cramped row */
@media (max-width: 640px) {
    .testi-rating-strip {
        flex-wrap: wrap;
        justify-content: center;
        gap: 24px 0;
        padding: 24px 16px;
        margin: 32px auto 40px;
    }

    .testi-rating-item {
        flex: 0 0 calc(50% - 1px);
    }

    .testi-rating-divider {
        display: none;
    }

    .testi-platform-score {
        font-size: 1.2rem;
    }
}

/* ---- Marquee ---- */
.testi-marquee-outer {
    overflow: hidden;
    position: relative;
    padding: 20px 0 40px;
}

/* Fade edges */
.testi-marquee-outer::before,
.testi-marquee-outer::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 160px;
    z-index: 2;
    pointer-events: none;
}

.testi-marquee-outer::before {
    left: 0;
    background: linear-gradient(to right, #eef3ff 0%, transparent 100%);
}

.testi-marquee-outer::after {
    right: 0;
    background: linear-gradient(to left, #eef3ff 0%, transparent 100%);
}

@media (max-width: 640px) {
    .testi-marquee-outer::before,
    .testi-marquee-outer::after {
        width: 36px;
    }
}

.testi-marquee-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: marqueeScroll 40s linear infinite;
}

.testi-marquee-track:hover {
    animation-play-state: paused;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ---- Individual Testimonial Card ---- */
.testi-card {
    width: 380px;
    flex-shrink: 0;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 20px;
    padding: 30px 32px;
    position: relative;
    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease;
    cursor: default;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
}

.testi-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(
        90deg,
        var(--color-primary),
        var(--color-secondary)
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testi-card:hover {
    border-color: rgba(99, 66, 255, 0.25);
    box-shadow: 0 16px 40px rgba(99, 66, 255, 0.12);
    transform: translateY(-4px);
}

.testi-card:hover::before {
    opacity: 1;
}

/* Card top: avatar + name + source */
.testi-card-top {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.testi-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.85rem;
    color: #fff;
    flex-shrink: 0;
    letter-spacing: 0.5px;
}

.testi-meta {
    flex: 1;
    min-width: 0;
}

.testi-meta h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 2px;
    line-height: 1.2;
}

.testi-meta span {
    font-size: 0.75rem;
    color: #64748b;
}

/* Source platform pills */
.testi-source-pill {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 4px 10px;
    border-radius: 20px;
    flex-shrink: 0;
}

.clutch-pill {
    background: rgba(239, 68, 68, 0.12);
    color: #f87171;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.goodfirms-pill {
    background: rgba(16, 185, 129, 0.12);
    color: #34d399;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.designrush-pill {
    background: rgba(99, 66, 255, 0.12);
    color: #a78bfa;
    border: 1px solid rgba(99, 66, 255, 0.2);
}

/* Stars row */
.testi-stars-sm {
    color: #fbbf24;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

/* Giant decorative quote mark */
.testi-quote-mark {
    font-family: Georgia, serif;
    font-size: 5rem;
    line-height: 0.6;
    color: var(--color-primary);
    opacity: 0.25;
    margin-bottom: 8px;
    user-select: none;
}

/* Quote text */
.testi-quote-text {
    font-size: 0.9rem;
    color: #334155;
    line-height: 1.7;
    margin: 0;
}

/* CTA row */
.testi-cta-row {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.btn-secondary.testi-clutch-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    color: #0f172a !important;
    border: 1px solid rgba(15, 23, 42, 0.15) !important;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05) !important;
}

.btn-secondary.testi-clutch-btn:hover {
    background: #0f172a !important;
    color: #ffffff !important;
    border-color: #0f172a !important;
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.2) !important;
    transform: translateY(-2px);
}

/* ==========================================================================
/* ==========================================================================
   COST ESTIMATOR — Dark Theme Revamp
   ========================================================================== */
.cost-estimator {
    background: #020c1b;
    position: relative;
    overflow: hidden;
}

/* Ambient glow top-right */
.cost-estimator::after {
    content: '';
    position: absolute;
    top: -150px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(
        circle,
        rgba(0, 242, 254, 0.06) 0%,
        transparent 65%
    );
    pointer-events: none;
    z-index: 0;
}

/* Ambient glow bottom-left */
.cost-estimator::before {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(
        circle,
        rgba(99, 66, 255, 0.08) 0%,
        transparent 65%
    );
    pointer-events: none;
    z-index: 0;
}

.cost-estimator .container {
    position: relative;
    z-index: 1;
    max-width: 1400px;
}

/* Section header — dark bg */
.cost-estimator .section-header h2 {
    color: #fff;
}

.cost-estimator .section-header p {
    color: rgba(255, 255, 255, 0.55);
}

.cost-estimator .badge-tag {
    background: rgba(0, 242, 254, 0.08);
    border-color: rgba(0, 242, 254, 0.25);
    color: var(--color-secondary);
}

/* Estimator shell — glassmorphism card */
.cost-estimator .estimator-shell {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(12px);
}

.cost-estimator .est-panel-hint {
    color: #c084fc;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Step tracker — dark */
.cost-estimator .est-track-dot {
    border-color: rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.85);
}

.cost-estimator .est-track-step.active .est-track-dot {
    border-color: var(--color-primary);
    background: rgba(0, 242, 254, 0.15);
    color: var(--color-primary);
    box-shadow: 0 0 20px rgba(0, 242, 254, 0.4);
}

.cost-estimator .est-track-step.completed .est-track-dot {
    border-color: var(--color-primary);
    background: rgba(99, 66, 255, 0.2);
    color: var(--color-primary);
}

.cost-estimator .est-track-label {
    color: rgba(255, 255, 255, 0.75);
}

.cost-estimator .est-track-step.active .est-track-label {
    color: var(--color-primary);
    font-weight: 700;
}

.cost-estimator .est-track-line {
    background: rgba(255, 255, 255, 0.2);
}

.cost-estimator .est-track-line.active {
    background: linear-gradient(
        90deg,
        var(--color-primary),
        var(--color-secondary)
    );
}

/* Project cards — dark */
.cost-estimator .est-proj-card {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.85);
}

.cost-estimator .est-proj-card:hover {
    background: rgba(99, 66, 255, 0.08);
    border-color: rgba(99, 66, 255, 0.4);
    box-shadow: 0 8px 28px rgba(99, 66, 255, 0.15);
}

.cost-estimator .est-proj-card.selected {
    background: rgba(99, 66, 255, 0.12);
    border-color: var(--color-primary);
    box-shadow: 0 0 24px rgba(99, 66, 255, 0.25);
}

.cost-estimator .est-proj-name {
    color: #fff;
}

.cost-estimator .est-proj-hint {
    color: rgba(255, 255, 255, 0.45);
}

/* Timeline cards — dark */
.cost-estimator .est-time-card {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.08);
}

.cost-estimator .est-time-card:hover {
    background: rgba(0, 242, 254, 0.06);
    border-color: var(--color-secondary);
    box-shadow: 0 8px 28px rgba(0, 242, 254, 0.12);
}

.cost-estimator .est-time-card.selected {
    background: rgba(0, 242, 254, 0.08);
    border-color: var(--color-secondary);
    box-shadow: 0 0 24px rgba(0, 242, 254, 0.2);
}

.cost-estimator .est-time-label {
    color: #fff;
}

.cost-estimator .est-time-sub {
    color: rgba(255, 255, 255, 0.5);
}

/* Budget cards — dark */
.cost-estimator .est-budget-card {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.08);
}

.cost-estimator .est-budget-card:hover {
    background: rgba(16, 185, 129, 0.06);
    border-color: #10b981;
    box-shadow: 0 8px 28px rgba(16, 185, 129, 0.12);
}

.cost-estimator .est-budget-card.selected {
    background: rgba(16, 185, 129, 0.08);
    border-color: #10b981;
    box-shadow: 0 0 24px rgba(16, 185, 129, 0.2);
}

.cost-estimator .est-budget-range {
    color: #fff;
}

.cost-estimator .est-budget-desc {
    color: rgba(255, 255, 255, 0.5);
}

/* Result cards — glowing */
.cost-estimator .est-res-card.glow-cyan {
    background: rgba(0, 242, 254, 0.06);
    border-color: rgba(0, 242, 254, 0.2);
}

.cost-estimator .est-res-card.glow-purple {
    background: rgba(99, 66, 255, 0.08);
    border-color: rgba(99, 66, 255, 0.25);
}

.cost-estimator .est-res-card.glow-green {
    background: rgba(16, 185, 129, 0.08);
    border-color: rgba(16, 185, 129, 0.25);
}

.cost-estimator .est-res-card.glow-cyan .est-res-card-value {
    background: linear-gradient(135deg, var(--color-secondary), #a8edea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cost-estimator .est-res-card.glow-green .est-res-card-value {
    background: linear-gradient(135deg, #10b981, #a7f3d0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cost-estimator .est-res-card-label {
    color: rgba(255, 255, 255, 0.5);
}

.cost-estimator .est-res-card-note {
    color: rgba(255, 255, 255, 0.35);
}

/* Result title */
.cost-estimator #est-project-label {
    color: #fff;
}

.cost-estimator .est-result-subtitle {
    color: rgba(255, 255, 255, 0.5);
}

/* Check ring */
.cost-estimator .est-check-ring {
    background: rgba(16, 185, 129, 0.1);
    border-color: #10b981;
    color: #10b981;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.25);
}

/* Disclaimer box */
.cost-estimator .est-disclaimer-box {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.08);
}

.cost-estimator .est-disclaimer-box p {
    color: rgba(255, 255, 255, 0.4);
}

/* Additional Responsive CSS for Blueprint elements */
@media (max-width: 1024px) {
    .portfolio-scroll-container {
        height: auto !important;
    }

    .portfolio-sticky-wrapper {
        position: relative !important;
        top: 0 !important;
        height: auto !important;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .blueprint-case-card {
        grid-template-columns: 1fr;
        position: relative !important;
        top: 0 !important;
        height: 100% !important;
        transform: none !important;
        opacity: 1 !important;
    }

    .case-visual {
        border-right: none;
        border-bottom: 1px solid var(--border-glass);
    }

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

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

    /* Estimator 1024px overrides */
    .est-project-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

@media (max-width: 768px) {
    .testimonial-grid,
    .process-6-timeline,
    .why-grid {
        grid-template-columns: 1fr;
    }

    .trust-logos {
        justify-content: center;
    }

    .form-trust-points {
        grid-template-columns: 1fr;
    }

    .comparison-container {
        grid-template-columns: 1fr;
    }

    .comparison-column.competitors {
        border-right: none;
        border-bottom: 1px solid var(--border-glass);
    }

    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 40px;
    }

    .comparison-card {
        padding: 28px 22px;
    }

    .why-badges-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* Estimator 768px overrides */
    .estimator-shell {
        padding: 24px 16px;
    }

    .est-project-grid,
    .est-timeline-grid,
    .est-budget-grid,
    .est-result-cards {
        grid-template-columns: 1fr;
    }

    .est-tracker {
        flex-wrap: wrap;
        gap: 16px;
    }

    .est-track-line {
        display: none !important;
    }
    .portfolio-sticky-wrapper {
        height: auto !important;
        display: grid;
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* Appointment Booking Modal Popup */
.booking-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

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

.booking-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(2, 12, 27, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.booking-modal-content {
    position: relative;
    background: #ffffff;
    width: 95%;
    max-width: 1100px;
    height: 850px;
    max-height: 92vh;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(0, 242, 254, 0.25);
    box-shadow:
        0 0 50px rgba(0, 242, 254, 0.15),
        0 0 80px rgba(168, 85, 247, 0.1);
    animation: modalZoomIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    z-index: 10001;
}

@keyframes modalZoomIn {
    from {
        transform: scale(0.92);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.booking-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: rgba(15, 23, 42, 0.08);
    border: none;
    font-size: 28px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    color: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    z-index: 10002;
}

.booking-modal-close:hover {
    background: rgba(15, 23, 42, 0.15);
    color: var(--color-secondary);
    transform: rotate(90deg);
}

.booking-modal-iframe-wrap {
    width: 100%;
    height: 100%;
    padding: 12px;
    padding-top: 60px;
    box-sizing: border-box;
}

.booking-modal-iframe-wrap iframe {
    border: none;
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

@media (max-width: 768px) {
    .booking-modal-content {
        width: 94%;
        height: 85vh;
        max-height: 85vh;
        border-radius: 16px;
    }

    .booking-modal-close {
        top: 10px;
        right: 12px;
        width: 36px;
        height: 36px;
        font-size: 24px;
    }

    .booking-modal-iframe-wrap {
        padding: 6px;
        padding-top: 50px;
    }

    .booking-modal-iframe-wrap iframe {
        border-radius: 8px;
    }
}

@media (max-width: 480px) {
    .booking-modal-content {
        width: 100%;
        height: 100%;
        max-height: 100%;
        border-radius: 0;
    }
}

/* --- Expert Profile Card Styles --- */
.expert-profile-card {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 20px 20px 20px 0;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 25px;
    transition: var(--transition-smooth);
    box-sizing: border-box;
}

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

.expert-header {
    display: flex;
    align-items: center;
    gap: 24px;
}

.expert-avatar-container {
    position: relative;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    padding: 4px;
    background: linear-gradient(
        135deg,
        var(--color-primary) 0%,
        var(--color-accent) 50%,
        var(--color-secondary) 100%
    );
    box-shadow: 0 10px 30px rgba(0, 242, 254, 0.2);
    flex-shrink: 0;
}

.expert-avatar-container::before {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    background: #ffffff;
    border-radius: 50%;
    z-index: 1;
}

.expert-avatar-container .expert-avatar,
.expert-avatar-container .status-indicator-dot {
    position: relative;
    z-index: 2;
}

.expert-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.status-indicator-dot {
    position: absolute;
    bottom: 6px;
    right: 6px;
    width: 16px;
    height: 16px;
    background: #22c55e;
    border: 2.5px solid #ffffff;
    border-radius: 50%;
}

.expert-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.expert-meta h3 {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
}

.expert-role {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

.online-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #16a34a;
    background: rgba(34, 197, 94, 0.08);
    padding: 4px 10px;
    border-radius: 12px;
    margin-top: 2px;
}

.pulse-dot {
    width: 7px;
    height: 7px;
    background-color: #22c55e;
    border-radius: 50%;
    animation: pulseGreen 2s infinite;
}

.expert-desc {
    font-size: 1.15rem;
    color: #475569;
    line-height: 1.6;
    margin: 0;
}

.consultation-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.consultation-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.bullet-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(0, 242, 254, 0.1);
    color: var(--color-accent);
    font-weight: bold;
    font-size: 0.85rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.bullet-text {
    font-size: 1.05rem;
    color: #334155;
    line-height: 1.5;
    font-weight: 500;
}

.contact-method-container {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 25px;
    flex-wrap: wrap;
}
/* Copy Email Button & Tooltip */
.copy-email-btn {
    position: relative;
    background: none;
    border: none;
    color: #64748b;
    padding: 8px;
    margin-left: auto;
    cursor: pointer;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    position: relative;
    z-index: 5;
}

.copy-email-btn:hover {
    background: rgba(15, 23, 42, 0.05);
    color: var(--color-accent);
}

.copy-email-btn::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%) scale(0.9);
    background: #0f172a;
    color: #fff;
    padding: 6px 10px;
    font-size: 0.75rem;
    font-family: var(--font-body);
    font-weight: 500;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15);
    z-index: 10000;
}

.copy-email-btn:hover::after {
    opacity: 1;
    transform: translateX(-50%) scale(1);
}

.copy-email-btn.copied::after {
    content: 'Copied!';
    background: #10b981;
}

.social-dock-placeholder {
    width: 118px;
    height: 52px;
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
    transition: width 0.3s ease;
}

@media (max-width: 480px) {
    .contact-method-container {
        flex-direction: column;
        align-items: flex-start;
    }
}

.direct-contact-bar {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    padding: 16px 24px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.03);
    transition: var(--transition-smooth);
    max-width: 340px;
    text-decoration: none;
    /* Make sure no underline on the whole block */
}

.direct-contact-bar:hover {
    background: #f8fafc;
    border-color: rgba(15, 23, 42, 0.15);
    box-shadow: 0 15px 30px rgba(15, 23, 42, 0.06);
    transform: translateY(-2px);
}

.email-icon {
    font-size: 1.5rem;
    color: var(--color-accent);
}

.email-info {
    display: flex;
    flex-direction: column;
}

.email-info .label {
    font-size: 0.82rem;
    font-weight: 700;
    color: #64748b;
    margin-bottom: 2px;
}

.email-info .email-text {
    font-size: 1.02rem;
    color: #0f172a;
    font-weight: 700;
    transition: color 0.2s ease;
}

.direct-contact-bar:hover .email-text {
    color: var(--color-accent);
}

/* Expert profile card — mobile */
@media (max-width: 768px) {
    .expert-profile-card {
        padding: 20px 0;
    }

    .expert-header {
        gap: 16px;
    }

    .expert-avatar-container {
        width: 84px;
        height: 84px;
    }

    .expert-meta h3 {
        font-size: 1.6rem;
    }

    .expert-role {
        font-size: 0.85rem;
    }

    .expert-desc {
        font-size: 1rem;
    }

    .bullet-text {
        font-size: 0.95rem;
    }

    .direct-contact-bar {
        max-width: 100%;
        padding: 14px 18px;
    }
}

@media (max-width: 420px) {
    .expert-header {
        flex-wrap: wrap;
    }

    .expert-avatar-container {
        width: 64px;
        height: 64px;
    }

    .expert-meta h3 {
        font-size: 1.35rem;
    }

    .expert-role {
        font-size: 0.75rem;
    }

    .online-badge {
        font-size: 0.68rem;
    }

    .direct-contact-bar {
        flex-wrap: wrap;
    }
}

@keyframes pulseGreen {
    0% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    }

    70% {
        box-shadow: 0 0 0 6px rgba(34, 197, 94, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

/* Cost Estimator Back Button */
.est-back-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-muted);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 8px;
    transition: var(--transition-fast);
    margin-bottom: 20px;
}

.est-back-btn:hover {
    color: var(--color-primary);
    border-color: rgba(0, 242, 254, 0.3);
    background: rgba(0, 242, 254, 0.08);
}

/* ==========================================================================
   ALTERNATING LIGHT SECTION — .techstack (Technologies We Build With)
   ========================================================================== */
.techstack {
    background: #eef3ff;
}

.techstack::before,
.techstack::after {
    opacity: 0.15;
}

.techstack .section-header h2 {
    color: #0f172a;
}

.techstack .section-header p {
    color: #475569;
}

.techstack .badge-tag {
    background: rgba(0, 119, 182, 0.06);
    border-color: rgba(0, 119, 182, 0.15);
    color: #0077b6;
}

/* Tab nav */
.techstack .tech-tab-link {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    color: #475569;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.02);
}

.techstack .tech-tab-link:hover {
    background: #f8fafc;
    color: #0f172a;
    border-color: rgba(0, 119, 182, 0.3);
}

.techstack .tech-tab-link.active {
    background: #ffffff;
    border-color: #0077b6;
    color: #0077b6;
    box-shadow: 0 8px 24px rgba(0, 119, 182, 0.08);
}

.techstack .tech-tab-link.active .tech-tab-indicator {
    background: #0077b6;
    box-shadow: 0 0 8px rgba(0, 119, 182, 0.5);
}

/* Tech item cards */
.techstack .tech-item {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    color: #0f172a;
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.03);
}

.techstack .tech-item:hover {
    background: #ffffff;
    border-color: #0077b6;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 119, 182, 0.08);
}

.techstack .tech-logo-placeholder {
    color: #0077b6;
}

.techstack .tech-item span {
    color: #1e293b;
    font-weight: 600;
}

/* Orbital tabs — match light card/blue accent palette used elsewhere in this section */
.techstack .orbit-tab {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    color: #475569;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.03);
}

.techstack .orbit-tab:hover {
    background: #f8fafc;
    color: #0f172a;
    border-color: rgba(0, 119, 182, 0.3);
    box-shadow: 0 4px 16px rgba(0, 119, 182, 0.12);
}

.techstack .orbit-tab.active {
    color: #ffffff;
    border-color: transparent;
    background: linear-gradient(135deg, #0077b6 0%, #00b4d8 100%);
    box-shadow: 0 8px 22px rgba(0, 119, 182, 0.28);
}

/* Orbital rings + connectors */
.techstack .orbit-ring-outer {
    border-color: rgba(0, 119, 182, 0.4);
}

.techstack .orbit-ring-inner {
    border-color: rgba(124, 58, 237, 0.4);
}

.techstack .orbit-ring::before {
    background: #0077b6;
    box-shadow: 0 0 10px 2px rgba(0, 119, 182, 0.6);
}

.techstack .orbit-ring-inner::before {
    background: #7c3aed;
    box-shadow: 0 0 10px 2px rgba(124, 58, 237, 0.6);
}

.techstack .orbit-connectors line {
    stroke: rgba(0, 119, 182, 0.3);
}

/* Glowing core */
.techstack .orbit-core {
    background:
        radial-gradient(
            circle at 32% 28%,
            rgba(0, 119, 182, 0.12) 0%,
            transparent 55%
        ),
        radial-gradient(
            circle at 70% 75%,
            rgba(124, 58, 237, 0.1) 0%,
            transparent 55%
        ),
        linear-gradient(135deg, #ffffff 0%, #f1f6ff 100%);
    border: 1.5px solid rgba(0, 119, 182, 0.35);
    box-shadow:
        0 10px 30px rgba(15, 23, 42, 0.08),
        0 0 30px rgba(0, 119, 182, 0.12);
}

.techstack .orbit-core-icon {
    background: linear-gradient(135deg, #0077b6 0%, #00b4d8 100%);
    box-shadow: 0 6px 16px rgba(0, 119, 182, 0.35);
    color: #ffffff;
}

.techstack .orbit-core-title {
    color: #0f172a;
}

.techstack .orbit-core-count {
    color: #0077b6;
    background: rgba(0, 119, 182, 0.08);
    border: 1px solid rgba(0, 119, 182, 0.2);
}

/* Logo badges — white cards instead of dark navy tiles, so icons read clearly */
.techstack .orbit-logo-badge {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
}

.techstack .orbit-logo-badge img {
    filter: none;
}

.techstack .orbit-logo-label {
    color: #475569;
}

.techstack .orbit-logo:hover .orbit-logo-badge {
    border-color: #0077b6;
    box-shadow: 0 10px 26px rgba(0, 119, 182, 0.18);
}

.techstack .orbit-logo:hover .orbit-logo-badge img {
    filter: none;
}

.techstack .orbit-logo:hover .orbit-logo-label {
    color: #0f172a;
}

/* ==========================================================================
   Section: Why Choose Yudiz Section
   ========================================================================== */
.why-yudiz {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
    position: relative;
    overflow: hidden;
}

.why-yudiz::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(
        circle,
        rgba(168, 85, 247, 0.04) 0%,
        transparent 70%
    );
    filter: blur(80px);
    pointer-events: none;
}

.why-yudiz-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 40px;
    align-items: stretch;
}

/* Sidebar Tab list */
.why-yudiz-sidebar {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.why-yudiz-tab {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    padding: 18px 24px;
    border-radius: 14px;
    cursor: pointer;
    text-align: left;
    transition: var(--transition-smooth);
    width: 100%;
}

.why-tab-num {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.why-tab-text {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.why-yudiz-tab:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(0, 242, 254, 0.2);
}

/* Active tab style */
.why-yudiz-tab.active {
    background: linear-gradient(
        135deg,
        rgba(0, 242, 254, 0.15) 0%,
        rgba(168, 85, 247, 0.15) 100%
    );
    border-color: var(--color-primary);
    box-shadow: 0 0 20px rgba(0, 242, 254, 0.1);
}

.why-yudiz-tab.active .why-tab-num {
    color: var(--color-primary);
}

.why-yudiz-tab.active .why-tab-text {
    color: #ffffff;
}

/* Content Panel */
.why-yudiz-content {
    background: rgba(13, 22, 47, 0.35);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 45px;
    position: relative;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.why-yudiz-panel {
    display: none;
    opacity: 0;
    transform: translateY(15px);
    transition:
        opacity 0.4s ease,
        transform 0.4s ease;
}

.why-yudiz-panel.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.why-panel-icon {
    font-size: 3rem;
    margin-bottom: 25px;
    display: inline-block;
    background: linear-gradient(
        135deg,
        var(--color-primary),
        var(--color-secondary)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.why-yudiz-panel h3 {
    font-size: 2rem;
    margin-bottom: 18px;
    color: #ffffff;
}

.why-yudiz-panel p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-muted);
}

/* Responsive media queries */
@media (max-width: 1024px) {
    .why-yudiz-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .why-yudiz-content {
        min-height: auto;
        padding: 35px;
    }
}

@media (max-width: 640px) {
    .why-yudiz-tab {
        padding: 14px 18px;
        gap: 12px;
    }

    .why-tab-text {
        font-size: 0.95rem;
    }

    .why-yudiz-content {
        padding: 25px;
    }

    .why-yudiz-panel h3 {
        font-size: 1.6rem;
    }

    .why-yudiz-panel p {
        font-size: 1rem;
    }
    .hero-ctas {
        flex-direction: column;
        margin-bottom: 0;
        gap: 16px;
    }
    .hero-ctas .btn {
        width: 100%;
    }

    .contact-form {
        padding: 16px;
    }
    .contact-form .form-group {
        width: 100%;
    }
    .contact-form .form-group input,
    .contact-form .form-group select,
    .contact-form .form-group textarea {
        width: 100%;
    }
    .contact-section .container{
        width: 100%;
        padding: 0 20px;
    }
}
@media (max-width: 1200px) {
    .form-grid-fields {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }
}

@media (max-width: 1024px) {
    .form-grid-fields {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .comparison-grid {
        gap: 24px;
        margin-bottom: 24px;
    }
    .form-trust-points {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 1024px) {
    .form-grid-fields {
        grid-template-columns: 1fr;
    }
}
/* spinner */
.wpcf7-spinner {
    margin: 0px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--white) !important;
}

.wpcf7-spinner::before {
    background-color: #c2543b;
}

.submitting .wpcf7-submit {
    pointer-events: none;
}

/* .submitting input[type='submit'] {
    color: transparent !important;
    background-image: none !important;
} */
.iti--separate-dial-code{
width: 100% !important;
}
/* massege */
.wpcf7-response-output {
    margin: 10px 0px 0px !important;
    font-size: 12px !important;
    line-height: 20px !important;
    border: none !important;
    color: var(--white-color);
    font-weight: 600;
    text-align: center;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
    background: #ffb900;
    color: var(--white);
}

.wpcf7 form.failed .wpcf7-response-output {
    background: #f05858;
    color: var(--white);
}

.wpcf7 form.sent .wpcf7-response-output {
    background: #46b450;
    color: var(--white);
}

.wpcf7-not-valid-tip {
    font-size: 12px;
}

.grecaptcha-badge {
    visibility: hidden !important;
}
.grecaptcha-badge {
    display: none !important;
}
