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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
    color: #334155;
    background-color: #ffffff;
}

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

/* Header */
.header {
    border-bottom: 1px solid #e2e8f0;
    background: white;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
    padding: 16px 0;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: #0f172a;
    border-radius: 12px;
}

.logo-img {
    height: 48px;
    width: auto;
    opacity: 2;
    filter: brightness(0) invert(1);
}

.logo-text {
    font-weight: 600;
    letter-spacing: -0.025em;
    color: #0f172a;
}
/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 24px;
    color: #0f172a;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: background-color 0.2s;
}

.mobile-menu-toggle:hover {
    background-color: #f1f5f9;
}

@media (min-width: 768px) {
    .mobile-menu-toggle {
        display: none;
    }
}

.nav {
    display: none;
    align-items: center;
    gap: 24px;
}

.nav-link {
    background: none;
    border: none;
    color: #64748b;
    font-size: 14px;
    cursor: pointer;
    transition: color 0.2s;
}

.nav-link:hover {
    color: #0f172a;
}

@media (min-width: 768px) {
    .nav {
        display: flex;
    }
}
/* Mobile Navigation Overlay */
.nav.mobile-open {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    z-index: 1000;
}

.nav.mobile-open .nav-link {
    font-size: 18px;
    padding: 16px;
    color: #0f172a;
}
/* Hero Section */
.hero {
    position: relative;
    overflow: hidden;
    padding: 80px 0 72px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-accent {
    position: absolute;
    border-radius: 50%;
    filter: blur(96px);
}

.hero-accent-1 {
    top: -96px;
    right: -96px;
    width: 288px;
    height: 288px;
    background: rgba(34, 211, 238, 0.35);
}

.hero-accent-2 {
    bottom: -96px;
    left: -96px;
    width: 384px;
    height: 384px;
    background: rgba(20, 184, 166, 0.35);
}

.hero-grid {
    display: grid;
    gap: 40px;
    align-items: center;
}

@media (min-width: 768px) {
    .hero {
        padding: 96px 0;
    }
    .hero-grid {
        grid-template-columns: 7fr 5fr;
    }
}

.pills {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 12px;
    border-radius: 9999px;
    border: 1px solid #e2e8f0;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    font-size: 12px;
    color: #475569;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.pill::before {
    content: "✨";
    font-size: 14px;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.1;
    color: #0f172a;
    margin-bottom: 12px;
}

.gradient-text {
    background: linear-gradient(135deg, #0d9488, #0891b2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 18px;
    color: #0f766e;
    font-weight: 500;
    letter-spacing: 0.025em;
    margin-bottom: 12px;
}

.hero-description {
    font-size: 18px;
    color: #475569;
    max-width: 32rem;
    margin-bottom: 16px;
}

.hero-rotating {
    height: 32px;
    font-size: 16px;
    color: #0f172a;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 32px;
}

.play-icon {
    font-size: 20px;
    color: #0d9488;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.trust-points {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 14px;
    color: #64748b;
    flex-wrap: wrap;
}

.trust-point {
    display: flex;
    align-items: center;
    gap: 8px;
}

.check {
    color: #0d9488;
    font-weight: 600;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 16px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
  text-decoration: none;
}

.btn-primary {
    background: #0f172a;
    color: white;
}

.btn-primary:hover {
    background: #1e293b;
}

.btn-outline {
    border: 1px solid #cbd5e1;
    background: white;
    color: #0f172a;
}

.btn-outline:hover {
    background: #f8fafc;
}

.btn-ghost {
    background: none;
    color: #475569;
}

.btn-ghost:hover {
    color: #0f172a;
}

.btn-linkedin {
    background: #0077b5;
    color: white;
    border: 1px solid #0077b5;
}

.btn-linkedin:hover {
    background: #005885;
    border-color: #005885;
}

.arrow {
    margin-left: 6px;
    font-size: 16px;
}

.full-width {
    width: 100%;
}

/* Hero Snapshot */
.hero-snapshot {
    display: flex;
    justify-content: center;
}

.snapshot-card {
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    padding: 16px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    width: 100%;
    max-width: 400px;
}

.snapshot-title {
    font-size: 14px;
    color: #475569;
  font-weight: 500;
    margin-bottom: 12px;
}

.snapshot-grid {
  display: grid;
    grid-template-columns: repeat(3, 1fr);
  gap: 12px;
    margin-bottom: 16px;
}

.snapshot-item {
    padding: 12px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    background: white;
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: center;
}

.snapshot-icon {
    font-size: 20px;
    margin-bottom: 4px;
}

.snapshot-label {
    font-weight: 500;
    font-size: 14px;
}

.snapshot-desc {
    font-size: 12px;
    color: #64748b;
}

.impact-progress {
    padding: 12px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    background: linear-gradient(135deg, #f0fdfa, #ecfeff);
}

.impact-title {
    color: #475569;
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 14px;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: white;
    border-radius: 9999px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    margin-bottom: 8px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(135deg, #0d9488, #0891b2);
    transition: width 0.3s ease;
}

.progress-text {
    font-size: 12px;
    color: #64748b;
}

/* Sections */
.section {
    padding: 64px 0;
}

.bg-alt {
    background: #f8fafc;
}

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

.section-eyebrow {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #64748b;
    margin-bottom: 8px;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 12px;
}

.section-subtitle {
    color: #64748b;
    max-width: 32rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
}

/* Services */
.services-grid {
    display: grid;
    gap: 24px;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-header {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.service-icon {
    font-size: 24px;
    color: #0d9488;
}

.service-title {
    color: #0f172a;
}

.service-desc {
    color: #64748b;
    font-size: 14px;
    margin-bottom: 16px;
    flex-grow: 1;
}

.service-points {
    list-style: none;
    font-size: 14px;
    color: #475569;
    margin-bottom: 16px;
}

.service-points li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 8px;
}

.service-buttons {
    display: flex;
    gap: 8px;
    margin-top: auto;
}

/* Founder */
.founder-grid {
    display: grid;
    gap: 48px;
    align-items: start;
}

@media (min-width: 768px) {
    .founder-grid {
        grid-template-columns: 5fr 7fr;
    }
}

.founder-image {
  display: inline-block; /* or block */
  border-radius: 16px;
  background: #fff; /* optional background */
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
              0 2px 4px -1px rgba(0, 0, 0, 0.06);
  border: 1px solid #e2e8f0;
}

.founder-photo {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

.image-placeholder {
    font-size: 18px;
    color: #64748b;
}

.founder-quote {
    font-size: 18px;
    color: #1e293b;
    line-height: 1.6;
    border-left: 4px solid #0d9488;
    padding-left: 16px;
    margin-bottom: 24px;
}

.founder-points {
    display: grid;
    gap: 16px;
    margin-bottom: 24px;
}

@media (min-width: 768px) {
    .founder-points {
        grid-template-columns: repeat(2, 1fr);
    }
}

.founder-point {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: #475569;
}

.founder-buttons {
    display: flex;
    gap: 12px;
}

.icon {
    font-size: 16px;
}

/* Impact */
.impact-grid {
    display: grid;
    gap: 32px;
    align-items: center;
}

@media (min-width: 768px) {
    .impact-grid {
        grid-template-columns: 7fr 5fr;
    }
}

.impact-progress-card {
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    padding: 24px;
}

.progress-label {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 8px;
}

.progress-bar-large {
    width: 100%;
    height: 12px;
    background: #f1f5f9;
    border-radius: 9999px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    margin-bottom: 8px;
}

.progress-stats {
    font-size: 14px;
    color: #475569;
    margin-bottom: 16px;
}

.progress-description {
    color: #475569;
    font-size: 14px;
    line-height: 1.6;
}

.impact-story {
    border-radius: 16px;
    padding: 24px;
    background: linear-gradient(135deg, #f0fdfa, #ecfeff);
    border: 1px solid #e2e8f0;
}

.story-header {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #0f766e;
    font-weight: 500;
    margin-bottom: 12px;
}

.story-icon {
    font-size: 20px;
}

.story-text {
    color: #475569;
    font-size: 14px;
    line-height: 1.6;
}

/* Contact */
.contact-grid {
    display: grid;
    gap: 80px;
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: 7fr 5fr;
    }
}

.newsletter-card,
.contact-card {
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    padding: 32px;
}

.form-grid {
    display: grid;
    gap: 16px;
    margin-bottom: 16px;
}

@media (min-width: 768px) {
    .form-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.form-input {
    height: 48px;
    border-radius: 12px;
    border: 1px solid #cbd5e1;
    padding: 0 16px;
    font-size: 14px;
    transition: border-color 0.2s;
    margin-bottom: 16px;
}

.form-input:focus {
    outline: none;
    border-color: #0d9488;
}

.form-note,
.contact-note {
    font-size: 12px;
    color: #64748b;
    margin-top: 8px;
}

.contact-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #0f172a;
}

/* Footer */
.footer {
    padding: 40px 0;
    border-top: 1px solid #e2e8f0;
    background: white;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
    }
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 12px;
    background: #0f172a;
    border-radius: 8px;
}

.footer-logo {
    height: 24px;
    width: auto;
    opacity: 1;
    filter: brightness(0) invert(1);
}

.footer-text {
    font-size: 14px;
    color: white;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 14px;
}

.footer-link {
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-link:hover {
    color: #0f172a;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.4);
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.modal.show {
    display: flex;
}

.modal-content {
    width: 100%;
    max-width: 32rem;
    border-radius: 16px;
    background: white;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid #e2e8f0;
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    border-bottom: 1px solid #e2e8f0;
}

.modal-title {
    font-weight: 600;
    color: #0f172a;
}

.modal-close {
    background: none;
    border: none;
    font-size: 20px;
    color: #64748b;
    cursor: pointer;
    padding: 4px;
    line-height: 1;
}

.modal-close:hover {
    color: #0f172a;
}

.modal-body {
    padding: 24px;
    font-size: 14px;
    color: #1e293b;
    white-space: pre-wrap;
}

.modal-footer {
    padding: 16px;
    border-top: 1px solid #e2e8f0;
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}

/* Responsive Design */
@media (max-width: 767px) {
    /* Container and spacing adjustments */
    .container {
        padding: 0 16px;
    }
    
    .hero {
        padding: 60px 0 48px;
    }
    
    .section {
        padding: 48px 0;
    }
    
    .hero-title {
        font-size: 1.75rem;
        line-height: 1.2;
    }
    
    .section-title {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .founder-quote {
        font-size: 16px;
    }
    
    /* Button improvements */
    .btn {
        padding: 14px 20px;
        font-size: 16px;
        min-height: 44px;
    }
    
    .hero-buttons,
    .service-buttons,
    .founder-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn,
    .service-buttons .btn,
    .founder-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .service-card,
    .newsletter-card,
    .contact-card {
        padding: 20px;
    }
    
    .trust-points {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .pills {
        justify-content: center;
    }
}
/* Extra small screens */
@media (max-width: 480px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .snapshot-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .pills,
    .trust-points {
        justify-content: center;
        text-align: center;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
}