:root {
    --primary-blue: #1e3a8a;
    --metallic-blue: #3b82f6;
    --accent-silver: #d1d5db;
    --accent-gray: #6b7280;
    --bg-white: #ffffff;
    --bg-light: #f9fafb;
    --text-dark: #111827;
    --text-gray: #4b5563;
    --border-color: #e5e7eb;
}

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

html {
    scroll-behavior: smooth;
}

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

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

h1, h2, h3, h4 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
    color: var(--primary-blue);
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
}

.navbar {
    background-color: var(--bg-white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-logo {
    height: 80px;
    width: auto;
}

.nav-tagline {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-gray);
    letter-spacing: 0.5px;
    white-space: nowrap;
}

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

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--metallic-blue);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--metallic-blue);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-btn {
    background-color: var(--metallic-blue);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background-color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-blue);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--bg-light) 0%, #e0e7ff 100%);
    padding: 4rem 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1400px;
}

.hero-text {
    max-width: 100%;
}

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

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.hero-headline {
    font-size: 3.5rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-subheadline {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-benefits {
    list-style: none;
    margin-bottom: 2.5rem;
}

.hero-benefits li {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
}

.hero-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--metallic-blue);
    font-weight: bold;
    font-size: 1.3rem;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--metallic-blue);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

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

.btn-secondary:hover {
    background-color: var(--primary-blue);
    color: white;
}

section {
    padding: 5rem 0;
}

section:nth-child(even) {
    background-color: var(--bg-light);
}

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

.before-after {
    background-color: var(--bg-white);
}

.before-after h2 {
    text-align: center;
    margin-bottom: 1rem;
}

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

