/* ============================================
   TANJENTZ ANALYTICS - UNIFIED STYLESHEET
   Consolidated and Harmonized Styles
   ============================================ */

/* ============================================
   GLOBAL STYLES & RESET
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f5f5f5;
}

/* ============================================
   NAVIGATION BAR
   ============================================ */
.navbar {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

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

.navbar-brand {
    font-size: 1.8em;
    font-weight: 700;
    text-decoration: none;
    color: white;
}

.navbar-menu {
    display: flex;
    gap: 30px;
    list-style: none;
}

.navbar-menu a {
    color: white;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 6px;
    transition: background 0.3s ease;
}

.navbar-menu a:hover,
.navbar-menu a.active {
    background: rgba(255, 255, 255, 0.2);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.8em;
    cursor: pointer;
}

/* ============================================
   MAIN LAYOUT STRUCTURES
   ============================================ */
.main-container {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    min-height: calc(100vh - 80px);
}

.sidebar {
    width: 350px;
    background: white;
    padding: 40px 30px;
    box-shadow: 4px 0 12px rgba(0,0,0,0.1);
    position: sticky;
    top: 80px;
    height: fit-content;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    overflow-x: hidden;
}

.main-content {
    flex: 1;
    background: white;
    padding: 60px 80px;
}

/* ============================================
   SIDEBAR COMPONENTS
   ============================================ */
.profile-section {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 2px solid #e0e0e0;
}

.profile-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6 0%, #1e3a8a 100%);
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3em;
    color: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    border: 4px solid #1e3a8a;
}

.profile-image img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.profile-name {
    font-size: 1.8em;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 10px;
}

.profile-title {
    font-size: 1.2em;
    color: #666;
    margin-bottom: 15px;
}

.profile-logo {
    width: 200px;
    height: auto;
    margin: 20px auto 0;
    display: block;
}

.profile-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.bio-section {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 2px solid #e0e0e0;
}

.bio-section h3 {
    font-size: 1.5em;
    color: #1e3a8a;
    margin-bottom: 15px;
}

.bio-section p {
    font-size: 1.05em;
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.credentials-list {
    list-style: none;
    padding: 0;
}

.credentials-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 1.05em;
    color: #666;
}

.credentials-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #16a34a;
    font-weight: bold;
    font-size: 1.3em;
}

.contact-section h3 {
    font-size: 1.5em;
    color: #1e3a8a;
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: #f8fafc;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.contact-item:hover {
    background: #eff6ff;
}

.contact-icon {
    font-size: 1.8em;
    color: #3b82f6;
}

.contact-info {
    flex: 1;
}

.contact-label {
    font-size: 0.9em;
    color: #666;
    display: block;
}

.contact-value {
    font-size: 1.1em;
    color: #1e3a8a;
    font-weight: 600;
    text-decoration: none;
}

.contact-value:hover {
    color: #3b82f6;
}

/* ============================================
   HERO & PRESENTATION STYLES
   ============================================ */
.hero-section.presentation-style {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    text-align: center;
    padding: 80px 60px;
    border-radius: 12px;
    margin-bottom: 60px;
}

