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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: linear-gradient(rgba(44, 62, 80, 0.7), rgba(44, 62, 80, 0.7)), url('../images/home_bg.avif');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    padding: 2rem;
}

.hero-content {
    max-width: 900px;
    width: 100%;
    text-align: center;
    color: white;
    position: relative;
}

.welcome-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.welcome-dot {
    width: 8px;
    height: 8px;
    background: #22C55E;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.6);
}

.welcome-text {
    color: white;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero h1 .highlight {
    color: #3B9DD4;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    color: #e0e0e0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Search Card */
.search-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    max-width: 800px;
    margin: 0 auto;
}

.search-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid #f0f0f0;
}

.tab-btn {
    background: none;
    border: none;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    position: relative;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tab-btn.active {
    color: #3B9DD4;
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: #3B9DD4;
}

.search-form {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.input-group {
    flex: 1;
    min-width: 200px;
    position: relative;
}

.input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 1.2rem;
}

.search-input,
.search-select {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.search-input:focus,
.search-select:focus {
    outline: none;
    border-color: #3B9DD4;
}

.search-input::placeholder {
    color: #999;
}

.search-btn {
    background: #F97316;
    color: white;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: background 0.3s, transform 0.2s;
}

.search-btn:hover {
    background: #ea580c;
    transform: translateY(-2px);
}

.trending {
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.trending-label {
    font-weight: 600;
    color: #666;
}

.trending-tags {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.tag {
    padding: 0.5rem 1rem;
    background: #f5f5f5;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #666;
    text-decoration: none;
    transition: background 0.3s, color 0.3s;
}

.tag:hover {
    background: #3B9DD4;
    color: white;
}

/* Icons using Unicode */
.icon-home::before { content: '🏠'; }
.icon-users::before { content: '👥'; }
.icon-location::before { content: '📍'; }
.icon-building::before { content: '🏢'; }
.icon-search::before { content: '🔍'; }
.icon-user::before { content: '👤'; }
.icon-plus::before { content: '➕'; }

/* Responsive Design */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3rem;
    }

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

@media (max-width: 768px) {
    .hero {
        min-height: calc(100vh - 60px);
        background-attachment: scroll;
    }

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

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

    .welcome-badge {
        font-size: 0.8125rem;
        padding: 0.4rem 0.875rem;
        margin-bottom: 1.25rem;
    }

    .welcome-dot {
        width: 6px;
        height: 6px;
    }

    .search-card {
        padding: 1.5rem;
    }

    .search-form {
        flex-direction: column;
    }

    .input-group {
        min-width: 100%;
    }

    .search-btn {
        width: 100%;
        justify-content: center;
    }

    .trending {
        flex-direction: column;
        align-items: flex-start;
    }
}

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

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

    .welcome-badge {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
        margin-bottom: 1rem;
    }

    .welcome-dot {
        width: 6px;
        height: 6px;
    }

    .search-card {
        padding: 1rem;
    }

    .tab-btn {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }

    .search-input,
    .search-select {
        padding: 0.875rem 0.875rem 0.875rem 2.5rem;
        font-size: 0.9rem;
    }

    .input-icon {
        font-size: 1rem;
        left: 0.875rem;
    }
}

/* Who Can Use Section */
.who-can-use {
    padding: 5rem 2rem;
    background: #ffffff;
}

.who-can-use-container {
    max-width: 1200px;
    margin: 0 auto;
}

.who-can-use-header {
    text-align: center;
    margin-bottom: 4rem;
}

.who-can-use-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.who-can-use-subtitle {
    font-size: 1.125rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.user-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.user-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.user-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12), 0 6px 12px rgba(0, 0, 0, 0.08);
}

.card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.user-card:hover .card-image img {
    transform: scale(1.05);
}

.card-content {
    padding: 1.5rem;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
}

.card-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.card-tags .tag {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    transition: transform 0.2s ease;
}

.card-tags .tag:hover {
    transform: scale(1.05);
}

/* Tag color variations */
.tag-tenants {
    background: rgba(59, 157, 212, 0.1);
    color: #3B9DD4;
}

.tag-flatmates {
    background: rgba(139, 92, 246, 0.1);
    color: #8B5CF6;
}

.tag-owners {
    background: rgba(249, 115, 22, 0.1);
    color: #F97316;
}

.tag-pg-hostel {
    background: rgba(34, 197, 94, 0.1);
    color: #22C55E;
}

/* Who Can Use Responsive Design */
@media (max-width: 1024px) {
    .who-can-use {
        padding: 4rem 1.5rem;
    }

    .who-can-use-title {
        font-size: 2rem;
    }

    .user-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .who-can-use {
        padding: 3rem 1.5rem;
    }

    .who-can-use-header {
        margin-bottom: 3rem;
    }

    .who-can-use-title {
        font-size: 1.75rem;
    }

    .who-can-use-subtitle {
        font-size: 1rem;
    }

    .user-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .card-image {
        height: 180px;
    }

    .card-content {
        padding: 1.25rem;
    }

    .card-title {
        font-size: 1.25rem;
    }

    .card-description {
        font-size: 0.9375rem;
    }
}

@media (max-width: 480px) {
    .who-can-use {
        padding: 2.5rem 1rem;
    }

    .who-can-use-header {
        margin-bottom: 2.5rem;
    }

    .who-can-use-title {
        font-size: 1.5rem;
    }

    .who-can-use-subtitle {
        font-size: 0.9375rem;
    }

    .user-cards {
        gap: 1.25rem;
    }

    .card-image {
        height: 160px;
    }

    .card-content {
        padding: 1rem;
    }

    .card-title {
        font-size: 1.125rem;
        margin-bottom: 0.5rem;
    }

    .card-description {
        font-size: 0.875rem;
        margin-bottom: 1rem;
    }

    .card-tags .tag {
        padding: 0.4rem 0.875rem;
        font-size: 0.8125rem;
    }
}

/* Why Choose DreamAcco Section */
.why-choose-us {
    padding: 5rem 2rem;
    background: #1a2332;
    color: #ffffff;
}

.why-choose-us-container {
    max-width: 1200px;
    margin: 0 auto;
}

.why-choose-us-header {
    text-align: center;
    margin-bottom: 4rem;
}

.why-choose-us-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.why-choose-us-subtitle {
    font-size: 1.125rem;
    color: #e0e0e0;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.feature-card {
    background: #243447;
    border-radius: 12px;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.feature-card.animate-in {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.feature-icon-wrapper {
    width: 56px;
    height: 56px;
    background: #243447;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(59, 157, 212, 0.2);
}

.feature-icon {
    width: 24px;
    height: 24px;
    color: #3B9DD4;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.feature-description {
    font-size: 1rem;
    color: #b0b0b0;
    line-height: 1.6;
}

/* Why Choose Us Responsive Design */
@media (max-width: 1024px) {
    .why-choose-us {
        padding: 4rem 1.5rem;
    }

    .why-choose-us-title {
        font-size: 2rem;
    }

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

@media (max-width: 768px) {
    .why-choose-us {
        padding: 3rem 1.5rem;
    }

    .why-choose-us-header {
        margin-bottom: 3rem;
    }

    .why-choose-us-title {
        font-size: 1.75rem;
    }

    .why-choose-us-subtitle {
        font-size: 1rem;
    }

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

    .feature-card {
        padding: 1.5rem;
    }

    .feature-icon-wrapper {
        width: 50px;
        height: 50px;
        margin-bottom: 1.25rem;
    }

    .feature-icon {
        width: 22px;
        height: 22px;
    }

    .feature-title {
        font-size: 1.25rem;
    }

    .feature-description {
        font-size: 0.9375rem;
    }
}

@media (max-width: 480px) {
    .why-choose-us {
        padding: 2.5rem 1rem;
    }

    .why-choose-us-header {
        margin-bottom: 2.5rem;
    }

    .why-choose-us-title {
        font-size: 1.5rem;
    }

    .why-choose-us-subtitle {
        font-size: 0.9375rem;
    }

    .features-grid {
        gap: 1.25rem;
    }

    .feature-card {
        padding: 1.25rem;
    }

    .feature-icon-wrapper {
        width: 48px;
        height: 48px;
        margin-bottom: 1rem;
    }

    .feature-icon {
        width: 20px;
        height: 20px;
    }

    .feature-title {
        font-size: 1.125rem;
        margin-bottom: 0.5rem;
    }

    .feature-description {
        font-size: 0.875rem;
    }
}

/* Get the App Section */
.get-app {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #E8F4F8 0%, #FFFFFF 100%);
    position: relative;
    overflow: hidden;
}

.get-app-container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.get-app-text {
    z-index: 1;
}

.available-badge {
    display: inline-block;
    background: #B8E0F0;
    color: #1a2332;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.get-app-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1a2332;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.get-app-title .highlight-blue {
    color: #3B9DD4;
}

.get-app-description {
    font-size: 1.125rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 550px;
}

.app-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem 0;
}

.app-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: #1a2332;
    font-weight: 500;
}

.check-icon {
    color: #22C55E;
    flex-shrink: 0;
}

.app-download {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.google-play-btn {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #3B9DD4;
    color: #ffffff;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
    width: fit-content;
    box-shadow: 0 4px 12px rgba(59, 157, 212, 0.3);
}

.google-play-btn:hover {
    background: #2d8bc0;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(59, 157, 212, 0.4);
}

.play-btn-text-small {
    font-size: 0.75rem;
    font-weight: 500;
    line-height: 1;
}

.play-btn-text-large {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.2;
}

.app-rating {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.stars {
    display: flex;
    gap: 0.25rem;
}

.rating-text {
    font-size: 0.9375rem;
    color: #4a5568;
    font-weight: 500;
}

.get-app-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.phone-mockup {
    width: 280px;
    height: 560px;
    background: #1a2332;
    border-radius: 32px;
    padding: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    transition: transform 0.3s ease;
}

.phone-mockup:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.phone-header {
    background: #3B9DD4;
    color: #ffffff;
    text-align: center;
    padding: 1rem;
    font-weight: 600;
    font-size: 1rem;
}

.phone-search-bar {
    background: #E8F4F8;
    height: 48px;
    margin: 1rem;
    border-radius: 24px;
}

.phone-content {
    flex: 1;
    padding: 0 1rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    overflow-y: auto;
}

.phone-listing-card {
    display: flex;
    gap: 0.75rem;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 0.75rem;
}

.phone-card-image {
    width: 80px;
    height: 80px;
    background: #e2e8f0;
    border-radius: 6px;
    flex-shrink: 0;
}

.phone-card-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    justify-content: center;
}

.phone-text-line {
    height: 12px;
    background: #e2e8f0;
    border-radius: 4px;
    width: 100%;
}

.phone-text-line.short {
    width: 60%;
}

/* Get App Responsive Design */
@media (max-width: 1024px) {
    .get-app {
        padding: 4rem 1.5rem;
    }

    .get-app-content {
        gap: 3rem;
    }

    .get-app-title {
        font-size: 2.5rem;
    }

    .phone-mockup {
        width: 240px;
        height: 480px;
    }
}

@media (max-width: 768px) {
    .get-app {
        padding: 3rem 1.5rem;
    }

    .get-app-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .get-app-visual {
        order: -1;
    }

    .get-app-title {
        font-size: 2rem;
    }

    .get-app-description {
        font-size: 1rem;
    }

    .phone-mockup {
        width: 220px;
        height: 440px;
        transform: none;
    }

    .phone-mockup:hover {
        transform: none;
    }
}

@media (max-width: 480px) {
    .get-app {
        padding: 2.5rem 1rem;
    }

    .get-app-content {
        gap: 2rem;
    }

    .available-badge {
        font-size: 0.8125rem;
        padding: 0.4rem 0.875rem;
        margin-bottom: 1rem;
    }

    .get-app-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

    .get-app-description {
        font-size: 0.9375rem;
        margin-bottom: 1.5rem;
    }

    .app-feature-item {
        font-size: 0.9375rem;
        margin-bottom: 0.75rem;
    }

    .check-icon {
        width: 18px;
        height: 18px;
    }

    .google-play-btn {
        padding: 0.625rem 1.5rem;
    }

    .play-btn-text-small {
        font-size: 0.6875rem;
    }

    .play-btn-text-large {
        font-size: 1.125rem;
    }

    .app-rating {
        flex-wrap: wrap;
    }

    .stars svg {
        width: 18px;
        height: 18px;
    }

    .rating-text {
        font-size: 0.875rem;
    }

    .phone-mockup {
        width: 200px;
        height: 400px;
    }

    .phone-header {
        padding: 0.75rem;
        font-size: 0.9375rem;
    }

    .phone-search-bar {
        height: 40px;
        margin: 0.75rem;
    }

    .phone-content {
        padding: 0 0.75rem 0.75rem;
        gap: 0.75rem;
    }

    .phone-listing-card {
        padding: 0.625rem;
        gap: 0.625rem;
    }

    .phone-card-image {
        width: 60px;
        height: 60px;
    }
}

/* Workflow Section */
.workflow {
    padding: 5rem 2rem;
    background: #F9FAFB;
}

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

.workflow-header {
    text-align: center;
    margin-bottom: 4rem;
}

.workflow-label {
    display: inline-block;
    color: #3B9DD4;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.workflow-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.workflow-subtitle {
    font-size: 1.125rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.workflow-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.workflow-column {
    position: relative;
}

.column-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    text-align: center;
}

.tenants-title {
    color: #3B9DD4;
}

.owners-title {
    color: #F97316;
}

.workflow-items {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    position: relative;
}

.workflow-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.workflow-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.workflow-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 30px;
    top: 60px;
    width: 2px;
    height: calc(100% + 2.5rem);
    background: linear-gradient(to bottom, currentColor 50%, transparent 50%);
    background-size: 2px 8px;
    opacity: 0.3;
}

.workflow-item:not(:last-child).tenants-icon::after {
    color: #3B9DD4;
}

.workflow-item:not(:last-child).owners-icon::after {
    color: #F97316;
}

.workflow-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.workflow-item:hover .workflow-icon {
    transform: scale(1.1);
}

.tenants-icon {
    background: rgba(59, 157, 212, 0.1);
    color: #3B9DD4;
    border: 2px solid rgba(59, 157, 212, 0.2);
}

.owners-icon {
    background: rgba(249, 115, 22, 0.1);
    color: #F97316;
    border: 2px solid rgba(249, 115, 22, 0.2);
}

.workflow-text {
    flex: 1;
    padding-top: 0.5rem;
}

.workflow-text h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.workflow-text p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

/* Workflow Responsive Design */
@media (max-width: 1024px) {
    .workflow {
        padding: 4rem 1.5rem;
    }

    .workflow-title {
        font-size: 2rem;
    }

    .workflow-content {
        gap: 3rem;
    }

    .column-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .workflow {
        padding: 3rem 1.5rem;
    }

    .workflow-header {
        margin-bottom: 3rem;
    }

    .workflow-title {
        font-size: 1.75rem;
    }

    .workflow-subtitle {
        font-size: 1rem;
    }

    .workflow-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .column-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .workflow-items {
        gap: 2rem;
    }

    .workflow-item {
        gap: 1.25rem;
    }

    .workflow-icon {
        width: 50px;
        height: 50px;
    }

    .workflow-icon svg {
        width: 20px;
        height: 20px;
    }

    .workflow-item:not(:last-child)::after {
        left: 25px;
        top: 50px;
        height: calc(100% + 2rem);
    }

    .workflow-text h4 {
        font-size: 1.125rem;
    }

    .workflow-text p {
        font-size: 0.9375rem;
    }
}

@media (max-width: 480px) {
    .workflow {
        padding: 2.5rem 1rem;
    }

    .workflow-label {
        font-size: 0.75rem;
    }

    .workflow-title {
        font-size: 1.5rem;
    }

    .workflow-subtitle {
        font-size: 0.9375rem;
    }

    .workflow-header {
        margin-bottom: 2.5rem;
    }

    .column-title {
        font-size: 1.25rem;
        margin-bottom: 1.5rem;
    }

    .workflow-items {
        gap: 1.75rem;
    }

    .workflow-item {
        gap: 1rem;
    }

    .workflow-icon {
        width: 45px;
        height: 45px;
    }

    .workflow-icon svg {
        width: 18px;
        height: 18px;
    }

    .workflow-item:not(:last-child)::after {
        left: 22.5px;
        top: 45px;
        height: calc(100% + 1.75rem);
    }

    .workflow-text h4 {
        font-size: 1rem;
    }

    .workflow-text p {
        font-size: 0.875rem;
    }
}
