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

html {
    scroll-behavior: smooth;
}

body {
    line-height: 1.6;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 25%, #d946ef 50%, #f97316 100%);
    background-attachment: fixed;
    min-height: 100vh;
    color: white;
    overflow-x: hidden;
    font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
    font-optical-sizing: auto;
}

/* Mouse Trail */
.mouse-trail {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 30;
}

.trail-particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.trail-cursor {
    position: absolute;
    width: 24px;
    height: 24px;
    border: 2px solid rgba(139, 92, 246, 0.5);
    border-radius: 50%;
    pointer-events: none;
    transition: all 75ms ease-out;
    backdrop-filter: blur(2px);
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1), transparent 70%);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: rgba(26, 26, 46, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0;
    transition: transform 0.3s ease;
}

.nav-container_appiverse {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.robot-icon {
    width: 32px;
    height: 32px;
    color: #8b5cf6;
}

.robot-svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #8b5cf6;
}

/* Section Styles */
.section {
    padding: 6rem 2rem;
    position: relative;
    will-change: transform;
    transition: transform 0.1s ease-out;
}

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

.section-title {
    font-size: 3rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 3rem;
    color: white;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 6rem 2rem;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    max-width: 1000px;
    z-index: 10;
    position: relative;
}

.hero-title {
    font-size: 5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: white;
    line-height: 1.1;
}

.hero-title-h2 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: white;
    line-height: 1.1;
}

.gradient-text {
    background: linear-gradient(135deg, #8b5cf6, #3b82f6, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    justify-content: center;
}

/* Floating Robots */
.floating-robot {
    position: absolute;
    color: #8b5cf6;
    animation: gentle-float 6s ease-in-out infinite;
}

.robot-1 {
    top: 20%;
    left: 10%;
    width: 60px;
    height: 60px;
    animation-delay: 0s;
}

.robot-2 {
    top: 30%;
    right: 15%;
    width: 50px;
    height: 50px;
    animation-delay: 2s;
    animation-duration: 5.5s;
}

.robot-3 {
    bottom: 30%;
    left: 20%;
    width: 55px;
    height: 55px;
    animation-delay: 4s;
    animation-duration: 6.5s;
}

/* Eye Blinking Animation */
.robot-eye {
    fill: currentColor;
}

.blink-eye {
    animation: eye-blink 3s ease-in-out infinite;
}

@keyframes eye-blink {

    0%,
    90%,
    100% {
        opacity: 1;
    }

    95% {
        opacity: 0.1;
    }
}

@keyframes gentle-float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

/* Button Styles */
.cta-button {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.1));
    color: white;
    border: none;
    padding: 1rem 3rem;
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 1.5rem;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.4);
}

.explore {
    border-radius: 2rem;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

/* Grid Layouts */
.problem-grid,
.solution-grid,
.employees-grid,
.features-grid,
.testimonials-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.employees-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Card Styles */
.problem-card,
.solution-card,
.employee-card,
.feature-card,
.testimonial-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.1));
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.testimonial-card, .testimonial-author {
    text-align: center;
}
.problem-card:hover,
.solution-card:hover,
.employee-card:hover,
.feature-card:hover,
.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.problem-icon,
.solution-icon,
.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.employee-robot {
    width: 50px;
    height: 80px;
    margin: 0 auto 1.5rem;
    color: transparent;
}

/* .executive-robot {
    color: #3b82f6;
} */

.sales-robot {
    color: #10b981;
}

.support-robot {
    color: #f59e0b;
}

.marketing-robot {
    color: #ef4444;
}

.recruiter-robot {
    color: #06b6d4;
}

.data-analyst-robot {
    color: transparent;
}

.problem-card h3,
.solution-card h3,
.employee-card h3,
.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.problem-card p,
.solution-card p,
.employee-card p,
.feature-card p {
    /* color: rgba(255, 255, 255, 0.8); */
    line-height: 1.6;
}

/* Comparison Table */
.comparison-table {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: rgba(139, 92, 246, 0.2);
}

.comparison-col {
    padding: 1.5rem;
    font-weight: 700;
    text-align: center;
    color: white;
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-cell {
    padding: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
}

.comparison-cell.highlight {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    font-weight: 600;
}

/* Integrations */
.integrations-section {
    margin-top: 3rem;
    text-align: center;
}

.integrations-label {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    margin-bottom: 2rem;
    display: block;
}

.integrations-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.integration-logo {
    width: 48px;
    height: 48px;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.integration-logo:hover {
    transform: scale(1.1);
}

.slack {
    background-color: #4A154B;
}

.gmail {
    background-color: #EA4335;
}

.hubspot {
    background-color: #FF7A00;
}

.salesforce {
    background-color: #00A1E0;
}

.microsoft {
    background-color: #0078D4;
}

.trello {
    background-color: #0052CC;
}

.dropbox {
    background-color: #0061FF;
}

.zoom {
    background-color: #7B68EE;
}

.zapier {
    background-color: #FF6900;
}

.integration-logo svg {
    width: 24px;
    height: 24px;
}

/* Testimonials */
.testimonial-content {
    margin-bottom: 2rem;
}

.testimonial-content p {
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    line-height: 1.6;
}

.testimonial-author {
    /* display: flex; */
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8b5cf6, #3b82f6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
}

.author-info h4 {
    color: white;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.author-info span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    margin-bottom: 1rem;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    color: white;
    font-size: 1.125rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer.active {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    position: relative;
    overflow: hidden;
    /* background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%); */
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 10;
}

.cta-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: white;
}

.cta-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 2rem;
    font-weight: 500;
    line-height: 1.6;
}

.cta-button-container_appiverse {
    display: flex;
    justify-content: center;
}

/* Dialog */
.dialog-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
    z-index: 100;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.dialog-overlay.active {
    display: flex;
}

.dialog-content {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    color: #1a1a2e;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.dialog-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: #666;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.dialog-close:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #000;
}

.dialog-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    color: #1a1a2e;
}

