/* Custom Styles for TechHome Insight - Organic Design */

/* ============================================
   RESET & BASE STYLES
   ============================================ */

   * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: #3D3528;
    background-color: #F9F6F1;
    font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Crimson Text', Georgia, serif;
    font-weight: 600;
    line-height: 1.3;
    color: #2C2418;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* ============================================
   LAYOUT CONTAINERS
   ============================================ */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   HEADER
   ============================================ */

.header {
    background-color: #FFFFFF;
    border-bottom: 1px solid #EDE8E0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(61, 53, 40, 0.03);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}

.logo a {
    font-family: 'Crimson Text', Georgia, serif;
    font-size: 24px;
    font-weight: 700;
    color: #2C2418;
    letter-spacing: -0.5px;
}

.nav-desktop {
    display: none;
    align-items: center;
    gap: 32px;
}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }
}

.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: #5A5047;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #E8926F;
}

.nav-link-cta {
    font-size: 15px;
    font-weight: 600;
    color: #FFFFFF;
    background-color: #E8926F;
    padding: 10px 24px;
    border-radius: 24px;
    transition: all 0.3s ease;
}

.nav-link-cta:hover {
    background-color: #D4916C;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(232, 146, 111, 0.2);
}

.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    font-size: 28px;
    color: #2C2418;
    cursor: pointer;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-menu {
    display: none;
    background-color: #FFFFFF;
    border-top: 1px solid #EDE8E0;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu-link {
    display: block;
    padding: 16px 0;
    color: #5A5047;
    font-weight: 500;
    border-bottom: 1px solid #F4F0EA;
}

.mobile-menu-link:hover {
    color: #E8926F;
}

/* ============================================
   COOKIE POPUP
   ============================================ */

.cookie-popup {
    position: fixed;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #FFFFFF;
    padding: 24px 32px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(61, 53, 40, 0.12);
    z-index: 9999;
    max-width: 500px;
    width: 90%;
    display: none;
    flex-direction: column;
    align-items: center;
}

.cookie-content {
    text-align: center;
}

.cookie-text {
    font-size: 14px;
    color: #5A5047;
    margin-bottom: 16px;
    line-height: 1.6;
}

