/* ===========================
   PERCY INTEL V4 - Main Styles
   =========================== */

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

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --secondary-color: #10b981;
    --accent-color: #f59e0b;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
}

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

/* === Header & Navigation === */
.site-header {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

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

.main-nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

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

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: all 0.3s ease;
    transform-origin: center;
}

/* Hamburger to X animation */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* === CTA Buttons === */
.cta-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

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

.cta-button.primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.cta-button.secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.cta-button.secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* === Hero Section === */
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 6rem 0;
    text-align: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.hero-description {
    font-size: 1.125rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    opacity: 0.9;
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* === Market Growth Section === */
.market-growth-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.market-growth-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-intro {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 3rem;
}

.growth-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.stat-card.highlight {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.stat-card.highlight .stat-number {
    color: white;
}

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

.stat-card.highlight p {
    color: rgba(255, 255, 255, 0.95);
}

.market-details {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: white;
    border-radius: 0.75rem;
    box-shadow: var(--shadow-md);
}

.market-details p {
    font-size: 1.125rem;
    line-height: 1.7;
}

/* === Sections === */
section {
    padding: 5rem 0;
}

section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

/* === Breakthrough Section === */
.breakthrough-section {
    background: var(--bg-white);
}

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

.comparison-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 0.75rem;
    border: 2px solid var(--border-color);
}

.comparison-card.highlight {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-color: transparent;
    transform: scale(1.05);
}

.comparison-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.comparison-card.highlight h3 {
    color: white;
}

/* === Capabilities Section === */
.capabilities-section {
    background: var(--bg-light);
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.capability-card {
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: transform 0.3s;
}

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

.capability-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

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

/* === Innovation / Patents Section === */
.innovation-section {
    background: var(--bg-white);
}

.innovation-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.patent-number {
    font-size: 6rem;
    font-weight: 800;
    color: var(--primary-color);
}

.patent-text h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

/* === Results Section === */
.results-section {
    background: var(--bg-light);
}

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

.result-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 0.75rem;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.result-stat {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* === Vision Section with 5 Bubbles (Reverse Pyramid) === */
.vision-section {
    background: var(--bg-white);
}

.vision-intro {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 3rem;
}

/* Desktop: Use CSS Grid for perfect pyramid (3 top, 2 bottom centered) */
.domains-grid-pyramid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);  /* 12 columns for finer control */
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

/* Top row - 3 bubbles, each spanning 4 columns (4+4+4 = 12) */
.domain-card:nth-child(1) {
    grid-column: 1 / 5;  /* columns 1-4 */
}

.domain-card:nth-child(2) {
    grid-column: 5 / 9;  /* columns 5-8 */
}

.domain-card:nth-child(3) {
    grid-column: 9 / 13;  /* columns 9-12 */
}

/* Bottom row - 2 bubbles centered, each spanning 4 columns with 2-column margins */
.domain-card:nth-child(4) {
    grid-column: 3 / 7;  /* columns 3-6 (skips first 2 for left margin) */
}

.domain-card:nth-child(5) {
    grid-column: 7 / 11;  /* columns 7-10 (leaves last 2 for right margin) */
}

.domain-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 0.75rem;
    border: 2px solid var(--border-color);
    text-align: center;
    transition: all 0.3s;
}

.domain-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.domain-card.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-color: transparent;
}

.domain-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.domain-card.active h3 {
    color: white;
}

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

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

.blog-card {
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s;
}

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

.blog-date {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    text-transform: uppercase;
}

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

/* === Newsletter Section === */
.newsletter-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.newsletter-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 2rem auto;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-form input[type="email"] {
    flex: 1;
    min-width: 250px;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    border: none;
    font-size: 1rem;
}

.newsletter-note {
    max-width: 600px;
    margin: 2rem auto 0;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    font-size: 1rem;
}

/* === Contact Modal === */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    overflow: auto;
}

.modal-content {
    background: white;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 0.75rem;
    max-width: 600px;
    position: relative;
}

.close-modal {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-light);
}

.close-modal:hover {
    color: var(--text-dark);
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    font-size: 1rem;
}

.captcha-group #mathProblem {
    color: var(--primary-color);
    font-weight: 700;
}

