:root {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: #0d1f3a;
  background-color: #fff6ef;
  --brand-orange: #ff9013;
  --brand-coral: #f25912;
  --brand-cyan: #0ba6df;
  --card-bg: rgba(255, 255, 255, 0.2);
  --border-soft: rgba(13, 31, 58, 0.1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  background: linear-gradient(to bottom,
    #ff6fb3 0%,
    #ff9013 15%,
    #f25912 30%,
    #0ba6df 45%,
    rgba(11, 166, 223, 0.4) 60%,
    rgba(255, 255, 255, 0.6) 75%,
    #ffffff 90%
  );
  color: #0d1f3a;
}

.gradient-shell {
  min-height: 100vh;
  padding: 0 clamp(16px, 5vw, 72px) 56px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin: 0;
  width: 100%;
}

/* Global reset for consistent layout */
* {
  box-sizing: border-box;
}

body, html {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

/* Default header (for index.html - transparent with white text) */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  background: transparent;
  padding: 24px 32px;
  border-radius: 0;
  box-shadow: none;
  width: 100%;
  margin: 0;
}

/* White header for other pages */
.site-header.white-header {
  background: #ffffff;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header.white-header .brand-copy {
  color: #0d1f3a;
}

.site-header.white-header .brand-name {
  color: #0d1f3a;
}

.site-header.white-header .brand-tagline {
  color: #60708f;
}

.site-header.white-header .main-nav a {
  color: #0d1f3a;
}

.site-header.white-header .dropdown-trigger {
  color: #0d1f3a;
}

.site-header.white-header .hamburger span {
  background: #0d1f3a;
}

.hero-band {
  background: transparent;
  border-radius: 0;
  padding: 48px clamp(16px, 5vw, 72px) 64px;
  color: #f4ebeb;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-link {
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.brand-link:hover {
  opacity: 0.85;
}

.brand-logo {
  width: 110px;
  height: 110px;
  object-fit: contain;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
  color: #ffffff;
}

.brand-name {
  font-weight: 700;
  font-size: 1.8rem;
  text-transform: capitalize;
  color: #ffffff;
}

.brand-tagline {
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  opacity: 0.95;
  color: #ffffff;
  font-weight: 400;
}

.main-nav {
  display: flex;
  gap: 32px;
  font-weight: 700;
}

/* Hamburger Menu Button */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: #ffffff;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.main-nav {
  display: flex;
  gap: 32px;
  font-weight: 700;
  align-items: center;
}

.main-nav a {
  font-size: 1rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: #e6ebf1;
  transition: transform 0.2s ease, opacity 0.2s ease;
  font-weight: 600;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  transform: translateY(-2px);
  opacity: 0.7;
}

.nav-dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-trigger {
  font-size: 1rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: #0d1f3a;
  transition: transform 0.2s ease, opacity 0.2s ease;
  font-weight: 700;
  cursor: pointer;
}

.dropdown-trigger:hover {
  transform: translateY(-2px);
  opacity: 0.7;
}

.dropdown-trigger.active {
  font-weight: 700;
  opacity: 0.8;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(13, 31, 58, 0.15);
  padding: 12px 0;
  min-width: 280px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  z-index: 1000;
  margin-top: 12px;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: block;
  padding: 14px 24px;
  color: #0d1f3a !important;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: background 0.2s ease, color 0.2s ease;
  background: transparent;
}

.dropdown-item:hover {
  background: #f5f5f5;
  color: #0d1f3a !important;
}

.hero {
  max-width: 1040px;
  margin: 0 auto;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
  gap: 32px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: left;
  color: #fff;
}

.hero-visual {
  margin: 0;
  text-align: center;
}

.hero-visual img {
  width: min(420px, 90vw);
  filter: drop-shadow(0 18px 40px rgba(242, 89, 18, 0.25));
}

.subhead {
  align-self: flex-start;
  font-size: 1rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.85);
  padding: 6px 18px;
  border-radius: 999px;
}

.hero h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  color: #fff;
}

