/* SignalEdge Public Marketing Website - Styles */

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

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: #0a0a14;
    color: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
}

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

/* ========== HEADER ========== */
.header {
    background: linear-gradient(90deg, #12121f 0%, #1a1a2e 50%, #12121f 100%);
    padding: 12px 60px;
    border-bottom: 1px solid rgba(42, 42, 74, 0.5);
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 40px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}

.header-left {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.header-center {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.header-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.header-logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.header-logo-box {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #0c1929 0%, #1a1a3e 100%);
    border: 2px solid transparent;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.header-logo-box::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #f97316 0%, #3b82f6 50%, #8b5cf6 100%);
    border-radius: 10px;
    z-index: -1;
}

.header-logo-monogram {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-letter-s {
    font-family: 'Georgia', serif;
    font-size: 26px;
    font-weight: 900;
    font-style: italic;
    background: linear-gradient(180deg, #f97316 0%, #fb923c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: absolute;
    left: 4px;
    top: 2px;
}

.header-letter-e {
    font-family: 'Georgia', serif;
    font-size: 18px;
    font-weight: 800;
    background: linear-gradient(180deg, #3b82f6 0%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: absolute;
    right: 4px;
    bottom: 4px;
}

.logo-underline {
    position: absolute;
    bottom: -2px;
    left: 2px;
    right: 2px;
    height: 2px;
    background: linear-gradient(90deg, #f97316 0%, #3b82f6 100%);
    border-radius: 1px;
}

.header-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.header-signal-edge {
    font-size: 16px;
    font-weight: 700;
    background: linear-gradient(90deg, #f97316, #fb923c, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.header-analytics {
    font-size: 10px;
    font-weight: 600;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 2px;
}

.header-center-branding {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    background: transparent;
    border: none;
    padding: 0;
    margin: 0;
}

.header-chart-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
    max-width: 48px;
    max-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    flex-shrink: 0;
    will-change: auto;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.header-chart-icon svg,
.main-logo-img {
    width: 48px !important;
    height: 48px !important;
    min-width: 48px !important;
    min-height: 48px !important;
    max-width: 48px !important;
    max-height: 48px !important;
    object-fit: contain;
    filter: drop-shadow(0 0 6px rgba(255, 120, 73, 0.25)) drop-shadow(0 0 12px rgba(100, 181, 246, 0.2));
    transform: scale(1) translateZ(0) !important;
    flex-shrink: 0;
    will-change: auto;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transition: none !important;
    animation: none !important;
    position: relative;
    z-index: 1;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    display: block;
}

.illuminating-icon {
    /* Animation only affects glow, not the logo itself */
}

.illuminating-glow {
    position: absolute;
    inset: -4px;
    background: radial-gradient(circle, rgba(255, 120, 73, 0.12) 0%, rgba(100, 181, 246, 0.1) 40%, transparent 60%);
    border-radius: 50%;
    filter: blur(8px);
    z-index: -1;
    pointer-events: none;
    animation: subtle-pulse 4s ease-in-out infinite;
}

@keyframes subtle-pulse {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 0.8;
    }
}

@keyframes pulse-glow {
    0%, 100% {
        opacity: 0.7;
    }
    50% {
        opacity: 0.8;
    }
}

.header-center-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.header-company-name {
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
}

.header-tagline {
    font-size: 15px;
    color: #fb923c;
    white-space: nowrap;
    margin-top: 2px;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.logo-box {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #0c1929 0%, #1a1a3e 100%);
    border: 2px solid transparent;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.logo-box::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #f97316 0%, #3b82f6 50%, #8b5cf6 100%);
    border-radius: 8px;
    z-index: -1;
}

.logo-monogram {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-monogram .letter-s {
    font-family: 'Georgia', serif;
    font-size: 20px;
    font-weight: 900;
    font-style: italic;
    background: linear-gradient(180deg, #f97316 0%, #fb923c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: absolute;
    left: 3px;
    top: 1px;
}

.logo-monogram .letter-e {
    font-family: 'Georgia', serif;
    font-size: 14px;
    font-weight: 800;
    background: linear-gradient(180deg, #3b82f6 0%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: absolute;
    right: 3px;
    bottom: 3px;
}

.brand-name {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-name .signal-part {
    font-size: 13px;
    font-weight: 700;
    background: linear-gradient(90deg, #f97316, #fb923c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.brand-name .edge-part {
    font-size: 10px;
    font-weight: 600;
    color: #6a7488;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Navigation */
.nav-container {
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 10;
    flex-shrink: 0;
}

.nav-link {
    color: #9ca3af;
    text-decoration: none;
    padding: 8px 14px;
    position: relative;
    transition: all 0.25s ease;
    cursor: pointer;
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 0.3px;
    background: transparent;
    border: none;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--nav-color, #f97316);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-link:hover {
    color: #ffffff;
}

.nav-link:hover::after {
    width: 80%;
    box-shadow: 0 0 12px var(--nav-color, #f97316);
}

.nav-link.active {
    color: rgba(99, 102, 241, 0.6);
    cursor: default;
    opacity: 0.7;
}

.nav-link.active::after {
    width: 100%;
    background: rgba(99, 102, 241, 0.4);
    box-shadow: 0 0 8px rgba(99, 102, 241, 0.2);
}

/* Nav color assignments */
.nav-home { --nav-color: #22c55e; }
.nav-how { --nav-color: #6366f1; }
.nav-consultancy { --nav-color: #ec4899; }
.nav-about { --nav-color: #94a3b8; }
.nav-contact { --nav-color: #f59e0b; }
.nav-commercial { --nav-color: #f97316; }

.nav-copyright {
    color: #64748b;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.3px;
    padding: 8px 14px;
    margin-left: 8px;
    border-left: 1px solid #2a2a4a;
    white-space: nowrap;
}

/* ========== HERO SECTION ========== */
.hero {
    position: relative;
    padding: 120px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 90vh;
    margin-top: 60px; /* Header height */
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse 80% 50% at 20% 40%, rgba(249, 115, 22, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse 60% 60% at 80% 50%, rgba(59, 130, 246, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse 50% 80% at 50% 80%, rgba(139, 92, 246, 0.08) 0%, transparent 50%);
    animation: heroPulse 10s ease-in-out infinite;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #0a0a14 0%, transparent 30%, transparent 70%, #0a0a14 100%);
}

@keyframes heroPulse {
    0%, 100% { opacity: 0.8; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: -1;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    width: 100%;
}

.hero-text {
    flex: 1;
    max-width: 550px;
    animation: fadeIn 1s ease-out;
}

.hero-eyebrow {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #f97316; /* Orange color from screenshot */
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #fff;
}

.hero-text .lead {
    font-size: 18px;
    line-height: 1.6;
    color: #d1d5db; /* Lighter gray for better readability */
    margin-bottom: 16px;
}

.hero-text .lead-secondary {
    font-size: 16px;
    line-height: 1.6;
    color: #9ca3af; /* Softer gray */
    margin-bottom: 32px;
}

.hero-questions {
    border-left: 2px solid #f97316;
    padding-left: 24px;
    margin-top: 32px;
    font-size: 16px;
    color: #d1d5db;
}

.hero-questions p {
    margin-bottom: 16px;
}

.hero-visual {
    flex: 1.2;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: #ffffff;
    box-shadow: 0 8px 30px rgba(249, 115, 22, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(249, 115, 22, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

/* ========== SECTIONS ========== */
.section {
    width: 100vw;
    padding: 100px 0;
    position: relative;
}

.section-dark {
    background: linear-gradient(180deg, #0a0a14 0%, #0d0d1a 50%, #0a0a14 100%);
}

.section-light {
    background: linear-gradient(180deg, #0d0d1a 0%, #121220 50%, #0d0d1a 100%);
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 40px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 18px;
    color: #8a8aa0;
    max-width: 600px;
    margin: 0 auto;
}

/* ========== SHOWCASE (Left/Right Split) ========== */
.showcase {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    padding: 80px 60px;
    max-width: 1600px;
    margin: 0 auto;
}

.showcase-visual {
    position: relative;
}

.screenshot-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(42, 42, 74, 0.5);
}

.screenshot-container img {
    width: 100%;
    height: auto;
    display: block;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.screenshot-container img.active {
    opacity: 1;
}

.showcase-info {
    opacity: 0;
    animation: fadeInRight 0.8s ease 0.3s forwards;
}

/* ========== CAPABILITIES GRID ========== */
.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.capability-card {
    background: linear-gradient(145deg, #12121f 0%, #1a1a2e 100%);
    border: 1px solid rgba(42, 42, 74, 0.5);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
}

.capability-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    border-color: rgba(249, 115, 22, 0.3);
}

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

.capability-card .card-icon.orange {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.2) 0%, rgba(249, 115, 22, 0.05) 100%);
    color: #f97316;
}

.capability-card .card-icon.purple {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(139, 92, 246, 0.05) 100%);
    color: #8b5cf6;
}

.capability-card .card-icon.blue {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(59, 130, 246, 0.05) 100%);
    color: #3b82f6;
}

.capability-card .card-icon.green {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2) 0%, rgba(34, 197, 94, 0.05) 100%);
    color: #22c55e;
}

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

.capability-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
}

.capability-card p {
    font-size: 15px;
    color: #8a8aa0;
    line-height: 1.7;
}

/* ========== WHO THIS IS FOR ========== */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.audience-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(42, 42, 74, 0.3);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.audience-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(59, 130, 246, 0.3);
}

.audience-item h4 {
    font-size: 14px;
    font-weight: 600;
    color: #c8d0e0;
    margin-bottom: 8px;
}

.audience-item p {
    font-size: 12px;
    color: #6a7488;
}

/* ========== FOOTER ========== */
.footer {
    width: 100vw;
    padding: 40px 60px;
    background: #08080f;
    border-top: 1px solid rgba(42, 42, 74, 0.3);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-brand {
    font-size: 14px;
    color: #6a7488;
}

.footer-brand strong {
    color: #a0a8b8;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6a7488;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(249, 115, 22, 0.15);
    color: #f97316;
}

.social-link svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* ========== ANIMATIONS ========== */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

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

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1, transform: translateX(0); }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ========== ABOUT PAGE ========== */
.about-header {
    text-align: center;
    margin-bottom: 60px;
}

.about-header h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 16px;
}

.about-header .lead {
    font-size: 18px;
    color: #d1d5db;
    max-width: 700px;
    margin: 0 auto;
}

.team-section {
    margin-bottom: 60px;
}

.team-section h2 {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-member {
    background-color: #1a1a2e;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #2a2a4a;
}

.team-member img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 16px;
    border: 3px solid #3b82f6;
}

.team-member h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.team-member p {
    color: #9ca3af;
}

/* ========== CONSULTANCY PAGE ========== */
.consultancy-header {
    text-align: center;
    margin-bottom: 60px;
}

.consultancy-header h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 16px;
}

.consultancy-header .lead {
    font-size: 18px;
    color: #d1d5db;
    max-width: 700px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.service-card {
    background-color: #1a1a2e;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #2a2a4a;
    display: flex;
    flex-direction: column;
}

.service-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #ec4899; /* Consultancy color */
}

.service-card p {
    color: #9ca3af;
    line-height: 1.6;
    flex-grow: 1;
}

.cta-section {
    text-align: center;
}

.cta-section h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 18px;
    color: #d1d5db;
    margin-bottom: 32px;
}

/* ========== CONTACT PAGE ========== */
.contact-page {
    padding-top: 100px;
    padding-bottom: 50px;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-header h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 16px;
}

.contact-header p {
    font-size: 18px;
    color: #d1d5db;
    max-width: 700px;
    margin: 0 auto;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: flex-start;
}

.contact-info h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #f59e0b; /* Contact color */
}

.contact-info p {
    color: #9ca3af;
    line-height: 1.6;
    margin-bottom: 24px;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.info-icon {
    color: #f59e0b;
    flex-shrink: 0;
}

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

.info-content h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.social-section h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
}

.social-links-contact {
    display: flex;
    gap: 16px;
}

.social-link-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #1a1a2e;
    color: #9ca3af;
    transition: all 0.2s;
}

.social-link-btn:hover {
    background-color: #f59e0b;
    color: #fff;
}

.social-link-btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.contact-form-wrapper {
    background-color: #1a1a2e;
    padding: 32px;
    border-radius: 8px;
    border: 1px solid #2a2a4a;
}

.contact-form .form-row {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-bottom: 24px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #9ca3af;
}

.form-group input,
.form-group select,
.form-group textarea {
    background-color: #0a0a14;
    border: 1px solid #2a2a4a;
    border-radius: 4px;
    padding: 12px;
    color: #fff;
    font-size: 16px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #f59e0b;
    box-shadow: 0 0 0 2px rgba(245, 158, 11, 0.3);
}

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

/* ========== HOW IT WORKS PAGE ========== */
.hero-content .hero-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.section {
    padding: 80px 0;
}

.section-dark {
    background-color: #0a0a14;
}

.section-light {
    background-color: #12121f;
}

.section-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 18px;
    color: #9ca3af;
}

.flow-diagram {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.flow-step {
    text-align: center;
    max-width: 220px;
}

.flow-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 2px solid;
}

.flow-icon.blue { border-color: #3b82f6; color: #3b82f6; }
.flow-icon.purple { border-color: #8b5cf6; color: #8b5cf6; }
.flow-icon.orange { border-color: #f97316; color: #f97316; }
.flow-icon.green { border-color: #22c55e; color: #22c55e; }

.flow-icon svg {
    width: 32px;
    height: 32px;
}

.flow-step h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.flow-step p {
    color: #9ca3af;
    font-size: 14px;
    line-height: 1.5;
}

.flow-arrow {
    flex-grow: 1;
    height: 2px;
    background-color: #2a2a4a;
    margin-top: 32px;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.principle-card {
    background-color: #0a0a14;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #2a2a4a;
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.principle-icon {
    flex-shrink: 0;
    color: #6366f1; /* How it works color */
}

.principle-icon svg {
    width: 32px;
    height: 32px;
}

.principle-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.principle-card p {
    color: #9ca3af;
    line-height: 1.6;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1200px) {
    .hero-text h1 {
        font-size: 44px;
    }

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

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

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

@media (max-width: 768px) {
    .hero-content {
        padding: 40px 24px;
    }

    .hero-text h1 {
        font-size: 32px;
    }

    .hero-text .lead {
        font-size: 16px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .section {
        padding: 60px 0;
    }

    .section-container {
        padding: 0 24px;
    }

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

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

    .footer {
        padding: 30px 24px;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
    }
}
