/* ---- 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;
    background: none;
    box-sizing: border-box;
}
html {
    height: 100%;
    box-sizing: border-box;
}
*, *::before, *::after { box-sizing: inherit; }
body { min-height: 100vh; line-height: 1.6; }

/* Remove list styles on ul/ol elements */
ul, ol {
    list-style: none;
    margin: 0;
    padding: 0;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; border: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; border: none; background: none; }


/* ---- FONT FACE ---- */
@import url('https://fonts.googleapis.com/css?family=Orbitron:600,700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

:root {
  --primary: #1A2233;
  --secondary: #00B6C8;
  --accent: #F5F7FA;
  --brand-yellow: #FFD37D;
  --brand-orange: #FF8963;
  --brand-rose: #F6A6B2;
  --shadow-color: rgba(30,26,40,0.07);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 8px;
  --max-width: 1200px;
  --transition: all 0.2s cubic-bezier(.4,0,.2,1);
  --overlay: rgba(20,26,38, 0.9);
  --font-display: 'Orbitron', Arial, Helvetica, sans-serif;
  --font-body: 'Roboto', Arial, Helvetica, sans-serif;
}


/* ---- BASE TYPOGRAPHY & COLORS ---- */
html {
  font-size: 16px;
  background: var(--accent);
  scroll-behavior: smooth;
}
body {
  color: var(--primary);
  font-family: var(--font-body);
  font-size: 1rem;
  background: var(--accent);
}
h1, .hero h1 {
  font-size: 2.5rem;
  font-family: var(--font-display);
  color: var(--primary);
  font-weight: 900;
  margin-bottom: 18px;
  letter-spacing: 0.01em;
}
h2 {
  color: var(--primary);
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  color: var(--primary);
  font-size: 1.25rem;
  margin-bottom: 10px;
  font-weight: 600;
  font-family: var(--font-display);
}
p, li, blockquote, cite, span {
  color: var(--primary);
  font-size: 1rem;
  font-family: var(--font-body);
}
blockquote {
  font-size: 1.08rem;
  color: var(--primary);
  font-style: italic;
  margin-bottom: 8px;
  line-height: 1.7;
}
cite {
  font-size: 0.98rem;
  font-style: normal;
  color: var(--secondary);
  margin-left: 8px;
}

/* ---- CONTAINER, SPACING AND FLEX LAYOUTS ---- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  padding: 0 20px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.card-container, .card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 18px var(--shadow-color);
  padding: 28px 24px;
  transition: box-shadow 0.15s;
  min-width: 245px;
}
.card:hover {
  box-shadow: 0 8px 28px rgba(26, 34, 51, 0.13);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.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;
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.trusted-by img {
  max-width: 140px;
  margin-top: 12px;
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 18px var(--shadow-color);
  padding: 20px;
  margin-bottom: 20px;
  transition: box-shadow var(--transition);
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px rgba(26,34,51,0.13);
}
.testimonial-card blockquote {
  flex: 1;
  color: var(--primary);
  font-weight: 500;
}
.testimonial-card cite {
  min-width: 120px;
  text-align: left;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: var(--radius-sm);
  box-shadow: 0 3px 14px var(--shadow-color);
  padding: 18px 16px;
}

.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 16px;
  align-items: center;
}

/* ----- HERO ----- */
.hero {
  background: linear-gradient(100deg, #FFD37D 0%, #F6A6B2 50%, #FF8963 100%);
  background-size: 250% 250%;
  border-radius: var(--radius-lg);
  margin-bottom: 44px;
  box-shadow: 0 8px 36px 0 rgba(255,187,100,0.09);
  padding-bottom: 32px;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 18px;
}
.hero h1, .hero h2 {
  color: var(--primary);
  text-shadow: 0 3px 12px rgba(255,205,119,0.12);
}
.hero p {
  color: var(--primary);
  font-size: 1.18rem;
  font-weight: 400;
  margin-bottom: 10px;
}

/* ---- HEADER & NAVIGATION ---- */
header {
  background: #fff;
  box-shadow: 0 3px 16px var(--shadow-color);
  border-bottom-left-radius: var(--radius-md);
  border-bottom-right-radius: var(--radius-md);
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  min-height: 72px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 24px 16px 24px;
}
.logo-link img {
  height: 44px;
}
nav a {
  color: var(--primary);
  font-family: var(--font-body);
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  transition: background var(--transition), color var(--transition);
  font-size: 1rem;
}
nav a:hover,
nav a:focus {
  background: var(--brand-yellow);
  color: var(--primary);
}
.cta-primary {
  background: var(--secondary);
  color: #fff !important;
  padding: 9px 24px;
  border-radius: var(--radius-md);
  font-size: 1.1rem;
  font-weight: 700;
  font-family: var(--font-display);
  box-shadow: 0 2px 8px var(--shadow-color);
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
  margin-left: 18px;
  letter-spacing: 0.01em;
  display: inline-block;
}
.cta-primary:hover, .cta-primary:focus {
  background: var(--brand-orange);
  color: var(--primary) !important;
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 8px 24px rgba(255,137,99,0.12);
}
nav .cta-primary { margin-left: auto; }

/* ----- MOBILE NAVIGATION ----- */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 24px;
  top: 16px;
  font-size: 2rem;
  background: var(--brand-yellow);
  color: var(--primary);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  border: none;
  z-index: 250;
  transition: background var(--transition), color var(--transition);
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--brand-orange);
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  z-index: 5000;
  background: var(--overlay);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.6,.04,.98,.335);
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  margin: 22px 24px 6px auto;
  font-size: 2.1rem;
  color: #fff;
  background: var(--brand-rose);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--brand-orange);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin: 24px 54px ;
  align-items: flex-start;
}
.mobile-nav a {
  color: #fff;
  padding: 11px 16px;
  font-size: 1.22rem;
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-weight: 600;
  background: rgba(255,255,255,0.06);
  transition: background var(--transition), color var(--transition);
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: var(--brand-yellow);
  color: var(--primary);
}

