.landing-page .container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}.landing-page .header {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}.landing-page .header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}.landing-page .hero-agent {
    background: url('/landings/main/resources/image/banners/banner_agent.webp') center/cover;
    color: white;
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}.landing-page .hero-agent::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 0;
}.landing-page .fire-canvas-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}.landing-page .fire-canvas-container canvas {
    width: 100%;
    height: 100%;
    display: block;
}.landing-page .hero-agent-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}.landing-page .hero-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    animation: fadeInUp 0.6s ease;
}.landing-page .hero-logo-icon {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}.landing-page .hero-logo-text {
    height: 50px;
    width: auto;
    max-width: 200px;
    filter: brightness(0) invert(1) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}.landing-page .hero-agent-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}.landing-page .hero-agent-title .title-accent {
    color: #FBBF24;
    position: relative;
    display: inline-block;
}.landing-page .hero-agent-title .title-accent::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FBBF24 0%, rgba(251, 191, 36, 0.3) 100%);
    border-radius: 2px;
}.landing-page .hero-agent-subtitle {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    opacity: 0.95;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}.landing-page .hero-agent-subtitle .profit-highlight {
    color: #FBBF24;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
    position: relative;
    display: inline-block;
}.landing-page .hero-agent-subtitle .profit-highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #FBBF24 0%, rgba(251, 191, 36, 0.5) 100%);
    border-radius: 2px;
}.landing-page .hero-agent-subtitle .quality-highlight {
    color: #10B981;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
    position: relative;
    display: inline-block;
}.landing-page .hero-agent-subtitle .quality-highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #10B981 0%, rgba(16, 185, 129, 0.5) 100%);
    border-radius: 2px;
}.landing-page .hero-gallery-section {
    padding: 3rem 0;
    background: var(--bg-white);
}.landing-page .hero-pics-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    animation: fadeInUp 1.2s ease;
}.landing-page .hero-pic-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    transition: opacity 0.3s ease;
    aspect-ratio: 1;
    background: transparent;
}.landing-page .hero-pic-item:hover {
    opacity: 0.8;
}.landing-page .hero-pic-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}.landing-page .hero-agent-description {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 3rem;
    opacity: 0.9;
}.landing-page .hero-agent-description .highlight-word {
    color: #FBBF24;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    display: inline-block;
}.landing-page .hero-agent-description .highlight-word::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(251, 191, 36, 0.4);
    border-radius: 2px;
}.landing-page .hero-agent-form {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    max-width: 600px;
    margin: 0 auto;
}.landing-page .hero-form-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}.landing-page .hero-agent-form .form-group {
    margin-bottom: 1.5rem;
}.landing-page .hero-agent-form input {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    transition: var(--transition);
}.landing-page .hero-agent-form input:focus {
    outline: none;
    border-color: white;
    background: white;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.2);
}.landing-page .services-section {
    padding: 5rem 0;
    background: var(--bg-white);
}.landing-page .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}.landing-page .service-card {
    background: var(--bg-light);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}.landing-page .service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}.landing-page .service-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}.landing-page .service-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.6;
}.landing-page .map-section {
    padding: 5rem 0;
    background: var(--bg-light);
    text-align: center;
}.landing-page .map-content {
    max-width: 900px;
    margin: 0 auto;
}.landing-page .map-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 3rem;
}.landing-page .map-image-container {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    padding: 1rem;
    margin: 0 auto 2rem;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    max-width: 700px;
}.landing-page .map-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius);
}.landing-page .cta-section-agent {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}.landing-page .cta-section-agent::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/landings/main/resources/image/banners/agent_hero_2.webp') center/cover;
    opacity: 0.2;
    z-index: 0;
}.landing-page .cta-content-agent {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}.landing-page .cta-title-agent {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 2.5rem;
    line-height: 1.4;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    color: white;
}.landing-page .cta-btn-agent {
    background: #FBBF24;
    color: #0f172a;
    border: 2px solid #FBBF24;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(251, 191, 36, 0.4);
    transition: var(--transition);
}.landing-page .cta-btn-agent:hover {
    background: #F59E0B;
    color: #0f172a;
    border-color: #F59E0B;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(251, 191, 36, 0.5);
}.landing-page .cta-phone-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}.landing-page .cta-phone-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/landings/main/resources/image/banners/iran_map.webp') center/cover;
    opacity: 0.05;
    z-index: 0;
}.landing-page .cta-phone-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}.landing-page .cta-phone-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 2.5rem;
    line-height: 1.4;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    color: white;
}.landing-page .cta-phone-form {
    margin-top: 2rem;
}.landing-page .cta-phone-input-group {
    display: flex;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
    align-items: stretch;
}.landing-page .cta-phone-input {
    flex: 1;
    padding: 1.25rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius);
    font-size: 1.125rem;
    background: rgba(255, 255, 255, 0.95);
    color: var(--text-dark);
    transition: var(--transition);
    direction: ltr;
    text-align: left;
}.landing-page .cta-phone-input:focus {
    outline: none;
    border-color: white;
    background: white;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.3);
}.landing-page .cta-phone-input::placeholder {
    color: var(--text-light);
    text-align: right;
    direction: rtl;
}.landing-page .cta-phone-submit {
    background: #FBBF24;
    color: #0f172a;
    border: 2px solid #FBBF24;
    font-weight: 700;
    padding: 1.25rem 2.5rem;
    box-shadow: 0 8px 20px rgba(251, 191, 36, 0.4);
    transition: var(--transition);
    white-space: nowrap;
}.landing-page .cta-phone-submit:hover {
    background: #F59E0B;
    color: #0f172a;
    border-color: #F59E0B;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(251, 191, 36, 0.5);
}.landing-page .cta-phone-map {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}.landing-page .cta-phone-map-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}.landing-page .cta-phone-map-container {
    max-width: 400px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-lg);
    padding: 0.75rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}.landing-page .cta-phone-map-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius);
}.landing-page .products-section {
    padding: 5rem 0;
    background: var(--bg-white);
}.landing-page .products-list {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-top: 3rem;
}.landing-page .product-item {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
    background: var(--bg-light);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}.landing-page .product-item:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
}.landing-page .product-item-reverse {
    direction: rtl;
}.landing-page .product-item-reverse .product-images {
    direction: ltr;
}.landing-page .product-item-reverse .product-content {
    direction: rtl;
}.landing-page .product-images {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    justify-content: flex-start;
}.landing-page .product-images img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: var(--radius-lg);
    background: white;
    padding: 1rem;
    box-shadow: var(--shadow-sm);
}.landing-page .product-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}.landing-page .product-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}.landing-page .product-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}.landing-page .product-features li {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-dark);
    padding-right: 1.5rem;
    position: relative;
}.landing-page .product-features li::before {
    content: '✓';
    position: absolute;
    right: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.25rem;
}.landing-page .benefits-section {
    padding: 5rem 0;
}.landing-page .benefits-agency {
    background: var(--bg-light);
}.landing-page .benefits-representation {
    background: var(--bg-white);
}.landing-page .benefits-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
    align-items: center;
}.landing-page .benefits-representation .benefits-layout {
    direction: rtl;
}.landing-page .benefits-representation .benefits-image {
    order: -1;
}.landing-page .benefits-representation .benefits-list {
    order: 1;
}.landing-page .benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}.landing-page .benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--bg-white);
    border-radius: var(--radius);
    border-right: 4px solid transparent;
    transition: var(--transition);
}.landing-page .benefits-agency .benefit-item {
    border-right-color: #F59E0B;
}.landing-page .benefits-representation .benefit-item {
    border-right-color: #10B981;
}.landing-page .benefit-item:hover {
    transform: translateX(-5px);
    box-shadow: var(--shadow-md);
    background: var(--bg-light);
}.landing-page .benefits-representation .benefit-item:hover {
    transform: translateX(-5px);
}.landing-page .benefit-check {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}.landing-page .benefit-item span {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.7;
}.landing-page .benefits-image {
    display: flex;
    align-items: center;
    justify-content: center;
}.landing-page .benefit-image-placeholder {
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    object-fit: cover;
}.landing-page .comparison-section {
    padding: 5rem 0;
    background: var(--bg-light);
}.landing-page .comparison-table {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-top: 3rem;
}.landing-page .comparison-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
}.landing-page .comparison-cell {
    padding: 1.5rem;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}.landing-page .comparison-cell:last-child {
    border-right: none;
}.landing-page .comparison-cell-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}.landing-page .comparison-cell-header .btn {
    margin-top: 0.5rem;
}.landing-page .comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    border-bottom: 1px solid var(--border-color);
}.landing-page .comparison-row:last-child {
    border-bottom: none;
}.landing-page .comparison-row-footer {
    padding: 1.5rem 0;
    background: var(--bg-light);
}.landing-page .comparison-row-footer .comparison-cell {
    padding: 1rem 1.5rem;
}.landing-page .comparison-cell-label {
    background: var(--bg-light);
    font-weight: 600;
    color: var(--text-dark);
    text-align: right;
    padding-right: 2rem;
}.landing-page .comparison-cell-check {
    color: #10B981;
    font-size: 1.5rem;
    font-weight: 700;
}.landing-page .comparison-cell-no {
    color: #EF4444;
    font-size: 1.5rem;
    font-weight: 700;
}.landing-page .faq-section {
    padding: 5rem 0;
    background: var(--bg-light);
}.landing-page .faq-list {
    max-width: 900px;
    margin: 0 auto 3rem;
}.landing-page .faq-item {
    background: var(--bg-white);
    border-radius: var(--radius);
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition);
}.landing-page .faq-item:hover {
    box-shadow: var(--shadow-md);
}.landing-page .faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-dark);
    transition: var(--transition);
}.landing-page .faq-question:hover {
    color: var(--primary-color);
    background: var(--bg-light);
}.landing-page .faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--primary-color);
    transition: var(--transition);
}.landing-page .faq-item.active .faq-icon {
    transform: rotate(45deg);
}.landing-page .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}.landing-page .faq-item.active .faq-answer {
    max-height: 500px;
}.landing-page .faq-answer p {
    padding: 0 2rem 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
}.landing-page .application-section {
    padding: 5rem 0;
    background: var(--bg-white);
    text-align: center;
}.landing-page .section-description {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}.landing-page .section-phone {
    margin: 2rem 0;
}.landing-page .phone-link-large {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}.landing-page .phone-link-large:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}.landing-page .application-form-container {
    max-width: 700px;
    margin: 3rem auto 0;
    background: var(--bg-light);
    border-radius: var(--radius-xl);
    padding: 3rem;
    box-shadow: var(--shadow-md);
}.landing-page .application-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}.landing-page .application-form .form-group {
    text-align: right;
}.landing-page .application-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}.landing-page .application-form input {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--bg-white);
}.landing-page .application-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(15, 145, 220, 0.1);
}.landing-page .contact-section {
    padding: 5rem 0;
    background: var(--bg-light);
}.landing-page .contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}.landing-page .contact-card {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    border-top: 4px solid var(--primary-color);
}.landing-page .contact-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}.landing-page .contact-card p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
}.landing-page .process-flow-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}.landing-page .process-timeline {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    padding: 3rem 0;
}.landing-page .timeline-start {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    position: relative;
}.landing-page .timeline-bullet {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary-color);
    border: 4px solid white;
    box-shadow: 0 0 0 3px var(--primary-color);
    flex-shrink: 0;
    position: relative;
    z-index: 3;
}.landing-page .timeline-bullet-start {
    width: 28px;
    height: 28px;
    background: var(--primary-color);
    box-shadow: 0 0 0 4px white, 0 0 0 6px var(--primary-color);
}.landing-page .timeline-label-start {
    text-align: center;
}.landing-page .timeline-label-start p {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}.landing-page .timeline-start::before {
    content: '';
    position: absolute;
    left: 50%;
    top: calc(1.5rem + 1.25rem + 0.5rem + 14px);
    transform: translateX(-50%);
    width: 3rem;
    height: 4px;
    background: var(--primary-color);
    z-index: 1;
}.landing-page .timeline-start::after {
    content: '';
    position: absolute;
    right: 50%;
    top: calc(1.5rem + 1.25rem + 0.5rem + 14px);
    transform: translateX(50%);
    width: 3.5rem;
    height: 4px;
    background: var(--primary-color);
    z-index: 1;
}.landing-page .timeline-paths {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    position: relative;
}.landing-page .timeline-path {
    position: relative;
}.landing-page .path-label {
    margin-bottom: 1.5rem;
}.landing-page .path-label h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}.landing-page .timeline-path-agent .path-label {
    text-align: left;
    padding-left: 1.5rem;
}.landing-page .timeline-path-agent .path-label h3 {
    color: #F59E0B;
}.landing-page .timeline-path-representative .path-label {
    text-align: right;
    padding-right: 1.5rem;
}.landing-page .timeline-path-representative .path-label h3 {
    color: #10B981;
}.landing-page .timeline-path::before {
    content: '';
    position: absolute;
    top: -60px;
    width: 4px;
    height: 60px;
    z-index: 1;
    background: var(--primary-color);
}.landing-page .timeline-path-agent::before {
    left: 0;
}.landing-page .timeline-path-representative::before {
    right: 0;
}.landing-page .path-line {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 3px;
    z-index: 1;
}.landing-page .timeline-path-agent .path-line {
    left: 0;
    background: #F59E0B;
}.landing-page .timeline-path-representative .path-line {
    right: 0;
    background: #10B981;
}.landing-page .path-steps {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    padding-top: 1rem;
    position: relative;
}.landing-page .timeline-step {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    position: relative;
}.landing-page /* Agent: bullet on left, .landing-page text on right */
.timeline-path-agent .timeline-step {
    flex-direction: row;
}.landing-page .timeline-path-agent .timeline-bullet-step {
    width: 16px;
    height: 16px;
    background: white;
    border: 3px solid #F59E0B;
    box-shadow: 0 0 0 3px white, 0 0 0 5px #F59E0B;
    flex-shrink: 0;
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    border-radius: 50%;
}.landing-page .timeline-path-agent .timeline-label {
    flex: 1;
    padding-right: 0;
    padding-left: 1.5rem;
    text-align: left;
}.landing-page /* Representative: bullet on right, .landing-page text on left */
.timeline-path-representative .timeline-step {
    flex-direction: row-reverse;
}.landing-page .timeline-path-representative .timeline-bullet-step {
    width: 16px;
    height: 16px;
    background: white;
    border: 3px solid #10B981;
    box-shadow: 0 0 0 3px white, 0 0 0 5px #10B981;
    flex-shrink: 0;
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    border-radius: 50%;
}.landing-page .timeline-path-representative .timeline-label {
    flex: 1;
    padding-left: 0;
    padding-right: 1.5rem;
    text-align: right;
}.landing-page .timeline-label p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin: 0;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {.landing-page .hero-logo {
        margin-bottom: 1.5rem;
        gap: 0.75rem;
    }.landing-page .hero-logo-icon {
        height: 50px;
    }.landing-page .hero-logo-text {
        height: 40px;
        max-width: 160px;
    }.landing-page .hero-agent-title {
        font-size: 2.5rem;
    }.landing-page .hero-agent-subtitle {
        font-size: 1.5rem;
    }.landing-page .hero-agent-description {
        font-size: 1.125rem;
    }.landing-page .hero-gallery-section {
        padding: 2rem 0 1rem 0;
    }.landing-page .hero-pics-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }.landing-page .hero-agent-form {
        padding: 2rem 1.5rem;
    }.landing-page .cta-title-agent {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }.landing-page .cta-phone-title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }.landing-page .cta-phone-input-group {
        flex-direction: column;
        gap: 1rem;
    }.landing-page .cta-phone-input {
        font-size: 1rem;
        padding: 1rem 1.5rem;
    }.landing-page .cta-phone-submit {
        width: 100%;
        padding: 1rem 2rem;
    }.landing-page .services-grid, .landing-page .product-item {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1.5rem;
    }.landing-page .product-item-reverse {
        direction: rtl;
    }.landing-page .product-images {
        flex-direction: column;
        gap: 1rem;
    }.landing-page .product-images img {
        max-width: 100%;
    }.landing-page .product-title {
        font-size: 1.5rem;
    }.landing-page .product-features li {
        font-size: 1rem;
    }.landing-page .benefits-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }.landing-page .benefits-image {
        order: -1;
    }.landing-page .comparison-header, .landing-page .comparison-row {
        grid-template-columns: 1fr;
    }.landing-page .comparison-cell {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
    }.landing-page .comparison-cell:last-child {
        border-bottom: none;
    }.landing-page .comparison-cell-label {
        background: var(--primary-color);
        color: white;
        text-align: center;
        padding: 1rem;
    }.landing-page .faq-section {
        padding: 4rem 0;
    }.landing-page .faq-question {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
    }.landing-page .faq-answer p {
        padding: 0 1.5rem 1.25rem;
        font-size: 0.9375rem;
    }.landing-page .application-form .form-row {
        grid-template-columns: 1fr;
    }.landing-page .application-form-container {
        padding: 2rem 1.5rem;
    }.landing-page .contact-grid {
        grid-template-columns: 1fr;
    }.landing-page .process-flow-section {
        padding: 3rem 0;
    }.landing-page .process-timeline {
        padding: 2rem 0;
    }.landing-page .timeline-start {
        gap: 1rem;
        margin-bottom: 2rem;
    }.landing-page .timeline-bullet-start {
        width: 24px;
        height: 24px;
    }.landing-page .timeline-label-start p {
        font-size: 1.125rem;
    }.landing-page .timeline-start::before, .landing-page .timeline-start::after {
        width: calc(50% - 2px);
        top: calc(1rem + 1.125rem + 0.5rem + 12px);
    }.landing-page .timeline-paths {
        grid-template-columns: 1fr;
        gap: 3rem;
    }.landing-page .timeline-path::before {
        height: 50px;
        top: -50px;
    }.landing-page .path-label h3 {
        font-size: 1.25rem;
    }.landing-page .path-steps {
        gap: 2rem;
    }.landing-page .timeline-path-agent .timeline-label {
        padding-left: 1rem;
    }.landing-page .timeline-path-representative .timeline-label {
        padding-right: 1rem;
    }.landing-page .timeline-label p {
        font-size: 0.9375rem;
    }
}