.hero-section.presentation-style h1 {
    font-size: 2.8em;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.hero-section.presentation-style .subtitle {
    font-size: 1.6em;
    margin-bottom: 30px;
    font-weight: 300;
    opacity: 0.95;
}

.hero-section.presentation-style .hook {
    font-size: 1.2em;
    font-style: italic;
    opacity: 0.9;
    margin-top: 40px;
}

.stat-highlight {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 15px 30px;
    border-radius: 8px;
    margin: 20px 0;
    font-size: 1.3em;
    font-weight: 600;
}

/* Shared container style for both hero and LinkedIn CTA */
.centered-container {
    width: 80%;
    max-width: 800px;
    margin: 40px auto;
    border-radius: 12px;
    padding: 60px 40px;
    text-align: center;
}

.hero-gradient {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
}

.linkedin-gradient {
    background: linear-gradient(135deg, #0a66c2 0%, #1e3a8a 100%);
    color: white;
}

.fa-linkedin {
    font-size: 48px; /* Change size */
    color: #0A66C2; /* LinkedIn Blue */
    margin: 10px 10px;
    background-color: white;
}

/* ============================================
   CONTENT SECTIONS
   ============================================ */
.problem-section,
.cause-section,
.solution-section,
.credibility-section {
    margin: 60px 0;
    padding: 50px;
    border-radius: 12px;
}

.problem-section {
    background: #fef2f2;
    border-left: 5px solid #dc2626;
}

.cause-section {
    background: #fff7ed;
}

.solution-section {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

.credibility-section {
    background: #f8fafc;
    text-align: center;
}

/* Section Headers */
h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
    color: #1e3a8a;
    font-weight: 700;
    text-align: center;
}

h3 {
    font-size: 1.8em;
    margin-bottom: 20px;
    color: #3b82f6;
    font-weight: 600;
}

/* ============================================
   COMPONENT STYLES
   ============================================ */
/* Pain Points Grid */
.pain-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.pain-point {
    background: white;
    padding: 30px;
    border-radius: 12px;
    border-left: 5px solid #dc2626;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.pain-point .icon {
    font-size: 2.5em;
    margin-bottom: 15px;
}

.pain-point h4 {
    font-size: 1.3em;
    margin-bottom: 10px;
    color: #dc2626;
}

/* Stats Section */
.stats-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.stat-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-top: 4px solid #3b82f6;
}

.stat-card .number {
    font-size: 3em;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 10px;
}

.stat-card .label {
    font-size: 1.1em;
    color: #666;
}

/* Value Propositions */
.value-props {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.value-prop-card {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    padding: 40px 30px;
    border-radius: 12px;
    border-left: 5px solid #16a34a;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.value-prop-card .icon {
    font-size: 3em;
    margin-bottom: 20px;
}

.value-prop-card h3 {
    font-size: 1.6em;
    color: #16a34a;
    margin-bottom: 15px;
}

.value-prop-card p {
    font-size: 1.1em;
    color: #666;
    line-height: 1.8;
}

/* Process Steps */
.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 50px;
    position: relative;
}

.process-steps:before {
    content: '';
    position: absolute;
    top: 60px;
    left: 15%;
    right: 15%;
    height: 3px;
    background: #3b82f6;
    z-index: 0;
}

.step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 100px;
    height: 100px;
    background: #3b82f6;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5em;
    font-weight: 700;
    margin: 0 auto 25px;
    border: 8px solid white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.step h4 {
    font-size: 1.4em;
    margin-bottom: 15px;
    color: #1e3a8a;
}

.step p {
    font-size: 1.1em;
    color: #666;
    padding: 0 20px;
}

/* Callout Box */
.callout-box {
    background: #1e3a8a;
    color: white;
    padding: 30px 40px;
    border-radius: 12px;
    font-size: 1.4em;
    text-align: center;
    margin: 40px 0;
    font-weight: 500;
}

/* Value Prop Statements */
.value-prop {
    text-align: center;
    font-size: 1.8em;
    font-style: italic;
    color: #1e3a8a;
    margin: 40px 0;
    padding: 30px;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-radius: 12px;
}

.value-tagline {
    font-size: 1.4em;
    font-weight: 600;
    text-align: center;
    color: #1e3a8a;
    line-height: 1.6;
}

/* ============================================
SUCCESS SECTION STYLES
============================================ */
.success-section {
    background: #eff6ff;
    padding: 80px 60px;
    border-radius: 12px;
    margin: 60px 0;
}

.success-section h2 {
    font-size: 2.5em;
    color: #1e3a8a;
    margin-bottom: 40px;
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border-top: 4px solid #3b82f6;
}

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

.benefit-card .icon {
    font-size: 3.5em;
    margin-bottom: 20px;
}

.benefit-card h4 {
    font-size: 1.4em;
    margin-bottom: 15px;
    color: #1e3a8a;
}

.benefit-card p {
    font-size: 1.05em;
    color: #666;
    line-height: 1.6;
}

/* ============================================
   CTA STYLES
   ============================================ */
.cta-section {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    padding: 80px 60px;
    border-radius: 12px;
    text-align: center;
    margin: 60px 0;
}

.cta-section h2 {
    color: white;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.3em;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-button-main {
    display: inline-block;
    background: white;
    color: #1e3a8a;
    padding: 20px 50px;
    border-radius: 8px;
    font-size: 1.3em;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.cta-button-sidebar {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    padding: 18px 30px;
    border-radius: 8px;
    font-size: 1.2em;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    margin-top: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button-sidebar:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* ============================================
   DASHBOARD STYLES (Preserved)
   ============================================ */
.dashboard {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
}

.dashboard-header {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    padding: 60px 40px;
    border-radius: 12px;
    margin-bottom: 40px;
    text-align: center;
}

.dashboard-header h1 {
    font-size: 3em;
    margin-bottom: 15px;
}

.dashboard-header p {
    font-size: 1.3em;
    opacity: 0.95;
}

.section {
    margin-bottom: 60px;
}

.section-divider {
    border-top: 6px solid #1e3a8a;
    width: 100%;
    margin-top: 20px;
    margin-bottom: 5px;
}

.header-section h2 {
    margin-bottom: 0;
    text-align: left;
}

.header-section h3.data-header {
    margin-left: 0;
    margin-top: 0;
    margin-bottom: 30px;
    font-weight: normal;
    color: #1e3a8a;
}

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

.chart-container {
    background: white;
    border-radius: 12px;
    padding: 15px 15px 10px 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.chart-container iframe {
    width: 100%;
    height: 300px;
    border: none;
    border-radius: 8px;
    display: block;
}

.chart-container iframe.tall {
    height: 600px;
}

.chart-title {
    font-size: 1.4em;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 5px;
    border-bottom: 3px solid #3b82f6;
    padding-bottom: 10px;
}

.chart-subtitle {
    font-size: 1.2em;
    font-weight: 400;
    color: #1e3a8a;
    margin-bottom: 5px;
}

.metric-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.metric-card {
    background: white;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-align: center;
    border-top: 4px solid #3b82f6;
}

.metric-card .value {
    font-size: 2.5em;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 10px;
}

.metric-card .label {
    font-size: 1.15em;
    font-weight: 500;
    color: #666;
}

/* ============================================
DASHBOARD FLOATING NAVIGATION
============================================ */
.dashboard-nav {
    position: sticky;
    top: 80px; /* Below main navbar */
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid #e0e0e0;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.dashboard-nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.nav-link {
    padding: 10px 20px;
    background: #f8fafc;
    color: #1e3a8a;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95em;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-link:hover {
    background: #3b82f6;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.nav-link.active {
    background: #1e3a8a;
    color: white;
    border-color: #3b82f6;
}

/* Smooth scrolling for the entire page */
html {
    scroll-behavior: smooth;
}

/* Highlight active section in navigation */
.dashboard-nav .nav-link.active {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* ============================================
   LOGIN PAGE STYLES
   ============================================ */
.login-container {
    max-width: 400px;
    margin: 80px auto;
    padding: 40px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.login-container h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #1e3a8a;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1em;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #3b82f6;
}

.login-button {
    width: 100%;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    padding: 15px;
    border: none;
    border-radius: 6px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.login-button:hover {
    transform: translateY(-2px);
}

.login-help {
    text-align: center;
    margin-top: 20px;
    color: #666;
}

/* ============================================
   DETAILED CONTACT PAGE STYLES
   ============================================ */
.contact-page-container {
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px;
}

/* Clean Header */
.contact-header {
    border-radius: 12px;
    text-align: center;
    margin-bottom: 20px;
    padding: 10px 200px;
}

.contact-header h1 {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    font-size: 2.3em;
    color: white;
    margin-bottom: 15px;
    font-weight: 700;
}

.contact-subtitle {
    font-size: 1.25em;
    color: #1e3a8a;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Detailed Cards Grid - 2x2 Layout */
.detailed-cards-grid {
    display: grid;
    padding: 60px;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    margin-bottom: 30px;
}

.detailed-card {
    background: white;
    border-radius: 12px;
    padding: 40px 35px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    border-top: 6px solid #1e3a8a;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.detailed-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.schedule-highlight {
    border-top-color: #1e3a8a;
    background: linear-gradient(to bottom, #ffffff 0%, #f8fafc 100%);
}

.linkedin-card {
    border-top-color: #1e3a8a;
}

.card-icon-large {
    font-size: 3.2em;
    margin-bottom: 20px;
    display: block;
    text-align: center;
}

.detailed-card h3 {
    font-size: 1.6em;
    color: #1e3a8a;
    margin-bottom: 15px;
    font-weight: 600;
    text-align: center;
}

.card-description {
    color: #666;
    line-height: 1.7;
    margin-bottom: 30px;
    font-size: 1.1em;
    text-align: center;
    flex: 1;
}

/* Details Container */
.details-container {
    background: #f8fafc;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 30px;
    border: 1px solid #e0e0e0;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #e5e7eb;
}

.detail-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.detail-row:first-child {
    padding-top: 0;
}

.detail-label {
    font-weight: 600;
    color: #555;
    font-size: 0.95em;
    flex: 1;
}

.detail-value {
    color: #1e3a8a;
    font-weight: 500;
    font-size: 0.95em;
    text-align: right;
    flex: 1;
}

.detail-value.highlight-green {
    color: #16a34a;
    font-weight: 700;
    font-size: 1em;
}

.detail-value-link {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95em;
    text-align: right;
    flex: 1;
}

.detail-value-link:hover {
    text-decoration: underline;
    color: #2563eb;
}

/* CTA Buttons */
.cta-button.detailed-cta {
    display: block;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    padding: 16px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1em;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    width: 100%;
    border: none;
    cursor: pointer;
}

.cta-button.detailed-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.schedule-highlight .cta-button.detailed-cta {
    background: linear-gradient(135deg, #16a34a 0%, #22c55e 100%);
}

.schedule-highlight .cta-button.detailed-cta:hover {
    box-shadow: 0 8px 25px rgba(22, 163, 74, 0.4);
}

.linkedin-cta {
    background: #0a66c2 !important;
}

.linkedin-cta:hover {
    box-shadow: 0 8px 25px rgba(10, 102, 194, 0.4) !important;
    background: #0a5eb8 !important;
}

/* Calendly Section */
.calendly-main-section {
    background: linear-gradient(135deg, #f8fafc 0%, #eff6ff 100%);
    border-radius: 12px;
    padding: 60px 50px;
    margin-top: 50px;
    border: 1px solid #e0e0e0;
}

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

.calendly-header h2 {
    font-size: 2.2em;
    color: #1e3a8a;
    margin-bottom: 15px;
}

.calendly-subtitle {
    font-size: 1.2em;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.calendly-content-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: start;
}

.calendly-widget-container {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    min-height: 700px;
}

.discussion-side-panel {
    background: white;
    border-radius: 12px;
    padding: 35px 30px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    border-left: 6px solid #16a34a;
}

.discussion-side-panel h3 {
    color: #1e3a8a;
    margin-bottom: 25px;
    font-size: 1.5em;
    font-weight: 600;
}

.discussion-checklist {
    list-style: none;
    padding: 0;
    margin-bottom: 35px;
}

.discussion-checklist li {
    padding: 5px 0;
    padding-left: 40px;
    position: relative;
    font-size: 1.1em;
    color: #555;
    border-bottom: 1px solid #f0f0f0;
    line-height: 1.5;
}

.discussion-checklist li:last-child {
    border-bottom: none;
}

.checkmark {
    position: absolute;
    left: 0;
    top: 15px;
    color: #16a34a;
    font-weight: bold;
    font-size: 1.3em;
}

.preparation-note {
    background: #eff6ff;
    padding: 25px;
    border-radius: 10px;
    border-left: 5px solid #3b82f6;
}

.preparation-note h4 {
    color: #1e3a8a;
    margin-bottom: 12px;
    font-size: 1.2em;
    font-weight: 600;
}

.preparation-note p {
    color: #555;
    line-height: 1.6;
    margin: 0;
    font-size: 1em;
}


/* Make cards more compact */
.compact-cards {
    gap: 25px; /* Reduced from 35px */
    margin-bottom: 60px; /* Reduced from 90px */
}

.compact-card {
    padding: 30px 25px; /* Reduced from 40px 35px */
    border-top-width: 4px; /* Reduced from 6px */
}

.compact-card .card-icon-large {
    font-size: 2.5em; /* Reduced from 3.2em */
    margin-bottom: 15px; /* Reduced from 20px */
}

.compact-card h3 {
    font-size: 1.4em; /* Reduced from 1.6em */
    margin-bottom: 12px; /* Reduced from 15px */
}

.compact-card .card-description {
    font-size: 1em; /* Reduced from 1.1em */
    margin-bottom: 25px; /* Reduced from 30px */
    line-height: 1.6; /* Slightly tighter */
}

.compact-card .details-container {
    padding: 20px; /* Reduced from 25px */
    margin-bottom: 25px; /* Reduced from 30px */
    border-radius: 8px; /* Reduced from 10px */
}

.compact-card .detail-row {
    padding: 10px 0; /* Reduced from 12px 0 */
}




/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .main-container {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
        position: relative;
        top: 0;
    }

    .main-content {
        padding: 40px 30px;
    }

    .navbar-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #1e3a8a;
        flex-direction: column;
        padding: 20px;
        gap: 10px;
    }

    .navbar-menu.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .process-steps {
        flex-direction: column;
        align-items: center;
    }

    .process-steps:before {
        display: none;
    }

    .step {
        margin-bottom: 40px;
    }

    .chart-grid-2 {
        grid-template-columns: 1fr;
    }
}

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

    .hero-section.presentation-style {
        padding: 60px 30px;
    }

    .hero-section.presentation-style h1 {
        font-size: 2em;
    }

    .problem-section,
    .cause-section,
    .solution-section,
    .credibility-section {
        padding: 30px 20px;
    }

    h2 {
        font-size: 2em;
    }

    .pain-points,
    .value-props,
    .stats-section {
        grid-template-columns: 1fr;
    }

    .dashboard-header h1 {
        font-size: 2em;
    }

    .login-container {
        margin: 40px 20px;
        padding: 30px 20px;
    }

    .contact-container {
        margin: 80px 40px;
        padding: 30px 20px;
    }
}

/* Contact Page Responsive */
/* Responsive Design */
@media (max-width: 1100px) {
    .detailed-cards-grid {
        gap: 30px;
    }
    
    .detailed-card {
        padding: 35px 30px;
    }
    
    .calendly-content-wrapper {
        gap: 40px;
    }
}

@media (max-width: 900px) {
    .detailed-cards-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .calendly-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .calendly-main-section {
        padding: 50px 30px;
    }
}

@media (max-width: 768px) {
    .contact-header h1 {
        font-size: 1.9em;
    }
    
    .contact-subtitle {
        font-size: 1.1em;
    }
    
    .detailed-card {
        padding: 30px 25px;
    }
    
    .details-container {
        padding: 20px;
    }
    
    .calendly-main-section {
        padding: 40px 25px;
    }
    
    .calendly-header h2 {
        font-size: 1.8em;
    }
    
    .contact-page-container {
        padding: 0 15px;
        margin: 30px auto;
    }
}

@media (max-width: 480px) {
    .contact-header h1 {
        font-size: 1.7em;
    }
    
    .detailed-card {
        padding: 25px 20px;
    }
    
    .card-icon-large {
        font-size: 2.8em;
    }
    
    .detailed-card h3 {
        font-size: 1.4em;
    }
    
    .calendly-main-section {
        padding: 30px 20px;
    }
}