/* Reset and Base Styles */
@font-face {
    font-family: 'Borna';
    src: url('assets/fonts/borna-regular-webfont.woff2') format('woff2'),
         url('assets/fonts/borna-regular-webfont.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Borna';
    src: url('assets/fonts/borna-medium-webfont.woff2') format('woff2'),
         url('assets/fonts/borna-medium-webfont.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Borna';
    src: url('assets/fonts/borna-semibold-webfont.woff2') format('woff2'),
         url('assets/fonts/borna-semibold-webfont.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Borna';
    src: url('assets/fonts/borna-bold-webfont.woff2') format('woff2'),
         url('assets/fonts/borna-bold-webfont.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Borna';
    src: url('assets/fonts/borna-regularitalic-webfont.woff2') format('woff2'),
         url('assets/fonts/borna-regularitalic-webfont.woff') format('woff');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Borna';
    src: url('assets/fonts/borna-mediumitalic-webfont.woff2') format('woff2'),
         url('assets/fonts/borna-mediumitalic-webfont.woff') format('woff');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Borna';
    src: url('assets/fonts/borna-semibolditalic-webfont.woff2') format('woff2'),
         url('assets/fonts/borna-semibolditalic-webfont.woff') format('woff');
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Borna';
    src: url('assets/fonts/borna-bolditalic-webfont.woff2') format('woff2'),
         url('assets/fonts/borna-bolditalic-webfont.woff') format('woff');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Borna', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    overflow-x: hidden;
}

/* Global link styles: white, no underline */
a, a:visited { color: #fff; text-decoration: none; }
a:hover, a:focus { color: #fff; text-decoration: none; }

/* Custom Properties */
:root {
    --primary-color: #F726FF;
    --secondary-color: #00F7FF;
    --accent-color: #F726FF;
    --text-primary: #ffffff;
    --text-secondary: #ededed;
    --text-tertiary: #000000;
    --text-muted: rgba(255, 255, 255, 0.6);
    --background-dark: #0a0a0a;
    --background-light: #1a1a1a;
    --border-color: rgba(255, 255, 255, 0.1);
    --border-primary-color: rgb(255, 255, 255);
    --border-secondary-color: rgba(255, 255, 255, 0.1);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --shadow-color: rgba(247, 38, 255, 0.3);
    --transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    --sidebar-width: 15vw;
}

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

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }

p {
    font-weight: 400;
    color: var(--text-secondary);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Sidebar Navigation */
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    height: 100dvh;
    width: var(--sidebar-width);
    background: #1d1444;
    border-right: 1px solid var(--border-secondary-color);
    z-index: 1200;
    transition: transform 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transform: translateX(-100%);
}

.sidebar.expanded { transform: translateX(0); }

.sidebar-header {
    padding-top: 10px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.logo-column {
    display: flex;
    align-items: center;
    justify-content: center;
    order: 1;
}

.toggle-column {
    display: flex;
    align-items: center;
    justify-content: center;
    order: 0;
}

.sidebar.expanded .sidebar-header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.sidebar.expanded .logo-column {
    justify-content: flex-start;
    order: 0;
}

.sidebar.expanded .sidebar-logo {
    justify-content: flex-start;
}

.sidebar.expanded .sidebar-text {
    opacity: 1;
    justify-content: flex-start;
}

.sidebar.expanded .toggle-column {
    order: 1;
}

.sidebar-logo {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 10px;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.sidebar.expanded .sidebar-logo {
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
    opacity: 1;
    margin-left: 40px;
}

.sidebar-tagline { font-size: 0.75rem; font-weight: 600; color: var(--text-secondary); opacity: 0.85; margin: 0; line-height: 1; }

.sidebar:not(.expanded) .sidebar-tagline { display: none; }

.sidebar-text {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    opacity: 0;
    transition: var(--transition);
}

.sidebar.expanded .sidebar-text {
    opacity: 1;
}

.sidebar:not(.expanded) .sidebar-text {
    display: none;
}

.sidebar:not(.expanded) .sidebar-logo {
    display: none;
}

.logo-image {
    height: 54px;
    width: auto;
    max-width: 100%;
}

.sidebar-content {
    padding: 1.5rem;
    display: block;
}

.sidebar:not(.expanded) .sidebar-content {
    padding: 1rem 0.5rem;
}

.sidebar-section {
    margin-bottom: 2rem;
}

.sidebar-section h4 {
    color: var(--text-muted);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.wizard-chat-btn {
    width: 100%;
    background: none;
    border: none;
    color: white;
    padding: 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 400;
    font-family: 'Borna', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.75rem;
}

.wizard-chat-btn:hover {
    background: #F726FF;
    transform: translateY(-2px);
}

.wizard-icon {
    width: 40px;
    height: 40px;
}

.sidebar-menu {
    list-style: none;
}

.sidebar-menu li {
    margin-bottom: 0.5rem;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #fff;
    text-decoration: none;
    padding: 0.75rem;
    border-radius: 100px;
    transition: var(--transition);
    font-size: 0.9rem;
}

.nav-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
}

.nav-svg-icon {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
    transition: var(--transition);
}

.sidebar-link:hover .nav-svg-icon {
    filter: brightness(0) invert(1);
}

.sidebar-link.active .nav-svg-icon {
    filter: brightness(0) invert(0);
    color: var(--text-tertiary);
}

.nav-text {
    display: flex;
    align-items: center;
}

.sidebar:not(.expanded) .sidebar-link {
    justify-content: center;
    padding: 0.75rem;
}

.sidebar:not(.expanded) .nav-text {
    display: none;
}

.sidebar:not(.expanded) .nav-icon {
    margin: 0;
}

.sidebar-link:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.sidebar-link.active {
    color: var(--text-tertiary);
    background: var(--secondary-color);
    box-shadow: 0 4px 12px rgba(247, 38, 255, 0.3);
}

.sidebar-link i {
    width: 20px;
    text-align: center;
    color: var(--primary-color);
}

.sidebar-link.active i {
    color: white;
}

.sidebar-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--border-color);
    margin-top: auto;
    display: none;
}

.sidebar.expanded .sidebar-footer {
    display: block;
}

.sidebar-footer .social-links {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
    justify-content: flex-start;
}

.sidebar-footer .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: transparent;
    border-radius: 50%;
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.social-icon {
    width: 20px;
    height: 20px;
    transition: var(--transition);
}

.sidebar-footer .social-links a:hover .social-icon {
    transform: scale(1.1);
}

/* Ensure expanded sidebar social icons render in white (including Medium) */
.sidebar-footer .social-links .social-icon { -webkit-filter: drop-shadow(0 0 0 #f826ff); filter: drop-shadow(0 0 0 #f826ff); opacity: 0.95; transition: var(--transition); }

.sidebar-footer .social-links a:hover {
    background: transparent;
    color: var(--primary-color);
    transform: translateY(-2px);
}

.copyright {
    text-align: left;
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* Collapsed-only vertical social icons */
.collapsed-social { display: none; padding: 0.5rem 0; align-items: center; justify-content: flex-end; gap: 0.5rem; flex-direction: column; height: 100%; }
.collapsed-social a { display: flex; width: 40px; height: 40px; align-items: center; justify-content: center; }
.collapsed-social .social-icon { width: 22px; height: 22px; -webkit-filter: drop-shadow(0 0 0 #f826ff); filter: drop-shadow(0 0 0 #f826ff); opacity: 0.95; transition: var(--transition); }
.collapsed-social a .social-icon { -webkit-filter: drop-shadow(0 0 0 #f826ff); filter: drop-shadow(0 0 0 #f826ff); }
.sidebar:not(.expanded) .collapsed-social a .social-icon { -webkit-filter: drop-shadow(0 0 0 #f826ff); filter: drop-shadow(0 0 0 #f826ff); }

/* Force Medium icon to match exact magenta */
.sidebar-footer .social-links img[src$="medium-icon.svg"],
.collapsed-social img[src$="medium-icon.svg"] {
    filter: brightness(0) saturate(100%) invert(19%) sepia(91%) saturate(7485%) hue-rotate(296deg) brightness(102%) contrast(101%) !important;
}
.sidebar:not(.expanded) .collapsed-social a { color: var(--primary-color); }
.sidebar:not(.expanded) .collapsed-social { display: flex; }
.sidebar.expanded .collapsed-social { display: none; }

.sidebar-toggle {
    display: flex;
    background: transparent;
    border: none;
    color: white;
    width: 70px;
    height: 50px;
    cursor: pointer;
    transition: var(--transition);
    align-items: center;
    justify-content: center;
    z-index: 1001;
    position: relative;
}

.sidebar-toggle:hover {
    background: transparent;
    transform: scale(1.1);
}

.expand-icon,
.collapse-icon {
    width: 25px;
    height: 25px;
    position: absolute;
    transition: var(--transition);
}

.expand-icon {
    opacity: 1;
}

.collapse-icon {
    opacity: 0;
}

.sidebar.expanded .expand-icon {
    opacity: 0;
}

.sidebar.expanded .collapse-icon {
    opacity: 1;
}

/* Main Content */
.main-content {
    margin-left: 0;
    width: 100%;
    background-image: url('assets/background.jpg');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.sidebar.expanded + .main-content { margin-left: 0; width: 100%; }

.main-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(13, 20, 67, 0.7);
    z-index: 1;
    pointer-events: none;
}

.main-content > * {
    position: relative;
    z-index: 2;
}

/* Hero Section */
.hero {
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative !important;
    padding: 2rem;
    overflow: hidden;
}

.hero.chat-focused {
    align-items: Center;
    justify-content: center;
    min-height: 100vh;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    z-index: 2;
    position: relative;
    transition: var(--transition);
}

.hero.chat-focused .hero-content {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

.hero.chat-focused .hero-logo {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
}

.hero.chat-focused .hero-content h2 {
    opacity: 0 !important;
    transform: scale(0.8) !important;
    pointer-events: none !important;
}

/* Hide main hero heading in focus mode */
.hero.chat-focused .hero-content h1 {
    opacity: 0 !important;
    transform: scale(0.8) !important;
    pointer-events: none !important;
}

.hero.chat-focused .hero-content p {
    opacity: 0 !important;
    transform: scale(0.8) !important;
    pointer-events: none !important;
}

.hero.chat-focused .hero-iframe {
    max-width: 800px;
    margin: 0 auto;
    animation: none;
    opacity: 1;
    pointer-events: auto;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) scale(1.2) !important;
    z-index: 1000;
}

.hero.chat-focused .iframe-overlay {
    display: none;
}



.hero-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: var(--transition);
}

.hero-logo-image {
    height: 80px;
    width: auto;
    max-width: 100%;
}

.hero-logo h1 {
    font-size: 4rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero p {
    font-size: 0.9rem;
    margin-bottom: 3rem;
    color: var(--text-secondary);
    animation: fadeInUp 1s ease-out 0.4s both;
}

.live-counter { display: inline-flex; align-items: baseline; gap: 0.5rem; margin: 0.5rem 0 1.25rem; }
.live-counter-label { color: var(--text-secondary); font-size: 0.95rem; }
.live-counter-value { color: var(--text-primary); font-weight: 700; font-size: 1.25rem; }

/* Live Stats Section */
.live-stats { padding: 60px 0 80px; }

/* New stacked layout (title above, number below) */
.live-stats-stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 20px 24px;
    background: transparent;
}
.stats-title { color: var(--text-primary); font-size: inherit; margin: 0; text-align: center; }
.stats-title.white { color: var(--text-primary); }
.stats-value { color: var(--text-primary); font-weight: 700; font-size: 3.5rem; line-height: 1; margin: 0; text-align: center; }
.stats-value.white { color: var(--text-primary); }

/* Make live-stats title match hero H1 sizing */
.live-stats .stats-title { font-size: 3.5rem; line-height: 1.2; font-weight: 500; }
@media (max-width: 768px) { .live-stats .stats-title { font-size: 2.5rem; } }
@media (max-width: 480px) { .live-stats .stats-title { font-size: 2rem; } }

/* Remove any previous grid/card stylings if still present */
.live-stats-grid, .stats-card, .stats-card.magenta, .stats-card.glass, .stats-card.left { background: transparent !important; border: none !important; box-shadow: none !important; }

/* Remove rounded corners on live stats cards in mobile */
@media (max-width: 768px) {
    .live-stats .stats-card { border-radius: 0 !important; }
}

.hero-input {
    display: flex;
    max-width: 600px;
    margin: 0 auto 3rem;
    border-radius: 50px;
    padding: 0.5rem;
    border: 1px solid var(--border-primary-color);
    animation: fadeInUp 1s ease-out 0.6s both;
    transition: var(--transition);
}

.hero.chat-focused .hero-input {
    max-width: 800px;
    margin: 30px;
    transform: scale(1.2);
    animation: none;
    opacity: 1;
    pointer-events: auto;
}

.iframe-wrapper {
    max-width: 800px;
    margin: 0 auto 3rem;
    cursor: pointer;
    transition: var(--transition);
}



.hero-iframe {
    width: 100%;
    animation: fadeInUp 1s ease-out 0.6s both;
    transition: var(--transition);
    position: relative;
}

.iframe-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 10;
    cursor: pointer;
}



.hero-iframe iframe {
    width: 100%;
    height: 600px;
    border-radius: 15px;
    border: none;
    background: transparent;
    position: relative;
    z-index: 1;
}

.hero-input input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 1rem 1.5rem;
    color: var(--text-primary);
    font-size: 1rem;
    outline: none;
}

.hero-input input::placeholder {
    color: var(--text-muted);
}

.hero-btn {
    background: var(--primary-color);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-btn:hover {
    background: #F726FF;
    transform: scale(1.05);
}

.suggested-prompts {
    animation: fadeInUp 1s ease-out 0.8s both;
    transition: var(--transition);
}

.hero.chat-focused .suggested-prompts {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

.suggested-prompts h3 {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    font-size: 1.1rem;
}

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

.prompt-btn {
    background: transparent;
    border: 1px solid var(--border-primary-color);
    color: var(--text-secondary);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
}

.prompt-btn:hover {
    border-color: var(--primary-color);
    color: var(--text-primary);
    transform: translateY(-2px);
}

/* Section Styles */
.section {
    padding: 100px 0;
    position: relative;
}

/* Removed hero-adjacent padding override */

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* Outcome-Based Pricing layout */
.pricing-outcome .section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.pricing-outcome .section-header h2 {
    font-size: 2.2rem;
    line-height: 1.3;
    margin-bottom: 0.75rem;
}

.pricing-outcome .section-header p {
    max-width: 900px;
    margin: 0 auto;
    color: var(--text-secondary);
}

.obp-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

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

.obp-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.25rem 1.25rem 1rem;
    transition: var(--transition);
}

.obp-card-magenta {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.25rem 1.25rem 1rem;
    color: var(--text-primary);
    transition: var(--transition);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
}
/* Ensure all text inside magenta OBP card is white */
.obp-card-magenta h3,
.obp-card-magenta h3 span,
.obp-card-magenta p,
.obp-card-magenta li { color: var(--text-primary); }

/* Generic list with dividers (no gaps) */
.plain-list { display: flex; flex-direction: column; }
.plain-list > * { border-bottom: 1px solid rgba(255, 255, 255, 0.3); padding: 5px 0; }
.plain-list > *:last-child { border-bottom: none; }
.plain-list p { margin: 0; }

.obp-card h3 {
    margin-bottom: 0.75rem;
}

.obp-card h3 span { color: var(--text-primary); }

.obp-card ul { padding-left: 1rem; }
.obp-card li { color: var(--text-secondary); margin: 0.4rem 0; }
.obp-card .card-note { color: var(--text-secondary); margin-top: 0.5rem; }

.obp-card:hover,
.obp-card-magenta:hover {
    transform: scale(1.1);
}

.divider-title {
    text-align: center;
    margin: 2.5rem 0 1rem;
    font-size: 1.75rem;
}

.savings-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

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

.savings-card {
    border-radius: 14px;
    padding: 1rem 1.25rem;
}

.savings-card.old {
    background: #00f7ff;
    border: 1px solid #00F7FF55;
}

.savings-card.hyperfusion {
    background: #f826ff;
    border: 1px solid #F726FF55;
    color: var(--text-primary);
}
.savings-card.hyperfusion h4,
.savings-card.hyperfusion p { color: var(--text-primary); }

.savings-card h4 { margin-bottom: 0.5rem; color: var(--text-tertiary); }
.savings-card p { color: var(--text-tertiary); }
.savings-card .result { font-weight: 600; }

.commitment { text-align: center; max-width: 980px; margin: 0 auto 2rem; }
.commitment h3 { font-size: 1.75rem; margin-bottom: 0.75rem; }
.commitment p { color: var(--text-secondary); }
.commitment .commitment-result { color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }

.pricing-cta { text-align: center; margin-top: 1.5rem; }
.pricing-cta .cta-lead { color: var(--text-secondary); margin-bottom: 0.75rem; }
.cta-pill {
    display: inline-block;
    background: var(--primary-color);
    color: var(--text-primary);
    padding: 0.9rem 1.4rem;
    border-radius: 999px;
    font-weight: 400;
    text-decoration: none;
}
.cta-pill + .cta-pill { margin-left: 0.75rem; }
.cta-pill--cyan { background: var(--cyan, #00f7ff); color: #000; }
.pricing-cta .micro-foot { margin-top: 0.9rem; opacity: 0.8; letter-spacing: 0.08em; font-size: 0.8rem; }

/* Add vertical space between stacked CTA buttons on narrow widths */
@media (max-width: 768px) {
    .pricing-cta .cta-pill + .cta-pill { margin-left: 0; margin-top: 0.75rem; }
    .solutions-cta .cta-pill + .cta-pill { margin-left: 0; margin-top: 0.75rem; }
}

/* Contact page glass wrapper */
.form-glass { background: rgba(255,255,255,0.5); border: 1px solid var(--border-color); border-radius: 16px; padding: 1.25rem; -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px); }

/* Contact hero two-card layout */
.contact-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.contact-card { padding: 1.5rem; border: 1px solid var(--border-color); border-radius: 14px; display: flex; flex-direction: column; justify-content: center; }
.contact-card { transition: var(--transition); }
.contact-card.magenta { background: #f826ff; border-color: #F726FF55; color: var(--text-primary); border-radius: 14px 0 0 14px; border-right: none; }
.contact-card.magenta .contact-title, .contact-card.magenta .contact-email { color: var(--text-primary); }
/* Make the left card title white while keeping email black */
.contact-card.magenta .contact-title { color: var(--text-primary); }
.contact-card.glass { background: rgba(255,255,255,0.06); -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px); border-radius: 0 14px 14px 0; border-left: none; }
.contact-title { font-size: 2rem; margin-bottom: 0.75rem; }
.contact-email { font-size: 1rem; font-weight: 400; color: var(--text-primary); text-decoration: none; }
.contact-phone { font-size: 1rem; font-weight: 400; color: var(--text-primary); text-decoration: none; }

.contact-card:hover,
.dev-card:hover,
.support-card:hover,
.hiw-card:hover,
.solutions-card:hover,
.perf-card:hover,
.obp-card:hover,
.obp-card-magenta:hover,
.pricing-card:hover,
.solution-card:hover,
.resource-card:hover {
    transform: scale(1.1);
}
.book-btn { margin-top: 0.75rem; display: inline-flex; align-items: center; justify-content: center; text-align: center; }

/* Full-height contact section centered */
.contact-hero { min-height: 100vh; min-height: 100dvh; display: flex; align-items: center; justify-content: center; padding: 0; }
.contact-hero .container { width: 100%; }

@media (max-width: 1024px) {
    .contact-hero-grid { grid-template-columns: 1fr; }
    .contact-card.magenta { border-radius: 14px 14px 0 0; border-right: 1px solid var(--border-color); }
    .contact-card.glass { border-radius: 0 0 14px 14px; border-left: 1px solid var(--border-color); }
}

/* Reuse CTA layout inside localized section */
.hiw-cta { text-align: center; margin: 1rem 0 0.5rem; }

/* CTA in solutions foot */
.solutions-cta { text-align: center; margin: 1rem 0 0.5rem; }
.solutions-cta .cta-pill + .cta-pill { margin-left: 0.75rem; }

/* Partners Section */
.partners .section-header { text-align: center; margin-bottom: 1.25rem; }
.partners .section-header h1 { font-size: 3rem; }
.partners .section-header .subtitle { color: var(--text-secondary); margin-top: 0.25rem; }
.partners-logos { display: flex; align-items: center; justify-content: center; gap: 2.5rem; flex-wrap: nowrap; margin-top: 1rem; overflow-x: auto; overflow-y: hidden; -webkit-overflow-scrolling: touch; white-space: nowrap; }
.partners-logos img { max-height: 96px; width: auto; height: auto; opacity: 0.95; flex: 0 0 auto; transition: var(--transition); outline: none; }
.partners-logos img:focus { outline: none; }
.partners-logos img:hover { transform: scale(1.1); }

@media (max-width: 768px) {
    .partners-logos { flex-direction: column; align-items: center; white-space: normal; overflow-x: visible; }
    .partners-logos img { max-height: 72px; }
}

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-10px) scale(1.1);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px var(--shadow-color);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    background: rgba(139, 92, 246, 0.1);
    transform: scale(1.05);
}

.pricing-card h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.price span {
    font-size: 1rem;
    color: var(--text-secondary);
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-card li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
}

.pricing-card li:last-child {
    border-bottom: none;
}

.cta-btn {
    background: var(--primary-color);
    color: var(--text-primary);
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
}

.cta-btn:hover {
    background: #F726FF;
    transform: translateY(-2px);
}

/* How It Works Section */

.hiw .section-header { text-align: center; margin-bottom: 1.5rem; }
.hiw .section-header h2 { font-size: 2rem; }
.hiw .section-header .subtitle { color: var(--text-secondary); margin-top: 0.25rem; }

.hiw-intro-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 1.25rem; margin: 1.25rem 0 1.5rem; }
.hiw-card { border-radius: 16px; padding: 1.25rem 1.25rem 1rem; border: 1px solid var(--border-color); }
.hiw-card { transition: var(--transition); }
.hiw-card.primary { background: transparent; color: var(--text-primary); border: none; padding: 0; }
.hiw-card.primary .hiw-visual { width: 100%; height: 260px; border-radius: 14px; overflow: hidden; margin-bottom: 12px; }
.hiw-card.primary .hiw-visual img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 14px; }
.hiw-steps-wrapper { grid-column: 1 / -1; display: grid; gap: 12px; }
.hiw-steps-wrapper .hiw-step { background: rgba(255,255,255,0.06); border: 1px solid var(--border-color); border-radius: 10px; padding: 12px 14px; -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px); width: 100%; }
.hiw-card.secondary { height: 260px; display: flex; flex-direction: column; justify-content: flex-start; }
.hiw-card.primary .hiw-step p { margin: 0.4rem 0; }
.hiw-card.primary .hiw-step p:first-child { margin-top: 0; }
.hiw-card.primary .hiw-step p:last-child { margin-bottom: 0; }
.hiw-card.primary h3,
.hiw-card.primary p,
.hiw-card.primary li { color: var(--text-primary); }
.hiw-card.secondary { background: #00f7ff; color: var(--text-tertiary); }
/* Force all key text inside the cyan HIW card to be black */
.hiw-card.secondary h3,
.hiw-card.secondary p,
.hiw-card.secondary li,
.hiw-card.secondary .plain-list p { color: var(--text-tertiary); }
.hiw-card h3 { margin-bottom: 0.5rem; color: var(--text-tertiary); }
.hiw-card ul { padding-left: 1rem; }
.hiw-card li { margin: 0.4rem 0; }

/* Disable hover scale on the two HIW boxes */
.hiw-card.primary:hover,
.hiw-card.secondary:hover { transform: none; }

.wizard-intro { text-align: center; margin: 2rem 0 1rem; }
.wizard-intro h3 { font-size: 1.6rem; margin-bottom: 0.5rem; }
.wizard-intro p { color: var(--text-secondary); }

.wizard-steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; margin: 1rem 0 1.5rem; }
.wizard-step { background: #00f7ff; color: #000; border: 1px solid #00F7FF55; border-radius: 14px; padding: 1rem 1.25rem; }
.wizard-step:nth-child(2) { background: #00f7ff; }
.wizard-step h4 { margin-bottom: 0.5rem; color: #000; }
.wizard-step p { color: #000; }

.hiw-copy { text-align: center; max-width: 980px; margin: 1.5rem auto; }
.hiw-copy h3 { font-size: 1.6rem; margin-bottom: 0.5rem; }
.hiw-copy p { color: var(--text-secondary); }

.hiw-localized { text-align: center; margin-top: 1rem; }
.hiw-localized h3 { font-size: 1.6rem; margin-bottom: 0.5rem; }
.hiw-localized p { color: var(--text-secondary); }
.hiw-localized .micro-foot { margin-top: 1rem; opacity: 0.8; letter-spacing: 0.08em; font-size: 0.8rem; }

@media (max-width: 1024px) {
    .hiw-intro-grid { grid-template-columns: 1fr; }
    .wizard-steps { grid-template-columns: 1fr; }
}

/* Solutions Section */
.solutions .section-header { text-align: center; margin-bottom: 1.25rem; }
.solutions .section-header h2 { font-size: 2rem; }
.solutions .section-header .subtitle { color: var(--text-secondary); }

.solutions-intro { display: grid; grid-template-columns: 1fr; gap: 1.25rem; align-items: stretch; }
.solutions-card { border-radius: 16px; padding: 1.25rem 1.25rem 1rem; border: 1px solid var(--border-color); }
.solutions-card { transition: var(--transition); }
.solutions-card.primary { color: var(--text-tertiary); }
.solutions-card.cyan { background: #00f7ff; color: var(--text-tertiary); }
.solutions-card h3, .solutions-card h4 { margin-bottom: 0.6rem; color: var(--text-tertiary); }
.solutions-card ul { padding-left: 1rem; }
.solutions-card li { margin: 0.45rem 0; }

/* primary card with side image */
.solutions-card.with-image { padding: 0; overflow: hidden; display: grid; grid-template-columns: 1.4fr 1fr; }
.solutions-primary-text { background: #f826ff; padding: 1.25rem 1.25rem 1rem; color: var(--text-primary); }
.solutions-primary-text h3, .solutions-primary-text p { color: var(--text-primary); }
.solutions-primary-image { display: block; }
.solutions-primary-image img { width: 100%; height: 100%; display: block; object-fit: cover; }

.solutions-side { display: grid; gap: 1.25rem; }

.solutions-divider { text-align: center; margin: 2rem 0 1rem; font-size: 1.6rem; }

.performance-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.9rem; }
.trust-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.9rem; }
.perf-card { background: rgba(255,255,255,0.06); border: 1px solid var(--border-color); border-radius: 14px; padding: 1rem; }
.perf-card { transition: var(--transition); }
.perf-card h5 { margin-bottom: 0.35rem; font-weight: 700; font-size: 1.25rem; color: var(--text-primary); }

.solutions-foot { text-align: center; max-width: 980px; margin: 1.25rem auto 0; }
.solutions-foot .micro-foot { display: block; text-align: center; }
.solutions-foot p { color: var(--text-secondary); }
.solutions-foot .micro-foot { margin-top: 1rem; opacity: 0.8; letter-spacing: 0.08em; font-size: 0.8rem; }

/* Certifications page-only tweaks */
section.certifications { min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; }
section.certifications .section-header { text-align: center; }
@media (max-width: 480px) {
    section.certifications .section-header h1 { font-size: 2rem; }
}

/* Mobile typography tweaks for home and privacy pages */
@media (max-width: 480px) {
    .section-header h1 { font-size: 2rem; }
    .section-header h2 { font-size: 1.5rem; }
    .hero h1 { font-size: 1.9rem; line-height: 1.2; }
    .partners .section-header h1 { font-size: 2rem; line-height: 1.2; }
}

@media (max-width: 360px) {
    .hero h1 { font-size: 1.7rem; }
    .partners .section-header h1 { font-size: 1.8rem; }
}
section.certifications .perf-card { background: #00f7ff; border: 1px solid #00F7FF55; color: var(--text-tertiary); }
section.certifications .perf-card h5 { color: var(--text-tertiary); }

/* Prevent footer overlap on small screens for certifications page */
@media (max-width: 768px) {
    section.certifications { min-height: auto; padding: 1.25rem 0 1.25rem; }
}

/* Global glass effect: apply 20px backdrop blur to transparent cards */
.obp-card,
.pricing-card,
.perf-card,
.solution-card,
.resource-card,
.stat,
.contact-form {
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
}

@media (max-width: 1280px) {
    .performance-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .solutions-intro { grid-template-columns: 1fr; }
    .solutions-card.with-image { grid-template-columns: 1fr; }
    .performance-grid { grid-template-columns: 1fr; }
}
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.step {
    text-align: center;
    padding: 2rem;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
    color: white;
}

.step h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.step p {
    color: var(--text-secondary);
}

/* Solutions Section */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.solution-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}

.solution-card:hover {
    transform: translateY(-5px) scale(1.1);
    border-color: var(--primary-color);
}

.solution-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: white;
}

.solution-card h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.solution-card p {
    color: var(--text-secondary);
}

/* Security Section */
/* New Security Section layout */
.security .section-header { text-align: center; }
.security .section-header h2 { font-size: 2.5rem; }
.security .section-header .subtitle { color: var(--text-secondary); }

.security-offer { display: grid; grid-template-columns: 1fr 2fr; gap: 1.25rem; align-items: stretch; margin: 1.25rem 0 1.5rem; }
.security-cards { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
.security-card { position: relative; display: block; padding: 1.25rem; border-radius: 14px; border: 1px solid #F726FF55; background: #f826ff; color: var(--text-primary); text-decoration: none; }
.security-card h3 { margin: 0 0 0.4rem 0; line-height: 1.3; color: var(--text-primary); }
.security-card p { color: var(--text-primary); }

.security-image { width: 100%; border-radius: 14px; overflow: hidden; }
.security-image img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 14px; }

.security-foot { text-align: center; color: var(--text-secondary); margin-top: 1.25rem; font-size: 1.25rem; }

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

/* Developers Section */
.developers .section-header { text-align: center; }
.developers .section-header h2 { font-size: 2rem; }
.developers .section-header .subtitle { color: var(--text-secondary); margin-top: 0.25rem; }
.developers .section-header .lede { color: var(--text-secondary); max-width: 900px; margin: 0.5rem auto 1.25rem; }

.dev-feature-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
.dev-feature-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; justify-items: stretch; }
.dev-card { width: 100%; background: #f826ff; color: var(--text-primary); border: 1px solid #F726FF55; border-radius: 14px; padding: 1.25rem; }
.dev-card { transition: var(--transition); }
.dev-card h4 { margin-bottom: 0.5rem; color: var(--text-primary); }
.dev-card p { color: var(--text-primary); }

.dev-feature-image { width: 100%; border-radius: 14px; overflow: hidden; }
.dev-feature-image img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 14px; }

.dev-foot { text-align: center; color: var(--text-secondary); margin-top: 0.75rem; }

@media (max-width: 1024px) {
    .dev-feature-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .dev-feature-cards { grid-template-columns: 1fr; }
}

/* Resources Section */
.support { min-height: 100vh; min-height: 100dvh; display: flex; align-items: center; }
.support .container { width: 100%; }
.support .section-header { text-align: center; }
.support .section-header .lede { color: var(--text-secondary); max-width: 900px; margin: 0.5rem auto 1.25rem; }

.support-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-bottom: 1.5rem; }
.support-card { position: relative; display: block; padding: 1.25rem; border-radius: 14px; border: 1px solid #F726FF55; background: #f826ff; color: var(--text-primary); text-decoration: none; }
.support-card { transition: var(--transition); }
.support-card h3 { margin: 0; line-height: 1.3; color: var(--text-primary); }
.support-card .arrow-icon { position: absolute; right: 1rem; bottom: 1rem; width: 28px; height: 28px; }

.section-header.small { text-align: center; margin-top: 0.75rem; }
.section-header.small .subtitle { color: var(--text-secondary); }

.insight-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.insight-card { position: relative; display: block; padding: 1rem 1.25rem; border-radius: 14px; border: 1px solid #00F7FF55; background: #00f7ff; color: var(--text-tertiary); text-decoration: none; }
.insight-card h4 { margin-bottom: 0.4rem; color: var(--text-tertiary); }
.insight-card p { color: var(--text-tertiary); }
.insight-card .circle-arrow { position: absolute; right: 1rem; bottom: 1rem; width: 24px; height: 24px; }

@media (max-width: 1024px) {
    .support-cards { grid-template-columns: 1fr; }
    .insight-cards { grid-template-columns: 1fr; }
}
.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.resource-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}

.resource-card:hover {
    transform: translateY(-5px) scale(1.1);
    border-color: var(--primary-color);
}

.resource-icon {
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: white;
}

.resource-card h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

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

.resource-link { color: #fff; text-decoration: none; font-weight: 600; transition: var(--transition); }
.resource-link:hover { color: #fff; }

/* Company Section */
.company-belief .section-header { text-align: center; margin-bottom: 1.25rem; }
.company-belief .section-header h2 { font-size: 2.5rem; }

.belief-hero { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-radius: 14px; overflow: hidden; border: 1px solid var(--border-color); }
.belief-copy { background: #f826ff; padding: 1.25rem; color: var(--text-primary); }
.belief-copy h3 { font-size: 2rem; line-height: 1.2; margin-bottom: 1rem; color: var(--text-primary); }
.belief-copy p { color: var(--text-primary); }
.belief-copy .belief-tag { margin-top: 1rem; font-weight: 600; color: var(--text-primary); }
.belief-image { background: url('assets/company.jpg') center/cover no-repeat; min-height: 260px; }

.belief-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; margin-top: 1rem; }
.belief-step { background: #00FFFF; border: 1px solid var(--border-color); border-radius: 14px; padding: 1rem 1.25rem; color: #000; }
.belief-step p { color: #000; }
.belief-step-num { font-weight: 700; margin-bottom: 0.4rem; color: #000; }

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

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info h3 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.contact-info p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.contact-methods {
    display: grid;
    gap: 1rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-secondary);
}

.contact-method i {
    color: var(--primary-color);
    font-size: 1.2rem;
    width: 20px;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 1rem;
    color: var(--text-primary);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.submit-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
}

.submit-btn:hover {
    background: #F726FF;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #f826ff;
    border-top: none;
    padding: 10px 0;
}


.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    padding: 0;
}

.footer-brand { display: flex; align-items: center; gap: 0.75rem; }
.footer-logo-image { height: 50px; width: auto; }
.footer-tagline { display: none; }

.footer-center { display: flex; align-items: center; justify-content: center; text-align: center; color: #000; }
.footer-links { display: flex; justify-content: flex-end; align-items: center; gap: 6px; flex-wrap: nowrap; }
.footer-links a { color: #fff; text-decoration: none; font-size: 0.85rem; white-space: nowrap; }
.footer-links .divider { color: #fff; opacity: 0.9; font-size: 0.85rem; }

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.footer-logo i {
    font-size: 2rem;
    color: var(--primary-color);
}

.footer-section p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.footer-section h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--text-primary);
}

.footer .social-links {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
}

.footer .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border-radius: 50%;
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.footer .social-links a:hover {
    background: transparent;
    color: var(--primary-color);
    transform: translateY(-2px);
}

.footer .social-links a:hover .social-icon {
    filter: brightness(0) saturate(100%) invert(27%) sepia(51%) saturate(2878%) hue-rotate(300deg) brightness(104%) contrast(107%);
    transform: scale(1.1);
}

.footer-bottom { display: none; }

/* Footer social under Quick Access */
.footer-social { display: flex; gap: 1rem; margin-top: 0.75rem; }
.footer-social .social-icon { width: 28px; height: 28px; opacity: 0.95; filter: brightness(0) invert(1); transition: transform 0.2s ease, filter 0.2s ease; }
.footer-social a:hover .social-icon { filter: brightness(0) saturate(100%) invert(72%) sepia(88%) saturate(522%) hue-rotate(133deg) brightness(105%) contrast(101%); transform: translateY(-1px); }

/* Footer Quick Access link colors */
.footer-quick h4 { color: #fff; }
.footer-quick ul li a { color: #fff; }
.footer-quick ul li a:hover { color: var(--secondary-color); }

/* Sticky Auth Button */
.sticky-auth-btn {
    position: fixed;
    top: 14px;
    right: 16px;
    z-index: 1100;
    background: var(--primary-color);
    color: var(--text-primary);
    padding: 0.55rem 1rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 6px 18px rgba(247, 38, 255, 0.35);
}
.sticky-auth-btn:hover { transform: translateY(-1px); }
@media (max-width: 480px) {
    .sticky-auth-btn { top: 10px; right: 10px; padding: 0.5rem 0.85rem; font-size: 0.9rem; }
}

/* Hamburger Button */
.hamburger-btn {
    position: fixed;
    top: 14px;
    left: 16px;
    z-index: 1300;
    background: rgba(0,0,0,0.2);
    border: 1px solid var(--border-secondary-color);
    border-radius: 10px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}
.hamburger-btn:hover { transform: translateY(-1px); }
.hamburger-icon { width: 22px; height: 22px; display: block; }
@media (max-width: 480px) {
    .hamburger-btn { top: 10px; left: 10px; width: 40px; height: 40px; border-radius: 8px; }
    .hamburger-icon { width: 20px; height: 20px; }
}
@media (max-width: 768px) {
}
@media (max-width: 480px) {
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .sidebar { width: 85vw; }
    .main-content { margin-left: 0; width: 100%; }
    
    .sidebar-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero h2 {
        font-size: 1.5rem;
    }
    
    .hero-input {
        flex-direction: column;
        gap: 1rem;
    }
    
    .prompt-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .security-content,
    .dev-content,
    .company-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
    }
    
    .resources-grid {
        grid-template-columns: 1fr;
    }
    
    .company-stats {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: left;
    }
    
    .footer .social-links {
        justify-content: flex-start;
    }
    .footer-quick ul { padding-left: 0; }
    .footer-social { justify-content: flex-start; }
    
    /* Mobile iframe sizing and focus behavior */
    .hero-iframe iframe {
        height: 70vh;
        border-radius: 10px;
    }
    
    .hero.chat-focused .hero-iframe {
        width: 92vw !important;
        max-width: 92vw !important;
        transform: translate(-50%, -50%) scale(1) !important;
    }
    
    /* Improve performance on mobile */
    .main-content {
        background-attachment: scroll;
    }

    /* Ensure full viewport height sidebar on mobile */
    .sidebar,
    .sidebar.expanded { height: 100vh; height: 100dvh; }

    /* Hide scrollbars on mobile to remove right-side bar */
    html, body {
        overflow-x: hidden;
    }
    body {
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE 10+ */
    }
    body::-webkit-scrollbar {
        width: 0;
        height: 0;
        display: none;
    }
    ::-webkit-scrollbar {
        width: 0;
        height: 0;
        background: transparent;
    }

    /* Developer section overflow fixes */
    .section,
    .container,
    .dev-content,
    .dev-feature,
    .code-example {
        max-width: 100%;
        overflow-x: hidden;
    }
    .dev-content {
        grid-template-columns: 1fr;
    }
    .dev-feature {
        flex-wrap: wrap;
    }
    .dev-feature > * {
        min-width: 0;
    }
    .dev-feature h3,
    .dev-feature p,
    .security-text p,
    .company-story p,
    .contact-info p {
        overflow-wrap: anywhere;
        word-break: break-word;
    }
    .code-example pre,
    .code-example code {
        white-space: pre-wrap;
        word-break: break-word;
        overflow-x: auto;
    }
    
    /* Removed mobile hero-adjacent padding override */
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero {
        padding: 1rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero h2 {
        font-size: 1.25rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    /* Narrowest screens: sidebar and iframe tweaks */
    .sidebar { width: 90vw; height: 100vh; height: 100dvh; }
    .sidebar.expanded { width: 90vw; height: 100vh; height: 100dvh; }
    .main-content { margin-left: 0; width: 100%; }
    
    .hero-iframe iframe {
        height: 75vh;
        border-radius: 8px;
    }
}

/* Smooth scrolling for all browsers */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #F726FF;
}

.sidebar:not(.expanded) .sidebar-section h4 {
    display: none;
}

.sidebar:not(.expanded) .wizard-chat-btn {
    justify-content: center;
    padding: 1rem;
}

/* In collapsed mode, do not apply hover/active background on wizard button */
.sidebar:not(.expanded) .wizard-chat-btn:hover,
.sidebar:not(.expanded) .wizard-chat-btn:active,
.sidebar:not(.expanded) .wizard-chat-btn:focus {
    background: transparent;
    transform: none;
    box-shadow: none;
}

.sidebar:not(.expanded) .wizard-chat-btn .nav-text {
    display: none;
}

.sidebar:not(.expanded) .wizard-chat-btn .nav-icon {
    margin: 0;
}