.search-bar {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 999px;
  padding: 12px 12px 12px 20px;
  gap: 12px;
  box-shadow: 0 16px 52px rgba(0, 0, 0, 0.12);
}

.search-icon {
  font-size: 1.4rem;
  color: #8b8b8b;
}

.search-bar input {
  flex: 1;
  border: none;
  font-size: 1rem;
  outline: none;
}

.search-bar button {
  border: none;
  background: linear-gradient(135deg, #0ba6df, #0476a5);
  color: #fff;
  font-weight: 600;
  padding: 12px 32px;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.search-bar button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 25px rgba(11, 166, 223, 0.35);
}

.hero-note {
  font-size: 1rem;
  opacity: 0.9;
  color: rgba(255, 255, 255, 0.88);
}

.daily-pulse {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(100deg, var(--brand-orange), var(--brand-coral));
  color: #fff;
  padding: 24px 32px;
  border-radius: 24px;
  gap: 24px;
  box-shadow: 0 18px 48px rgba(242, 89, 18, 0.3);
}

.pulse-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pulse-label {
  font-weight: 600;
  letter-spacing: 0.08em;
}

.pulse-cta {
  border: 2px solid rgba(255, 255, 255, 0.85);
  background: transparent;
  color: #fff;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.pulse-cta:hover {
  background: #fff;
  color: var(--brand-coral);
}

.marketing-polls {
  background: transparent;
  border-radius: 0;
  padding: 80px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  box-shadow: none;
  margin-top: 0;
}

.polls-header-center {
  text-align: center;
  margin-bottom: 48px;
}

.polls-header-center h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  color: #ffffff;
  font-weight: 700;
}

.polls-header-center p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.95);
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.7;
}



.polls-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
  width: 100%;
  margin: 0;
  align-items: start;
}

.sector-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-start;
  margin-bottom: 0;
  align-content: flex-start;
  height: 100%;
}

.sector-tabs button {
  border: none;
  border-radius: 50px;
  padding: 16px 28px;
  min-width: 160px;
  height: 56px;
  background: #696fc7;
  color: #ffffff;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 4px 12px rgba(105, 111, 199, 0.3);
  flex: 0 0 auto;
}

.sector-tabs button:nth-child(4n + 1) {
  background: #696fc7;
}

.sector-tabs button:nth-child(4n + 2) {
  background: #a7aae1;
}

.sector-tabs button:nth-child(4n + 3) {
  background: #f5d3c4;
}

.sector-tabs button:nth-child(4n + 4) {
  background: #f2aebb;
}

.sector-tabs button.active {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.18);
  opacity: 0.95;
}

.sector-tabs button:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}

.poll-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 32px;
  border: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.poll-card-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.poll-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #60708f;
  margin-bottom: 4px;
}

.poll-question {
  font-weight: 600;
  color: #0d1f3a;
  max-width: 320px;
}

.poll-desc {
  color: #4a5870;
  line-height: 1.5;
}

.subsections {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}

.subsection {
  border: 1px solid rgba(13, 31, 58, 0.1);
  border-radius: 20px;
  padding: 14px 18px;
  text-align: left;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.subsection span {
  font-weight: 600;
}

.subsection small {
  color: #5c6c8d;
}

.subsection strong {
  font-size: 1.5rem;
}

.subsection.active {
  border-color: var(--brand-cyan);
  box-shadow: 0 10px 24px rgba(11, 166, 223, 0.25);
  transform: translateY(-2px);
}

.chart-shell {
  background: #fff;
  border-radius: 24px;
  padding: 12px 12px 0;
  border: 1px solid rgba(13, 31, 58, 0.08);
}

.chart-shell svg {
  width: 100%;
  height: auto;
}

.grid-lines line {
  stroke: rgba(13, 31, 58, 0.08);
  stroke-dasharray: 6 6;
}

.chart-fill {
  opacity: 0.45;
}

.sector-list {
  background: #ffffff;
  border-radius: 20px;
  padding: 32px 28px;
  border: none;
  height: auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-top: 24px;
}

.sector-list h4 {
  margin-bottom: 16px;
  font-size: 1.1rem;
}

.sector-list ol {
  list-style: decimal;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sector-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  color: #1b2a43;
  border-bottom: 1px dashed rgba(13, 31, 58, 0.08);
  padding-bottom: 6px;
}

.sector-list li strong {
  color: var(--brand-coral);
}

.topic-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 18px;
  justify-content: center;
  max-width: 1100px;
  margin: 8px auto 0;
}

