/* 
    Marukatte Design System 
    Modern, Premium, and Dynamic
    Fully Responsive - Mobile First
*/

:root {
    /* Colors */
    --primary: #fd784b;
    --primary-dark: #f43f03;
    --primary-light: hsl(355, 85%, 95%);
    --secondary: hsl(220, 15%, 20%);
    --accent: #fd784b;
    --bg-white: hsl(0, 0%, 100%);
    --bg-offwhite: hsl(210, 20%, 98%);
    --text-main: hsl(220, 25%, 15%);
    --text-muted: hsl(220, 15%, 45%);
    --text-white: hsl(0, 0%, 100%);
    --border: hsl(220, 15%, 90%);
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
    --shadow-lg: 0 20px 50px -12px rgba(0,0,0,0.15);
    
    /* Typography */
    --font-main: 'Inter', system-ui, -apple-system, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

body {
    font-family: var(--font-main);
    color: var(--text-main);
    background-color: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
}

section[id] {
    scroll-margin-top: 70px;
}

@media (max-width: 768px) {
    section[id] {
        scroll-margin-top: 60px;
    }
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
    height: auto;
}

/* Layout Containers */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
}

.section {
    padding: 80px 0;
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }
}

/* Header */
header {
    height: 70px;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border);
}

@media (max-width: 768px) {
    header {
        height: 60px;
    }
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 1rem;
}

.logo {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary);
    display: inline-block;
}

@media (max-width: 768px) {
    .logo {
        font-size: 1.1rem;
    }
}

nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

nav ul {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

nav .nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

nav .nav-menu .btn {
    margin-left: 1rem;
    white-space: nowrap;
}

.header-cta {
    flex-shrink: 0;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-main);
    padding: 0.5rem;
}

@media (max-width: 992px) {
    .header-cta {
        display: none;
    }
}

@media (max-width: 768px) {
    .header-cta {
        display: none;
    }
}

nav a {
    font-weight: 500;
    color: var(--text-muted);
    font-size: 0.95rem;
}

nav a:hover {
    color: var(--primary);
}

.btn {
    padding: 0.7rem 1.2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: none;
    display: inline-block;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .btn {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
}

.btn:active {
    transform: scale(0.98);
}

.btn-primary {
    background-color: var(--primary);
    color: var(--text-white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background-color: var(--bg-offwhite);
    color: var(--text-muted);
    border: 1px solid var(--border);
}

.btn-outline:hover {
    background-color: #fff;
    border-color: var(--primary);
    color: var(--primary);
}

.btn-white {
    background: white;
    color: var(--primary);
}

.btn-white:hover {
    background: var(--bg-offwhite);
    box-shadow: var(--shadow-lg);
}

/* Hero Section */
.hero {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    align-items: center;
    gap: 4rem;
}

@media (max-width: 992px) {
    .hero {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 0;
    }
}

.hero-content h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
}

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

.hero-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 500px;
}

@media (max-width: 768px) {
    .hero-content p {
        font-size: 1rem;
    }
}

.hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .hero-btns {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-btns .btn {
        width: 100%;
        text-align: center;
    }
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    width: 100%;
    height: auto;
}

/* Labels */
.label-caps {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
    display: block;
}

/* Expertise Section */
.expertise {
    background-color: var(--bg-offwhite);
}

.expertise h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .expertise h2 {
        font-size: 2rem;
    }
}

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