.cookie-btn {
    background-color: #E8926F;
    color: #FFFFFF;
    padding: 12px 32px;
    border-radius: 24px;
    border: none;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn:hover {
    background-color: #D4916C;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(232, 146, 111, 0.2);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 80px 0;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.85);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 24px;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }
}

.hero-subtitle {
    font-size: 20px;
    color: #FFFFFF;
    margin-bottom: 40px;
    line-height: 1.6;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .hero-subtitle {
        font-size: 18px;
    }
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn-primary {
    display: inline-block;
    background-color: #E8926F;
    color: #FFFFFF;
    padding: 14px 32px;
    border-radius: 28px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #E8926F;
}

.btn-primary:hover {
    background-color: #D4916C;
    border-color: #D4916C;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 146, 111, 0.25);
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: #FFFFFF;
    padding: 14px 32px;
    border-radius: 28px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #FFFFFF;
}

.btn-secondary:hover {
    background-color: #FFFFFF;
    color: #E8926F;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

.btn-primary-large {
    display: inline-block;
    background-color: #E8926F;
    color: #FFFFFF;
    padding: 18px 48px;
    border-radius: 32px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    border: 2px solid #E8926F;
}

.btn-primary-large:hover {
    background-color: #D4916C;
    border-color: #D4916C;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(232, 146, 111, 0.3);
}

.btn-text {
    display: inline-block;
    color: #E8926F;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-text:hover {
    color: #D4916C;
    transform: translateX(4px);
}

.btn-small {
    display: inline-block;
    background-color: #E8926F;
    color: #FFFFFF;
    padding: 10px 24px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 2px solid #E8926F;
}

.btn-small:hover {
    background-color: #D4916C;
    border-color: #D4916C;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(232, 146, 111, 0.2);
}

/* ============================================
   SECTIONS
   ============================================ */

.intro-section {
    padding: 100px 0;
    text-align: center;
    background-color: #FFFFFF;
}

.intro-badge {
    display: inline-block;
    color: #E8926F;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.section-title-center {
    font-size: 48px;
    font-weight: 700;
    color: #2C2418;
    margin-bottom: 24px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .section-title-center {
        font-size: 36px;
    }
}

.intro-text {
    font-size: 18px;
    color: #5A5047;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

.section-badge {
    display: inline-block;
    color: #E8926F;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: #2C2418;
    margin-bottom: 32px;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 32px;
    }
}

.section-subtitle {
    font-size: 18px;
    color: #5A5047;
    max-width: 700px;
    margin: 0 auto;
}

.section-header-center {
    text-align: center;
    margin-bottom: 64px;
}

.section-cta {
    text-align: center;
    margin-top: 64px;
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about-section {
    padding: 100px 0;
    background-color: #F9F6F1;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 64px;
    align-items: center;
}

@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.about-image-wrapper {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 48px rgba(61, 53, 40, 0.08);
}

.about-image {
    width: 100%;
    height: auto;
}

.about-content {
}

.about-text p {
    font-size: 16px;
    color: #5A5047;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-text p:last-child {
    margin-bottom: 32px;
}

/* ============================================
   SERVICES SECTION
   ============================================ */

.services-section {
    padding: 100px 0;
    background-color: #FFFFFF;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 640px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.service-card {
    perspective: 1000px;
    cursor: pointer;
    height: 380px;
}

.service-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.service-card.flipped .service-card-inner {
    transform: rotateY(180deg);
}

.service-card-front,
.service-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 4px 24px rgba(61, 53, 40, 0.06);
}

.service-card-front {
    background-color: #FFFFFF;
    display: flex;
    flex-direction: column;
}

.service-card-back {
    background-color: #E8926F;
    color: #FFFFFF;
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-icon {
    font-size: 48px;
    margin-bottom: 24px;
}

.service-title {
    font-size: 22px;
    font-weight: 700;
    color: #2C2418;
    margin-bottom: 16px;
}

.service-description {
    font-size: 15px;
    color: #5A5047;
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-link {
    color: #E8926F;
    font-weight: 600;
    font-size: 15px;
}

.service-link:hover {
    color: #D4916C;
}

.service-back-title {
    font-size: 20px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.service-back-list {
    list-style: none;
    margin-bottom: 24px;
}

.service-back-list li {
    font-size: 15px;
    color: #FFFFFF;
    margin-bottom: 12px;
    opacity: 0.95;
}

/* ============================================
   APPROACH SECTION
   ============================================ */

.approach-section {
    padding: 100px 0;
    background-color: #F4F0EA;
}

.approach-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .approach-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .approach-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.approach-card {
    background-color: #FFFFFF;
    padding: 32px;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 2px 16px rgba(61, 53, 40, 0.04);
    overflow: hidden;
}

.approach-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(61, 53, 40, 0.08);
}

.approach-number {
    font-family: 'Crimson Text', Georgia, serif;
    font-size: 48px;
    font-weight: 700;
    color: #E8926F;
    margin-bottom: 16px;
    opacity: 0.3;
}

.approach-title {
    font-size: 20px;
    font-weight: 700;
    color: #2C2418;
    margin-bottom: 12px;
}

.approach-description {
    font-size: 15px;
    color: #5A5047;
    line-height: 1.7;
}

.approach-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    margin-top: 16px;
}

.approach-card.expanded .approach-details {
    max-height: 300px;
}

.approach-details p {
    font-size: 14px;
    color: #5A5047;
    line-height: 1.7;
    padding-top: 16px;
    border-top: 1px solid #EDE8E0;
}

/* ============================================
   VALUES SECTION
   ============================================ */

.values-section {
    padding: 100px 0;
    background-color: #FFFFFF;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    margin-top: 64px;
}

@media (min-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.value-card {
    text-align: center;
}

.value-icon {
    margin: 0 auto 24px;
}

.value-title {
    font-size: 22px;
    font-weight: 700;
    color: #2C2418;
    margin-bottom: 16px;
}

.value-description {
    font-size: 16px;
    color: #5A5047;
    line-height: 1.7;
}

/* ============================================
   REVIEWS SECTION
   ============================================ */

.reviews-section {
    padding: 100px 0;
    background-color: #F9F6F1;
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 768px) {
    .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.review-card {
    background-color: #FFFFFF;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(61, 53, 40, 0.06);
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(61, 53, 40, 0.12);
}

.review-image-wrapper {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.review-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.review-card:hover .review-image {
    transform: scale(1.05);
}

.review-content {
    padding: 28px;
}

.review-category {
    font-size: 12px;
    font-weight: 700;
    color: #E8926F;
    letter-spacing: 1px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.review-title {
    font-size: 22px;
    font-weight: 700;
    color: #2C2418;
    margin-bottom: 12px;
}

.review-excerpt {
    font-size: 15px;
    color: #5A5047;
    line-height: 1.7;
    margin-bottom: 20px;
}

.review-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.review-rating {
    color: #E8926F;
    font-weight: 600;
    font-size: 15px;
}

.review-link {
    color: #E8926F;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.review-link:hover {
    color: #D4916C;
    transform: translateX(4px);
}

/* ============================================
   METHODOLOGY SECTION
   ============================================ */

.methodology-section {
    padding: 100px 0;
    background-color: #F4F0EA;
}

.methodology-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 64px;
    align-items: center;
}

@media (min-width: 768px) {
    .methodology-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.methodology-content {
}

.methodology-list {
    margin-top: 32px;
}

.methodology-item {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
}

.methodology-item:last-child {
    margin-bottom: 0;
}

.methodology-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background-color: #E8926F;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.methodology-item-title {
    font-size: 20px;
    font-weight: 700;
    color: #2C2418;
    margin-bottom: 8px;
}

.methodology-item-text {
    font-size: 15px;
    color: #5A5047;
    line-height: 1.7;
}

.methodology-image-wrapper {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 48px rgba(61, 53, 40, 0.08);
}

.methodology-image {
    width: 100%;
    height: auto;
}

/* ============================================
   TEAM SECTION
   ============================================ */

.team-section {
    padding: 100px 0;
    background-color: #FFFFFF;
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

@media (min-width: 640px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.team-card {
    text-align: center;
}

.team-image-wrapper {
    width: 200px;
    height: 200px;
    margin: 0 auto 24px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(61, 53, 40, 0.08);
}

.team-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-name {
    font-size: 22px;
    font-weight: 700;
    color: #2C2418;
    margin-bottom: 8px;
}

.team-role {
    font-size: 15px;
    font-weight: 600;
    color: #E8926F;
    margin-bottom: 16px;
}

.team-bio {
    font-size: 15px;
    color: #5A5047;
    line-height: 1.7;
}

/* ============================================
   MAP SECTION
   ============================================ */

.map-section {
    padding: 100px 0;
    background-color: #F9F6F1;
}

.map-wrapper {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(61, 53, 40, 0.08);
    margin-bottom: 40px;
}

.map-iframe {
    border-radius: 24px;
}

.map-info {
    text-align: center;
}

.map-address {
    font-size: 16px;
    color: #5A5047;
    margin-bottom: 32px;
}

.map-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   FINAL CTA SECTION
   ============================================ */

.final-cta-section {
    padding: 100px 0;
    background-color: #FFFFFF;
}

.final-cta-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 64px;
    align-items: center;
}

@media (min-width: 768px) {
    .final-cta-content {
        grid-template-columns: 1fr 1fr;
    }
}

.final-cta-image {
    border-radius: 24px;
    width: 100%;
    height: auto;
    box-shadow: 0 12px 48px rgba(61, 53, 40, 0.08);
}

.final-cta-text {
}

.final-cta-title {
    font-size: 38px;
    font-weight: 700;
    color: #2C2418;
    margin-bottom: 24px;
}

@media (max-width: 768px) {
    .final-cta-title {
        font-size: 30px;
    }
}

.final-cta-description {
    font-size: 16px;
    color: #5A5047;
    line-height: 1.8;
    margin-bottom: 32px;
}

/* ============================================
   CONTACTS SECTION
   ============================================ */

.contacts-section {
    padding: 100px 0;
    background-color: #F4F0EA;
}

.contacts-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 64px;
}

@media (min-width: 1024px) {
    .contacts-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-info-card {
    background-color: #FFFFFF;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(61, 53, 40, 0.06);
}

.contact-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-info-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background-color: #FBF8F4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.contact-info-title {
    font-size: 18px;
    font-weight: 700;
    color: #2C2418;
    margin-bottom: 6px;
}

.contact-info-text {
    font-size: 15px;
    color: #5A5047;
    line-height: 1.7;
}

.contact-form-wrapper {
    background-color: #FFFFFF;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(61, 53, 40, 0.06);
}

.contact-form {
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #2C2418;
    margin-bottom: 8px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #DDD3C8;
    border-radius: 12px;
    font-size: 15px;
    color: #2C2418;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background-color: #FFFFFF;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #E8926F;
    box-shadow: 0 0 0 3px rgba(232, 146, 111, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-checkbox {
    margin-bottom: 24px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.checkbox-input {
    margin-top: 4px;
    flex-shrink: 0;
}

.checkbox-label {
    font-size: 14px;
    color: #5A5047;
    line-height: 1.6;
}

.checkbox-link {
    color: #E8926F;
    font-weight: 600;
}

.checkbox-link:hover {
    color: #D4916C;
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    background-color: #E8926F;
    color: #FFFFFF;
    padding: 16px 32px;
    border-radius: 12px;
    border: none;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #D4916C;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 146, 111, 0.25);
}

.btn-submit:active {
    transform: translateY(0);
}

/* ============================================
   BUSINESS MODEL PAGE
   ============================================ */

.business-hero {
    padding: 80px 0;
    background-color: #FFFFFF;
    text-align: center;
}

.business-content-section {
    padding: 60px 0 100px;
    background-color: #F9F6F1;
}

.business-block {
    background-color: #FFFFFF;
    padding: 64px;
    border-radius: 24px;
    margin-bottom: 48px;
    box-shadow: 0 4px 24px rgba(61, 53, 40, 0.06);
}

@media (max-width: 768px) {
    .business-block {
        padding: 40px 24px;
    }
}

.business-section-title {
    font-size: 36px;
    font-weight: 700;
    color: #2C2418;
    margin-bottom: 32px;
    border-bottom: 3px solid #E8926F;
    padding-bottom: 16px;
}

@media (max-width: 768px) {
    .business-section-title {
        font-size: 28px;
    }
}

.business-intro-text {
    font-size: 18px;
    color: #5A5047;
    line-height: 1.8;
    margin-bottom: 40px;
}

.business-components-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 768px) {
    .business-components-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.business-component-card {
    background-color: #F9F6F1;
    padding: 32px;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.business-component-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(61, 53, 40, 0.08);
}

.component-number {
    font-family: 'Crimson Text', Georgia, serif;
    font-size: 48px;
    font-weight: 700;
    color: #E8926F;
    margin-bottom: 16px;
    opacity: 0.3;
}

.component-title {
    font-size: 22px;
    font-weight: 700;
    color: #2C2418;
    margin-bottom: 16px;
}

.component-text {
    font-size: 15px;
    color: #5A5047;
    line-height: 1.8;
}

.business-value-content {
    max-width: 900px;
}

.business-text {
    font-size: 16px;
    color: #5A5047;
    line-height: 1.8;
    margin-bottom: 20px;
}

.business-text:last-child {
    margin-bottom: 0;
}

.segments-list {
    margin-top: 32px;
}

.segment-item {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
    padding: 24px;
    background-color: #F9F6F1;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.segment-item:hover {
    transform: translateX(8px);
    box-shadow: 0 4px 20px rgba(61, 53, 40, 0.06);
}

.segment-item:last-child {
    margin-bottom: 0;
}

.segment-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background-color: #E8926F;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.segment-content {
    flex: 1;
}

.segment-title {
    font-size: 20px;
    font-weight: 700;
    color: #2C2418;
    margin-bottom: 12px;
}

.segment-text {
    font-size: 15px;
    color: #5A5047;
    line-height: 1.8;
}

.channels-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 40px;
}

@media (min-width: 768px) {
    .channels-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.channel-card {
    background-color: #F9F6F1;
    padding: 32px;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.channel-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(61, 53, 40, 0.08);
}

.channel-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.channel-title {
    font-size: 20px;
    font-weight: 700;
    color: #2C2418;
    margin-bottom: 12px;
}

.channel-text {
    font-size: 15px;
    color: #5A5047;
    line-height: 1.8;
}

.contact-info-business {
    margin-top: 32px;
}

.business-contacts {
    background-color: #F9F6F1;
    padding: 32px;
    border-radius: 16px;
    margin: 32px 0;
}

.business-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.business-contact-item:last-child {
    margin-bottom: 0;
}

.business-contact-label {
    font-size: 16px;
    font-weight: 700;
    color: #2C2418;
    min-width: 80px;
}

.business-contact-link {
    font-size: 16px;
    color: #E8926F;
    font-weight: 600;
    transition: all 0.3s ease;
}

.business-contact-link:hover {
    color: #D4916C;
    text-decoration: underline;
}

.business-contact-text {
    font-size: 16px;
    color: #5A5047;
}

.business-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

/* ============================================
   THANK YOU PAGE
   ============================================ */

.thank-section {
    padding: 120px 0;
    background-color: #F9F6F1;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.thank-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.thank-icon {
    width: 80px;
    height: 80px;
    background-color: #E8926F;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: 700;
    margin: 0 auto 32px;
    box-shadow: 0 8px 32px rgba(232, 146, 111, 0.2);
}

.thank-title {
    font-size: 42px;
    font-weight: 700;
    color: #2C2418;
    margin-bottom: 24px;
}

@media (max-width: 768px) {
    .thank-title {
        font-size: 32px;
    }
}

.thank-text {
    font-size: 18px;
    color: #5A5047;
    line-height: 1.8;
    margin-bottom: 40px;
}

.thank-info-box {
    background-color: #FFFFFF;
    padding: 32px;
    border-radius: 16px;
    margin-bottom: 40px;
    box-shadow: 0 4px 24px rgba(61, 53, 40, 0.06);
}

.thank-info-title {
    font-size: 22px;
    font-weight: 700;
    color: #2C2418;
    margin-bottom: 20px;
}

.thank-info-list {
    list-style: none;
    text-align: left;
}

.thank-info-list li {
    font-size: 16px;
    color: #5A5047;
    line-height: 1.8;
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
}

.thank-info-list li:before {
    content: '→';
    position: absolute;
    left: 0;
    color: #E8926F;
    font-weight: 700;
}

.thank-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.additional-info-section {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.additional-info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 768px) {
    .additional-info-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.info-card {
    background-color: #F9F6F1;
    padding: 32px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(61, 53, 40, 0.08);
}

.info-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.info-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #2C2418;
    margin-bottom: 12px;
}

.info-card-text {
    font-size: 15px;
    color: #5A5047;
    line-height: 1.7;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background-color: #2C2418;
    color: #FFFFFF;
    padding: 64px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

@media (min-width: 640px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-col {
}

.footer-title {
    font-family: 'Crimson Text', Georgia, serif;
    font-size: 24px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 16px;
}

.footer-text {
    font-size: 15px;
    color: #C7BFB3;
    line-height: 1.7;
}

.footer-heading {
    font-size: 16px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.footer-list {
    list-style: none;
}

.footer-list li {
    margin-bottom: 12px;
}

.footer-link {
    font-size: 15px;
    color: #C7BFB3;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #E8926F;
}

.footer-text-small {
    font-size: 14px;
    color: #C7BFB3;
    line-height: 1.7;
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-copyright {
    font-size: 14px;
    color: #C7BFB3;
}

/* ============================================
   UTILITIES & ANIMATIONS
   ============================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #F9F6F1;
}

::-webkit-scrollbar-thumb {
    background: #DDD3C8;
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: #C7BFB3;
}

/* Smooth transitions */
* {
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