.topic-cloud button {
  border: none;
  border-radius: 999px;
  padding: 12px 28px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  background: #7a60ff;
  box-shadow: 0 12px 20px rgba(54, 8, 145, 0.25);
  transition: transform 0.15s ease, opacity 0.3s ease;
}

.topic-cloud button:nth-child(4n) {
  background: #07a38d;
  box-shadow: 0 12px 20px rgba(7, 163, 141, 0.2);
}

.topic-cloud button:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}

.data-section {
  background: rgba(255, 255, 255, 0.88);
  border-radius: 28px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  box-shadow: 0 25px 60px rgba(13, 31, 58, 0.08);
}

.data-section header h2 {
  font-size: 2rem;
  font-weight: 700;
}

.data-section header p {
  max-width: 720px;
  font-size: 1rem;
  opacity: 0.9;
  margin-top: 8px;
}

.data-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.data-grid article {
  background: var(--card-bg);
  border-radius: 22px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 200px;
}

.data-grid article img {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.4);
  padding: 12px;
}

.data-section.inverse {
  background: linear-gradient(135deg, rgba(5, 18, 38, 0.96), rgba(6, 31, 61, 0.85));
  color: #f4f6fb;
}

.data-grid article h3 {
  font-size: 1.2rem;
}

.data-grid article p {
  opacity: 0.9;
  line-height: 1.5;
}

.tag {
  align-self: flex-start;
  font-size: 0.85rem;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.services {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 28px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 20px 55px rgba(13, 31, 58, 0.07);
}

.services header h2 {
  font-size: 1.8rem;
}

.services ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.services li {
  flex: 1 1 280px;
  background: rgba(255, 255, 255, 0.7);
  padding: 16px 20px;
  border-radius: 16px;
  font-weight: 500;
  line-height: 1.4;
}

.community-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  min-height: 500px;
  position: relative;
}

.community-left {
  background: linear-gradient(135deg, #0ba6df, #0476a5);
  color: #ffffff;
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.community-left h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: #ffffff;
  line-height: 1.2;
}

.community-left p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
  max-width: 500px;
}

.floating-logos-left {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 1;
}

.floating-logos-right {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 1;
}

.floating-logo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #ffffff;
  padding: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.floating-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

.community-right {
  background: #ffffff;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.mobile-mockup {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.testimonials-section {
  background: transparent;
  border-radius: 0;
  padding: 48px 32px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  box-shadow: none;
}

.testimonials-section header {
  text-align: center;
}

.testimonials-section header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #0d1f3a;
  margin: 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1400px;
  margin: 0 auto;
}

.testimonial-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  min-height: 320px;
  height: 100%;
}

.testimonial-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.testimonial-logo {
  margin-bottom: 4px;
  min-height: 50px;
  display: flex;
  align-items: flex-start;
}

.testimonial-logo img {
  max-width: 140px;
  max-height: 50px;
  object-fit: contain;
  width: auto;
  height: auto;
}

