:root{
    --primary:#1788ff;
    --secondary:#3d5afe;
    --accent:#6a11cb;
    --dark:#07142b;
    --dark-2:#0d1f3d;
    --text:#0f1f38;
    --muted:#6c7a92;
    --white:#ffffff;
    --light:#f5f9ff;
    --light-2:#eef4ff;
    --border:rgba(23,136,255,0.14);
    --shadow:0 20px 70px rgba(16,54,124,0.15);
    --shadow-lg:0 30px 80px rgba(17,61,147,0.22);
    --gradient:linear-gradient(135deg,var(--primary),var(--secondary),var(--accent));
    --gradient-soft:linear-gradient(135deg,rgba(23,136,255,0.15),rgba(106,17,203,0.12));
    --radius:18px;
    --radius-sm:12px;
    --transition:all .35s ease;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Manrope', sans-serif;
    color:var(--text);
    background:var(--white);
    line-height:1.6;
    overflow-x:hidden;
}

body.dark-mode{
    --white:#08111f;
    --light:#0d1729;
    --light-2:#11203a;
    --text:#eff5ff;
    --muted:#b0bfd8;
    --border:rgba(98,145,255,0.18);
    background:var(--white);
    color:var(--text);
}

a{
    text-decoration:none;
    color:inherit;
}

img{
    max-width:100%;
    display:block;
}

button,input,textarea,select{
    font-family:inherit;
    outline:none;
}

.container{
    width:min(1200px, calc(100% - 32px));
    margin:auto;
}

.skip-link{
    position:absolute;
    left:-9999px;
    top:auto;
}
.skip-link:focus{
    left:20px;
    top:20px;
    background:#000;
    color:#fff;
    padding:10px 14px;
    z-index:99999;
}

.site-header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:999;
    transition:var(--transition);
    padding:14px 0;
    background:rgba(255,255,255,0.78);
    backdrop-filter:blur(18px);
    border-bottom:1px solid transparent;
}

body.dark-mode .site-header{
    background:rgba(7,20,43,0.76);
}

.site-header.scrolled{
    padding:10px 0;
    border-color:var(--border);
    box-shadow:0 10px 40px rgba(0,0,0,0.08);
}

.nav-wrap{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
}

.logo img{
    height:85px;
    object-fit:contain;
}

.main-nav{
    display:flex;
    align-items:center;
    gap:28px;
}

.main-nav a{
    position:relative;
    font-weight:600;
    color:var(--text);
}

.main-nav a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-6px;
    width:0;
    height:2px;
    background:var(--gradient);
    transition:var(--transition);
}

.main-nav a:hover::after,
.main-nav a.active::after{
    width:100%;
}

.nav-actions{
    display:flex;
    align-items:center;
    gap:12px;
}

.theme-toggle,
.mobile-toggle{
    width:46px;
    height:46px;
    border:1px solid var(--border);
    border-radius:50%;
    display:grid;
    place-items:center;
    background:var(--white);
    color:var(--text);
    cursor:pointer;
}

.mobile-toggle{
    display:none;
    flex-direction:column;
    gap:4px;
}

.mobile-toggle span{
    width:20px;
    height:2px;
    background:var(--text);
    display:block;
}

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    padding:14px 24px;
    border-radius:999px;
    font-weight:700;
    transition:var(--transition);
    cursor:pointer;
    border:none;
}

.btn-primary{
    background:var(--gradient);
    color:#fff;
    box-shadow:0 12px 30px rgba(61,90,254,0.26);
}

.btn-primary:hover{
    transform:translateY(-2px);
}

.btn-outline{
    border:1px solid var(--border);
    color:var(--text);
    background:transparent;
}

.btn-outline:hover{
    background:var(--light);
}

.btn-light{
    background:#fff;
    color:var(--dark);
}

.btn-outline-light{
    border:1px solid rgba(255,255,255,0.35);
    color:#fff;
    background:transparent;
}

.btn-block{
    width:100%;
}