@media (max-width: 1020px) {
  header nav {
    gap: 12px;
    padding: 14px 14px 8px 14px;
  }
  .logo-link img { height: 38px; }
  .cta-primary { margin-left: 12px; padding: 8px 18px; font-size: 1rem; }
}

@media (max-width: 900px) {
  header nav { gap: 7px; padding: 12px 7px 4px 9px; }
  .cta-primary { margin-left: 9px; padding: 8px 9px; font-size: 0.97rem; }
}

@media (max-width: 760px) {
  header nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

/* ---- LISTS & FEATURE ICONS ---- */
ul li img,
ol li img {
  width: 32px;
  height: 32px;
  margin-right: 11px;
  vertical-align: middle;
  border-radius: var(--radius-sm);
  box-shadow: 0 1px 5px var(--shadow-color);
  background: var(--brand-yellow);
  padding: 4px;
  object-fit: contain;
  display: inline-block;
}
ul li, ol li {
  margin-bottom: 14px;
  padding-left: 0;
  display: flex;
  align-items: center;
  gap: 11px;
}
ul li:last-child, ol li:last-child { margin-bottom: 0; }
ul > li > strong {
  color: var(--secondary);
}
ul > li > span {
  color: #555;
  font-size: 0.99rem;
}

/* ---- BUTTONS & LINKS ---- */
button, .btn {
  padding: 0.7em 1.8em;
  border-radius: var(--radius-md);
  background: var(--brand-yellow);
  color: var(--primary);
  border: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  transition: background var(--transition), color var(--transition), transform var(--transition);
  margin-right: 12px;
}
button:hover, .btn:hover, button:focus, .btn:focus {
  background: var(--brand-orange);
  color: #fff;
  transform: translateY(-2px) scale(1.03);
}

/* ---- CARDS ---- */
.card {
  border-radius: var(--radius-md);
  box-shadow: 0 4px 18px var(--shadow-color);
  background: #fff;
  padding: 28px 24px;
  transition: box-shadow var(--transition);
}
.card:hover {
  box-shadow: 0 8px 28px rgba(255, 201, 99, 0.17);
}

/* ---- FORMS ---- */
input, textarea, select {
  border-radius: var(--radius-sm);
  border: 1px solid #e7e7e7;
  padding: 12px 16px;
  margin-bottom: 14px;
  background: #fff;
  outline: none;
  transition: border var(--transition), box-shadow var(--transition);
  font-family: var(--font-body);
  font-size: 1rem;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid var(--secondary);
  box-shadow: 0 2px 8px rgba(0,182,200,0.13);
}
label {
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--primary);
  display: block;
}

/* ---- FOOTER ---- */
footer {
  background: #fff;
  border-top-left-radius: var(--radius-lg);
  border-top-right-radius: var(--radius-lg);
  box-shadow: 0 -4px 24px var(--shadow-color);
  margin-top: 48px;
  padding: 38px 0 30px 0;
}
footer .container {
  padding: 0 20px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
  justify-content: space-between;
}
footer .footer-menu a {
  color: var(--secondary);
  font-size: 1rem;
  font-family: var(--font-display);
  margin-right: 14px;
  font-weight: 500;
  transition: color var(--transition);
}
footer .footer-menu a:hover,
footer .footer-menu a:focus {
  color: var(--brand-orange);
  text-decoration: underline;
}
footer .text-section {
  color: #555;
  font-size: 0.96rem;
}
footer img {
  margin-top: 7px;
  max-width: 60px;
}