@media (max-width: 992px) {
    .expertise-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.expertise-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.expertise-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.expertise-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

@media (max-width: 768px) {
    .expertise-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

.expertise-card h3 {
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
}

@media (max-width: 768px) {
    .expertise-card h3 {
        font-size: 1.1rem;
    }
}

.expertise-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Portfolio Section */
.portfolio-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .portfolio-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

.portfolio-nav {
    display: none;
}

@media (max-width: 768px) {
    .portfolio-nav {
        display: none;
    }
}

.nav-arrow {
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: none;
    color: inherit;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .nav-arrow {
        width: 36px;
        height: 36px;
    }
}

.nav-arrow:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* Portfolio Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.product-card {
    border-radius: 20px;
    overflow: hidden;
    background: var(--bg-offwhite);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-img {
    height: 250px;
    overflow: hidden;
    position: relative;
}

@media (max-width: 768px) {
    .product-img {
        height: 200px;
    }
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-tag {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: rgba(255,255,255,0.9);
    padding: 0.3rem 0.6rem;
    border-radius: 6px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .product-tag {
        font-size: 0.6rem;
        padding: 0.25rem 0.5rem;
    }
}

.product-info {
    padding: 1.5rem;
}

@media (max-width: 768px) {
    .product-info {
        padding: 1rem;
    }
}

.product-info h3 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .product-info h3 {
        font-size: 1rem;
    }
}

.product-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.view-link {
    font-weight: 600;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
}

/* Partnership CTA */
.partnership {
    background-color: var(--primary);
    color: var(--text-white);
    text-align: center;
    padding: 80px 0;
}

@media (max-width: 768px) {
    .partnership {
        padding: 50px 0;
    }
}

.partnership h2 {
    font-size: 2rem;
    max-width: 100%;
    margin: 0 auto 1.5rem;
    line-height: 1.3;
}

@media (max-width: 768px) {
    .partnership h2 {
        font-size: 1.5rem;
    }
}

/* Pre-footer Section */
.pre-footer {
    padding: 80px 0;
    text-align: center;
}

@media (max-width: 768px) {
    .pre-footer {
        padding: 50px 0;
    }
}

.giant-text {
    font-size: 8rem;
    font-weight: 900;
    color: var(--bg-offwhite);
    line-height: 1;
    margin-bottom: -2rem;
    user-select: none;
}

@media (max-width: 992px) {
    .giant-text {
        font-size: 4rem;
    }
}

@media (max-width: 480px) {
    .giant-text {
        font-size: 2.5rem;
    }
}

.sub-giant {
    position: relative;
    font-size: 2rem;
    font-weight: 700;
}

@media (max-width: 768px) {
    .sub-giant {
        font-size: 1.5rem;
    }
}

.sub-giant span {
    color: var(--primary);
    font-style: italic;
}

/* Contact Form */
#contact.section {
    background: #333;
    margin-bottom: 0;
}

#contact + .pre-footer {
    margin-top: 60px;
}

@media (max-width: 768px) {
    #contact + .pre-footer {
        margin-top: 40px;
    }
}

#contact .container > .label-caps,
#contact h2 {
    color: var(--text-white);
}

.contact-form {
    max-width: 100%;
    margin: 1.5rem auto 0;
    background: #333;
    padding: 1.5rem;
    border-radius: 16px;
}

@media (max-width: 768px) {
    .contact-form {
        padding: 1rem;
    }
}

.contact-form h2 {
    color: var(--text-white);
    font-size: 1.5rem;
}

.form-group {
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .form-group {
        margin-bottom: 0.75rem;
    }
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-white);
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.7rem 0.9rem;
    border: 1px solid #555;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: var(--font-main);
    transition: border-color 0.3s ease;
    background: #444;
    color: var(--text-white);
}

