@font-face {
    font-family: "OpenSauce";
    src: url('../assets/fonts/OpenSauceOne-Regular.ttf') format("truetype");
}

:root {
    --bg: #fff8f3;
    --accent: #ff7a00;
    --accent-deep: #ff5a00;
    --muted: #6b6b6b;
    --container: 1100px;
    --radius: 18px;
    --glass: rgba(255, 255, 255, 0.85);
    --form-bg: #ff6b00;
    --soft-border: rgba(0, 0, 0, 0.06);
    --section-gap: 54px;
}

body {
    margin: 0;
    font-family: "OpenSauce", "Inter", "Helvetica Neue", Arial, sans-serif;
    background: #fffaf4;
    color: #111;
}

/* Header */
.page-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 60px 8%;
}

.page-header h1 {
    font-size: 60px;
    color: #ff5a00;
    margin: 0;
    font-weight: 700;
}

.corner-arrow {
    width: 40px;
    height: 40px;
    border-top: 4px solid #ff5a00;
    border-right: 4px solid #ff5a00;
    transform: rotate(45deg);
}

/* Testimonials */
.testimonials {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px 8%;
    flex-wrap: wrap;
}

.testimonial {
    border: 1px solid #ff5a00;
    padding: 30px;
    width: 300px;
    border-radius: 4px;
    background: #fff;
}

.testimonial p {
    font-size: 20px;
    color: #333;
}

.testimonial span {
    display: block;
    margin-top: 20px;
    font-weight: 700;
    color: #ff5a00;
}

/* Trusted Section */
.trusted {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 80px 8%;
    flex-wrap: wrap;
}

.trusted-text {
    max-width: 400px;
}

.trusted-text h2 {
    color: #ff5a00;
    font-size: 60px;
    line-height: 1.2;
}

.trusted-text p {
    margin-top: 20px;
    line-height: 1.6;
    font-size: 20px;
}

.bubbles {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.bubble {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    text-align: center;
    padding: 20px;
    width: 100px;
    height: 100px;
    line-height: 1.1;
}

.large-enterprises {
    background: #ffb300;
}

.small-businesses {
    background: #ffe88c;
    color: #222;
}

.startups {
    background: #ff8a65;
}

.mid-size {
    background: #ff5722;
}

.company-stage {
    background: #ffd54f;
    color: #222;
}

.contact-wrap {
    display: flex;
    gap: 0;
    margin-top: 36px;
    margin-bottom: 36px;
    align-items: stretch;
    padding: 36px 8%;
}

.contact-left {
    flex: 1;
    background: linear-gradient(180deg, rgba(255, 160, 60, 0.25), rgba(255, 140, 30, 0.25));
    padding: 38px;
    border-radius: 24px 0 0 24px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 360px;
    box-sizing: border-box;
    background-image: url('../assets/bg.png');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.contact-left::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 100, 30, 0.75), rgba(255, 120, 40, 0.6));
    mix-blend-mode: multiply;
    opacity: 0.96;
    pointer-events: none;
}

.contact-left .left-inner {
    position: relative;
    z-index: 2;
}

.contact-left h3 {
    font-size: 44px;
    margin: 0 0 18px;
    line-height: 1.02;
    font-weight: 700;
}

.contact-left p.meta {
    margin: 0;
    opacity: 0.95;
    font-size: 13px;
}

.contact-left .social {
    margin-top: 20px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.95);
}

.contact-right {
    width: 420px;
    background: var(--form-bg);
    padding: 38px;
    border-radius: 0 24px 24px 0;
    color: white;
    box-sizing: border-box;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 14px;
}

label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9)
}

input[type="text"],
input[type="email"],
textarea {
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    color: white;
    font-size: 14px;
    outline: none;
    resize: vertical;
}

textarea {
    min-height: 96px;
    max-height: 300px;
}

.submit {
    margin-top: 8px;
    padding: 12px 18px;
    border-radius: 999px;
    border: none;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    background: linear-gradient(90deg, #ffd08a, #ffb04a);
    color: #6b2f00;
    box-shadow: 0 10px 28px rgba(255, 120, 30, 0.18);
}

.fineprint {
    margin-top: 8px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.85);
    opacity: 0.9;
}


@media (max-width:880px) {
    .hero {
      align-items: center
    }
  
    .content {
      flex-direction: column;
      gap: 18px;
      align-items: flex-start
    }
  
    .left-hero {
      max-width: 100%
    }
  
    .right-hero {
      text-align: left;
      max-width: 100%
    }
  
    .mid {
      flex-direction: column
    }
  
    .contact-wrap {
      flex-direction: column
    }
  
    .contact-right {
      width: 100%;
      border-radius: 0 0 24px 24px
    }
  
    .contact-left {
      border-radius: 24px 24px 0 0
    }
  }