/* === Final CTA Section === */
.final-cta-section {
    background: var(--bg-light);
    text-align: center;
}

.final-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* === Investor Page Specific === */
.investor-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.investor-hero h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.investor-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
}

.investor-content {
    padding: 4rem 0;
}

.investor-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 0.75rem;
}

.investor-section.highlight {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border: 2px solid var(--primary-color);
}

.investor-section.vision-highlight {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.investor-section.vision-highlight h2 {
    color: white;
}

.investor-section.series-a-note {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.1) 100%);
    border: 2px solid var(--secondary-color);
}

.investor-section.market-highlight {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    border: 3px solid var(--primary-color);
}

.investor-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

.investor-section h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.investor-text {
    font-size: 1.125rem;
    line-height: 1.7;
}

.investor-text ul {
    margin: 1rem 0 1rem 2rem;
}

.investor-text li {
    margin-bottom: 0.75rem;
}

.benefit-list {
    list-style: none;
    margin: 1.5rem 0;
}

.benefit-list li {
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    border-left: 4px solid var(--primary-color);
}

/* Investor Page Growth Stats */
.growth-stats-investor {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.stat-card-investor {
    background: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-color);
}

.stat-card-investor.highlight {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-color: transparent;
    transform: scale(1.05);
}

.stat-number-investor {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-card-investor.highlight .stat-number-investor {
    color: white;
}

.stat-card-investor p {
    font-size: 0.95rem;
    color: var(--text-light);
}

.stat-card-investor.highlight p {
    color: rgba(255, 255, 255, 0.95);
}

/* Sector Growth Items */
.sector-growth {
    margin: 2rem 0;
    display: grid;
    gap: 1.5rem;
}

.sector-item {
    background: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: var(--shadow-sm);
    border-left: 5px solid var(--secondary-color);
}

.sector-name {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.sector-cagr {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 0.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.sector-item p {
    color: var(--text-light);
    font-size: 1rem;
}

/* Competitive Advantages Grid */
.competitive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.competitive-card {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 0.5rem;
    border: 2px solid var(--border-color);
    transition: all 0.3s;
}

.competitive-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.competitive-card h4 {
    color: var(--primary-color);
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.competitive-card p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
}

/* Expansion Timeline */
.expansion-timeline {
    margin: 2rem 0;
    display: grid;
    gap: 1.5rem;
}

.timeline-phase {
    background: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    border-left: 5px solid var(--text-light);
    box-shadow: var(--shadow-sm);
}

.timeline-phase.active {
    border-left-color: var(--secondary-color);
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(5, 150, 105, 0.05) 100%);
}

.phase-badge {
    display: inline-block;
    background: var(--text-light);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.timeline-phase.active .phase-badge {
    background: var(--secondary-color);
}

.timeline-phase h4 {
    color: var(--text-dark);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.timeline-phase p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.timeline-phase p strong {
    color: var(--text-dark);
}

.market-stats-list {
    list-style: none;
    margin: 1.5rem 0;
}

.market-stats-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

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

.contact-button {
    background: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    border: none;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-block;
    margin: 1rem 0;
}

.contact-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.email-option {
    margin-top: 1rem;
    font-size: 1rem;
    color: var(--text-light);
}

.email-option a {
    color: var(--primary-color);
    text-decoration: none;
}

.email-option a:hover {
    text-decoration: underline;
}

/* === Footer === */
.site-footer {
    background: var(--text-dark);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
}

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

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* === Legal Pages (Privacy, Terms) === */
.legal-page-hero,
.ip-hero,
.team-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 0 3rem;
    text-align: center;
}

.legal-page-hero h1,
.ip-hero h1,
.team-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.last-updated,
.ip-subtitle,
.team-subtitle {
    font-size: 1rem;
    opacity: 0.9;
}

.legal-content,
.ip-content,
.team-content {
    padding: 4rem 0;
}

.legal-text {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.legal-text h2 {
    color: var(--text-dark);
    font-size: 1.75rem;
    margin: 2.5rem 0 1rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--border-color);
}

.legal-text h2:first-of-type {
    border-top: none;
    padding-top: 0;
}

.legal-text h3 {
    color: var(--text-dark);
    font-size: 1.25rem;
    margin: 1.5rem 0 0.75rem;
}

.legal-text p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.legal-text ul {
    margin: 1rem 0 1.5rem 2rem;
    color: var(--text-light);
}

.legal-text li {
    margin-bottom: 0.5rem;
}

.disclaimer-box {
    background: #fef3c7;
    border: 3px solid #f59e0b;
    border-radius: 0.75rem;
    padding: 2rem;
    margin: 2rem 0;
}

.disclaimer-box.critical {
    background: #fee2e2;
    border-color: #dc2626;
}

.disclaimer-box h2 {
    color: #d97706;
    font-size: 1.5rem;
    margin: 0 0 1rem 0 !important;
    padding: 0 !important;
    border: none !important;
}

.disclaimer-box.critical h2 {
    color: #dc2626;
}

.disclaimer-box p {
    color: #78350f;
    margin-bottom: 1rem;
}

.disclaimer-box.critical p {
    color: #7f1d1d;
}

.contact-box {
    background: var(--bg-light);
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0.5rem;
}

.contact-box a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-box a:hover {
    text-decoration: underline;
}

.legal-note {
    background: var(--bg-light);
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin: 2rem 0;
    font-size: 0.95rem;
    color: var(--text-light);
}

/* === Intellectual Property Page === */
.ip-section {
    margin: 3rem 0;
}

.highlight-section {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    border-radius: 1rem;
    padding: 3rem;
    margin: 3rem 0;
}

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

.patent-number-large {
    font-size: 8rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.patent-text h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.section-intro {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 2rem;
}

.innovation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.innovation-card {
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s;
}

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

.innovation-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

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

.innovation-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.strategy-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.strategy-item {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 0.5rem;
    border-left: 4px solid var(--primary-color);
}

.strategy-item h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.future-vision {
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow-md);
    margin-top: 2rem;
}

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

.future-vision ul {
    margin-top: 1rem;
}

.future-vision li {
    margin-bottom: 0.75rem;
}

.ip-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.ip-type-card {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 0.5rem;
    text-align: center;
}

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

.licensing-section {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 1rem;
}

.licensing-info {
    margin-top: 2rem;
}

.licensing-info h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.licensing-info ul {
    margin: 1rem 0 2rem 2rem;
}

.contact-licensing {
    background: white;
    padding: 2rem;
    border-radius: 0.5rem;
    text-align: center;
    margin-top: 2rem;
}

.email-large {
    font-size: 1.5rem;
    margin-top: 1rem;
}

.email-large a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.email-large a:hover {
    text-decoration: underline;
}

.investor-note {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    padding: 3rem;
    border-radius: 1rem;
}

.cta-box {
    background: white;
    padding: 2rem;
    border-radius: 0.5rem;
    text-align: center;
    margin-top: 2rem;
}

/* === Team Page === */
.team-section {
    margin: 4rem 0;
}

.team-member-spotlight {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    margin-top: 3rem;
    background: white;
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
}

.member-photo {
    text-align: center;
}

.photo-placeholder {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    font-weight: 700;
    color: white;
    margin: 0 auto 1rem;
}

.photo-note {
    font-size: 0.875rem;
    color: var(--text-light);
    font-style: italic;
}

.member-info h3 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.member-title {
    font-size: 1.25rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.member-bio h4 {
    color: var(--text-dark);
    font-size: 1.125rem;
    margin: 1.5rem 0 0.75rem;
}

.member-bio ul {
    margin: 1rem 0 1.5rem 2rem;
}

.member-bio li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.leadership-quote {
    background: var(--bg-light);
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    font-size: 1.125rem;
    font-style: italic;
    color: var(--text-dark);
}

.culture-section {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 1rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    text-align: center;
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

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

.join-section {
    background: white;
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
}

.roles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.role-category h4 {
    color: var(--primary-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.role-category ul {
    list-style: none;
    margin: 0;
}

.role-category li {
    padding: 0.5rem 0;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
}

.role-category li:last-child {
    border-bottom: none;
}

.join-cta {
    text-align: center;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 2px solid var(--border-color);
}

.join-cta h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.advisors-section,
.investors-note {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 1rem;
}

.partner-note {
    background: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    border-left: 4px solid var(--secondary-color);
    margin-top: 2rem;
}

.investor-cta-box {
    background: white;
    padding: 2rem;
    border-radius: 0.5rem;
    text-align: center;
    margin-top: 2rem;
}

/* === Responsive Mobile Styles === */
@media (max-width: 768px) {
    /* Mobile Navigation Overlay (backdrop) */
    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: 998;
    }
    
    .nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    /* Mobile Navigation */
    .mobile-menu-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 1.5rem;
        transition: right 0.3s ease;
        z-index: 999;
        padding: 80px 20px 40px 20px;
        overflow-y: auto;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }
    
    .main-nav.active {
        right: 0;
    }
    
    /* Close button inside menu */
    .main-nav::before {
        content: '×';
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 2.5rem;
        color: var(--text-dark);
        cursor: pointer;
        line-height: 1;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: var(--bg-light);
        transition: all 0.3s;
    }
    
    .main-nav::before:hover {
        background: var(--primary-color);
        color: white;
        transform: rotate(90deg);
    }
    
    .main-nav a {
        font-size: 1.25rem;
        text-align: center;
        width: 100%;
        padding: 1rem;
        border-bottom: 1px solid var(--border-color);
    }
    
    .main-nav a:last-child {
        border-bottom: none;
    }
    
    /* Center all content on mobile */
    .hero-section,
    .section-intro,
    .market-details,
    .comparison-card,
    .capability-card,
    .domain-card,
    .blog-card,
    .stat-card,
    .result-card {
        text-align: center;
    }
    
    /* Hero adjustments */
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-cta-group {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-cta-group .cta-button {
        width: 100%;
        max-width: 300px;
    }
    
    /* Section titles */
    section h2 {
        font-size: 2rem;
    }
    
    /* Stats grid */
    .growth-stats {
        grid-template-columns: 1fr;
    }
    
    /* Pyramid layout becomes single column on mobile */
    .domains-grid-pyramid {
        grid-template-columns: 1fr;
    }
    
    .domain-card:nth-child(1),
    .domain-card:nth-child(2),
    .domain-card:nth-child(3),
    .domain-card:nth-child(4),
    .domain-card:nth-child(5) {
        grid-column: 1 / -1;
    }
    
    /* Blog grid */
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    /* Newsletter form */
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input[type="email"] {
        width: 100%;
        min-width: auto;
    }
    
    /* Modal */
    .modal-content {
        margin: 10% 5%;
        padding: 1.5rem;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    /* Legal, IP, and Team pages */
    .legal-page-hero h1,
    .ip-hero h1,
    .team-hero h1 {
        font-size: 2rem;
    }
    
    .patent-showcase {
        flex-direction: column;
        gap: 2rem;
    }
    
    .patent-number-large {
        font-size: 5rem;
    }
    
    .team-member-spotlight {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1.5rem;
    }
    
    .photo-placeholder {
        width: 200px;
        height: 200px;
        font-size: 4rem;
    }
    
    .member-info h3 {
        font-size: 1.75rem;
        text-align: center;
    }
    
    .member-title {
        text-align: center;
    }
}
    
    /* Investor page */
    .investor-hero h1 {
        font-size: 2rem;
    }
    
    .investor-section h2 {
        font-size: 1.5rem;
    }
    
    .innovation-content {
        flex-direction: column;
    }
    
    .patent-number {
        font-size: 4rem;
    }
    
    /* Final CTA buttons */
    .final-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .final-cta-buttons .cta-button {
        width: 100%;
        max-width: 300px;
    }
}

/* ===========================
   BLOG PAGE STYLES
   =========================== */

.blog-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.blog-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.blog-subtitle {
    font-size: 1.25rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

.blog-content {
    padding: 4rem 0;
}

.blog-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
}

.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.blog-post-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.post-thumbnail {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-post-card:hover .post-thumbnail img {
    transform: scale(1.05);
}

.post-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.post-separator {
    color: var(--border-color);
}

.post-category {
    color: var(--primary-color);
    font-weight: 500;
}

.post-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.3;
}

.post-title a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.post-excerpt {
    color: var(--text-light);
    margin-bottom: 1rem;
    flex: 1;
}

.read-more {
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: gap 0.3s ease;
}

.read-more:hover {
    gap: 0.5rem;
}

.blog-pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin: 3rem 0;
}

.blog-pagination a,
.blog-pagination span {
    padding: 0.5rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

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

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

.no-posts {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--bg-light);
    border-radius: 12px;
    margin: 2rem 0;
}

.no-posts-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

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

.no-posts p {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.no-posts-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.blog-topics-section {
    margin: 4rem 0;
    padding: 3rem 0;
    background: var(--bg-light);
    border-radius: 12px;
}

.blog-topics-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.topics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 0 2rem;
}

.topic-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

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

.topic-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.topic-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

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

.blog-newsletter-cta {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    border-radius: 12px;
    margin-top: 3rem;
}

.blog-newsletter-cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.blog-newsletter-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* ===========================
   NEWSLETTER PAGE STYLES
   =========================== */

.newsletter-hero {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #059669 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.newsletter-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.newsletter-subtitle {
    font-size: 1.25rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

.newsletter-content {
    padding: 4rem 0;
}

.newsletter-signup-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: start;
}

.signup-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.signup-content > p {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.newsletter-benefits {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    gap: 1rem;
    align-items: start;
}

.benefit-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.benefit-text h3 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

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

.signup-form-container {
    position: sticky;
    top: 100px;
}

.form-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
}

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

.form-card > p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.form-group input,
.form-group select {
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.checkbox-group {
    flex-direction: row;
    align-items: start;
}

.checkbox-label {
    display: flex;
    gap: 0.75rem;
    align-items: start;
    cursor: pointer;
    font-weight: 400;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.25rem;
    cursor: pointer;
}

.checkbox-label span a {
    color: var(--primary-color);
    text-decoration: none;
}

.checkbox-label span a:hover {
    text-decoration: underline;
}

.submit-button {
    margin-top: 0.5rem;
}

.form-note {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: 1rem;
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 6px;
    text-align: center;
    font-weight: 500;
    display: none;
}

.form-message.success {
    display: block;
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.form-message.error {
    display: block;
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.newsletter-details {
    margin: 4rem 0;
    text-align: center;
}

.newsletter-details h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

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

.detail-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

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

.detail-card p {
    color: var(--text-light);
}

.recent-topics {
    margin: 4rem 0;
}

.recent-topics h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.topics-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.topic-preview {
    display: flex;
    gap: 1.5rem;
    background: white;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.topic-preview:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}

.topic-preview .topic-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.topic-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.topic-content p {
    color: var(--text-light);
}

.content-alternatives {
    margin: 4rem 0;
}

.content-alternatives h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.alternatives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.alternative-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--border-color);
}

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

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

/* Responsive Styles for Blog & Newsletter */
@media (max-width: 768px) {
    .blog-hero h1,
    .newsletter-hero h1 {
        font-size: 2rem;
    }
    
    .blog-subtitle,
    .newsletter-subtitle {
        font-size: 1rem;
    }
    
    .blog-posts-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .newsletter-signup-main {
        grid-template-columns: 1fr;
    }
    
    .signup-form-container {
        position: static;
    }
    
    .topics-grid,
    .details-grid,
    .alternatives-grid {
        grid-template-columns: 1fr;
    }
    
    .topic-preview {
        flex-direction: column;
        text-align: center;
    }
    
    .no-posts-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .no-posts-cta .cta-button {
        width: 100%;
        max-width: 300px;
    }
}

/* ===========================
   SIMPLIFIED IP PAGE STYLES
   =========================== */

.innovation-grid-simple {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.patent-category {
    background: white;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.patent-category:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.patent-category h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.patent-category p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
}

.ip-types-simple {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.ip-type-simple {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.ip-type-simple h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.ip-type-simple p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.contact-section {
    text-align: center;
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2rem;
}

.contact-section h2 {
    margin-bottom: 1rem;
}

.contact-section p {
    font-size: 1.1rem;
}

.contact-section a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.contact-section a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .innovation-grid-simple,
    .ip-types-simple {
        grid-template-columns: 1fr;
    }
}
