/* === CSS Reset & Normalize === */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
body {
  line-height: 1.5;
  background: #FFF;
  color: #243244;
  font-family: 'Source Sans Pro', Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

/* === Typography === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #183152;
  font-weight: 700;
  margin-bottom: 16px;
}
h1 { font-size: 2.5rem; line-height: 1.15; margin-bottom: 20px; }
h2 { font-size: 2rem; line-height: 1.2; margin-bottom: 18px; }
h3 { font-size: 1.375rem; line-height: 1.25; margin-bottom: 14px; }
h4, h5, h6 { font-size: 1.125rem; margin-bottom: 8px; }

p, ul, ol, li {
  color: #243244;
  font-size: 1rem;
  margin-bottom: 12px;
}
.subheadline { font-size: 1.15rem; color: #36526a; margin-bottom: 18px; }
strong { font-weight: 700; }
a {
  color: #32A89E;
  text-decoration: none;
  transition: color 0.15s;
}
a:hover, a:focus { color: #097062; text-decoration: underline; }

ul, ol { padding-left: 24px; }

/* === Container & Layout Core === */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px; 
  padding-right: 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 768px) {
  .content-wrapper {
    gap: 32px;
  }
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FFF;
  border-radius: 20px;
  box-shadow: 0 2px 18px 0 rgba(32,52,102,0.06);
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #F9F9F9;
  border-radius: 16px;
  box-shadow: 0 2px 14px 0 rgba(32,52,102,0.05);
  padding: 24px;
  margin-bottom: 20px;
  position: relative;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #FFF7F3;
  border-radius: 18px;
  box-shadow: 0 2px 14px 0 rgba(236, 108, 48,0.08);
  margin-bottom: 24px;
  max-width: 380px;
  border-left: 6px solid #FC8C52;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* === Brand Color Palette for Warm & Friendly === */
:root {
  --primary: #183152;
  --secondary: #32A89E;
  --accent: #F9F9F9;
  --warm-bg: #FFFCF7;
  --warm1: #FC8C52;
  --warm2: #F5B572;
  --warm3: #FFE3CB;
  --border: #EDE5DC;
  --shadow: 0 2px 20px 0 rgba(250,144,74,0.08);
}

/* === Header & Navigation === */
header {
  background: var(--accent);
  box-shadow: 0 2px 12px rgba(236, 108, 48, 0.03);
  position: relative;
  width: 100%;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
}
header img[alt="Voltix Stream"] {
  height: 42px;
  width: auto;
}
nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: var(--primary);
  padding: 10px 8px;
  border-radius: 10px;
  transition: background .12s, color .14s;
}
nav a:hover, nav a:focus {
  background: var(--warm3);
  color: var(--warm1);
}
.cta-btn {
  background: var(--secondary);
  color: #FFF;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border-radius: 28px;
  font-size: 1rem;
  padding: 12px 32px;
  transition: background .18s, box-shadow .18s, color .14s;
  box-shadow: 0 3px 18px 0 rgba(50, 168, 158, .08);
  border: none;
  outline: none;
  text-align: center;
  display: inline-block;
  cursor: pointer;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--warm1);
  color: #FFF;
  box-shadow: 0 4px 24px 0 rgba(252,140,82,0.13);
}

@media (max-width: 1024px) {
  nav {
    gap: 16px;
  }
}

@media (max-width: 768px) {
  header .container { flex-direction: row; gap: 14px; }
  nav { display: none; }
  .cta-btn { display: none; }
}

/* === Mobile Burger Menu === */
.mobile-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  font-size: 2rem;
  background: var(--warm1);
  color: #FFF;
  border: none;
  border-radius: 16px;
  cursor: pointer;
  transition: background .15s;
  z-index: 2002;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--secondary);
}
@media (min-width: 769px) {
  .mobile-menu-toggle { display: none; }
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 100%;
  max-width: 360px;
  background: #FFF;
  box-shadow: -5px 0 20px 0 rgba(24,49,82,.14);
  z-index: 2001;
  transform: translateX(100%);
  transition: transform 0.28s cubic-bezier(.42,0,.58,1);
  display: flex;
  flex-direction: column;
  padding: 34px 18px 24px 28px;
}
.mobile-menu.open {
  transform: translateX(0%);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 24px;
  cursor: pointer;
  border-radius: 10px;
  padding: 4px 16px 8px 8px;
  transition: background .15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--warm3);
  color: var(--warm1);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.mobile-nav a {
  font-size: 1.1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--primary);
  padding: 14px 10px;
  border-radius: 14px;
  transition: background .12s, color .12s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--warm1);
  color: #FFF;
}