@media (max-width: 480px) {.landing-page .hero-agent {
        padding: 4rem 0;
    }.landing-page .hero-logo {
        margin-bottom: 1rem;
        gap: 0.5rem;
    }.landing-page .hero-logo-icon {
        height: 40px;
    }.landing-page .hero-logo-text {
        height: 35px;
        max-width: 140px;
    }.landing-page .hero-agent-title {
        font-size: 2rem;
    }.landing-page .hero-agent-subtitle {
        font-size: 1.25rem;
    }.landing-page .hero-gallery-section {
        padding: 1.5rem 0 0.75rem 0;
    }.landing-page .hero-pics-gallery {
        gap: 0.5rem;
    }.landing-page .cta-section-agent {
        padding: 4rem 0;
    }.landing-page .cta-title-agent {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }.landing-page .cta-phone-section {
        padding: 4rem 0;
    }.landing-page .cta-phone-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }.landing-page .cta-phone-input-group {
        flex-direction: column;
        gap: 0.75rem;
    }.landing-page .cta-phone-input {
        font-size: 0.9375rem;
        padding: 0.875rem 1.25rem;
    }.landing-page .cta-phone-submit {
        padding: 0.875rem 1.5rem;
    }.landing-page .cta-phone-map {
        margin-top: 2rem;
        padding-top: 2rem;
    }.landing-page .cta-phone-map-container {
        max-width: 100%;
        padding: 0.5rem;
    }.landing-page .section-title {
        font-size: 1.75rem;
    }.landing-page .process-flow-section {
        padding: 2rem 0;
    }.landing-page .process-timeline {
        padding: 1.5rem 1.5rem;
    }.landing-page .timeline-start {
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }.landing-page .timeline-bullet-start {
        width: 20px;
        height: 20px;
    }.landing-page .timeline-label-start p {
        font-size: 1rem;
    }.landing-page .timeline-start::before, .landing-page .timeline-start::after {
        width: 100%;
        top: calc(0.75rem + 1rem + 0.5rem + 10px);
        height: 3px;
    }.landing-page .timeline-paths {
        gap: 2.5rem;
    }.landing-page .timeline-path::before {
        height: 40px;
        top: -40px;
        width: 3px;
    }.landing-page .path-line {
        width: 2px;
    }.landing-page .path-label {
        margin-bottom: 1rem;
    }.landing-page .path-label h3 {
        font-size: 1.125rem;
    }.landing-page .path-steps {
        gap: 1.5rem;
    }.landing-page .timeline-step {
        gap: 1rem;
    }.landing-page .timeline-bullet-step {
        width: 14px;
        height: 14px;
    }.landing-page .timeline-path-agent .timeline-bullet-step {
        left: -7px;
    }.landing-page .timeline-path-representative .timeline-bullet-step {
        right: -7px;
    }.landing-page .timeline-path-agent .timeline-label {
        padding-left: 1rem;
    }.landing-page .timeline-path-representative .timeline-label {
        padding-right: 1rem;
    }.landing-page .timeline-label p {
        font-size: 0.875rem;
    }
}.landing-page .form-success {
    text-align: center;
    padding: 3rem 2rem;
    background: white;
    border-radius: 12px;
    color: var(--text-dark, #1f2937);
    border: 2px solid #10B981;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
    animation: fadeInUp 0.5s ease-out;
}.landing-page .success-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: #10B981;
    font-weight: bold;
    line-height: 1;
}.landing-page .form-success p {
    color: var(--text-dark, #1f2937);
    font-weight: 500;
    font-size: 1.125rem;
    line-height: 1.6;
    margin: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