.comparison-card {
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.comparison-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.comparison-before,
.comparison-after {
    padding: 2rem;
}

.comparison-before {
    background-color: #fef2f2;
    border-bottom: 3px solid #ef4444;
}

.comparison-after {
    background-color: #f0fdf4;
}

.comparison-label {
    display: inline-block;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.comparison-before .comparison-label {
    color: #dc2626;
}

.comparison-after .comparison-label {
    color: #16a34a;
}

.comparison-before p,
.comparison-after p {
    margin: 0;
    color: var(--text-dark);
    line-height: 1.6;
}

.approach {
    background-color: var(--bg-light);
}

.approach h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.approach-content {
    max-width: 900px;
    margin: 0 auto;
}

.approach-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.approach-problems {
    list-style: none;
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.approach-problems li {
    margin-bottom: 0.75rem;
    position: relative;
}

.approach-problems li::before {
    content: '•';
    position: absolute;
    left: -1.5rem;
    color: var(--metallic-blue);
    font-weight: bold;
    font-size: 1.5rem;
}

.approach-emphasis {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-blue);
    text-align: center;
    margin: 2rem 0;
}

.approach-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.approach-step {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

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

.approach-results {
    list-style: none;
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.approach-results li {
    margin-bottom: 0.75rem;
    position: relative;
}

.approach-results li::before {
    content: '✓';
    position: absolute;
    left: -1.5rem;
    color: #16a34a;
    font-weight: bold;
}

.approach-conclusion {
    font-size: 1.2rem;
    text-align: center;
    margin-top: 2rem;
}

.expertise {
    background-color: var(--bg-white);
}

.expertise h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.systems-section {
    margin: 3rem 0;
}

.systems-section h3 {
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 1.5rem;
}

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

.system-badge {
    background-color: var(--bg-light);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.system-badge:hover {
    border-color: var(--metallic-blue);
    background-color: #eff6ff;
}

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

.expertise-column {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
}

.expertise-column h3 {
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

.expertise-column ul {
    list-style: none;
}

.expertise-column li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.expertise-column li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--metallic-blue);
    font-weight: bold;
}

.who-we-serve {
    background-color: var(--bg-light);
}

.who-we-serve h2 {
    text-align: center;
    margin-bottom: 1rem;
}

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

.serve-card {
    background-color: var(--bg-white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.serve-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

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

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

.serve-card ul {
    list-style: none;
}

.serve-card li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.serve-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--metallic-blue);
    font-weight: bold;
}

.services {
    background-color: var(--bg-white);
}

.services h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background-color: var(--bg-light);
    padding: 2.5rem;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: var(--metallic-blue);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.15);
}

.service-number {
    display: inline-block;
    background-color: var(--metallic-blue);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

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

.callout-box {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--metallic-blue) 100%);
    color: white;
    padding: 2.5rem;
    border-radius: 12px;
    margin-top: 3rem;
    text-align: center;
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
}

.callout-box p {
    font-size: 1.3rem;
    font-weight: 500;
    margin: 0;
    line-height: 1.6;
}

.pain-points {
    background-color: var(--bg-light);
}

.pain-points h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.pain-list {
    max-width: 800px;
    margin: 2rem auto;
    list-style: none;
}

.pain-list li {
    background-color: var(--bg-white);
    padding: 1.25rem 1.5rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    border-left: 4px solid var(--metallic-blue);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.pain-list li:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.pain-emphasis {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-top: 2rem;
}

.how-we-work {
    background-color: var(--bg-white);
}

.how-we-work h2 {
    text-align: center;
    margin-bottom: 1rem;
}

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

.process-step {
    background-color: var(--bg-light);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.step-number {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--metallic-blue) 100%);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    line-height: 60px;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

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

.about {
    background-color: var(--bg-light);
}

.about h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.about-description {
    text-align: center;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.experience-section {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.experience-section h3 {
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

.experience-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.experience-list li {
    padding: 1rem;
    background-color: var(--bg-white);
    border-radius: 8px;
    padding-left: 2rem;
    position: relative;
}

.experience-list li::before {
    content: '✓';
    position: absolute;
    left: 0.75rem;
    color: var(--metallic-blue);
    font-weight: bold;
}

.philosophy-section {
    background-color: var(--bg-white);
    padding: 2.5rem;
    border-radius: 12px;
    max-width: 900px;
    margin: 0 auto 3rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.philosophy-section h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.philosophy-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0;
}

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

.pillar {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.pillar:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

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

.pillar h4 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.pillar p {
    margin: 0;
    color: var(--text-gray);
    font-size: 0.95rem;
}

.lead-form {
    background-color: var(--bg-white);
}

.lead-form h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.contact-form {
    max-width: 700px;
    margin: 3rem auto;
    background-color: var(--bg-light);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

.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,
.form-group select {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--metallic-blue);
}

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

.form-message.success {
    background-color: #dcfce7;
    color: #16a34a;
    display: block;
}

.form-note {
    text-align: center;
    color: var(--text-gray);
    font-size: 0.95rem;
    max-width: 700px;
    margin: 1.5rem auto 0;
}

.contact {
    background-color: var(--bg-light);
}

.contact h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-info {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.contact-info a {
    color: var(--metallic-blue);
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--primary-blue);
}

.contact-tagline {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin: 1.5rem 0;
}

.contact-description {
    text-align: center;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.footer {
    background-color: var(--primary-blue);
    color: white;
    padding: 3rem 0 1.5rem;
}

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

.footer-logo-section {
    display: flex;
    align-items: flex-start;
}

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

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

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

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

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

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

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
}

.nav-link.active {
    color: var(--metallic-blue);
}

.nav-link.active::after {
    width: 100%;
}

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

.tools-hero h1 {
    color: white;
    margin-bottom: 1rem;
}

.tools-hero .section-intro {
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
}

.tools-overview {
    background-color: var(--bg-light);
    padding: 4rem 0;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.tool-preview-card {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

.tool-preview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.tool-preview-card.coming-soon {
    opacity: 0.7;
    cursor: default;
}

.tool-preview-card.coming-soon:hover {
    transform: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

.tool-preview-card h3 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.tool-preview-card p {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.tool-status {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    background-color: var(--accent-silver);
    color: var(--text-gray);
}

.tool-status.available {
    background-color: #dcfce7;
    color: #16a34a;
}

.tool-detail {
    padding: 5rem 0;
    background-color: var(--bg-white);
}

.tool-header {
    text-align: center;
    margin-bottom: 3rem;
}

.tool-badge {
    display: inline-block;
    background-color: #dcfce7;
    color: #16a34a;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.tool-header h2 {
    margin-bottom: 1rem;
}

.tool-tagline {
    font-size: 1.3rem;
    color: var(--text-gray);
}

.tool-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.tool-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.tool-benefits-summary {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.benefit-highlight {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--primary-blue);
}

.benefit-icon {
    font-size: 1.5rem;
}

.tool-features {
    margin-bottom: 4rem;
}

.tool-features h3 {
    text-align: center;
    color: var(--primary-blue);
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

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

.feature-card:hover {
    border-color: var(--metallic-blue);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.1);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.feature-card h4 {
    color: var(--primary-blue);
    margin-bottom: 0.75rem;
}

.feature-card p {
    margin: 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.tool-cta {
    background: linear-gradient(135deg, var(--bg-light) 0%, #e0e7ff 100%);
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
}

.tool-cta h3 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.tool-cta p {
    margin-bottom: 1.5rem;
    color: var(--text-gray);
}

.coming-soon-section {
    background-color: var(--bg-light);
    padding: 5rem 0;
}

.coming-soon-section h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.coming-soon-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.coming-soon-card {
    background-color: var(--bg-white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

.coming-soon-card h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.coming-soon-card > p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.coming-soon-features {
    list-style: none;
}

.coming-soon-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-dark);
}

.coming-soon-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--metallic-blue);
}

.notify-cta {
    text-align: center;
    margin-top: 3rem;
}

.notify-cta p {
    margin-bottom: 1rem;
    color: var(--text-gray);
}

.tools-philosophy {
    padding: 5rem 0;
    background-color: var(--bg-white);
}

.philosophy-box {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--metallic-blue) 100%);
    color: white;
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.philosophy-box h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.philosophy-box p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.95;
}

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

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

    .coming-soon-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--bg-white);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        padding: 2rem 0;
        gap: 1.5rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

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

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .nav-tagline {
        display: none;
    }

    .hero-split {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-image {
        order: -1;
        margin-bottom: 2rem;
    }

    .hero-image img {
        max-width: 80%;
    }

    .hero-benefits {
        text-align: left;
        display: inline-block;
    }

    .hero-buttons {
        justify-content: center;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero-headline {
        font-size: 2.5rem;
    }

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

    .serve-cards,
    .expertise-columns {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    section {
        padding: 3rem 0;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .hero-headline {
        font-size: 2rem;
    }

    .hero-subheadline {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 2rem 1.5rem;
    }

    .pillars-grid,
    .services-grid,
    .process-steps {
        grid-template-columns: 1fr;
    }
}