@media (min-width: 769px) {
  .mobile-menu { display: none; }
}

/* === HERO SECTIONS === */
.hero {
  background: linear-gradient(140deg, #FFF7F2 50%, #FFE3CB 100%);
  border-radius: 24px;
  margin-bottom: 48px;
  box-shadow: 0 2px 18px 0 rgba(252,140,82,0.07);
}
.hero .container {
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  align-items: flex-start;
  max-width: 700px;
}
.hero h1 {
  color: var(--warm1);
  font-size: 2.1rem;
}
@media (min-width: 1024px) {
  .hero h1 { font-size: 2.5rem; }
}

/* === Features & Cards === */
.features {
  background: var(--warm-bg);
  border-radius: 18px;
  box-shadow: 0 2px 14px 0 rgba(250,144,74,0.06);
  margin-bottom: 48px;
  padding: 40px 0;
}
.features .container {
  flex-direction: column;
}
.feature-grid, .method-grid, .blog-grid, .report-list, .pricing-table {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature-grid > div, .method-grid > div, .report-list > div, .pricing-table > div, .blog-grid > article {
  background: #FFF;
  border-radius: 14px;
  box-shadow: 0 2px 12px 0 rgba(24,49,82,0.08);
  padding: 24px 22px;
  flex: 1 1 265px;
  min-width: 220px;
  margin-bottom: 20px;
  transition: box-shadow .16s, transform .16s;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.feature-grid img, .method-grid img, .report-list img, .pricing-table img, .blog-grid img {
  width: 48px;
  height: 48px;
}
.feature-grid > div:hover, .method-grid > div:hover, .report-list > div:hover, .blog-grid > article:hover, .pricing-table > div:hover {
  box-shadow: 0 4px 24px 0 rgba(252,140,82,0.12);
  transform: translateY(-4px) scale(1.03);
}

@media (max-width: 900px) {
  .feature-grid > div, .method-grid > div, .report-list > div, .pricing-table > div, .blog-grid > article {
    flex: 1 1 100%;
    min-width: 0;
  }
}

/* === Service Lists, About Lists, Custom Lists === */
.service-list, .service-categories-list, .feature-list, .report-categories, .values-list, .highlighted-numbers, .next-steps-list, .expertise-list, .unique-selling-points ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.highlighted-numbers li {
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 8px;
}
.highlighted-numbers span {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--warm1);
  margin-right: 8px;
}

/* === CTA Section === */
.cta {
  background: #FFF5ED;
  border-radius: 22px;
  box-shadow: 0 2px 18px 0 rgba(252,140,82,0.13);
  margin-bottom: 48px;
  padding: 36px 16px;
}
.cta .content-wrapper {
  align-items: center;
  text-align: center;
}
.cta h2 {
  margin-bottom: 24px;
  color: var(--warm1);
}
.cta .cta-btn {
  margin-top: 6px;
  font-size: 1.13rem;
}

/* === Testimonials === */
.testimonials {
  background: linear-gradient(135deg, #FFF7F2 45%, #FFD8B0 100%);
  border-radius: 22px;
  box-shadow: 0 3px 22px 0 rgba(252,140,82,0.11);
  margin-bottom: 48px;
  padding: 42px 0;
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 28px;
}
.testimonial-card {
  background: #FFF;
  color: #243244;
  border-radius: 18px;
  box-shadow: 0 2px 14px 0 rgba(236, 108, 48,0.08);
  border-left: 6px solid var(--warm1);
  display: flex;
  flex-direction: column;
  max-width: 360px;
  min-width: 230px;
}
.testimonial-card p {
  font-size: 1.05rem;
  margin-bottom: 10px;
}
.testimonial-card strong {
  color: var(--warm2);
  font-weight: 700;
}
.partner-logos {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.partner-logos img {
  height: 38px;
  width: auto;
  opacity: 0.87;
}

/* === Footer === */
footer {
  background: #183152;
  color: #FFF;
  border-radius: 32px 32px 0 0;
  margin-top: 52px;
  padding: 28px 0 0 0;
}
footer .container {
  padding-bottom: 0;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
  border-bottom: 1px solid #294065;
  padding-bottom: 22px;
}
.footer-info {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.footer-info img {
  width: 55px;
  height: auto;
  margin-right: 4px;
}
.contact-info p {
  font-size: 0.98rem;
  color: #EFEFEF;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
}
.contact-info img {
  height: 20px;
  width: 20px;
  margin-right: 7px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  color: #E5FAF9;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 8px 0;
  transition: color .13s;
}
.footer-nav a:hover { color: var(--warm2); }
.social-media-links {
  display: flex;
  gap: 16px;
}
.social-media-links a {
  background: #EDF7F9;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7px;
  transition: background .14s;
}
.social-media-links a:hover { background: var(--secondary); }
.social-media-links img {
  width: 26px;
  height: 26px;
}
.footer-copy {
  text-align: center;
  color: #EFF8F6;
  padding: 16px 0 10px 0;
  font-size: 0.97rem;
  opacity: 0.79;
}

/* === About Details & Story Block === */
.about-details {
  background: #FFF;
  border-radius: 20px;
  box-shadow: 0 2px 12px 0 rgba(250,144,74,0.07);
  margin-bottom: 46px;
}
.mission-text, .brand-story {
  background: #FFF8F1;
  border-radius: 16px;
  box-shadow: 0 1px 12px 0 rgba(250,144,74,0.04);
  padding: 18px 14px;
  margin-bottom: 20px;
  color: #243244;
}
.values-list li {
  font-size: 1.04rem;
  color: var(--primary);
  padding-left: 8px;
  position: relative;
}
.values-list li:before {
  content: '•';
  color: var(--warm1);
  font-size: 1.15em;
  font-weight: bold;
  margin-right: 10px;
  position: absolute;
  left: -14px;
}

/* === Table-Like Pricing === */
.pricing-table > div {
  border-top: 6px solid var(--warm1);
}

/* === Forms (generic styles) === */
input, textarea, select, button {
  font-family: inherit;
}
input, textarea, select {
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 1rem;
  padding: 12px;
  width: 100%;
  background: #FAFCFF;
  margin-bottom: 16px;
  transition: border-color .13s, box-shadow .13s;
  outline: none;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--secondary);
  box-shadow: 0 2px 8px 0 rgba(50,168,158,0.09);
}
button {
  cursor: pointer;
}

/* === Blog Articles === */
.blog-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.blog-grid article {
  min-width: 240px;
}
.article-teasers ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.article-teasers li { color: var(--secondary); }

/* === Misc Utility & Help === */
.text-section {
  background: #FFF;
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 rgba(24,49,82,0.04);
  margin-bottom: 48px;
  padding: 40px 16px;
}
.text-section h1 {
  color: var(--warm1);
}
@media (min-width: 768px) {
  .text-section {
    padding: 50px 32px;
  }
}

.address, .business-hours, .map {
  background: #F9F9F9;
  border-radius: 14px;
  box-shadow: 0 2px 10px 0 rgba(120,80,30,0.06);
  padding: 18px 15px;
  margin-bottom: 18px;
  color: #243244;
}
.map img { width: 40px; height: 40px; margin-bottom: 10px; }
.support-contacts a { color: var(--secondary); font-weight: 700; }
.support-contacts a:hover { color: var(--warm1); }

/* === Responsive (Mobile First) === */
@media (max-width: 1024px) {
  .container { padding-left: 10px; padding-right: 10px; }
  .feature-grid, .method-grid, .report-list, .blog-grid, .pricing-table {
    gap: 12px;
  }
}
@media (max-width: 768px) {
  .container { padding-left: 5px; padding-right: 5px; }
  .content-wrapper, .section, .features, .cta, .about-details, .hero, .testimonials, .text-section {
    padding: 20px 8px;
    margin-bottom: 32px;
  }
  .feature-grid, .method-grid, .report-list, .blog-grid, .pricing-table {
    flex-direction: column;
    gap: 14px;
  }
  .testimonial-slider {
    flex-direction: column;
    gap: 14px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  header .container {
    flex-direction: row;
    gap: 8px;
    padding-top: 10px; padding-bottom: 10px;
  }
  footer .content-wrapper {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
    padding-bottom: 14px;
    border-bottom-width: 1px;
  }
}

/* === Spacing, Alignment, Microinteractions === */
section, .section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; }
.content-grid { display: flex; flex-wrap: wrap; gap: 20px; justify-content: space-between; }
.text-image-section { display: flex; align-items: center; gap: 30px; flex-wrap: wrap; }
.testimonial-card { display: flex; align-items: center; gap: 20px; padding: 20px; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/* === Cookie Consent Banner === */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 3000;
  background: #FC8C52;
  color: #FFF;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  padding: 22px 12px 20px 12px;
  box-shadow: 0 -2px 20px 0 rgba(252,140,82, 0.09);
  font-size: 1rem;
  animation: cookieBannerIn 0.4s cubic-bezier(.42,0,.58,1);
}
@keyframes cookieBannerIn {
  0% { transform: translateY(100%); opacity: 0; }
  80% { opacity: .8; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner.hidden {
  display: none !important;
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-btn {
  background: #FFF;
  color: var(--warm1);
  border: none;
  border-radius: 18px;
  padding: 10px 28px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 2px 10px 0 rgba(214, 110, 55, .08);
  margin-top: 6px;
  transition: background 0.15s, color 0.15s, box-shadow 0.14s;
  cursor: pointer;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--secondary);
  color: #FFF;
  box-shadow: 0 4px 18px 0 rgba(32,168,158,0.18);
}

/* === Cookie Modal === */
.cookie-modal-overlay {
  position: fixed;
  z-index: 4000;
  left: 0; top: 0; right:0; bottom:0;
  background: rgba(30,20,20,0.32);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: modalFadeIn 0.25s;
}
@keyframes modalFadeIn {
  0% { opacity:0; }
  100% { opacity: 1; }
}
.cookie-modal {
  background: #FFF;
  color: #243244;
  border-radius: 20px;
  box-shadow: 0 8px 34px 0 rgba(24,49,82,0.16);
  width: 98%;
  max-width: 450px;
  padding: 36px 24px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: modalPopIn 0.33s cubic-bezier(.62,0,.58,1);
}
@keyframes modalPopIn {
  0% { transform: scale(0.88); opacity:0; }
  100% { transform: scale(1); opacity:1; }
}
.cookie-modal h2 {
  color: var(--warm1);
  font-size: 1.33rem;
  margin-bottom: 12px;
}
.cookie-modal .cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #fff2e1;
}
.cookie-modal .cookie-category:last-child { border-bottom: none; }
.cookie-category-label { font-size: 1rem; color: #243244; }
.cookie-toggle {
  width: 42px; height: 22px;
  border-radius: 22px;
  background: #E9E9E9;
  position: relative;
  transition: background .12s;
  margin-left: 12px;
  outline: none;
  border: none;
  cursor: pointer;
  appearance: none;
}
.cookie-toggle:checked {
  background: var(--warm1);
}
.cookie-toggle::before {
  content: '';
  display: block;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #FFF;
  position: absolute;
  left: 2px; top: 2px;
  box-shadow: 0 1px 8px 0 rgba(200,130,40,0.10);
  transition: transform 0.13s;
}
.cookie-toggle:checked::before {
  transform: translateX(20px);
}
.cookie-modal .modal-btns {
  display: flex;
  gap: 13px;
  justify-content: flex-end;
  margin-top: 16px;
}
.cookie-modal .cookie-btn {
  min-width: 100px;
  background: var(--warm1);
  color: #FFF;
  border-radius: 18px;
}
.cookie-modal .cookie-btn.secondary {
  background: #FFF;
  color: var(--warm1);
  border: 1px solid var(--warm1);
}
.cookie-modal .cookie-btn.secondary:hover {
  background: var(--warm3);
}

/* Hide modal and overlay by default (JS will toggle display) */
.cookie-modal-overlay.hidden, .cookie-modal.hidden { display:none !important; }

/* === Animations & Transitions === */
.card, .feature-grid > div, .method-grid > div, .report-list > div, .pricing-table > div, .blog-grid > article, .testimonial-card, .cta-btn, .cookie-btn, .mobile-menu, .mobile-nav a {
  transition: box-shadow .18s, transform .16s, background .14s, color .13s;
}

/* === Accessibility & Touch Targets === */
p, li, a, .cta-btn, .cookie-btn, .mobile-nav a {
  font-size: 1rem;
  min-height: 42px;
}

/* === Preventing Overlap & Spacing Consistency === */
section > *, .section > *, .container > *.section {
  margin-bottom: 20px;
}
footer .content-wrapper > * { margin-bottom: 0; }

/* === Utility Classes === */
.hidden { display: none !important; }
.text-center { text-align: center; }
.w-100 { width: 100%; }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mt-2 { margin-top: 2rem !important; }

/* ==========================
   END OF STYLE.CSS
============================= */