.testimonial-quote {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.quote-mark {
  font-size: 3.5rem;
  font-weight: 300;
  color: #e0e0e0;
  line-height: 0.8;
  display: block;
  margin-bottom: -10px;
  font-family: Georgia, serif;
}

.testimonial-quote p {
  color: #0d1f3a;
  line-height: 1.5;
  font-size: 0.95rem;
  margin-top: 4px;
  flex: 1;
}

.testimonial-company {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(13, 31, 58, 0.1);
}

.testimonial-company p {
  color: #0d1f3a;
  font-weight: 600;
  font-size: 0.9rem;
  margin: 0;
}

.why-creavision-section {
  background: transparent;
  border-radius: 0;
  padding: 64px 32px;
  display: flex;
  flex-direction: column;
  gap: 48px;
  box-shadow: none;
}

.why-creavision-section header {
  text-align: center;
}

.why-creavision-section header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0d1f3a;
  margin-bottom: 16px;
  background: linear-gradient(90deg, #ff6fb3, #ff9013);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.why-creavision-section header p {
  font-size: 1.1rem;
  color: #4a5870;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.7;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.why-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.why-card h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #0d1f3a;
  margin: 0;
}

.why-card p {
  font-size: 1.05rem;
  color: #4a5870;
  line-height: 1.6;
  margin: 0;
}

.why-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  margin-top: 20px;
}

