html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  overflow-y: auto; 
  font-family: 'Roboto', sans-serif;
  background: #fff;
  line-height: 1.6;
  position: static;
}

body {
      letter-spacing: 0.03em;
}

* {
  box-sizing: border-box;
}

.navbar {
  display: flex;
  justify-content: space-between; /* space between left + right sections */
  align-items: center;
  padding: 1.5rem 1.5rem;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: white;
  z-index: 1000;
}

/* Hamburger icon */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  cursor: pointer;
  z-index: 1101;
}
.hamburger span {
  height: 3px;
  background: #333;
  border-radius: 2px;
  width: 100%;
}

.navbar-left {
  display: flex;
  align-items: center;
}


/* Mobile menu overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  display: none;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 24px;
  z-index: 1100;
}

.mobile-menu-overlay.active {
  display: flex;
}

/* Close button (top-right) */
.close-menu-btn {
  background: none;
  border: none;
  font-size: 28px;
  position: absolute;
  top: 18px;
  right: 20px;
  cursor: pointer;
  color: #333;
}

.profile-link {
    color: #7b7b7b;
    font-weight: 300;
    font-size: 14px
}

.profile-link a {
      color: #7b7b7b;
      transition: color 0.2s ease;
}

.profile-link a:hover {
      color: #018ddc;
}


.platform-showcase .text-content a:not(.cta-btn) {
    color:#000000;
    transition: color 0.2s ease;
}

.platform-showcase .text-content a:not(.cta-btn):hover {
    color:#018ddc;
}

.platform-showcase .text-content a.cta-btn:not(.cta-btn-secondary) {
    color: #ffffff !important;
}

.platform-showcase .text-content a.cta-btn:not(.cta-btn-secondary):hover {
    color: #ffffff !important;
}

.platform-showcase .light a:not(.cta-btn) {
    color:#ffffff;
}

.navbar-brands-btn {
  background: transparent;
  color: #03a5ff !important;
  border: 1.5px solid #03a5ff;
  padding: 0.3rem 1rem;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 400;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  margin: 0 !important;
}

.navbar-brands-btn:hover {
  background: #018ddc;
  border-color: #018ddc;
  color: #fff !important;
}

/* Nav links inside overlay */
.mobile-nav-links {
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
.mobile-nav-links a {
  font-size: 20px;
  color: #333;
  text-decoration: none;
  font-weight: 400;
  transition: color 0.2s ease;
}

.mobile-nav-links a:not(.signup):hover {
  color: #018ddc;
}

.mobile-nav-links a.signup {
  font-weight: bold;
}

.mobile-nav-links a.signup {
  display: inline-block !important;
  width: auto !important;
  text-align: left;
  padding: 0.3rem 1rem;
  background: #03a5ff;
  color: white !important;
  border-radius: 6px;
  white-space: nowrap;
  font-weight: bold;
  transition: background 0.2s ease;
}

.mobile-nav-links a.signup:hover {
  background: #0288cc;
  color: #fff !important;
}




/* Hide desktop links on mobile */
@media (max-width: 768px) {
  .mobile-hidden {
    display: none !important;
  }
  .hamburger {
    display: flex;
  }
  .mobile-nav-links a.signup {
    display: inline-block !important;
    width: auto !important;
    text-align: left;
  }
  
}


.navbar-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  width: 100%;
  z-index: 1000;
  position: absolute;
}

.navbar-footer {
  background: #000;
}

.navbar .logo, .connect-footer .logo-footer {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 1.2rem;
  white-space: nowrap;
}

.navbar .logo img {
  height: 32px;
  margin-right: 0.5rem;
}

.connect-footer .logo-footer img {
    height: 28px;
    margin-right: 0.5rem;
}


.navbar a {
  text-decoration: none;
  color: #727276;
  margin-left: 1rem;
  font-weight: 400;
  font-size: 1rem;
  display: flex;
  align-items: center;
}

.navbar-footer a {
  text-decoration: none;
  color: #777b7e;
  margin-left: 1rem;
  font-weight: 500;
  font-size: 0.9rem;
}

.navbar .signup, .navbar-footer .signup {
  background: #03a5ff;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  white-space: nowrap;
}

.navbar-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.logo img {
  height: 34px;
}

.nav-links-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-links-left a,
.nav-links-right a {
  text-decoration: none;
  color: #727276;
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.03em;
  transition: color 0.2s ease;
}