.hero-section{
    position:relative;
    padding:150px 0 90px;
    background:
        radial-gradient(circle at 10% 20%, rgba(23,136,255,0.12), transparent 30%),
        radial-gradient(circle at 90% 10%, rgba(106,17,203,0.16), transparent 30%),
        linear-gradient(180deg,#f9fbff 0%, #eef4ff 100%);
    overflow:hidden;
}

body.dark-mode .hero-section{
    background:
        radial-gradient(circle at 10% 20%, rgba(23,136,255,0.13), transparent 30%),
        radial-gradient(circle at 90% 10%, rgba(106,17,203,0.16), transparent 30%),
        linear-gradient(180deg,#091322 0%, #101a30 100%);
}

.hero-grid{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    align-items:center;
    gap:40px;
}

.mini-badge{
    display:inline-flex;
    padding:8px 14px;
    background:var(--gradient-soft);
    color:var(--secondary);
    border-radius:999px;
    font-size:14px;
    font-weight:800;
    margin-bottom:18px;
}

.hero-text h1{
    font-family:'Outfit', sans-serif;
    font-size:58px;
    line-height:1.1;
    margin-bottom:20px;
    max-width:700px;
}

.hero-text p{
    font-size:18px;
    color:var(--muted);
    max-width:640px;
    margin-bottom:30px;
}

.hero-actions{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
    margin-bottom:34px;
}

.hero-stats{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
}

.hero-stats div{
    background:rgba(255,255,255,0.72);
    backdrop-filter:blur(18px);
    border:1px solid var(--border);
    border-radius:var(--radius);
    padding:18px 20px;
    min-width:160px;
    box-shadow:var(--shadow);
}

body.dark-mode .hero-stats div{
    background:rgba(17,32,58,0.7);
}

.hero-stats h3{
    font-size:32px;
    font-family:'Outfit', sans-serif;
    margin-bottom:4px;
}

.hero-stats p{
    font-size:14px;
    margin:0;
}

.hero-visual{
    position:relative;
    min-height:520px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.hero-main-orb{
    width:320px;
    height:320px;
    border-radius:50%;
    background:var(--gradient);
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
    box-shadow:var(--shadow-lg);
    animation:floatY 5s ease-in-out infinite;
}

.hero-logo-ring{
    position:absolute;
    inset:-18px;
    border:2px dashed rgba(255,255,255,0.35);
    border-radius:50%;
    animation:spin 18s linear infinite;
}

.hero-logo-center{
    width:180px;
    height:180px;
    background:#fff;
    color:var(--secondary);
    border-radius:36px;
    display:grid;
    place-items:center;
    font-size:78px;
    font-weight:800;
    font-family:'Outfit', sans-serif;
    box-shadow:0 20px 50px rgba(0,0,0,0.15);
}

.glass-card{
    position:absolute;
    width:240px;
    padding:20px;
    border-radius:20px;
    background:rgba(255,255,255,0.7);
    backdrop-filter:blur(16px);
    border:1px solid rgba(255,255,255,0.5);
    box-shadow:var(--shadow);
}

body.dark-mode .glass-card{
    background:rgba(15,31,56,0.72);
}

.glass-card span{
    display:block;
    color:var(--secondary);
    font-size:14px;
    margin-bottom:8px;
    font-weight:800;
}
.glass-card strong{
    display:block;
    font-size:18px;
    line-height:1.4;
}

.card-one{
    top:40px;
    left:0;
    animation:floatY 6s ease-in-out infinite;
}

.card-two{
    right:0;
    bottom:50px;
    animation:floatY 6s ease-in-out infinite reverse;
}

.section{
    padding:90px 0;
}

.section-heading{
    text-align:center;
    max-width:760px;
    margin:0 auto 48px;
}

.section-heading h2{
    font-size:42px;
    font-family:'Outfit', sans-serif;
    margin-bottom:14px;
}

.section-heading p{
    color:var(--muted);
    font-size:17px;
}

.services-grid,
.projects-grid,
.testimonials-slider{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}

.service-card,
.project-card,
.testimonial-card{
    background:var(--white);
    border:1px solid var(--border);
    border-radius:24px;
    padding:28px;
    box-shadow:var(--shadow);
    transition:var(--transition);
}

.service-card:hover,
.project-card:hover,
.testimonial-card:hover{
    transform:translateY(-8px);
}

.service-icon{
    width:62px;
    height:62px;
    border-radius:18px;
    background:var(--gradient-soft);
    display:grid;
    place-items:center;
    margin-bottom:20px;
    font-size:24px;
    color:var(--secondary);
}

.service-card h3,
.project-card h3{
    font-size:24px;
    margin-bottom:10px;
    font-family:'Outfit', sans-serif;
}

.service-card p,
.project-card p,
.testimonial-card p{
    color:var(--muted);
}

.project-thumb{
    height:220px;
    border-radius:20px;
    margin-bottom:20px;
}

.gradient-bg{
    background:linear-gradient(135deg,#1788ff,#6a11cb);
}
.gradient-bg.alt{
    background:linear-gradient(135deg,#0ea5e9,#3d5afe,#7c3aed);
}
.gradient-bg.third{
    background:linear-gradient(135deg,#2563eb,#4f46e5,#9333ea);
}

.project-content span{
    display:inline-block;
    margin-bottom:10px;
    color:var(--secondary);
    font-weight:800;
    font-size:14px;
}

.why-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    align-items:center;
}

.tilt-card{
    padding:24px;
    background:var(--gradient);
    border-radius:30px;
    transform:rotate(-3deg);
    box-shadow:var(--shadow-lg);
}

.inner-panel{
    background:rgba(255,255,255,0.95);
    border-radius:24px;
    padding:34px;
    transform:rotate(3deg);
}

.inner-panel h3{
    margin-bottom:18px;
    font-size:28px;
    font-family:'Outfit', sans-serif;
}

.inner-panel ul{
    padding-left:18px;
}

.inner-panel li{
    margin-bottom:12px;
}

.why-content h2{
    font-size:44px;
    line-height:1.2;
    margin-bottom:18px;
    font-family:'Outfit', sans-serif;
}

.why-content p{
    color:var(--muted);
    margin-bottom:24px;
}

.section-cta{
    background:var(--light);
}

.cta-box{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
    background:var(--gradient);
    color:#fff;
    border-radius:32px;
    padding:44px;
    box-shadow:var(--shadow-lg);
}

.cta-box h2{
    font-size:38px;
    line-height:1.2;
    margin-bottom:12px;
    font-family:'Outfit', sans-serif;
}

.cta-actions{
    display:flex;
    gap:14px;
    flex-wrap:wrap;
}

.testimonial-card h4{
    margin-top:18px;
    font-size:20px;
}

.testimonial-card span{
    color:var(--secondary);
    font-size:14px;
    font-weight:700;
}

.site-footer{
    background:var(--dark);
    color:#d7e3fa;
    padding:70px 0 0;
}

.footer-grid{
    display:grid;
    grid-template-columns:1.3fr 1fr 1fr 1fr;
    gap:30px;
    padding-bottom:30px;
}

.footer-logo{
    height:58px;
    margin-bottom:16px;
    filter:brightness(0) invert(1);
}

.site-footer h4{
    color:#fff;
    margin-bottom:18px;
}

.site-footer ul{
    list-style:none;
}

.site-footer li{
    margin-bottom:10px;
}

.site-footer a:hover{
    color:#7fb3ff;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,0.1);
    padding:18px 0;
    text-align:center;
    color:#b8c7e2;
}

.whatsapp-float{
    position:fixed;
    right:18px;
    bottom:18px;
    width:58px;
    height:58px;
    border-radius:50%;
    display:grid;
    place-items:center;
    background:#25D366;
    color:#fff;
    font-size:28px;
    z-index:999;
    box-shadow:0 15px 30px rgba(37,211,102,0.35);
}

.popup-overlay{
    position:fixed;
    inset:0;
    background:rgba(5,16,35,0.55);
    opacity:0;
    visibility:hidden;
    transition:var(--transition);
    z-index:1000;
}

.enquiry-popup{
    position:fixed;
    top:50%;
    left:50%;
    transform:translate(-50%, -50%) scale(.9);
    width:min(920px, calc(100% - 24px));
    background:var(--white);
    border-radius:28px;
    box-shadow:var(--shadow-lg);
    z-index:1001;
    opacity:0;
    visibility:hidden;
    transition:var(--transition);
    overflow:hidden;
}

.popup-overlay.active,
.enquiry-popup.active{
    opacity:1;
    visibility:visible;
}

.enquiry-popup.active{
    transform:translate(-50%, -50%) scale(1);
}

.popup-content{
    display:grid;
    grid-template-columns:1fr 1.1fr;
}

.popup-left{
    background:var(--gradient);
    color:#fff;
    padding:40px;
}

.popup-left .mini-badge{
    background:rgba(255,255,255,0.18);
    color:#fff;
}

.popup-left h3{
    font-size:34px;
    margin-bottom:14px;
    font-family:'Outfit', sans-serif;
}

.popup-right{
    padding:34px;
}

.popup-close{
    position:absolute;
    top:16px;
    right:16px;
    width:42px;
    height:42px;
    border-radius:50%;
    background:rgba(255,255,255,0.14);
    color:#fff;
    cursor:pointer;
    z-index:2;
}

.form-group{
    margin-bottom:16px;
}

.form-group input,
.form-group textarea,
.form-group select{
    width:100%;
    border:1px solid var(--border);
    background:var(--light);
    color:var(--text);
    border-radius:14px;
    padding:14px 16px;
}

.form-response{
    margin-top:12px;
    font-size:14px;
    font-weight:700;
}

.reveal{
    opacity:0;
    transform:translateY(24px);
    transition:all .8s ease;
}

.reveal.active{
    opacity:1;
    transform:none;
}

.delay-1{transition-delay:.15s;}
.delay-2{transition-delay:.3s;}

@keyframes floatY{
    0%,100%{transform:translateY(0);}
    50%{transform:translateY(-16px);}
}

@keyframes spin{
    from{transform:rotate(0deg);}
    to{transform:rotate(360deg);}
}
/* Inner Banner */
.inner-banner {
    padding: 160px 0 70px;
    background:
        radial-gradient(circle at 15% 50%, rgba(23,136,255,0.14), transparent 40%),
        radial-gradient(circle at 85% 20%, rgba(106,17,203,0.15), transparent 40%),
        linear-gradient(170deg, #eef4ff 0%, #f5f9ff 100%);
    text-align: center;
}

body.dark-mode .inner-banner {
    background:
        radial-gradient(circle at 15% 50%, rgba(23,136,255,0.14), transparent 40%),
        radial-gradient(circle at 85% 20%, rgba(106,17,203,0.15), transparent 40%),
        linear-gradient(170deg, #091322 0%, #0d1a2e 100%);
}

.inner-banner h1 {
    font-size: 52px;
    font-family: 'Outfit', sans-serif;
    margin: 14px 0 16px;
}

.inner-banner p {
    font-size: 18px;
    color: var(--muted);
    max-width: 600px;
    margin: 0 auto 20px;
}

.breadcrumb {
    display: inline-flex;
    gap: 8px;
    font-size: 15px;
    color: var(--muted);
}

.breadcrumb a {
    color: var(--secondary);
    font-weight: 600;
}

/* Values grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.value-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 28px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-8px);
}

.value-card h3 {
    font-size: 22px;
    margin: 16px 0 10px;
    font-family: 'Outfit', sans-serif;
}

.value-card p {
    color: var(--muted);
}

/* Team */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.team-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-8px);
}

.team-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 28px;
    color: #fff;
}

.team-card h4 {
    font-size: 20px;
    margin-bottom: 6px;
    font-family: 'Outfit', sans-serif;
}

.team-card span {
    color: var(--secondary);
    font-size: 14px;
    font-weight: 700;
}

/* Stats */
.stats-section {
    background: var(--gradient);
    color: #fff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.stat-item h3 {
    font-size: 52px;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 8px;
}

.stat-item p {
    font-size: 16px;
    opacity: .85;
}

/* Services full */
.services-full-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.service-full-card {
    display: flex;
    gap: 20px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 28px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    align-items: flex-start;
}

.service-full-card:hover {
    transform: translateY(-6px);
}

.service-full-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
    font-family: 'Outfit', sans-serif;
}

.service-full-content p {
    color: var(--muted);
    margin-bottom: 16px;
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.process-step {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 24px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.process-step:hover {
    transform: translateY(-6px);
}

.step-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gradient);
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-family: 'Outfit', sans-serif;
}

.process-step h4 {
    font-size: 20px;
    margin-bottom: 10px;
    font-family: 'Outfit', sans-serif;
}

.process-step p {
    color: var(--muted);
}

/* Filter Tabs */
.filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 36px;
}

.filter-btn {
    padding: 10px 22px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: transparent;
    color: var(--text);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gradient);
    color: #fff;
    border-color: transparent;
}

.projects-masonry {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.project-card.hidden {
    display: none;
}

.featured-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--gradient);
    color: #fff;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
}