footer {
  text-align: center;
  margin-top: auto;
  padding: 48px 24px 32px;
  color: #ffffff;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}

.footer-links {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: opacity 0.2s ease;
}

.footer-links a:hover {
  opacity: 0.7;
}

.footer-copyright {
  font-size: 0.9rem;
  opacity: 0.85;
  margin: 0;
}

@media (max-width: 900px) {
  .gradient-shell {
    margin: 0;
    border-radius: 0;
  }

  .site-header {
    flex-direction: column;
    text-align: center;
  }

  .main-nav {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .polls-layout {
    grid-template-columns: 1fr;
    box-shadow: none;
    width: 100%;
    margin: 0;
  }

  .poll-card {
    border-radius: 28px;
  }

  .sector-list {
    border-radius: 28px;
    border-left: 1px solid rgba(13, 31, 58, 0.08);
    margin-top: 24px;
  }

  .community-section {
    grid-template-columns: 1fr;
  }

  .floating-logos-left,
  .floating-logos-right {
    position: static;
    transform: none;
    flex-direction: row;
    justify-content: center;
    margin-top: 24px;
  }

  .community-left,
  .community-right {
    padding: 32px 24px;
  }

  .community-left h2 {
    font-size: 2rem;
  }

  .search-bar {
    flex-direction: column;
    border-radius: 32px;
  }

  .search-bar button {
    width: 100%;
  }

  .daily-pulse {
    flex-direction: column;
    align-items: flex-start;
  }

  .polls-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .gradient-shell {
    padding: 24px 16px 40px;
  }

  .brand {
    flex-direction: column;
  }

  .subhead {
    align-self: center;
  }

  .sector-tabs {
    max-height: 240px;
    overflow-y: auto;
  }

  .sector-tabs button {
    width: 100%;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-section {
    padding: 32px 20px;
  }

  .testimonial-card {
    padding: 24px;
    min-height: auto;
  }
}

@media (max-width: 1200px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}



/* Special dropdown menu for Insights */
.insights-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(13, 31, 58, 0.2);
  padding: 24px;
  min-width: 800px;
  max-width: 900px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  z-index: 1000;
  margin-top: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.nav-dropdown:hover .insights-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.insights-menu-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.insights-menu-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: #EB5B00;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  padding: 0 12px;
}

/* Insights dropdown menu items - black text */
.insights-menu-item {
  display: block;
  padding: 12px 16px;
  color: #0d1f3a !important;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  background: transparent;
  border-radius: 12px;
  position: relative;
}

.insights-menu-item:hover {
  background: #f5f5f5;
  color: #0d1f3a;
  transform: translateX(4px);
}

.insights-menu-item.special {
  background: #e8f4f8;
  color: #0ba6df;
  font-weight: 600;
  border-left: 3px solid #0ba6df;
}

.insights-menu-item.special:hover {
  background: #d4eef6;
  color: #0891c7;
  transform: translateX(4px) scale(1.02);
}

@media (max-width: 900px) {
  .insights-dropdown-menu {
    min-width: 90vw;
    grid-template-columns: 1fr;
    gap: 20px;
    left: 5vw;
    transform: translateX(0) translateY(-10px);
  }

  .nav-dropdown:hover .insights-dropdown-menu {
    transform: translateX(0) translateY(0);
  }
}


@media (max-width: 600px) {
  .footer-links {
    flex-direction: column;
    gap: 16px;
  }
  
  .footer-links a {
    font-size: 0.95rem;
  }
}


/* ========================================
   COMPREHENSIVE MOBILE RESPONSIVE STYLES
   ======================================== */

/* Tablet and below (1024px) */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .polls-header-center h2 {
    font-size: 2rem;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .why-creavision-section header h2 {
    font-size: 2rem;
  }

  .community-left h2 {
    font-size: 2rem;
  }
}

/* Desktop navigation styles */
@media (min-width: 769px) {
  .hamburger {
    display: none;
  }
  
  .main-nav {
    display: flex;
    gap: 32px;
    font-weight: 700;
    align-items: center;
    position: static;
    width: auto;
    height: auto;
    background: transparent;
    flex-direction: row;
    padding: 0;
    box-shadow: none;
    overflow: visible;
  }
}

/* Mobile landscape and below (768px) */
@media (max-width: 768px) {
  /* Ensure no gaps on mobile */
  body, html {
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: hidden;
    width: 100%;
  }

  .gradient-shell {
    margin: 0 !important;
    padding: 0 !important;
    width: 100%;
  }

  /* Show hamburger menu */
  .hamburger {
    display: flex !important;
  }

  /* Hide main nav by default on mobile */
  .main-nav {
    position: fixed !important;
    top: 0 !important;
    right: -100vw !important;
    left: auto !important;
    width: 100vw !important;
    height: 100vh !important;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    flex-direction: column !important;
    gap: 0 !important;
    padding: 80px 0 24px !important;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3) !important;
    transition: right 0.3s ease !important;
    z-index: 1001 !important;
    overflow-y: auto !important;
    margin: 0 !important;
    border: none !important;
    transform: translateX(0) !important;
  }

  .main-nav.active {
    right: 0 !important;
    left: auto !important;
  }

  .main-nav > a {
    padding: 16px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff !important;
    font-size: 1.1rem;
    text-decoration: none;
    display: block;
  }

  .main-nav > a:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: none;
  }

  /* Dropdown adjustments for mobile */
  .nav-dropdown {
    width: 100%;
  }

  .dropdown-trigger {
    display: block;
    width: 100%;
    padding: 16px 24px;
    color: #ffffff !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
    font-size: 1.1rem;
  }

  .dropdown-trigger:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: none;
  }

  .dropdown-menu,
  .insights-dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 0;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    grid-template-columns: 1fr;
  }

  .nav-dropdown.active .dropdown-menu,
  .nav-dropdown.active .insights-dropdown-menu {
    max-height: 600px;
  }

  .dropdown-item,
  .insights-menu-item {
    padding: 12px 24px 12px 40px;
    color: #ffffff !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    text-decoration: none;
    display: block;
  }

  .dropdown-item:hover,
  .insights-menu-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: none;
  }

  .insights-menu-title {
    color: rgba(255, 255, 255, 0.7);
    padding: 12px 24px 8px 40px;
    font-size: 0.9rem;
  }

  /* Site header mobile adjustments - FIXED LAYOUT */
  .site-header {
    padding: 16px 20px;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
  }

  .site-header.white-header {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }

  /* Brand stays on the left */
  .brand {
    flex-direction: column !important;
    align-items: flex-start !important;
    text-align: left !important;
  }

  .brand-name {
    font-size: 1.5rem;
  }

  .brand-tagline {
    font-size: 0.8rem;
  }

  .gradient-shell {
    padding: 0 16px 40px;
    gap: 24px;
  }

  .site-header {
    padding: 16px 20px;
    flex-direction: column;
    gap: 16px;
  }

  .brand-name {
    font-size: 1.5rem;
  }

  .brand-tagline {
    font-size: 0.8rem;
  }

  .main-nav {
    gap: 20px;
    font-size: 0.9rem;
  }

  .main-nav a {
    font-size: 0.9rem;
  }

  .hero-band {
    padding: 32px 16px 48px;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .search-bar {
    flex-direction: column;
    padding: 16px;
    gap: 12px;
  }

  .search-bar input {
    width: 100%;
    padding: 8px 0;
  }

  .search-bar button {
    width: 100%;
    padding: 14px 24px;
  }

  .hero-note {
    font-size: 0.95rem;
  }

  .topic-cloud {
    gap: 12px;
  }

  .topic-cloud button {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .marketing-polls {
    padding: 48px 16px 24px;
  }

  .polls-header-center h2 {
    font-size: 1.8rem;
  }

  .polls-header-center p {
    font-size: 0.95rem;
  }

  .polls-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .sector-tabs {
    gap: 10px;
  }

  .sector-tabs button {
    min-width: 140px;
    height: 48px;
    padding: 12px 20px;
    font-size: 0.85rem;
  }

  .poll-card {
    padding: 24px;
  }

  .subsections {
    grid-template-columns: 1fr;
  }

  .community-section {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .community-left {
    padding: 32px 24px;
  }

  .community-left h2 {
    font-size: 1.8rem;
  }

  .community-left p {
    font-size: 1rem;
  }

  .community-right {
    min-height: 300px;
  }

  .testimonials-section {
    padding: 32px 16px;
  }

  .testimonials-section header h2 {
    font-size: 1.8rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .testimonial-card {
    padding: 20px;
    min-height: auto;
  }

  .why-creavision-section {
    padding: 48px 16px;
  }

  .why-creavision-section header h2 {
    font-size: 1.8rem;
  }

  .why-creavision-section header p {
    font-size: 1rem;
  }

  .why-grid {
    gap: 20px;
  }

  .why-card {
    padding: 28px;
  }

  .why-card h3 {
    font-size: 1.5rem;
  }

  .why-card p {
    font-size: 0.95rem;
  }

  .dropdown-menu {
    min-width: 240px;
  }

  .insights-dropdown-menu {
    min-width: 90vw;
    max-width: 90vw;
    left: 5vw;
    transform: translateX(0) translateY(-10px);
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 20px;
  }

  .nav-dropdown:hover .insights-dropdown-menu {
    transform: translateX(0) translateY(0);
  }
}

/* Mobile portrait (480px) */
@media (max-width: 480px) {
  .gradient-shell {
    padding: 0 12px 32px;
  }

  .site-header {
    padding: 12px 16px;
  }

  .brand-logo {
    width: 80px;
    height: 80px;
  }

  .brand-name {
    font-size: 1.3rem;
  }

  .brand-tagline {
    font-size: 0.75rem;
  }

  .main-nav {
    gap: 16px;
    flex-direction: column;
    width: 100%;
  }

  .main-nav a {
    font-size: 0.85rem;
  }

  .hero-band {
    padding: 24px 12px 32px;
  }

  .hero h1 {
    font-size: 1.5rem;
  }

  .subhead {
    font-size: 0.85rem;
    padding: 5px 14px;
  }

  .search-bar {
    padding: 12px;
  }

  .search-icon {
    font-size: 1.2rem;
  }

  .search-bar input {
    font-size: 0.9rem;
  }

  .search-bar button {
    padding: 12px 20px;
    font-size: 0.9rem;
  }

  .hero-note {
    font-size: 0.85rem;
  }

  .topic-cloud button {
    padding: 8px 16px;
    font-size: 0.85rem;
  }

  .marketing-polls {
    padding: 32px 12px 20px;
  }

  .polls-header-center h2 {
    font-size: 1.5rem;
  }

  .polls-header-center p {
    font-size: 0.9rem;
  }

  .sector-tabs {
    gap: 8px;
  }

  .sector-tabs button {
    min-width: 100%;
    height: 44px;
    padding: 10px 16px;
    font-size: 0.8rem;
  }

  .poll-card {
    padding: 20px;
  }

  .poll-label {
    font-size: 0.75rem;
  }

  .poll-question {
    font-size: 0.9rem;
  }

  .poll-desc {
    font-size: 0.85rem;
  }

  .subsection {
    padding: 12px 16px;
  }

  .subsection strong {
    font-size: 1.3rem;
  }

  .community-left {
    padding: 24px 20px;
  }

  .community-left h2 {
    font-size: 1.5rem;
  }

  .community-left p {
    font-size: 0.9rem;
  }

  .testimonials-section {
    padding: 24px 12px;
  }

  .testimonials-section header h2 {
    font-size: 1.5rem;
  }

  .testimonial-card {
    padding: 16px;
  }

  .testimonial-logo img {
    max-width: 120px;
    max-height: 40px;
  }

  .quote-mark {
    font-size: 3rem;
  }

  .testimonial-quote p {
    font-size: 0.85rem;
  }

  .testimonial-company p {
    font-size: 0.8rem;
  }

  .why-creavision-section {
    padding: 32px 12px;
  }

  .why-creavision-section header h2 {
    font-size: 1.5rem;
  }

  .why-creavision-section header p {
    font-size: 0.9rem;
  }

  .why-card {
    padding: 20px;
  }

  .why-card h3 {
    font-size: 1.3rem;
  }

  .why-card p {
    font-size: 0.85rem;
  }

  .why-image {
    height: 140px;
  }

  footer {
    padding: 32px 16px 24px;
  }

  .footer-links {
    gap: 12px;
    flex-direction: column;
  }

  .footer-links a {
    font-size: 0.85rem;
  }

  .footer-copyright {
    font-size: 0.8rem;
  }
}

/* Extra small devices (360px) */
@media (max-width: 360px) {
  .hero h1 {
    font-size: 1.3rem;
  }

  .polls-header-center h2 {
    font-size: 1.3rem;
  }

  .community-left h2 {
    font-size: 1.3rem;
  }

  .testimonials-section header h2 {
    font-size: 1.3rem;
  }

  .why-creavision-section header h2 {
    font-size: 1.3rem;
  }
}

/* Case Studies Section - 2x2 Grid Layout */
.case-studies-section {
  background: transparent;
  padding: 0;
  margin: 80px 0;
}

.case-studies-header {
  text-align: center;
  margin-bottom: 48px;
  padding: 0 32px;
}

.case-studies-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0d1f3a;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.case-studies-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.case-study-card {
  background: #ffffff;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  cursor: pointer;
  min-height: 400px;
}

.case-study-card:hover {
  background: #BF124D;
}

.case-study-card:hover .case-study-content {
  color: white;
}

.case-study-card:hover .case-study-content h3 {
  color: white;
}

.case-study-card:hover .case-study-content p {
  color: white;
}

.case-study-image {
  height: 200px;
  overflow: hidden;
}

.case-study-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.case-study-content {
  padding: 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: all 0.3s ease;
}

.case-study-content h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #0d1f3a;
  margin-bottom: 16px;
  line-height: 1.3;
  transition: all 0.3s ease;
}

.case-study-content p {
  color: #4a5870;
  line-height: 1.6;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}





/* Tablet Responsive for Case Studies */
@media (max-width: 1024px) {
  .case-studies-section {
    margin: 60px 0;
  }

  .case-studies-header {
    margin-bottom: 40px;
    padding: 0 24px;
  }

  .case-studies-header h2 {
    font-size: 2.2rem;
  }

  .case-studies-grid {
    padding: 0 24px;
  }

  .case-study-content {
    padding: 28px;
  }

  .case-study-content h3 {
    font-size: 1.3rem;
  }
}

/* Mobile Responsive for Case Studies */
@media (max-width: 768px) {
  .case-studies-section {
    margin: 48px 0;
  }

  .case-studies-header {
    margin-bottom: 32px;
    padding: 0 20px;
  }

  .case-studies-header h2 {
    font-size: 1.8rem;
  }

  .case-studies-grid {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0 16px;
  }

  .case-study-card {
    min-height: 350px;
    margin-bottom: 0;
  }

  .case-study-image {
    height: 180px;
  }

  .case-study-content {
    padding: 24px 20px;
  }

  .case-study-content h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
  }

  .case-study-content p {
    font-size: 0.9rem;
    line-height: 1.5;
  }
}

/* Small Mobile Responsive */
@media (max-width: 480px) {
  .case-studies-section {
    margin: 40px 0;
  }

  .case-studies-header {
    margin-bottom: 24px;
    padding: 0 16px;
  }

  .case-studies-header h2 {
    font-size: 1.5rem;
  }

  .case-studies-grid {
    padding: 0 12px;
  }

  .case-study-card {
    min-height: 320px;
  }

  .case-study-image {
    height: 160px;
  }

  .case-study-content {
    padding: 20px 16px;
  }

  .case-study-content h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }

  .case-study-content p {
    font-size: 0.85rem;
    line-height: 1.4;
  }
}