@media (max-width: 768px) {
    .form-group input,
    .form-group textarea {
        padding: 0.6rem 0.8rem;
        font-size: 0.9rem;
    }
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-success {
    background: #1a472a;
    color: #90EE90;
    padding: 0.75rem;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.form-error {
    background: #4a1a1a;
    color: #FFB6C1;
    padding: 0.75rem;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

/* Footer */
footer {
    padding: 40px 0;
    border-top: 1px solid var(--border);
}

@media (max-width: 768px) {
    footer {
        padding: 30px 0;
    }
}

footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

@media (max-width: 768px) {
    footer .container {
        flex-direction: column;
        text-align: center;
    }
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

@media (max-width: 768px) {
    .footer-links {
        gap: 1rem;
    }
}

.footer-links a {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.copyright {
    font-size: 0.8rem;
    color: var(--text-muted);
}

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

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

.hero-image {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Mobile Navigation */
.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-main);
    padding: 0.5rem;
    z-index: 1001;
}

@media (max-width: 992px) {
    .hamburger {
        display: block;
    }
    
    header .container {
        position: relative;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: white;
        padding: 80px 2rem 2rem;
        box-shadow: -5px 0 20px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        z-index: 1000;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu ul {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-menu a:not(.btn) {
        display: block;
        padding: 0.5rem 0;
        font-size: 1.1rem;
    }
    
    .nav-menu .btn {
        text-align: center;
        display: inline-block !important;
        width: 100% !important;
        margin-left: 0 !important;
    }
}

@media (max-width: 480px) {
    .nav-menu {
        width: 100%;
        right: -100%;
    }
}

/* Mobile Touch Improvements */
@media (max-width: 768px) {
    .btn {
        min-height: 44px;
    }
    
    a, button {
        min-height: 44px;
    }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-offwhite);
}

::-webkit-scrollbar-thumb {
    background: var(--text-muted);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-main);
}

/* Industries Section */

.industries {
    background: var(--bg-white);
}

.industries-heading {
    max-width: 850px;
    margin: 0 0 4rem;
    text-align: left;
}

.industries-heading h2 {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.industries-heading p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
}

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

.industry-card {
    border-radius: 32px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2.5rem;
    min-height: 340px;
    position: relative;
    transition: 0.3s ease;
    border: 1px solid var(--border);
}

.industry-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.real-estate {
    background: #fff7f2;
}

.education {
    background: #f5f8ff;
}

.travel {
    background: #f1fbfb;
}

.business {
    background: #faf6ff;
}

.industry-content {
    max-width: 50%;
    z-index: 2;
}

.industry-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255,255,255,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.industry-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.industry-card p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.industry-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.industry-tags span {
    background: rgba(255,255,255,0.7);
    border: 1px solid rgba(0,0,0,0.06);
    padding: 0.6rem 1rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
}

.industry-link {
    color: var(--primary);
    font-weight: 700;
}

.industry-visual {
    width: 42%;
    flex-shrink: 0;
}

.industry-visual img {
    width: 100%;
    max-width: 280px;
    height: auto;
    object-fit: contain;
}

/* Mobile */

@media (max-width: 992px) {

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

    .industry-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
        min-height: auto;
    }

    .industry-content {
        max-width: 100%;
    }

    .industry-visual {
        width: 100%;
        margin-top: 2rem;
        display: flex;
        justify-content: center;
    }

    .industry-visual img {
        max-width: 280px;
    }

    .industry-tags {
        justify-content: center;
    }
}

@media (max-width: 768px) {

    .industry-card {
        padding: 2rem;
        border-radius: 24px;
    }

    .industry-card h3 {
        font-size: 1.6rem;
    }

    .industries-heading h2 {
        font-size: 1.9rem;
    }
}

/* ===========================
   PROCESS SECTION
=========================== */

.process {
    background: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.process-heading {
    text-align: left;
    max-width: 700px;
    margin: 0 0 5rem;
}

.process-heading h2 {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.process-heading p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

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

/* dotted journey line */
.process-grid::before {
    content: "";
    position: absolute;
    top: 110px;
    left: 12%;
    width: 76%;
    border-top: 2px dashed #d7dbe2;
    z-index: 0;
}

.process-step {
    position: relative;
    z-index: 2;
    text-align: center;
}

.process-icon-wrap {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-icon-wrap img {
    width: 100%;
    max-width: 160px;
}

/* colored circles */
.understand .process-icon-wrap {
    background: #fff3ec;
}

.build .process-icon-wrap {
    background: #eff5ff;
}

.automate .process-icon-wrap {
    background: #edf9f1;
}

.grow .process-icon-wrap {
    background: #f5efff;
}

.process-card {
    background: white;
    border-radius: 28px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: 0.3s ease;
    min-height: 260px;
}

.process-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.step-number {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    color: white;
    font-size: 1.4rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

/* number colors */
.understand .step-number {
    background: #ff6b2c;
}

.build .step-number {
    background: #3d73ff;
}

.automate .step-number {
    background: #30b566;
}

.grow .step-number {
    background: #7a45ff;
}

.process-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.step-line {
    width: 70px;
    height: 4px;
    border-radius: 999px;
    margin: 0 auto 1.25rem;
}

.understand .step-line {
    background: #ff6b2c;
}

.build .step-line {
    background: #3d73ff;
}

.automate .step-line {
    background: #30b566;
}

.grow .step-line {
    background: #7a45ff;
}

.process-card p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
}

/* ===========================
   TABLET
=========================== */

@media (max-width: 1100px) {

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

    .process-grid::before {
        display: none;
    }

    .process-step {
        max-width: 500px;
        margin: 0 auto;
    }
}

/* ===========================
   MOBILE
=========================== */

@media (max-width: 768px) {

    .process-heading h2 {
        font-size: 2.2rem;
    }

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

    .process-card {
        min-height: auto;
    }

    .process-icon-wrap {
        width: 140px;
        height: 140px;
    }

    .process-card h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 1200px) {

    .hero-content h1 {
        font-size: 3.2rem;
    }

    .industries-heading h2,
    .process-heading h2,
    .expertise h2 {
        font-size: 2.5rem;
    }

    .process-card h3,
    .industry-card h3 {
        font-size: 1.7rem;
    }
}

@media (max-width: 992px) {

    .hero {
        text-align: center;
    }

    .hero-content p {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-btns {
        justify-content: center;
    }
}

@media (max-width: 480px) {

    h1 {
        font-size: 2rem !important;
        line-height: 1.2;
    }

    h2 {
        font-size: 1.8rem !important;
        line-height: 1.25;
    }

    h3 {
        font-size: 1.3rem !important;
    }

    p {
        font-size: 0.95rem;
    }

    .section {
        padding: 50px 0;
    }

    .container {
        padding: 0 1rem;
    }
}

/* ===========================
   LET'S TALK SECTION
=========================== */

.lets-talk {
    position: relative;
    overflow: hidden;
    background:
    linear-gradient(
        135deg,
        #111318 0%,
        #181c23 100%
    );
}

/* subtle orange glow */

.lets-talk::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background:
    radial-gradient(
        rgba(253,120,75,0.15),
        transparent 70%
    );

    top: -150px;
    left: -150px;
    border-radius: 50%;
    pointer-events: none;
}

.lets-talk::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background:
    radial-gradient(
        rgba(253,120,75,0.12),
        transparent 70%
    );

    bottom: -100px;
    right: -100px;
    border-radius: 50%;
    pointer-events: none;
}

.lets-talk-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

/* LEFT */

.lets-talk-content {
    position: relative;
    color: white;
    z-index: 2;
}

.lets-talk-content h2 {
    font-size: 4rem;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    max-width: 700px;
    color: white;
}

.lets-talk-text {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    max-width: 540px;
    margin-bottom: 2rem;
}

.trust-points {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    color: rgba(255,255,255,0.9);
}

.trust-item i {
    color: var(--primary);
    font-size: 1.3rem;
}

.mascot-wrap {
    margin-top: 2rem;
    position: relative;
    height: 320px;
    overflow: hidden;
}

.mascot-wrap img {
    position: absolute;
    bottom: -30px;
    left: 0;
    width: 480px;
    max-width: 100%;
}

/* FORM CARD */

.lets-talk-form-card {
    background:
    rgba(255,255,255,0.06);

    border:
    1px solid rgba(255,255,255,0.08);

    backdrop-filter: blur(20px);

    border-radius: 32px;
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
}

.lets-talk-form-card h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.lets-talk-form-card p {
    color: rgba(255,255,255,0.65);
    margin-bottom: 2rem;
}

.contact-form-modern {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form-modern input,
.contact-form-modern textarea,
.contact-form-modern select {

    width: 100%;
    padding: 1rem 1.2rem;

    border-radius: 16px;

    border:
    1px solid rgba(255,255,255,0.08);

    background:
    rgba(255,255,255,0.05);

    color: white;
    font-size: 0.95rem;
    font-family: inherit;
}

.contact-form-modern input::placeholder,
.contact-form-modern textarea::placeholder {
    color: rgba(255,255,255,0.4);
}

.contact-form-modern input:focus,
.contact-form-modern textarea:focus,
.contact-form-modern select:focus {
    outline: none;
    border-color: var(--primary);
}

.contact-form-modern button {
    margin-top: 1rem;
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
}

/* ===========================
   TABLET
=========================== */

@media (max-width: 1100px) {

    .lets-talk-wrapper {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .lets-talk-content {
        text-align: center;
    }

    .lets-talk-content h2 {
        max-width: 100%;
    }

    .lets-talk-text {
        margin-left: auto;
        margin-right: auto;
    }

    .trust-item {
        justify-content: center;
    }

    .mascot-wrap {
        display: flex;
        justify-content: center;
    }

    .mascot-wrap img {
        position: relative;
        width: 320px;
    }
}

/* ===========================
   MOBILE
=========================== */

@media (max-width: 768px) {

    .lets-talk-content h2 {
        font-size: 2.5rem;
    }

    .lets-talk-form-card {
        padding: 2rem;
        border-radius: 24px;
    }

    .lets-talk-form-card h3 {
        font-size: 1.6rem;
    }

    .mascot-wrap {
        height: 260px;
    }

    .mascot-wrap img {
        width: 260px;
    }
}
