/* Asyjo Capital - Complete Main Stylesheet */

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

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    color: #000000;
}

h2 {
    font-size: 2rem;
    color: #000000;
}

h3 {
    font-size: 1.5rem;
    color: #000000;
}

h4 {
    font-size: 1.25rem;
    color: #000000;
}

p {
    margin-bottom: 1rem;
    color: #000000;
    line-height: 1.6;
}

a {
    color: #FF6B35;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #E55A2B;
}

/* Header */
header {
    background: #ffffff;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

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

.logo {
    font-size: 1.8rem;
    font-weight: 600;
    color: #000000;
}

.logo img {
    height: 40px;
    width: auto;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav a {
    color: #000000;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

nav a:hover,
nav a.active {
    color: #FF6B35;
}

nav a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #FF6B35;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    background: none;
    border: none;
    color: #000000;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #424242, #1d1d1d); 
    color: white;
    padding: 120px 0 60px;
    text-align: center;
}

.page-header h1 {
    color: white;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Hero Section */
.hero {
    background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('../images/hero-bg.jpg');
    background-size: cover;                        /* was: contain */
    background-position: center center;             /* improved for all screens */
    background-attachment: scroll;                  /* was: fixed; better mobile support */
    color: white;
    padding: 120px 0 80px;
    text-align: center;                             /* was: left; prefer center overlay on all */
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;                        /* add: centers horizontally */
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /*background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4));
    backdrop-filter: blur(2px);*/
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    line-height: 2.0;
    color: white;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.hero-content .subtitle {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    font-weight: 600;
    text-align:center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3.5rem;
    opacity: 0.95;
    max-width: 700px;
    line-height: 2.0;
    color: rgba(255,255,255,0.95);
}
/* Buttons */
.cta-button {
    background: #000000 /*#FF6B35*/;
    color: #FF6B35 /* white*/ ;
    padding: 14px 28px;
    border: none;
    border-radius: 25px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: block;                
    margin: 0 auto 10px auto;       
    text-align: center;
    width: fit-content;             
}
.cta-button:hover {
    background: #E55A2B;
    transform: translateY(-1px);
    color: white !important;
}

.cta-button.secondary {
    background: #000000 /*#FF6B35*/;
    color: #FF6B35 /* white*/ ;
    border: none;
}

.cta-button.secondary:hover {
    background: #E55A2B;
    transform: translateY(-1px);
    color: white !important;
}

.criteria-button {
    background: #000000 /*#FF6B35*/;
    color: #FF6B35 /* white*/ ;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.criteria-button:hover {
    background: #E55A2B;
    transform: translateY(-1px);
    color: white !important;
}

.submit-button {
    background: #000000 /*#FF6B35*/;
    color: #FF6B35 /* white*/ ;
    padding: 14px 28px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

.submit-button:hover {
    background: #E55A2B;
    transform: translateY(-1px);
    color: white !important;
}

/* Section Styling */
.section {
    padding: 80px 0;
}

.section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #000000;
    font-weight: 600;
    text-align: center;
}

.section-alt {
    background: #FAFAFA;
}

.section-intro {
    text-align: center;
    margin-bottom: 3rem;
    color: #000000;
    font-size: 1.1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-summary {
    text-align: center;
    margin-top: 3rem;
    color: #000000;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Grid Layouts */
.advantage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 1rem;
}

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

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

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

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

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

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

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

/* Card Components */
.advantage-card {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.advantage-icon {
    color: #FF6B35;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.advantage-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #000000;
    font-weight: 600;
}

.advantage-card p {
    color: #000000;
    line-height: 1.6;
}

/* Team Cards */
.team-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.team-photo {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, #E0E0E0, #CCCCCC);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999999;
    font-size: 1rem;
    overflow: hidden;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background-color: #ffffff;
}

.team-photo .placeholder {
    color: #999999;
    text-align: center;
}

.team-info {
    padding: 1.5rem;
}

.team-name {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #000000;
}

.team-position {
    color: #000000;
    margin-bottom: 1rem;
    font-weight: 500;
}

.team-bio {
    color: #000000;
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.team-expertise h4 {
    color: #000000;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.team-expertise ul {
    list-style: none;
    margin-left: 0;
}

.team-expertise li {
    color: #000000;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
    position: relative;
    padding-left: 1rem;
}

.team-expertise li:before {
    content: "•";
    color: #FF6B35;
    position: absolute;
    left: 0;
}

/* Process Cards */
.process-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.process-icon {
    width: 60px;
    height: 60px;
    background: #FAFAFA;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: #FF6B35;
}

.process-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #000000;
    font-weight: 600;
}

.process-card p {
    color: #000000;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Philosophy Cards */
.philosophy-card {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.philosophy-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.philosophy-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #000000;
    font-weight: 600;
}

.philosophy-card p {
    color: #000000;
    line-height: 1.6;
}

/* Stats */
.stat-item {
    text-align: center;
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.stat-number {
    font-size: 1.2rem;
    font-weight: bold;
    color: #000000;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #000000;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.stat-description {
    color: #000000;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Criteria Section */
.criteria-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.criteria-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #000000;
}

.criteria-text h3 {
    color: #000000;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.criteria-box {
    background: #FAFAFA;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #FF6B35;
}

.criteria-box h3 {
    color: #000000;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.criteria-list {
    list-style: none;
    margin-bottom: 2rem;
}

.criteria-list li {
    margin-bottom: 0.8rem;
    color: #000000;
    position: relative;
    padding-left: 1.5rem;
}

.criteria-list li:before {
    content: "•";
    color: #FF6B35;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Testimonial Section */
.testimonial {
    background: white;
    padding: 80px 0;
}

.testimonial-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.testimonial-image {
    width: 100%;
    height: 350px;
    background: linear-gradient(135deg, #E0E0E0, #CCCCCC);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999999;
    overflow: hidden;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-text {
    padding-left: 2rem;
    border-left: 4px solid #FF6B35;
}

.testimonial-quote {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: #000000;
}

.testimonial-author {
    font-weight: 600;
    color: #000000;
}

.testimonial-company {
    color: #000000;
    margin-top: 0.25rem;
}

.difference-section {
    margin-top: 2rem;
}

.difference-section h3 {
    color: #000000;
    margin-bottom: 1rem;
    margin-top: -1.5rem
}

.difference-list {
    list-style: none;
    margin-top: 1rem;
}

.difference-list li {
    margin-bottom: 0.8rem;
    color: #000000;
    position: relative;
    padding-left: 1.5rem;
}

.difference-list li:before {
    content: "•";
    color: #FF6B35;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2,
.contact-info h3 {
    color: #000000;
    margin-bottom: 1.5rem;
}

.contact-details {
    margin: 2rem 0;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h4 {
    color: #000000;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.contact-item p {
    color: #000000;
    margin-bottom: 0;
}

.contact-item a {
    color: #FF6B35;
    text-decoration: none;
}

.contact-item a:hover {
    color: #E55A2B;
    text-decoration: underline;
}

/* Form Styling */
.contact-form {
    background: #FAFAFA;
    padding: 2rem;
    border-radius: 8px;
}

.contact-form h3 {
    margin-bottom: 1.5rem;
    color: #000000;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #000000;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #DDDDDD;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s;
    background: white;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: #FF6B35;
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

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

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

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

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.privacy-note {
    font-size: 0.85rem;
    color: #000000;
    margin-top: 1rem;
    line-height: 1.4;
    padding: 1rem;
    background: rgba(255, 107, 53, 0.05);
    border-radius: 6px;
    border-left: 3px solid #FF6B35;
}

/* CTA Section */
.cta-section {
    background-color: #efeeea;
    color: #0a0d0d;
    text-align: center;
}

.cta-content h2 {
    color: #1a365d;
    margin-bottom: 1rem;
}

.cta-content h3 {
    color: #1a365d;
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(10,13,13,0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.cta-section .cta-button {
    background: #000000 /*#FF6B35*/;
    color: #FF6B35 /* white*/ ;
    display: inline-block;
    margin: 0.5rem;
    width: auto;
}

.cta-section .cta-button:hover {
    background: #E55A2B;
    transform: translateY(-1px);
    color: white !important;
}

.cta-section .cta-button.secondary {
    background: #000000 /*#FF6B35*/;
    color: #FF6B35 /* white*/ ;
}

.cta-section .cta-button.secondary:hover {
    background: #333333;
    color: white;
}

/* Contact Info Row in CTA Section */
.contact-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(10,13,13,0.2);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-email,
.contact-phone {
    font-size: 1.1rem;
    font-weight: 600;
}

.contact-email a,
.contact-phone a {
    color: #000000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-email a:hover,
.contact-phone a:hover {
    color: #FF6B35;
    text-decoration: underline;
}

/* Copyright Notice */
.copyright-notice {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1rem;
    color: rgba(10,13,13,0.6);
    font-size: 2.5rem;
}

/* Responsive design for mobile */
@media (max-width: 768px) {
    .contact-info-row {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-section .cta-button {
        margin: 0.25rem 0;
        width: 200px;
    }
}

/* Footer */
footer {
    background: #F5F5F5;
    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 {
    color: #000000;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #000000;
    line-height: 1.6;
}

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

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

.footer-section a {
    color: #000000;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #FF6B35;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #DDDDDD;
    color: #000000;
}

/* Gamma Badge */
.gamma-badge {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #1a365d;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Value Items */
.value-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    text-align: center;
}

.value-item h4 {
    color: #000000;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.value-item p {
    color: #000000;
    font-size: 0.95rem;
}

/* Industry Cards */
.industry-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.industry-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.industry-card h3 {
    color: #000000;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.industry-details p {
    color: #000000;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.industry-details ul {
    list-style: none;
    margin-left: 0;
}

.industry-details li {
    color: #000000;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
    position: relative;
    padding-left: 1rem;
}

.industry-details li:before {
    content: "•";
    color: #FF6B35;
    position: absolute;
    left: 0;
}

/* FAQ Items */
.faq-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-item h4 {
    color: #000000;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.faq-item p {
    color: #000000;
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Detailed Criteria Styles */
.detailed-criteria {
    display: grid;
    gap: 3rem;
}

.criteria-category {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.criteria-category h3 {
    color: #000000;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    border-bottom: 2px solid #FF6B35;
    padding-bottom: 0.5rem;
}

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

.criteria-item h4 {
    color: #000000;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.criteria-item p {
    color: #000000;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.criteria-item p strong {
    color: #FF6B35;
    font-weight: 600;
}

/* Process Steps */
.process-steps {
    display: grid;
    gap: 3rem;
}

.process-step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: start;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #FF6B35;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
}

.step-content {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.step-content h3 {
    color: #000000;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.step-details p {
    color: #000000;
    margin-bottom: 1rem;
}

.step-details ul {
    list-style: none;
    margin: 1rem 0;
}

.step-details li {
    color: #000000;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.step-details li:before {
    content: "•";
    color: #FF6B35;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.step-details p strong {
    color: #000000;
    font-weight: 600;
}

/* Differentiators Grid */
.differentiators-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.differentiator-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
/* Safari fix */
.advantage-card,
.team-card,
.value-item,
.industry-card,
.differentiator-card {
  min-width: 0;     /* critical for Safari wrapping */
}

.email-intro-columns {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.email-intro-text {
  flex: 1 1 60%;
}

.email-intro-button {
  flex: 1 1 35%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cta-button.small {
  padding: 1.2rem 3rem;
  font-size: 1.5rem;
  border-radius: 35px;
}
/* Slide-in animation for success/error messages */
@keyframes slideIn {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Form state classes */
.form-group.has-error input,
.form-group.has-error textarea,
.form-group.has-error select {
    border-color: #E55A2B;
    box-shadow: 0 0 0 3px rgba(229, 90, 43, 0.1);
}

.form-group.has-success input,
.form-group.has-success textarea,
.form-group.has-success select {
    border-color: #10B981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

/* Loading state for submit button */
button[type="submit"]:disabled {
    cursor: not-allowed;
    transform: none !important;
}

/* Form success and error message styling */
.form-success,
.form-error {
    animation: slideIn 0.3s ease-out;
}

/* Required indicator styling */
.required-indicator {
    color: #E55A2B;
    font-weight: bold;
}

/* Field error styling */
.field-error {
    color: #E55A2B;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: none;
}

/* Focus management for better accessibility */
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid #FF6B35;
    outline-offset: 2px;
}

/* Smooth transitions for form elements */
input,
textarea,
select {
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

/* Form notification styling */
.form-notification {
    animation: slideIn 0.3s ease-out;
}

/* Responsive form styling */
@media (max-width: 768px) {
    .form-success,
    .form-error {
        padding: 0.75rem;
        font-size: 0.875rem;
    }
}

/* Tight spacing between sections */
.section.tight {
    padding: 40px 0;
}