.project-thumb {
    position: relative;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.tech-tag {
    padding: 4px 12px;
    background: var(--gradient-soft);
    color: var(--secondary);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
}

/* Testimonials full */
.testimonials-full-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-full-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 28px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.testimonial-full-card:hover {
    transform: translateY(-6px);
}

.stars {
    color: #f59e0b;
    margin-bottom: 14px;
    font-size: 16px;
}

.testimonial-full-card > p {
    color: var(--muted);
    font-style: italic;
    margin-bottom: 20px;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 14px;
}

.client-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    overflow: hidden;
    flex-shrink: 0;
}

.client-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-info h4 {
    font-size: 18px;
    margin-bottom: 3px;
}

.client-info span {
    color: var(--secondary);
    font-size: 13px;
    font-weight: 700;
}

/* Story Grid (about) */
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: flex-start;
}

.contact-info h2 {
    font-size: 40px;
    line-height: 1.2;
    margin-bottom: 16px;
    font-family: 'Outfit', sans-serif;
}

.contact-info p {
    color: var(--muted);
    margin-bottom: 28px;
}

.contact-detail-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-detail-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: var(--gradient-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 18px;
    flex-shrink: 0;
}

.contact-detail-list strong {
    display: block;
    margin-bottom: 3px;
}

.contact-detail-list a,
.contact-detail-list span {
    color: var(--muted);
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: var(--text);
}

