/* ===================================
   CSS RESET & BASE STYLES
   =================================== */

* {
    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;
    font-size: 16px;
    line-height: 1.7;
    color: #212529;
    background-color: #FFFFFF;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===================================
   TYPOGRAPHY
   =================================== */

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    color: #1A1A1A;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.5rem;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
    color: #2C3E50;
}

a {
    color: #0056D2;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #003D99;
}

a:focus {
    outline: 2px solid #0056D2;
    outline-offset: 2px;
}

/* ===================================
   CONTAINER & LAYOUT
   =================================== */

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

/* ===================================
   BUTTONS
   =================================== */

.btn {
    display: inline-block;
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border-radius: 6px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    line-height: 1.5;
}

.btn:focus {
    outline: 2px solid #0056D2;
    outline-offset: 2px;
}

.btn-primary {
    background-color: #0056D2;
    color: #FFFFFF;
    border-color: #0056D2;
}

.btn-primary:hover {
    background-color: #003D99;
    border-color: #003D99;
    color: #FFFFFF;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 86, 210, 0.3);
}

.btn-secondary {
    background-color: #FFFFFF;
    color: #0056D2;
    border-color: #0056D2;
}

.btn-secondary:hover {
    background-color: #F8F9FA;
    color: #003D99;
    border-color: #003D99;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.125rem;
}

/* ===================================
   NAVIGATION
   =================================== */

.navbar {
    background-color: #FFFFFF;
    border-bottom: 1px solid #E5E7EB;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    padding-bottom: 16px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1A1A1A;
    text-decoration: none;
}

.logo i {
    color: #0056D2;
    font-size: 1.75rem;
}

.logo:hover {
    color: #0056D2;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 32px;
}

.nav-menu a {
    color: #495057;
    font-weight: 500;
    font-size: 1rem;
    padding: 8px 0;
    transition: color 0.2s ease;
}