.nav-links-left a:hover,
.nav-links-right a:not(.signup):not(.navbar-brands-btn):hover {
  color: #018ddc;
}

.nav-links-right {
  display: flex;
  align-items: center;
  gap: 1.3rem;
}

.nav-links-right .signup {
  background: #03a5ff;
  color: white;
  padding: 0.3rem 1rem;
  border-radius: 6px;
  white-space: nowrap;
  margin: 0 !important;
  transition: background 0.2s ease;
}

.nav-links-right .signup:hover {
  background: #0288cc;
  color: #fff !important;
}

.login-nav {
  margin: 0 !important;
}

.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 1.5rem;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 0;
}

.hero .hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  text-align: left;
}

.hero h1 {
  font-size: 3.7rem;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.1em;
}

.hero .prehead {
  font-size: 23px;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.hero .subhead, .hero p {
  font-size: 1.2rem;
  color: #eee;
  margin-bottom: 2rem;
  font-weight: 400;
}

a.cta-btn {
  display: inline-block;
  padding: 8px 14px;
  font-size: 0.9rem;
  background: #03a5ff;
  color: #ffffff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  transition: background 0.3s;
}

a.cta-btn:hover {
  background: #0288cc;
  color: #ffffff!important;
}
a.sign-up:hover {
  background: #0288cc;
}

.top-section {
  background: #0b0b0b;
}

.dark {
      color: #ffffff;
}

.dark h2 {
  color: #ffffff;
}

.light {
     color: #6d6c6c; 
}

.light h2 {
  color: #212428;
}

.highlight-text {
  color: #747474;
}

.margin-top-bottom {
  margin: 24px 0;
}

.highlight-color {
  background: linear-gradient(180deg, #018ddc, #00d4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-split, .section-split-platform-showcase {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 2rem;
  padding: 4rem 2rem;
  position: relative;
  z-index: 1;
  min-height: 100vh;
}

.section-split-front {
    display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 2rem;
  padding: 3rem 2rem;
  position: relative;
  z-index: 1;
}
.section-split {
  padding-top: var(--top-nav-height);
}

.section-split-platform-showcase {
  padding-top: 340px;
}

.section-split.reverse {
  flex-direction: row-reverse;
}

.light-blue {
    background: #f2f7fa;
}

.section-split .text,
.section-split .text-top,
.section-split .text-right,
.section-split-platform-showcase .text,
.section-split-platform-showcase .text-top {
  flex: 1 1 40%;
  max-width: 40%;
  padding: 2rem;
}

.section-split .image,
.section-split .profile-image,
.section-split .events-image,
.section-split-platform-showcase .image,
.section-split-platform-showcase .profile-image {
  flex: 1 1 60%;
  max-width: 60%;
  padding: 2rem;
}

.section-split .image img,
.section-split-platform-showcase .image img,
.section-split .profile-image img,
.section-split .events-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

.section-split .profile-image img {
  max-width: 96%;
}


.section-split .text h2,
.section-split .text-top h2,
.section-split .text-right h2,
.section-split-platform-showcase .text-top h2 {
  font-size: 4rem;
  line-height: 1.1em;
  margin: 1rem 0 1.5rem;
}

.section-split .text p,
.section-split .text-right p,
.section-split .text-top p, .section-split .text ul,
.section-split .text-right ul,
.section-split .text-top ul {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.cta-banner {
  width: 100%;
  text-align: center;
  padding: 20px 10px;
  margin-top: 80px;
  margin-bottom: 80px;
}

.modal-body-requirements .cta-banner h2 {
  margin: 0;
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.3;
}


.highlight-section {
  padding: 4rem 2rem;
  color: #fff;
  min-height: 100vh;
  margin-top: 2rem;
}

.highlight-section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.highlight-section p {
  font-size: 1.1rem;
  color: #444;
  max-width: 700px;
  margin: 1.5rem auto;
}

.highlight-section-box {
  padding: 0.2rem 2rem 2rem 0;
}

.highlight-section-box h3 {
  margin-top: 0;
  margin-bottom: 14px;
}

.highlight-section-outer-box {
  text-align: left;
  padding: 3rem 2rem;
  border-radius: 12px;
  max-width: 460px;
}

.highlight-section-outer-box h2 {
  font-size: 4rem;
  line-height: 1.1em;
  margin: 1rem 0 34px;
}

.highlight-section-outer-box p {
  color: #ffffff;
}

.dark-background {
  position: relative;
  background: url('https://www.traverse-connect.com/images/home/connect-opportunities-campaigns-background.jpg') center center / cover no-repeat;
  background-size: cover;
  z-index: 1;
  overflow: hidden;
}

.dark-background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 0;
}

.dark-background > * {
  position: relative;
  z-index: 1;
}

.background-dots {
  background-image: radial-gradient(#c1e0ff 1px, transparent 1px);
  background-size: 20px 20px;
}

.bottom-section {
  position: relative;
  background: linear-gradient(to right, rgba(0, 0, 0, 1) 30%, rgba(0, 0, 0, 0) 78%), url(https://www.traverse-connect.com/images/home/connect-creator-with-camera-home.jpg) center center / cover no-repeat;
  color: #fff;
  padding: 2rem;
  z-index: 1;
  overflow: hidden;
}

.platform-showcase {
  background: #fff;
  padding: 6rem 2rem 6rem;
  text-align: center;
  position: relative;
  z-index: 2;
  min-height: 100vh;
  margin-bottom: 220px;
  overflow: visible;
}

.platform-header {
  background: #fff;
  padding: 6rem 2rem 0rem 2rem;
  text-align: center;
  position: relative;
  z-index: 2;
  overflow: visible;
}


.platform-showcase .text-content {
  max-width: 650px;
  margin: 6rem auto 4rem;
}

.platform-header .text-content {
  max-width: 650px;
  margin: 6rem auto 0rem;
}

.platform-showcase h2, .platform-header h2 {
  font-size: 3.6rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.1;
}

.platform-showcase h2 span {
  color: #000;
}

.platform-showcase p, .platform-header p {
  font-size: 1.2rem;
  color: #727276;
}

.screenshot {
  position: relative;
  height: 0;
  padding-bottom: 40%; /* Keeps space for the image if needed */
  overflow: visible;
}


.platform-showcase .screenshot img,
.overlap-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.overlap-image {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 100%;
  height: auto;
  z-index: 10;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}


.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: none;
}

.section-two-col {
  margin-top: -120px; /* Adjust this based on your overlap size */
  position: relative;
  z-index: 1;
}

.section-two-col .text-small {
  flex: 1 1 40%;
  max-width: 40%;
  padding: 2rem;
}
.small-grey-text {
    color: #81818dcc;
    font-size: 19px;
}
.section-two-col .text-large {
  flex: 1 1 60%;
  max-width: 60%;
  padding: 2rem;
}

.section-two-col .text-large h2 {
  font-size: 4rem;
  line-height: 1.1em;
  margin: 0;
  color: #fff;
}

.section-two-col .icon-small {
  width: 55px;
  margin-bottom: 1rem;
}

.footer-subbrand a {
        color: #888888;
        transition: color 0.2s ease;
}

.footer-subbrand a:hover {
        color: #018ddc;
}

@media (max-width: 768px) {
  .section-two-col .text-small,
  .section-two-col .text-large {
    max-width: 100%;
    flex: 1 1 100%;
    padding: 1.5rem;
  }

  .section-two-col .text-large h2 {
    font-size: 3rem;
    margin-top: 2rem;
  }
  .navbar .logo img {
      height: 28px;
  }
  .connect-footer .logo-footer img {
      height: 26px;
  }
}

.platform-showcase.alt-showcase {
  min-height: auto;
  padding: 4rem 2rem;
  background: #f9f9f9; /* or a subtle gradient */
  margin-bottom: 0px;
}

.platform-showcase.alt-showcase .text-content {
  margin: 1.5rem auto;
}

.platform-showcase.seo-copy {
  min-height: auto;
  padding: 3rem 1.5rem 2.5rem;
  margin-bottom: 0;
  text-align: left;
  background: #f7f9fc;
}

.platform-showcase.seo-copy + .platform-showcase.alt-showcase {
  padding-top: 2.5rem;
  padding-bottom: 4rem;
}

.platform-showcase.alt-showcase h2 {
  font-size: 3.6rem;
  margin-bottom: 1rem;
}

.platform-showcase.alt-width .text-content {
  max-width: 680px;
} 

.connect-footer {
  background: #ffffff;
  padding: 3rem 2rem 2rem;
  font-family: 'Roboto', sans-serif;
  color: #1a1a1a;
}

.connect-footer .footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.connect-footer .footer-col {
  flex: 1 1 250px;
}

.connect-footer .brand h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.connect-footer .brand p {
    color: #5c5c5c;
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 300;
    max-width: 340px;
    padding-right: 4rem;
}

.connect-footer .social-icons {
  display: flex;
  gap: 1rem;
}

.connect-footer .social-icons a {
  color: #9a9a9a;
  font-size: 1.2rem;
  transition: color 0.2s;
}

.connect-footer .social-icons a:hover {
  color: #018ddc;
}

.connect-footer .footer-col h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.connect-footer .footer-col a {
  display: block;
  color: #6f6f6f;
  text-decoration: none;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.connect-footer .footer-col a:hover {
  color: #018ddc;
}

.connect-footer .footer-bottom {
  text-align: center;
  margin-top: 3rem;
  padding-top: 1rem;
  border-top: 1px solid #eaeaea;
  color: #888;
  font-size: 0.9rem;
}

.connect-footer--slim {
  padding: 2rem 1.5rem 1.5rem;
}

.connect-footer--slim .footer-content--slim {
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
  max-width: 520px;
}

.connect-footer--slim .footer-slim-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.connect-footer--slim .footer-slim-brand p {
  color: #5c5c5c;
  font-size: 0.95rem;
  font-weight: 300;
  margin: 0.75rem 0 0;
  max-width: 320px;
  padding-right: 0;
}

.connect-footer--slim .footer-slim-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0.5rem;
}

.connect-footer--slim .footer-slim-links a {
  color: #6f6f6f;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.connect-footer--slim .footer-slim-links a:hover {
  color: #018ddc;
}

.connect-footer--slim .footer-slim-links__sep {
  color: #c8c8c8;
  font-size: 0.95rem;
  line-height: 1;
}

.connect-footer--slim .social-icons {
  justify-content: center;
}

.connect-footer--slim .footer-bottom {
  margin-top: 1.75rem;
  padding-top: 0.85rem;
}

.cursor {
  display: inline-block;
  color: #747474;
  animation: blink 0.8s steps(2, start) infinite;
}

@keyframes blink {
  to {
    visibility: hidden;
  }
}


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

  .connect-footer .footer-col {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .connect-footer .social-icons {
    justify-content: center;
  }
    .connect-footer .brand p {
      padding-right:0px;
  }
  
  .section-split-front {
          padding: 0rem;
  }
}


@media (max-width: 768px) {
  .section-split, .section-split .text-right, .section-split .text, .section-split .text-top {
    padding: 1rem;
    max-width: 100%;
  }

  .section-split .profile-image img,
  .section-split .events-image img {
    max-width: 100%;
  }

  .section-split .text h2,
  .section-split .text-right h2,
  .section-split .text-top h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    margin-top: 0;
  }

  .navbar,
  .navbar-footer {
    padding: 1.5rem 1rem;
  }

  .navbar-footer .logo img {
    display: none;
  }

  .hero .hero-content {
    text-align: center;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .nav-links {
    text-align: right;
  }
  
  .text-large {
      padding: 20rem 1rem 1rem 1rem;
  }
  
.section-split,
.section-split-platform-showcase,
.section-two-col {
  flex-wrap: wrap;
  flex-direction: column;
  padding: 0.5rem 0; /* Add this */
  margin-top: 0;
}


.section-split .text,
.section-split .text-top,
.section-split .text-right,
.section-split-platform-showcase .text,
.section-split-platform-showcase .text-top,
.section-split .image,
.section-split .profile-image,
.section-split .events-image,
.section-split-platform-showcase .image,
.section-split-platform-showcase .profile-image {
  max-width: 100%;
  flex: 1 1 100%;
  padding: 1rem;
  text-align: center;
}
.section-two-col {
    flex-wrap: wrap;
    flex-direction: column;
    margin-top :0px;
    
}

  .section-two-col .text-large {
    max-width: 100%;
    flex: 1 1 100%;
    padding: 1.5rem;
    text-align: center;
     display: flex;
    justify-content: center;
    align-items: center;
  }
  .section-two-col .text-small {
    max-width: 100%;
    flex: 1 1 100%;
    padding: 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* aligns content to the top */
}

  .platform-showcase {
          margin-bottom: 0px;
  }
  .platform-showcase h2, .platform-header h2 {
    font-size: 3.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.1;
    }
    
.section-split .text,
.section-split .profile-image {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-direction: column;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.section-split .profile-image img {
  margin: 0 auto;
  display: block;
  max-width: 100%;
  height: auto;
}
.section-split > div {
  margin-bottom: 1rem; /* or even 0.5rem */
}
.section-split.reverse {
    gap:0px;
}
.section-split .text .small-text {
            justify-content: start;
}
.navbar .logo, .connect-footer .logo-footer {
    justify-content: center;
}
}

.location-info {
    padding: 14px 0px 8px 0px;
    color: #8e8e8e;
    font-size: 15px;
    display: flex;            /* Make the container a flex container */
    align-items: center;   
}

.location-info__icon {
    font-size: 15px;
    color: #03a5ff;
    display: flex;            /* Flex display for icon centering */
    justify-content: center;  /* Center horizontally */
    align-items: center;      /* Center vertically */
    margin-right: 8px;        /* Add some space between the icon and the text */
    width: 24px;              
    height: 24px;
    background-color: #f0f0f0; /* Background color for visibility */
    padding: 5px;             /* Padding around the icon */
    border-radius: 50%;     
}

.package-comparison {
  padding: 60px 20px;
  background: #f9f9f9;
}

.package-comparison h2 {
    font-size: 4rem;
    line-height: 1.1em;
    margin: 10rem 0 4rem;
    text-align: center;
}

.pricing-table {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  margin: 44px auto 44px;
  width: fit-content;
}

.table-column {
  flex: 1;
  min-width: 220px;
  border-left: 1px solid #ddd;
  background: #fff;
}

.table-column.heading-column {
  background: #f0f0f0;
  font-weight: 500;
  border-left: none;
}

.table-heading {
  padding: 20px;
  font-weight: 700;
  background: #fff;
  text-align: center;
  border-bottom: 1px solid #ddd;
  min-height: 106px; 
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.table-column.highlighted .table-heading {
  background: linear-gradient(180deg, #018ddc, #00d4ff);
  color: white;
}

.price {
  display: block;
  font-size: 22px;
  margin-top: 5px;
}

.table-row {
  padding: 16px;
  text-align: center;
  border-bottom: 1px solid #eee;
  font-size: 15px;
}

.table-column .table-row i.fa-check {
  color: #3cba54;
  font-size: 16px;
}

.table-column .table-row:last-child {
  border-bottom: none;
}

.small-table-text {font-size:14px;margin-left:84px;}

/* ── Brief form ── */
.brief-form-section {
  max-width: 640px;
  margin: 8rem auto 4rem;
  padding: 0 2rem;
}
.brief-form-section h2 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.brief-form-section p.brief-intro {
  color: #727276;
  font-size: 1rem;
  margin-bottom: 2rem;
  font-weight: 300;
}
.brief-form .form-group {
  margin-bottom: 1.2rem;
}
.brief-form label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  margin-bottom: 6px;
}
.brief-form input[type="text"],
.brief-form input[type="email"],
.brief-form textarea,
.brief-form select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 15px;
  font-family: 'Roboto', sans-serif;
  color: #333;
  background: #fff;
  transition: border-color 0.2s;
  box-sizing: border-box;
}
.brief-form input:focus,
.brief-form textarea:focus,
.brief-form select:focus {
  outline: none;
  border-color: #03a5ff;
}
.brief-form textarea {
  min-height: 120px;
  resize: vertical;
}
.brief-form .radio-group {
  display: flex;
  gap: 1.5rem;
  margin-top: 4px;
}
.brief-form .radio-group label {
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}
.brief-form .submit-btn {
  width: 100%;
  padding: 0.9rem;
  background: #03a5ff;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 0.5rem;
}
.brief-form .submit-btn:hover {
  background: #0288cc;
}
.brief-form .honeypot-field {
  display: none;
}
.form-message {
  margin-top: 1rem;
  padding: 12px 16px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 300;
  display: none;
}
.form-message.success {
  background: #e6f9f0;
  border: 1px solid #bfe7cc;
  color: #002414;
  display: block;
}
.form-message.error {
  background: #fdf0f0;
  border: 1px solid #f5c6cb;
  color: #721c24;
  display: block;
}

.contact-options {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.contact-options .cta-btn-primary {
  background: #03a5ff;
  color: #fff !important;
}

.contact-options .cta-btn-primary:hover {
  background: #0288cc;
  color: #fff !important;
}

.contact-options .cta-btn-secondary {
  background: #fff;
  color: #03a5ff !important;
  border: 1.5px solid #03a5ff;
}

.contact-options .cta-btn-secondary:hover {
  background: #03a5ff;
  color: #fff !important;
}