/* Fixed Footer Styles */
.fixed-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #0ba6df, #0476a5);
  color: white;
  padding: 12px 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  visibility: visible;
  opacity: 1;
}

.fixed-footer-content {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
}

.fixed-footer-text {
  font-weight: 500;
  flex-shrink: 0;
}

.fixed-footer-form {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  max-width: 400px;
}

.fixed-footer-email-input {
  flex: 1;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 0.85rem;
  outline: none;
  transition: all 0.3s ease;
}

.fixed-footer-email-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.fixed-footer-email-input:focus {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}

.fixed-footer-cta {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
}

.fixed-footer-cta:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}

.fixed-footer-close {
  background: none;
  border: none;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 50%;
  transition: background 0.3s ease;
}

.fixed-footer-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Mobile responsive for fixed footer */
@media (max-width: 768px) {
  .fixed-footer {
    padding: 12px 16px;
    font-size: 0.8rem;
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .fixed-footer-content {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }

  .fixed-footer-form {
    width: 100%;
    max-width: none;
  }

  .fixed-footer-email-input {
    padding: 10px 12px;
    font-size: 0.8rem;
  }

  .fixed-footer-cta {
    padding: 10px 16px;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .fixed-footer {
    padding: 8px 12px;
  }

  .fixed-footer-text {
    font-size: 0.75rem;
  }

  .fixed-footer-cta {
    padding: 5px 10px;
    font-size: 0.75rem;
  }
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.mobile-menu-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: #0d1f3a;
  margin: 5px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #ffffff;
    flex-direction: column;
    padding: 80px 24px 24px;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
  }

  .main-nav.active {
    right: 0;
  }

  .main-nav a {
    color: #0d1f3a !important;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    width: 100%;
  }

  .nav-dropdown {
    width: 100%;
  }

  .dropdown-trigger {
    width: 100%;
    text-align: left;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    margin-top: 0;
    background: #f8f9fa;
  }

  .dropdown-item {
    padding: 10px 16px;
  }

  .insights-dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    min-width: 100%;
    max-width: 100%;
    grid-template-columns: 1fr;
    padding: 16px;
    background: #f8f9fa;
    margin-top: 0;
  }

  .mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
  }

  .mobile-menu-overlay.active {
    display: block;
  }

  .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }

  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }
}

/* Ensure footer is responsive on all screen sizes */
@media (max-width: 768px) {
  footer > div {
    padding: 0 24px !important;
  }

  footer > div > div:first-child {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }

  footer h3 {
    font-size: 1rem !important;
  }

  footer p {
    font-size: 0.9rem !important;
  }

  footer a {
    font-size: 0.9rem !important;
  }
}

@media (max-width: 480px) {
  footer > div {
    padding: 0 16px !important;
  }

  footer > div > div:first-child {
    gap: 32px !important;
  }

  footer h3 {
    font-size: 0.95rem !important;
  }

  footer p,
  footer a {
    font-size: 0.85rem !important;
  }
}