/* ---- COOKIE CONSENT BANNER ---- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #fff4e7;
  box-shadow: 0 -4px 30px rgba(250,160,60,0.15);
  z-index: 9999;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 18px 22px 28px;
  border-top-left-radius: var(--radius-lg);
  border-top-right-radius: var(--radius-lg);
  animation: cookieDropIn 0.45s cubic-bezier(.6,.04,.98,.335) both;
}
@keyframes cookieDropIn {
  0% { transform: translateY(64px); opacity: 0; }
  100% { transform: none; opacity: 1; }
}
.cookie-banner__text {
  flex: 1 1 0;
  color: #222;
  font-size: 1rem;
  margin-right: 8px;
}
.cookie-banner__actions {
  display: flex;
  gap: 14px;
  align-items: center;
}
.cookie-banner button, .cookie-banner .btn {
  border-radius: var(--radius-md);
  padding: 9px 18px;
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-display);
  border: none;
  transition: background var(--transition), color var(--transition);
}
.cookie-banner .btn-accept { background: var(--brand-yellow); color: var(--primary); }
.cookie-banner .btn-accept:hover, .cookie-banner .btn-accept:focus { background: var(--brand-orange); color: #fff; }
.cookie-banner .btn-reject { background: #fff; color: var(--primary); border: 1px solid var(--brand-yellow); }
.cookie-banner .btn-reject:hover, .cookie-banner .btn-reject:focus { background: var(--brand-rose); color: #fff; border: 1px solid var(--brand-orange); }
.cookie-banner .btn-settings { background: var(--secondary); color: #fff; }
.cookie-banner .btn-settings:hover, .cookie-banner .btn-settings:focus { background: var(--primary); color: var(--brand-yellow); }

/* ---- COOKIE PREFERENCE MODAL ---- */
.cookie-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(32,23,11,0.46);
  z-index: 10001;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.25s both;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal__dialog {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 44px rgba(250,160,60,0.13);
  max-width: 99vw;
  width: 420px;
  padding: 32px 32px 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: modalPop 0.32s cubic-bezier(.7,.2,.53,1.24) both;
}
@keyframes modalPop {
  0% { transform: scale(0.85) translateY(32px); opacity: 0; }
  85% { transform: scale(1.07) translateY(-7px); opacity: 1; }
  100% { transform: scale(1) translateY(0); }
}
.cookie-modal__actions {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.cookie-modal__close {
  position: absolute;
  top: 17px; right: 32px;
  font-size: 1.45rem;
  background: #f6a6b2;
  color: #fff;
  border-radius: 50%;
  width: 33px; height: 33px;
  display: flex; align-items: center; justify-content: center;
  border: none;
  transition: background var(--transition);
  z-index: 3;
}
.cookie-modal__close:hover, .cookie-modal__close:focus {
  background: var(--brand-orange);
}
.cookie-modal label {
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 9px;
}
.cookie-modal input[type="checkbox"] {
  accent-color: var(--secondary);
  width: 22px; height: 22px;
}
.cookie-modal .cookie-category-desc {
  font-size: 0.98rem;
  color: #666;
  margin-left: 23px;
  margin-bottom: 8px;
}


/* ---- TEXT & LINKS ---- */
a {
  color: var(--secondary);
  transition: color var(--transition);
}
a:hover, a:focus {
  color: var(--brand-orange);
  text-decoration: underline;
}


/* ---- RESPONSIVE LAYOUTS ---- */
@media (max-width: 1100px) {
  .container { padding: 0 13px; }
  .footer-menu { gap: 8px; }
}
@media (max-width: 900px) {
  .section, footer { padding: 32px 8px; }
}
@media (max-width: 760px) {
  .container { padding: 0 6px; }
  .content-wrapper, .footer .content-wrapper {
    flex-direction: column;
    gap: 15px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .card-container, .card-grid, .footer-menu {
    flex-direction: column;
    gap: 12px;
  }
  .testimonial-card, .feature-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
    padding: 16px 10px;
  }
  .hero {
    padding: 32px 8px 18px 8px;
    border-radius: var(--radius-md);
  }
  footer { padding: 21px 0 19px 0; }
  .cookie-banner { flex-direction: column; gap: 15px; padding: 18px 10px 14px 10px; font-size: 0.99rem; }
  .cookie-modal__dialog { max-width: 96vw; width: 99%; padding: 17px 9px 13px 11px; }
}

@media (max-width: 580px) {
  .hero h1, h1 { font-size: 1.54rem !important; }
  h2 { font-size: 1.16rem; }
  .section, .hero, footer { padding: 15px 0; }
  .footer-menu { gap: 5px; font-size: 0.91rem; }
}


/* ---- ANIMATIONS & MICROINTERACTIONS ---- */
.cta-primary, button, .btn, nav a, .mobile-nav a {
  transition: background var(--transition), color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.cta-primary:active, .btn:active, nav a:active, .mobile-nav a:active {
  transform: scale(0.97) translateY(2px);
}

/* ---- MISC. ACCESSIBILITY ---- */
:focus-visible {
  outline: 2px solid var(--secondary);
  outline-offset: 2px;
  z-index: 200;
}

/* ---- UTILITIES ---- */
.hide { display: none !important; }
.text-center { text-align: center !important; }

/* ----- END OF CSS ----- */