/* Form Styles */
.consultation-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

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

.form-group label {
    font-weight: 600;
    color: #1a1a2e;
}

.form-group input,
.form-group select {
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #8b5cf6;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.phone-input {
    display: flex;
    gap: 0.5rem;
}

.country-select {
    flex: 0 0 auto;
    width: 100px;
}

.form-submit {
    background: linear-gradient(135deg, #8b5cf6, #3b82f6);
    color: white;
    border: none;
    padding: 1rem;
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

/* Animations for Parallax */
@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    animation: fade-in 0.6s ease-out forwards;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

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

    .hero-title-h2 {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1rem;
    }

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

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

    .comparison-header,
    .comparison-row {
        grid-template-columns: 1fr;
    }

    .comparison-cell {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .floating-robot {
        display: none;
    }

    .integrations-grid {
        gap: 0.75rem;
    }

    .integration-logo {
        width: 40px;
        height: 40px;
    }
}

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

    .hero-section {
        padding: 4rem 1rem;
    }

    .dialog-content {
        padding: 1.5rem;
        margin: 1rem;
    }
}

input#phone {
    width: -webkit-fill-available;
}



.problem-section-initial p {
    text-align: center;
}

.problem-section-initial h3 {
    font-size: 1.875rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.problem-section-initial-strong {
    font-weight: 700;
    font-size: 1.875rem;
    margin-top: 1.5rem;
    text-align: center;
}

.list-container {
    display: flex;
    gap: 40px;
}

.cross-list,
.check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cross-list li,
.check-list li {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.icon {
    font-size: 20px;
    margin-right: 10px;
}

.cross {
    color: red;
}

.check {
    color: green;
}

/* Icon Container */
.icon-container {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}



.section {
    padding: 4rem 1.5rem;
}

.container_appiverse {
    max-width: 72rem;
    margin: 0 auto;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.section h3 {
    font-size: 1.875rem;
    margin-bottom: 1.5rem;
}

.problem-section-initial-strong {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.section p {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.employees-grid {
    margin-bottom: 3rem;
    padding: 0;
}

.employee-card {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.icon-container {
    margin-bottom: 1rem;
}
.ai-agents-center {
    text-align: center;
}
.icon {
    height: 2.5rem;
    width: 2.5rem;
}
.employee-card h4{
    margin-bottom: 1rem;
}
.employee-card p {
    font-size: 1rem;
    margin-bottom: 0;
    padding: 0;
}

.hero-cta {
    margin-top: 2rem;
    padding: 0;
}

.cta-button {
    font-size: 1.125rem;
    padding: 1rem 2rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3.75rem;
    }

    .section h3 {
        font-size: 2rem;
    }

    .problem-section-initial-strong {
        font-size: 1.75rem;
    }
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 4rem;
    }

    .section h3 {
        font-size: 2.25rem;
    }

    .problem-section-initial-strong {
        font-size: 2rem;
    }
}



.services-section {
    color: white;
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.container-service {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.main-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    line-height: 1.2;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.service-card:hover::before {
    opacity: 1;
}

.service-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: white;
    position: relative;
    z-index: 1;
}

.service-description {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.feature-list {
    list-style: none;
    position: relative;
    z-index: 1;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

.feature-arrow {
    color: #fff;
    margin-right: 10px;
    font-weight: bold;
    margin-top: 2px;
    flex-shrink: 0;
}

.feature-text {
    line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 768px) {
    .services-section {
        padding: 60px 15px;
    }

    .main-title {
        font-size: 2.5rem;
        margin-bottom: 40px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .service-card {
        padding: 30px 25px;
    }

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

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

    .service-card {
        padding: 25px 20px;
    }

    .service-title {
        font-size: 1.3rem;
    }

    .feature-item {
        font-size: 0.9rem;
    }
    .feature-card {
        width: -webkit-fill-available;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card {
    animation: fadeInUp 0.6s ease forwards;
}

.service-card:nth-child(1) {
    animation-delay: 0.1s;
}

.service-card:nth-child(2) {
    animation-delay: 0.2s;
}

.service-card:nth-child(3) {
    animation-delay: 0.3s;
}



.integrations-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.integration-label {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.integrations-grid {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.integration-item {
    width: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

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

.integration-item svg {
    width: 1.5rem;
    height: 1.5rem;
}

/* Brand Colors */
.slack {
    background-color: #4A154B;
}

.gmail {
    background-color: #EA4335;
}

.hubspot {
    background-color: #FF7A00;
}

.salesforce {
    background-color: #00A1E0;
}

.microsoft {
    background-color: #0078D4;
}

.trello {
    background-color: #0052CC;
}

.dropbox {
    background-color: #0061FF;
}

.zoom {
    background-color: #7B68EE;
}

.zapier {
    background-color: #FF6900;
}
.title-ai {
    font-size: 1.5rem;
    line-height: 2rem;
    margin-bottom: 1rem;
}
.strong {
    font-weight: 700;
}
.iti__country {
    color: #000;
}
.iti--allow-dropdown input, .iti--allow-dropdown input[type=tel], .iti--allow-dropdown input[type=text], .iti--separate-dial-code input, .iti--separate-dial-code input[type=tel], .iti--separate-dial-code input[type=text] {
    width: -webkit-fill-available;
}