.social-icons a:hover {
    background: var(--gradient);
    color: #fff;
    border-color: transparent;
}

.contact-form-wrap {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 38px;
    box-shadow: var(--shadow);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group label {
    display: block;
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 15px;
}

.contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-list i {
    color: var(--secondary);
    width: 18px;
}

.map-container {
    width: 100%;
    filter: grayscale(20%);
}
.newsletter-row {
    background: var(--dark-2);
    padding: 36px 0;
    border-top: 1px solid rgba(255,255,255,0.07);
}

.newsletter-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.newsletter-inner h4 {
    font-size: 20px;
    color: #fff;
    margin-bottom: 4px;
    font-family: 'Outfit', sans-serif;
}

.newsletter-inner p {
    color: #a0b3cc;
    font-size: 14px;
    margin: 0;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.newsletter-form input {
    padding: 13px 18px;
    border: 1px solid rgba(255,255,255,0.14);
    background: rgba(255,255,255,0.07);
    color: #fff;
    border-radius: 999px;
    font-size: 15px;
    width: 300px;
    font-family: 'Manrope', sans-serif;
}

.newsletter-form input::placeholder {
    color: rgba(255,255,255,0.45);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary);
}
.section-newsletter{
    background:var(--light);
    padding-top:30px;
}

.newsletter-box{
    background:var(--white);
    border:1px solid var(--border);
    border-radius:30px;
    padding:36px;
    box-shadow:var(--shadow);
    display:grid;
    grid-template-columns:1.2fr 1fr;
    gap:24px;
    align-items:center;
}

.newsletter-content h2{
    font-size:38px;
    margin-bottom:12px;
    font-family:'Outfit', sans-serif;
}

.newsletter-content p{
    color:var(--muted);
    max-width:620px;
}

.newsletter-form{
    display:flex;
    gap:12px;
    align-items:center;
    flex-wrap:wrap;
    justify-content:flex-end;
}

.newsletter-form input{
    flex:1;
    min-width:260px;
    padding:15px 18px;
    border:1px solid var(--border);
    border-radius:999px;
    background:var(--light);
    color:var(--text);
}

.newsletter-response{
    grid-column:1 / -1;
    font-size:14px;
    font-weight:700;
    margin-top:6px;
}

@media (max-width: 991px){
    .newsletter-box{
        grid-template-columns:1fr;
    }

    .newsletter-form{
        justify-content:flex-start;
    }
}

@media (max-width: 767px){
    .newsletter-box{
        padding:24px;
    }

    .newsletter-content h2{
        font-size:28px;
    }

    .newsletter-form{
        flex-direction:column;
        align-items:stretch;
    }

    .newsletter-form input{
        min-width:100%;
    }
}