.nav-menu a:not(.btn):hover,
.nav-menu a.active {
    color: #0056D2;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background-color: #1A1A1A;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ===================================
   HERO SECTIONS
   =================================== */

.hero {
    background: linear-gradient(135deg, #F8F9FA 0%, #FFFFFF 100%);
    padding: 120px 0 80px;
    text-align: center;
}

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

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 24px;
    color: #1A1A1A;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #495057;
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 60px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.stat-item i {
    color: #0056D2;
    font-size: 2rem;
    margin-bottom: 8px;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #1A1A1A;
}

.stat-label {
    font-size: 0.875rem;
    color: #6C757D;
    font-weight: 500;
}

.page-hero {
    background: linear-gradient(135deg, #0056D2 0%, #003D99 100%);
    padding: 100px 0 80px;
    text-align: center;
}

.page-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-hero h1 {
    font-size: 3rem;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.page-hero p {
    font-size: 1.25rem;
    color: #E5E7EB;
    line-height: 1.8;
}

.form-hero {
    background: linear-gradient(135deg, #F8F9FA 0%, #FFFFFF 100%);
    padding: 80px 0 60px;
    text-align: center;
}

.form-hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.form-hero h1 {
    font-size: 2.75rem;
    margin-bottom: 20px;
}

.form-hero p {
    font-size: 1.125rem;
    color: #495057;
}

.success-hero {
    background: linear-gradient(135deg, #F8F9FA 0%, #FFFFFF 100%);
    padding: 100px 0;
    text-align: center;
}

.success-content {
    max-width: 700px;
    margin: 0 auto;
}

.success-icon {
    font-size: 5rem;
    color: #28A745;
    margin-bottom: 24px;
}

.success-message {
    font-size: 1.25rem;
    color: #495057;
    line-height: 1.8;
}

/* ===================================
   SECTIONS
   =================================== */

.features,
.content-section,
.enterprise-features-section,
.support-section,
.values-section,
.team-section,
.mission-section,
.certifications-section,
.compliance-features-section,
.framework-section,
.security-practices-section,
.privacy-section,
.trust-center-section,
.case-study-section,
.metrics-section,
.benefits-section,
.deployment-section,
.solution-detail,
.next-steps-section,
.resources-section,
.contact-section,
.testimonial-section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.125rem;
    color: #6C757D;
}

/* ===================================
   FEATURE GRID
   =================================== */

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.feature-card {
    background-color: #FFFFFF;
    padding: 40px;
    border-radius: 8px;
    border: 2px solid #E5E7EB;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: #0056D2;
    box-shadow: 0 8px 24px rgba(0, 86, 210, 0.12);
    transform: translateY(-4px);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #0056D2 0%, #003D99 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.feature-icon i {
    font-size: 2rem;
    color: #FFFFFF;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: #1A1A1A;
}

.feature-card p {
    color: #495057;
    line-height: 1.7;
}

/* ===================================
   STATS SECTION
   =================================== */

.stats-section {
    background-color: #F8F9FA;
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
}

.stat-card {
    background-color: #FFFFFF;
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    border: 2px solid #E5E7EB;
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: #0056D2;
    transform: translateY(-4px);
}

.stat-icon {
    font-size: 3rem;
    color: #0056D2;
    margin-bottom: 16px;
}

.stat-card h3 {
    font-size: 2.5rem;
    color: #1A1A1A;
    margin-bottom: 8px;
}

.stat-card p {
    color: #6C757D;
    font-weight: 500;
}

/* ===================================
   TESTIMONIALS
   =================================== */

.testimonials {
    background-color: #F8F9FA;
    padding: 80px 0;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.testimonial-card {
    background-color: #FFFFFF;
    padding: 40px;
    border-radius: 8px;
    border: 2px solid #E5E7EB;
}

.testimonial-content {
    margin-bottom: 24px;
}

.testimonial-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #2C3E50;
    font-style: italic;
}

.author-info h4 {
    font-size: 1.125rem;
    color: #1A1A1A;
    margin-bottom: 4px;
}

.author-info p {
    color: #6C757D;
    font-size: 0.875rem;
}

/* ===================================
   CTA SECTION
   =================================== */

.cta-section {
    background: linear-gradient(135deg, #0056D2 0%, #003D99 100%);
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    color: #FFFFFF;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    color: #E5E7EB;
    font-size: 1.125rem;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* ===================================
   TWO COLUMN LAYOUT
   =================================== */

.two-column {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    align-items: start;
}

.column-content h2 {
    margin-bottom: 20px;
}

.column-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.section-intro {
    font-size: 1.125rem;
    color: #495057;
    margin-bottom: 32px;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
    align-items: flex-start;
}

.feature-list i {
    color: #28A745;
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 4px;
}

.feature-list strong {
    display: block;
    color: #1A1A1A;
    font-size: 1.125rem;
    margin-bottom: 4px;
}

.feature-list p {
    color: #495057;
    margin: 0;
}

.stat-highlight {
    background-color: #F8F9FA;
    padding: 40px;
    border-radius: 8px;
    border: 2px solid #E5E7EB;
}

.highlight-item {
    margin-bottom: 32px;
}

.highlight-item:last-child {
    margin-bottom: 0;
}

.highlight-item h3 {
    font-size: 2rem;
    color: #0056D2;
    margin-bottom: 4px;
}

.highlight-item p {
    color: #495057;
    font-weight: 500;
}

/* ===================================
   VALUES SECTION
   =================================== */

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

.value-card {
    background-color: #F8F9FA;
    padding: 40px;
    border-radius: 8px;
    border: 2px solid #E5E7EB;
    transition: all 0.3s ease;
}

.value-card:hover {
    border-color: #0056D2;
    transform: translateY(-4px);
}

.value-icon {
    font-size: 2.5rem;
    color: #0056D2;
    margin-bottom: 20px;
}

.value-card h3 {
    margin-bottom: 12px;
}

.value-card p {
    color: #495057;
    line-height: 1.8;
}

/* ===================================
   TEAM SECTION
   =================================== */

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

.team-card {
    background-color: #F8F9FA;
    padding: 40px;
    border-radius: 8px;
    border: 2px solid #E5E7EB;
}

.team-info h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.team-role {
    color: #0056D2;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 16px;
}

.team-bio {
    color: #495057;
    line-height: 1.8;
}

/* ===================================
   MISSION SECTION
   =================================== */

.mission-content,
.vision-content {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.mission-content:last-child,
.vision-content:last-child {
    margin-bottom: 0;
}

.mission-statement,
.vision-statement {
    font-size: 1.25rem;
    color: #2C3E50;
    line-height: 1.9;
    font-weight: 500;
}

/* ===================================
   SOLUTION DETAIL
   =================================== */

.solution-block {
    margin-bottom: 80px;
}

.solution-block:last-child {
    margin-bottom: 0;
}

.solution-header {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    margin-bottom: 32px;
}

.solution-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #0056D2 0%, #003D99 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.solution-icon i {
    font-size: 2.5rem;
    color: #FFFFFF;
}

.solution-header h2 {
    margin-bottom: 8px;
}

.solution-subtitle {
    font-size: 1.125rem;
    color: #6C757D;
}

.solution-features {
    display: grid;
    gap: 32px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-item i {
    color: #28A745;
    font-size: 1.75rem;
    flex-shrink: 0;
    margin-top: 4px;
}

.feature-item h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.feature-item p {
    color: #495057;
    line-height: 1.8;
}

/* ===================================
   BENEFITS SECTION
   =================================== */

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
}

.benefit-card {
    background-color: #F8F9FA;
    padding: 40px;
    border-radius: 8px;
    border: 2px solid #E5E7EB;
    text-align: center;
}

.benefit-card h3 {
    font-size: 2rem;
    color: #0056D2;
    margin-bottom: 12px;
}

.benefit-card p {
    color: #495057;
    line-height: 1.8;
}

/* ===================================
   SUPPORT SECTION
   =================================== */

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.support-card {
    background-color: #F8F9FA;
    padding: 40px;
    border-radius: 8px;
    border: 2px solid #E5E7EB;
    text-align: center;
}

.support-icon {
    font-size: 3rem;
    color: #0056D2;
    margin-bottom: 20px;
}

.support-card h3 {
    margin-bottom: 12px;
}

.support-card p {
    color: #495057;
    line-height: 1.8;
}

/* ===================================
   DEPLOYMENT SECTION
   =================================== */

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

.deployment-card {
    background-color: #FFFFFF;
    padding: 40px;
    border-radius: 8px;
    border: 2px solid #E5E7EB;
    transition: all 0.3s ease;
}

.deployment-card:hover {
    border-color: #0056D2;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 86, 210, 0.12);
}

.deployment-card h3 {
    color: #0056D2;
    margin-bottom: 16px;
}

.deployment-description {
    color: #495057;
    margin-bottom: 24px;
    line-height: 1.8;
}

.deployment-features {
    list-style: none;
}

.deployment-features li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 12px;
    color: #2C3E50;
}

.deployment-features i {
    color: #28A745;
    margin-top: 4px;
    flex-shrink: 0;
}

/* ===================================
   CERTIFICATIONS & COMPLIANCE
   =================================== */

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

.cert-card {
    background-color: #FFFFFF;
    padding: 40px;
    border-radius: 8px;
    border: 2px solid #E5E7EB;
    text-align: center;
}

.cert-icon {
    font-size: 3rem;
    color: #0056D2;
    margin-bottom: 20px;
}

.cert-card h3 {
    margin-bottom: 12px;
}

.cert-card p {
    color: #495057;
    line-height: 1.8;
}

.compliance-feature {
    margin-bottom: 40px;
}

.compliance-feature:last-child {
    margin-bottom: 0;
}

.compliance-feature h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.compliance-feature i {
    color: #0056D2;
    font-size: 1.75rem;
}

.compliance-feature p {
    color: #495057;
    line-height: 1.8;
}

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

.framework-card {
    background-color: #F8F9FA;
    padding: 40px;
    border-radius: 8px;
    border: 2px solid #E5E7EB;
}

.framework-card h3 {
    margin-bottom: 20px;
    color: #1A1A1A;
}

.framework-list {
    list-style: none;
}

.framework-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 16px;
    color: #2C3E50;
    line-height: 1.7;
}

.framework-list i {
    color: #28A745;
    margin-top: 4px;
    flex-shrink: 0;
}

.practices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.practice-card {
    background-color: #F8F9FA;
    padding: 40px;
    border-radius: 8px;
    border: 2px solid #E5E7EB;
}

.practice-card h3 {
    margin-bottom: 12px;
}

.practice-card p {
    color: #495057;
    line-height: 1.8;
}

/* ===================================
   PRIVACY SECTION
   =================================== */

.privacy-section {
    background-color: #F8F9FA;
}

.privacy-content {
    max-width: 1000px;
    margin: 0 auto;
}

.privacy-intro {
    text-align: center;
    font-size: 1.125rem;
    color: #495057;
    margin-bottom: 60px;
    line-height: 1.8;
}

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

.privacy-item {
    background-color: #FFFFFF;
    padding: 40px;
    border-radius: 8px;
    border: 2px solid #E5E7EB;
    text-align: center;
}

.privacy-item i {
    font-size: 3rem;
    color: #0056D2;
    margin-bottom: 20px;
}

.privacy-item h3 {
    margin-bottom: 12px;
}

.privacy-item p {
    color: #495057;
    line-height: 1.8;
}

/* ===================================
   TRUST CENTER
   =================================== */

.trust-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.trust-content h2 {
    margin-bottom: 20px;
}

.trust-content > p {
    font-size: 1.125rem;
    color: #495057;
    margin-bottom: 48px;
}

.trust-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    text-align: left;
}

.trust-item {
    background-color: #F8F9FA;
    padding: 32px;
    border-radius: 8px;
    border: 2px solid #E5E7EB;
}

.trust-item i {
    font-size: 2.5rem;
    color: #0056D2;
    margin-bottom: 16px;
}

.trust-item h3 {
    margin-bottom: 8px;
}

.trust-item p {
    color: #495057;
    line-height: 1.8;
}

/* ===================================
   CASE STUDIES
   =================================== */

.case-study-detail {
    margin-bottom: 80px;
    padding-bottom: 80px;
    border-bottom: 2px solid #E5E7EB;
}

.case-study-detail:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.industry-tag {
    display: inline-block;
    background-color: #0056D2;
    color: #FFFFFF;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.case-study-overview,
.case-study-solution,
.case-study-results {
    margin-bottom: 40px;
}

.case-study-overview h3,
.case-study-solution h3,
.case-study-results h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #0056D2;
}

.case-study-overview p,
.case-study-solution p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #2C3E50;
    margin-bottom: 16px;
}

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

.result-item {
    background-color: #F8F9FA;
    padding: 32px;
    border-radius: 8px;
    border: 2px solid #E5E7EB;
    text-align: center;
}

.result-item h4 {
    font-size: 2.25rem;
    color: #0056D2;
    margin-bottom: 8px;
}

.result-item p {
    color: #495057;
    font-weight: 500;
    line-height: 1.6;
}

.case-study-quote {
    background-color: #F8F9FA;
    padding: 40px;
    border-radius: 8px;
    border-left: 4px solid #0056D2;
}

.case-study-quote blockquote {
    margin: 0;
}

.case-study-quote p {
    font-size: 1.125rem;
    font-style: italic;
    color: #2C3E50;
    line-height: 1.8;
    margin-bottom: 16px;
}

.case-study-quote cite {
    font-style: normal;
    color: #495057;
    font-weight: 600;
}

/* ===================================
   METRICS SECTION
   =================================== */

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
}

.metric-card {
    background-color: #F8F9FA;
    padding: 40px;
    border-radius: 8px;
    border: 2px solid #E5E7EB;
    text-align: center;
}

.metric-card h3 {
    font-size: 2.5rem;
    color: #0056D2;
    margin-bottom: 12px;
}

.metric-card p {
    color: #495057;
    line-height: 1.7;
}

/* ===================================
   FORMS
   =================================== */

.form-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: start;
}

.form-container {
    background-color: #FFFFFF;
    padding: 48px;
    border-radius: 8px;
    border: 2px solid #E5E7EB;
}

.form-header {
    margin-bottom: 32px;
}

.form-header h2 {
    margin-bottom: 12px;
}

.form-header p {
    color: #6C757D;
    line-height: 1.7;
}

.demo-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

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

.form-group label {
    font-weight: 600;
    color: #2C3E50;
    margin-bottom: 8px;
    font-size: 0.9375rem;
}

.required {
    color: #DC3545;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #E5E7EB;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    color: #2C3E50;
    background-color: #FFFFFF;
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0056D2;
}

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

.checkbox-group {
    margin-top: 8px;
}

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

.checkbox-label input[type="checkbox"] {
    margin-top: 4px;
    cursor: pointer;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.form-actions {
    margin-top: 8px;
}

.form-privacy {
    font-size: 0.875rem;
    color: #6C757D;
    text-align: center;
    margin-top: 20px;
    line-height: 1.6;
}

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

.form-benefits h3 {
    margin-bottom: 28px;
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

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

.benefit-item i {
    color: #0056D2;
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 4px;
}

.benefit-item h4 {
    font-size: 1.0625rem;
    margin-bottom: 4px;
}

.benefit-item p {
    font-size: 0.9375rem;
    color: #6C757D;
    line-height: 1.7;
}

.testimonial-box {
    background-color: #F8F9FA;
    padding: 32px;
    border-radius: 8px;
    border-left: 4px solid #0056D2;
    margin-bottom: 40px;
}

.testimonial-box blockquote {
    margin: 0;
}

.testimonial-box p {
    font-size: 1rem;
    font-style: italic;
    color: #2C3E50;
    line-height: 1.8;
    margin-bottom: 12px;
}

.testimonial-box cite {
    font-style: normal;
    color: #495057;
    font-weight: 600;
    font-size: 0.9375rem;
}

.contact-alternative {
    background-color: #F8F9FA;
    padding: 24px;
    border-radius: 8px;
}

.contact-alternative h4 {
    margin-bottom: 8px;
}

.contact-alternative p {
    font-size: 0.9375rem;
    color: #6C757D;
    line-height: 1.7;
}

/* ===================================
   SUCCESS PAGE
   =================================== */

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

.step-card {
    background-color: #FFFFFF;
    padding: 40px;
    border-radius: 8px;
    border: 2px solid #E5E7EB;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0056D2 0%, #003D99 100%);
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-card h3 {
    margin-bottom: 12px;
}

.step-card p {
    color: #495057;
    line-height: 1.8;
}

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

.resource-card {
    background-color: #FFFFFF;
    padding: 40px;
    border-radius: 8px;
    border: 2px solid #E5E7EB;
    transition: all 0.3s ease;
}

.resource-card:hover {
    border-color: #0056D2;
    transform: translateY(-4px);
}

.resource-icon {
    font-size: 2.5rem;
    color: #0056D2;
    margin-bottom: 20px;
}

.resource-card h3 {
    margin-bottom: 12px;
}

.resource-card p {
    color: #495057;
    line-height: 1.8;
    margin-bottom: 20px;
}

.resource-link {
    color: #0056D2;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.resource-link:hover {
    color: #003D99;
}

.contact-info {
    display: flex;
    gap: 40px;
    justify-content: center;
    margin-top: 32px;
}

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

.contact-item i {
    color: #0056D2;
    font-size: 2rem;
    margin-top: 4px;
}

.contact-item h4 {
    margin-bottom: 4px;
}

.contact-item p {
    color: #6C757D;
}

.large-testimonial {
    max-width: 900px;
    margin: 0 auto;
    background-color: #F8F9FA;
    padding: 60px;
    border-radius: 8px;
    border-left: 4px solid #0056D2;
}

.large-testimonial p {
    font-size: 1.5rem;
    font-style: italic;
    color: #2C3E50;
    line-height: 1.8;
    margin-bottom: 20px;
}

.large-testimonial cite {
    font-style: normal;
    color: #495057;
    font-weight: 600;
    font-size: 1.125rem;
}

/* ===================================
   FOOTER
   =================================== */

.footer {
    background-color: #1A1A1A;
    color: #E5E7EB;
    padding: 60px 0 32px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 16px;
}

.footer-logo i {
    color: #0056D2;
    font-size: 1.75rem;
}

.footer-section p {
    color: #A0A8B0;
    line-height: 1.7;
}

.footer-section h4 {
    color: #FFFFFF;
    font-size: 1.125rem;
    margin-bottom: 20px;
}

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

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #A0A8B0;
    transition: color 0.2s ease;
}

.footer-section ul li a:hover {
    color: #FFFFFF;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #2C3E50;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    transition: all 0.2s ease;
}

.social-links a:hover {
    background-color: #0056D2;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #2C3E50;
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    color: #A0A8B0;
    font-size: 0.875rem;
}

/* ===================================
   ANIMATIONS
   =================================== */

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

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

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (max-width: 968px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero h1 {
        font-size: 2.75rem;
    }

    .hero-stats {
        gap: 40px;
    }

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

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

    .form-benefits {
        position: static;
    }

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

    .nav-menu {
        position: fixed;
        top: 69px;
        left: -100%;
        flex-direction: column;
        background-color: #FFFFFF;
        width: 100%;
        padding: 24px;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
        gap: 0;
        align-items: flex-start;
    }

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

    .nav-menu li {
        width: 100%;
        margin-bottom: 16px;
    }

    .nav-menu a {
        display: block;
        width: 100%;
    }

    .mobile-toggle {
        display: flex;
    }

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

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

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

@media (max-width: 640px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .hero {
        padding: 80px 0 60px;
    }

    .hero h1 {
        font-size: 2.25rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

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

    .hero-stats {
        flex-direction: column;
        gap: 32px;
    }

    .page-hero {
        padding: 60px 0 40px;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

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

    .contact-info {
        flex-direction: column;
        gap: 24px;
    }

    .large-testimonial {
        padding: 32px;
    }

    .large-testimonial p {
        font-size: 1.125rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .feature-grid,
    .stats-grid,
    .testimonial-grid,
    .values-grid,
    .team-grid,
    .support-grid,
    .cert-grid,
    .framework-grid,
    .practices-grid,
    .benefits-grid,
    .deployment-grid,
    .metrics-grid,
    .steps-grid,
    .resource-grid {
        grid-template-columns: 1fr;
    }

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